/* =============================================
   INVESTO — Awwwards-Level Scrollytelling CSS
   Premium Dark-Mode Financial Literacy Brand
   ============================================= */

/* ---------- Design Tokens ---------- */
:root {
    --bg:          #080E07;
    --bg2:         #0C130B;
    --bg-card:     rgba(12, 19, 11, 0.65);
    --cream:       #E8E7BB;
    --cream-90:    rgba(232, 231, 187, 0.90);
    --cream-60:    rgba(232, 231, 187, 0.60);
    --cream-40:    rgba(232, 231, 187, 0.40);
    --cream-20:    rgba(232, 231, 187, 0.20);
    --cream-10:    rgba(232, 231, 187, 0.10);
    --green:       #27521d;
    --green-light: #3a7a2e;
    --gold:        #C8A84B;
    --gold-glow:   rgba(200, 168, 75, 0.25);
    --purple:      #4F1B68;
    --purple-deep: #3a1150;
    --nav-bg:      rgba(8, 14, 7, 0.92);
    --border:      rgba(232, 231, 187, 0.07);
    --border-card: rgba(232, 231, 187, 0.10);
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft:   cubic-bezier(0.25, 1, 0.5, 1);
    --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--cream-60);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #1C3D14; }

/* ---------- Noise Overlay ---------- */
.noise-overlay {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* ---------- Gradient Bloom ---------- */
.gradient-bloom {
    position: fixed;
    top: 50%; left: 50%;
    width: 140vmax; height: 140vmax;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse 45% 45% at 50% 48%,
        rgba(39, 82, 29, 0.14) 0%,
        rgba(79, 27, 104, 0.07) 35%,
        transparent 65%
    );
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 0 28px;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 19px;
    color: var(--cream-90); letter-spacing: -0.025em;
}
.nav-logo-img {
    height: 36px; width: auto;
    filter: brightness(1.1);
}

.nav-links { display: flex; gap: 36px; }

.nav-link {
    font-size: 14px; font-weight: 500;
    color: var(--cream-60); letter-spacing: -0.01em;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--cream-90); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px;
    background: var(--gold); color: #1C3D14;
    font-weight: 700; font-size: 13px;
    border-radius: 12px; letter-spacing: -0.01em;
    transition: all 0.35s var(--ease);
    box-shadow: 0 0 0 0 var(--gold-glow);
}
.nav-cta:hover {
    background: #d4b455;
    box-shadow: 0 0 28px 6px var(--gold-glow);
    transform: translateY(-1px);
}

/* ============================================
   CANVAS SCROLL SECTION
   ============================================ */
.scroll-container { position: relative; }

.canvas-section {
    position: relative;
    height: 480vh; /* ~4vh per frame = smooth without overstaying */
}

.canvas-sticky {
    position: sticky; top: 0; left: 0;
    width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
    overflow: hidden;
}

#frame-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}

/* ---------- Copy Overlays ---------- */
.copy-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.copy-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ---------- Eyebrow Pill ---------- */
.eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px;
    background: var(--purple-deep);
    border: 1px solid rgba(79, 27, 104, 0.45);
    border-radius: 100px;
    margin-bottom: 24px;
}
.eyebrow-pill span {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
}
.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    display: inline-block;
}

/* ---------- Typography ---------- */
.gold { color: var(--gold); }

.display-heading {
    font-size: clamp(48px, 7.5vw, 92px);
    font-weight: 900; line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--cream-90);
    text-align: center;
    text-shadow: 0 2px 30px rgba(8, 14, 7, 0.9), 0 0 80px rgba(232, 231, 187, 0.06);
}

.section-heading {
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--cream-90);
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(8, 14, 7, 0.85);
}

.section-tagline {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700; line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--cream-90);
    text-align: center;
    max-width: 720px;
    text-shadow: 0 2px 24px rgba(8, 14, 7, 0.85);
}

