/* Wealth-themed landing styles (component-only). Global tokens and body rules are in style.css */
.slides{
  /* reduce slide height to account for fixed header so content isn't hidden */
  height: calc(100vh - var(--header-height));
  display:flex;
  flex-direction:column;
  scroll-snap-type: y mandatory;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10; /* keep slides under the header which has high z-index */
}
.slide{ min-height: calc(100vh - var(--header-height)); display:flex; align-items:center; justify-content:center; padding:2rem; scroll-snap-align:start; box-sizing:border-box; }
.slide-inner{
  max-width:980px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:2rem;
  border-radius:12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
  /* prevent slide content from expanding beyond the available viewport area */
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow: auto;
}
h1.hero{ font-size:2.6rem; margin:0 0 .5rem 0; color: var(--accent-gold); text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
p.lead{ color:var(--muted); line-height:1.6; }
.cta{ margin-top:1.2rem; display:inline-flex; align-items:center; gap:0.6rem; padding:0.6rem 1rem; background: linear-gradient(90deg,var(--accent-green), #1da65a); color:#062018; border-radius:10px; text-decoration:none; font-weight:700; }
.muted-list li{ color: var(--muted); margin:0.3rem 0 }
.account-hint{ margin-top:1rem; font-size:0.95rem; color:var(--muted)}

/* Hide native scrollbar for slides while preserving scrollability */
.slides { scrollbar-width: none; -ms-overflow-style: none; }
.slides::-webkit-scrollbar { width: 0; height: 0; }

/* hero images */
.hero-image { width:100%; max-width:420px; height:auto; display:block; margin:1rem 0; }

/* wrapper for logo + hero heading */
.hero-brand { display:flex; align-items:center; gap:16px; margin-bottom:8px; }
.hero-brand img { display:block; height:56px; width:56px; object-fit:contain; }
.cta .cta-icon { vertical-align:middle; margin-right:8px; height:18px; width:18px; max-width:18px; max-height:18px; object-fit:contain; }

@media (max-width:700px){ .slide-inner{ padding:0.85rem } h1.hero{ font-size:1.8rem } .hamburger{ display:inline-block !important; } }
