﻿:root {
    --purple: #7c3aed;
    --pink: #db2777;
    --gold: #d97706;
    --bg: #ffffff;
    --bg2: #f8f7fc;
    --bg3: #f1eef9;
    --surface: rgba(124,58,237,0.05);
    --border: rgba(124,58,237,0.12);
    --text: #1a1033;
    --muted: #6b5f7d;
    --grad: linear-gradient(135deg, #7c3aed, #db2777);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    transition: opacity 0.25s;
}
.logo img {
    height: 36px;
    width: auto;
    display: block;
}
.logo:hover { opacity: 0.85; }

/* ── NAV ── */
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 2.5rem; }
.main-nav a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.25s;
    font-weight: 400;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--purple);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--grad);
    color: #fff;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-nav a { font-size: 1.1rem; color: var(--muted); transition: color 0.25s; }
.mobile-nav a:hover { color: var(--text); }

/* ── HERO SPLIT ── */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 72px; }

.hero-left { display: flex; flex-direction: column; justify-content: space-between; padding: 5rem 4rem 0 clamp(1.5rem, 5vw, 5rem); background: var(--bg); position: relative; }
.hero-left::after { content: ''; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent); }

.hero-left-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-bottom: 3rem; }

.hero-tag { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(217,119,6,0.08); border: 1px solid rgba(217,119,6,0.25); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; color: var(--gold); margin-bottom: 2.5rem; width: fit-content; animation: fadeUp 0.7s ease both; }
.tag-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-heading { font-family: 'Cinzel', serif; font-weight: 700; line-height: 1.0; margin-bottom: 1.8rem; animation: fadeUp 0.7s ease 0.1s both; }
.line-normal { display: block; font-size: clamp(3rem, 5.5vw, 5.5rem); color: var(--text); }
.line-italic { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: clamp(3.5rem, 6.5vw, 6.5rem); background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-body { font-size: 1.1rem; color: var(--muted); max-width: 440px; line-height: 1.8; margin-bottom: 2.5rem; animation: fadeUp 0.7s ease 0.2s both; }

.hero-download { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }

.dl-btn { display: flex; align-items: center; gap: 0.9rem; background: var(--text); color: #fff; padding: 0.85rem 1.6rem; border-radius: 14px; font-weight: 700; transition: all 0.3s; }
.dl-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124,58,237,0.25); }
.dl-icon { font-size: 1.8rem; line-height: 1; }
.dl-text { display: flex; flex-direction: column; line-height: 1.25; }
.dl-text span { font-size: 0.7rem; font-weight: 400; opacity: 0.6; }
.dl-text strong { font-size: 1rem; }

.hero-proof { display: flex; flex-direction: column; gap: 0.3rem; }
.proof-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.hero-proof span { font-size: 0.85rem; color: var(--muted); }