/* ---------- Hero Beat ---------- */
.copy-hero {
    justify-content: flex-end;
    padding-bottom: 0;
    background: linear-gradient(
        to top,
        rgba(8,14,7,0.97) 0%,
        rgba(8,14,7,0.75) 25%,
        rgba(8,14,7,0.2)  55%,
        transparent 75%
    );
}
.copy-hero-inner {
    display: flex; flex-direction: column; align-items: center;
    padding: 48px 48px 40px;
    max-width: 700px; width: 100%;
}
.hero-sub {
    font-size: 17px; font-weight: 500;
    color: var(--cream-60);
    margin-top: 18px; text-align: center;
    max-width: 520px; line-height: 1.7;
}

/* Scroll cue */
.scroll-cue {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; margin-top: 44px;
    animation: cue-pulse 2.8s ease-in-out infinite;
}
.scroll-cue span {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--cream-40);
}
.scroll-cue-line {
    width: 1.5px; height: 44px;
    background: var(--cream-20);
    border-radius: 2px; position: relative; overflow: hidden;
}
.scroll-cue-dot {
    width: 1.5px; height: 14px;
    background: var(--gold); border-radius: 2px;
    position: absolute; top: -14px;
    animation: cue-dot 2.2s ease-in-out infinite;
}
@keyframes cue-dot {
    0%   { top: -14px; opacity: 0; }
    25%  { opacity: 1; }
    100% { top: 44px; opacity: 0; }
}
@keyframes cue-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* ---------- Explode Beat ---------- */
.copy-explode {
    padding: 0 24px;
    justify-content: flex-end;
    padding-bottom: 8vh;
}
.copy-explode .section-tagline {
    background: linear-gradient(to top, rgba(8,14,7,0.94) 0%, rgba(8,14,7,0.7) 65%, transparent 100%);
    padding: 40px 52px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ---------- Diagram Beat ---------- */
.copy-diagram {
    padding: 0 20px;
    background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(8,14,7,0.55) 0%, transparent 75%);
}
.diagram-grid {
    display: flex;
    justify-content: space-between;
    width: 100%; max-width: 1100px;
    gap: 0;
}
.diagram-col {
    display: flex; flex-direction: column;
    justify-content: center; gap: 22px;
    flex: 0 0 auto;
    width: 320px;
}
.diagram-col-left { align-items: flex-end; text-align: right; }
.diagram-col-right { align-items: flex-start; text-align: left; }

.diagram-node {
    display: flex; align-items: center; gap: 14px;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.diagram-col-right .diagram-node {
    transform: translateX(12px);
}
.copy-diagram.visible .diagram-node {
    opacity: 1; transform: translateX(0);
}
.copy-diagram.visible .diagram-node[data-delay="0"]   { transition-delay: 0.1s; }
.copy-diagram.visible .diagram-node[data-delay="0.5"] { transition-delay: 0.2s; }
.copy-diagram.visible .diagram-node[data-delay="1"]   { transition-delay: 0.3s; }
.copy-diagram.visible .diagram-node[data-delay="1.5"] { transition-delay: 0.4s; }
.copy-diagram.visible .diagram-node[data-delay="2"]   { transition-delay: 0.5s; }
.copy-diagram.visible .diagram-node[data-delay="2.5"] { transition-delay: 0.6s; }

.diagram-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    box-shadow: 0 0 18px var(--gold-glow);
}
.diagram-connector {
    width: 40px; height: 1px; flex-shrink: 0;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.diagram-col-left .diagram-connector {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.diagram-node-inner {
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(8, 14, 7, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(232, 231, 187, 0.06);
}
.diagram-label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold);
}
.diagram-desc {
    font-size: 13px; font-weight: 400;
    color: var(--cream-60); line-height: 1.5;
    max-width: 230px;
}

/* ---------- Reassemble Beat ---------- */
.copy-reassemble {
    padding: 0 24px;
    justify-content: flex-end;
    padding-bottom: 10vh;
}
.copy-reassemble .section-heading {
    background: linear-gradient(to top, rgba(8,14,7,0.94) 0%, rgba(8,14,7,0.7) 65%, transparent 100%);
    padding: 40px 56px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ---------- Final CTA Beat ---------- */
.copy-final-cta {
    padding: 0 24px; gap: 0;
    background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(8,14,7,0.96) 0%, rgba(8,14,7,0.8) 45%, transparent 75%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cta-sub {
    font-size: 16px; font-weight: 500;
    color: var(--cream-60);
    margin-top: 8px; margin-bottom: 32px;
}

/* ============================================
   BELOW-CANVAS SECTIONS
   ============================================ */
.section {
    position: relative; z-index: 2;
    padding: 140px 28px;
    background: var(--bg);
}
.section-inner {
    max-width: 1020px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}

/* ---------- Feature Cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px; width: 100%;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 22px;
    padding: 40px 34px;
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
                border-color 0.4s ease, box-shadow 0.4s ease;
}
.card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top left, rgba(39,82,29,0.08), transparent 55%);
    opacity: 0; transition: opacity 0.4s ease;
}
.card:hover {
    border-color: rgba(200,168,75,0.18);
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.card:hover::before { opacity: 1; }
.card.in-view { opacity: 1; transform: translateY(0); }

.card-icon { margin-bottom: 22px; position: relative; z-index: 1; }
.card-title {
    font-size: 19px; font-weight: 800;
    color: var(--cream-90); letter-spacing: -0.02em;
    margin-bottom: 10px; position: relative; z-index: 1;
}
.card-desc {
    font-size: 14px; font-weight: 400;
    color: var(--cream-60); line-height: 1.65;
    position: relative; z-index: 1;
}

/* Card stagger */
.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.08s; }
.card:nth-child(3) { transition-delay: 0.16s; }
.card:nth-child(4) { transition-delay: 0.24s; }
.card:nth-child(5) { transition-delay: 0.32s; }
.card:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Who It's For ---------- */
.section-who { background: var(--bg2); }
.who-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-top: 72px; width: 100%;
}
.who-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px; padding: 30px 24px;
    opacity: 0; transform: translateY(24px);
    transition: all 0.7s var(--ease);
}
.who-card.in-view { opacity: 1; transform: translateY(0); }
.who-card:hover {
    border-color: rgba(79,27,104,0.5);
    transform: translateY(-4px);
}
.who-age {
    font-size: 11px; font-weight: 700;
    color: var(--gold); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 10px;
}
.who-title {
    font-size: 18px; font-weight: 800;
    color: var(--cream-90); letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.who-desc {
    font-size: 13px; font-weight: 400;
    color: var(--cream-60); line-height: 1.6;
}

/* ---------- Steps ---------- */
.section-steps { background: var(--bg2); }
.steps-list {
    margin-top: 72px; width: 100%; max-width: 680px;
}
.step {
    display: flex; gap: 32px; align-items: flex-start;
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.step.in-view { opacity: 1; transform: translateY(0); }
.step-num {
    font-size: 52px; font-weight: 900;
    color: var(--gold); letter-spacing: -0.04em;
    line-height: 1; min-width: 72px; opacity: 0.25;
}
.step-body { padding-top: 8px; }
.step-title {
    font-size: 22px; font-weight: 800;
    color: var(--cream-90); letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 15px; font-weight: 400;
    color: var(--cream-60); line-height: 1.65;
}
.step-line {
    width: 1px; height: 52px;
    background: linear-gradient(180deg, var(--gold), transparent);
    margin: 18px 0 18px 34px; opacity: 0.25;
}

/* ---------- Pricing ---------- */
.section-pricing {
    padding: 160px 28px; position: relative; overflow: hidden;
}
.pricing-glow {
    position: absolute; top: 50%; left: 50%;
    width: 700px; height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px; width: 100%;
    margin-top: 56px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 44px 34px; text-align: left;
    position: relative;
    opacity: 0; transform: translateY(24px);
    transition: all 0.7s var(--ease);
}
.pricing-card.in-view { opacity: 1; transform: translateY(0); }
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--cream-20);
}
.pricing-card-gold {
    border-color: rgba(200,168,75,0.35);
    background: linear-gradient(168deg, rgba(200,168,75,0.07) 0%, var(--bg-card) 45%);
}
.pricing-card-gold:hover {
    border-color: var(--gold);
    box-shadow: 0 0 48px rgba(200,168,75,0.08);
}
.pricing-badge {
    position: absolute; top: -13px; right: 26px;
    padding: 5px 16px;
    background: var(--gold); color: #1C3D14;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 100px;
}
.pricing-tier {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cream-60); margin-bottom: 8px;
}
.pricing-amount {
    font-size: 44px; font-weight: 900;
    color: var(--cream-90); letter-spacing: -0.04em;
    margin-bottom: 12px;
}
.pricing-amount span {
    font-size: 15px; font-weight: 500; color: var(--cream-40);
}
.pricing-trial {
    font-size: 13px; font-weight: 600;
    color: var(--gold); margin-bottom: 24px;
}
.pricing-note {
    font-size: 14px; color: var(--cream-40);
    margin-top: 32px; text-align: center;
}
.pricing-note a {
    color: var(--gold); text-decoration: underline;
    text-underline-offset: 2px;
}
.btn-full { width: 100%; justify-content: center; }
.pricing-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 28px;
}
.pricing-list li {
    font-size: 14px; font-weight: 400;
    color: var(--cream-60); padding-left: 22px;
    position: relative;
}
.pricing-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-light);
}