.hero-ticker { overflow: hidden; border-top: 1px solid var(--border); padding: 1.2rem 0; }
.ticker-inner { display: flex; align-items: center; gap: 1.5rem; white-space: nowrap; animation: ticker 25s linear infinite; width: max-content; }
.ticker-inner span { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ticker-inner i { font-size: 0.3rem; color: var(--purple); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.hero-right { position: relative; background: var(--bg2); overflow: hidden; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }

.hero-img-stack { position: relative; width: 100%; height: 100%; min-height: 600px; }
.img-main { position: absolute; inset: 0; }
.img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.7; }

.img-float { position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid rgba(124,58,237,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.img-float img { width: 100%; height: 100%; object-fit: cover; }
.img-float-top { width: 180px; height: 220px; top: 8%; right: 8%; animation: floatY 6s ease-in-out infinite; }
.img-float-bottom { width: 160px; height: 200px; bottom: 10%; left: 8%; animation: floatY 8s ease-in-out infinite 2s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.hero-badge-float { position: absolute; bottom: 30%; right: 6%; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 12px; padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; color: var(--text); animation: floatY 7s ease-in-out infinite 1s; }
.hero-badge-float i { color: var(--gold); font-size: 1.1rem; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── BENTO SERVICES ── */
.services-bento { padding: 7rem 0; background: var(--bg); }
.bento-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.bento-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.bento-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; }
.bento-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 280px 280px; gap: 16px; }

.bento-cell { position: relative; border-radius: 20px; overflow: hidden; cursor: default; }
.bento-cell:hover .bento-img img { transform: scale(1.07); }
.bento-cell:hover .bento-overlay { background: rgba(26,16,51,0.7); }

.bento-img { position: absolute; inset: 0; }
.bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.bento-overlay { position: absolute; inset: 0; background: rgba(26,16,51,0.5); padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; transition: background 0.3s; }
.bento-num { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.4rem; }
.bento-overlay h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; margin-bottom: 0.4rem; color: #fff; }
.bento-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

.bento-large { grid-column: span 5; grid-row: span 2; }
.bento-tall  { grid-column: span 3; grid-row: span 2; }
.bento-wide  { grid-column: span 4; grid-row: span 1; }
.bento-small { grid-column: span 2; grid-row: span 1; }
.bento-medium{ grid-column: span 4; grid-row: span 1; }

/* ── GUIDANCE ACCORDION ── */
.guidance-section { padding: 7rem 0; background: var(--bg2); }
.guidance-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.guidance-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.2rem; }
.guidance-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.guidance-desc { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--purple); font-weight: 600; font-size: 1rem; transition: gap 0.3s; }
.text-link:hover { gap: 0.8rem; }

.guidance-accordion { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--bg); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; background: none; border: none; cursor: pointer; color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 500; text-align: left; transition: background 0.2s; }
.acc-trigger:hover { background: var(--surface); }
.acc-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--purple); flex-shrink: 0; font-size: 0.9rem; }
.acc-trigger span { flex: 1; }
.acc-arrow { font-size: 0.8rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.acc-item.acc-open .acc-arrow { transform: rotate(45deg); color: var(--purple); }
.acc-item.acc-open .acc-icon { background: rgba(124,58,237,0.12); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.acc-item.acc-open .acc-body { max-height: 300px; }
.acc-body ul { padding: 0 1.5rem 1.3rem 4.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.acc-body li { font-size: 0.95rem; color: var(--muted); position: relative; padding-left: 1rem; }
.acc-body li::before { content: '—'; position: absolute; left: 0; color: var(--purple); }

/* ── ADVISORS ── */
.advisors-section { padding: 7rem 0; background: var(--bg); overflow: hidden; }
.advisors-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.advisors-intro { margin-bottom: 3rem; }
.advisors-intro h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; }
.advisors-intro h2 em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.advisors-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }

.adv-card { background: var(--bg); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.adv-card:hover { border-color: var(--purple); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(124,58,237,0.12); }
.adv-icon-wrap {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(236,72,153,0.06));
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.adv-icon-wrap i {
    font-size: 3rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.adv-card:hover .adv-icon-wrap { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.12)); }
.adv-live { position: absolute; top: 12px; left: 12px; background: rgba(15,10,30,0.75); backdrop-filter: blur(8px); border-radius: 100px; padding: 0.3rem 0.8rem; font-size: 0.75rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 0.4rem; }
.adv-live span { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.adv-body { padding: 1.4rem; }
.adv-body h4 { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.adv-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.adv-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.adv-chips span { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.18); padding: 0.25rem 0.7rem; border-radius: 100px; font-size: 0.75rem; color: var(--muted); }

.advisors-footer-cta { text-align: center; }
.outline-btn { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid var(--border); color: var(--text); padding: 0.8rem 2rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; transition: all 0.3s; }
.outline-btn:hover { border-color: var(--purple); color: var(--purple); gap: 0.9rem; }

/* ── STEPS ── */
.steps-section { padding: 7rem 0; background: var(--bg2); }
.steps-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.steps-header { margin-bottom: 4rem; }
.steps-header h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; }
.steps-header h2 em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.steps-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.5rem; align-items: start; }
.step-arrow { display: flex; align-items: center; justify-content: center; padding-top: 120px; color: var(--border); font-size: 1.2rem; }

.step-block { display: flex; flex-direction: column; gap: 1.5rem; }
.step-visual { position: relative; border-radius: 20px; overflow: hidden; height: 180px; }
.step-visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(236,72,153,0.06));
    border: 1px solid var(--border);
}
.step-visual-icon i {
    font-size: 3.5rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-index { position: absolute; top: 16px; left: 16px; font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,0.25); line-height: 1; }