/* ---------- Buttons ---------- */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px;
    background: var(--gold); color: #1C3D14;
    font-family: var(--font); font-weight: 700; font-size: 14px;
    border-radius: 14px; border: none; cursor: pointer;
    letter-spacing: -0.01em;
    transition: all 0.35s var(--ease);
    box-shadow: 0 0 0 0 var(--gold-glow), 0 4px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}
.btn-gold:hover {
    background: #d4b455;
    box-shadow: 0 0 36px 10px var(--gold-glow), 0 8px 36px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--cream-20);
    color: var(--cream-90);
    font-family: var(--font); font-weight: 700; font-size: 14px;
    border-radius: 14px; cursor: pointer;
    letter-spacing: -0.01em;
    transition: all 0.35s var(--ease);
    text-decoration: none;
}
.btn-outline:hover {
    border-color: var(--cream-40);
    background: rgba(232,231,187,0.04);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative; z-index: 2;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 72px 28px 36px;
}
.footer-inner { max-width: 1020px; margin: 0 auto; }
.footer-top {
    display: flex; justify-content: space-between;
    margin-bottom: 56px; gap: 40px;
}
.footer-brand { max-width: 260px; }
.footer-tagline {
    font-size: 14px; color: var(--cream-40); margin-top: 14px;
}
.footer-cols { display: flex; gap: 56px; }
.footer-col h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream-60); margin-bottom: 18px;
}
.footer-col a {
    display: block; font-size: 14px; font-weight: 400;
    color: var(--cream-40); margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--cream-90); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}
.footer-bottom p { font-size: 13px; color: var(--cream-40); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-inner { height: 56px; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }

    .display-heading { font-size: clamp(34px, 10vw, 52px); }
    .section-heading { font-size: clamp(26px, 7vw, 38px); }
    .section-tagline { font-size: clamp(18px, 5vw, 26px); }

    .card-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr 1fr; }

    .diagram-grid { flex-direction: column; align-items: center; gap: 24px; }
    .diagram-col { width: 100%; max-width: 320px; }
    .diagram-col-left { align-items: flex-start; text-align: left; }
    .diagram-col-left .diagram-connector {
        background: linear-gradient(90deg, transparent, var(--gold));
    }
    .diagram-col-left .diagram-node {
        flex-direction: row-reverse;
    }
    .diagram-col-left .diagram-node .diagram-node-inner {
        text-align: left;
    }

    .copy-hero { padding-bottom: 5vh; }
    .section { padding: 80px 20px; }
    .section-pricing { padding: 100px 20px; }

    .step { gap: 20px; }
    .step-num { font-size: 38px; min-width: 52px; }

    .footer-top { flex-direction: column; }
    .footer-cols { gap: 36px; }
}

@media (max-width: 480px) {
    .card { padding: 28px 22px; }
    .pricing-card { padding: 32px 22px; }
    .btn-gold { padding: 14px 28px; font-size: 13px; }
    .footer-cols { flex-direction: column; gap: 28px; }
    .who-grid { grid-template-columns: 1fr; }
}

/* ---------- Loading ---------- */
body.loading .canvas-sticky { opacity: 0; }

/* ---------- Page load fade-in ---------- */
body {
    opacity: 0;
    transition: opacity 0.6s ease;
}
body.loaded {
    opacity: 1;
}