.step-info h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 0.6rem; }
.step-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 0 2rem; }
.stat-item strong { display: block; font-family: 'Cinzel', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.4rem; }
.stat-item strong sup { font-size: 0.5em; }
.stat-item span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-sep { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ── FULLSCREEN CTA ── */
.cta-fullscreen { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,16,51,0.88) 0%, rgba(124,58,237,0.82) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 640px; padding: 4rem 2rem; }
.cta-content h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.2rem; color: #fff; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2.5rem; }
.dl-btn-light { background: #fff; color: var(--text); }
.dl-btn-light:hover { background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.cta-note { margin-top: 1.2rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 340px; }
.footer-nav-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 { font-family: 'Cinzel', serif; font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem; }
.footer-disclaimer { color: var(--gold); transition: opacity 0.25s; }
.footer-disclaimer:hover { opacity: 0.7; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 8rem 0 4rem; min-height: 100vh; }
.legal-content { max-width: 900px; margin: 0 auto; background: var(--bg2); padding: 3rem; border-radius: 20px; border: 1px solid var(--border); }
.legal-content h1 { font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 1rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.last-updated { color: var(--muted); font-style: italic; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.legal-content h2 { font-family: 'Cinzel', serif; font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--purple); }
.legal-content h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-top: 1.5rem; margin-bottom: 0.8rem; color: var(--text); }
.legal-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; padding-left: 2rem; list-style: disc; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--purple); }
.legal-content a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .bento-grid { grid-template-rows: 240px 240px; }
    .bento-large { grid-column: span 6; }
    .bento-tall  { grid-column: span 6; }
    .bento-wide  { grid-column: span 6; }
    .bento-small { grid-column: span 3; }
    .bento-medium{ grid-column: span 6; }
    .advisors-row { grid-template-columns: repeat(2, 1fr); }
    .steps-track { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
}

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 5rem 2rem 0; }
    .hero-left::after { display: none; }
    .hero-right { min-height: 400px; }
    .guidance-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-nav-group { grid-template-columns: repeat(3, 1fr); }
    .bento-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .stats-inner { flex-wrap: wrap; gap: 2rem; }
    .stat-sep { display: none; }
    .stat-item { flex: 0 0 40%; }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .burger { display: flex; }
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-large, .bento-tall, .bento-wide, .bento-small, .bento-medium { grid-column: span 2; height: 220px; }
    .bento-small { grid-column: span 1; height: 180px; }
    .advisors-row { grid-template-columns: 1fr; }
    .footer-nav-group { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-img-stack { min-height: 320px; }
    .img-float { display: none; }
    .hero-badge-float {
        position: static;
        margin: 1rem auto 0;
        width: fit-content;
        animation: none;
    }
    .hero-right {
        display: flex;
        flex-direction: column;
        min-height: 460px;
    }
    .hero-img-stack {
        flex: 1;
        min-height: 460px;
    }
    .hero-ticker {
              display: none;
        width: 376px;
        border-top: none;
        border-bottom: 1px solid var(--border);
        background: var(--bg2);
        padding: 1rem 0;
    }
    .ticker-inner { gap: 2rem; }
    .ticker-inner span { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .header-inner { padding: 0 20px; }
    .hero-left { padding: 4rem 1.5rem 0; }
    .line-normal { font-size: 2.5rem; }
    .line-italic { font-size: 3rem; }
    .hero-download { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .bento-container, .guidance-container, .advisors-wrap, .steps-container, .stats-inner, .footer-inner { padding: 0 20px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-small { grid-column: span 1; }
    .footer-nav-group { grid-template-columns: 1fr; }
    .legal-content { padding: 1.5rem; }
    .legal-content h1 { font-size: 2rem; }
    .hero-right { min-height: 380px; }
    .hero-img-stack { min-height: 580px; }
    .hero-badge-float { font-size: 0.8rem; padding: 0.6rem 1rem; }
    .ticker-inner { animation-duration: 18s; }
}

/* ── 404 PAGE ── */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.error-content { max-width: 600px; }
.mystical-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: floatY 3s ease-in-out infinite;
}
.error-code {
    font-family: 'Cinzel', serif;
    font-size: 8rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.error-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.error-description {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
