/* ============================================================
   GLOBAL RESETS & BASE STYLES
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--midnight-ink);
    background-color: var(--cloud-canvas);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection { background: var(--electric-violet); color: #fff; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--midnight-ink);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Headings on dark-background sections must stay white */
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--brand h1, .section--brand h2, .section--brand h3, .section--brand h4 {
    color: var(--color-white);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.text-display-lg {
    font-size: var(--fs-display-lg);
    line-height: var(--lh-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
}

.text-display {
    font-size: var(--fs-display);
    line-height: var(--lh-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.025em;
}

.text-heading-lg {
    font-size: var(--fs-heading-lg);
    line-height: var(--lh-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.text-heading {
    font-size: var(--fs-heading);
    line-height: var(--lh-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.text-heading-sm {
    font-size: var(--fs-heading-sm);
    line-height: var(--lh-snug);
    font-weight: var(--font-weight-bold);
}

.text-subheading {
    font-size: var(--fs-subheading);
    line-height: var(--lh-snug);
    font-weight: var(--font-weight-medium);
}

.text-body        { font-size: var(--fs-body);    line-height: var(--lh-relaxed); }
.text-body-sm     { font-size: var(--fs-body-sm); line-height: var(--lh-normal); }
.text-caption {
    font-size: var(--fs-caption);
    line-height: var(--lh-normal);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section               { padding: var(--section-gap) 0; }
.section--navy         { background: var(--color-navy);      color: var(--color-white); }
.section--off-white    { background: var(--color-off-white); }
.section--white        { background: var(--color-white);     }
.section--brand        { background: var(--color-brand);     color: var(--color-white); }

.section-eyebrow {
    display: inline-block;
    font-size: var(--fs-caption);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: var(--space-2);
}
.section--navy .section-eyebrow { color: var(--color-lilac); }

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-header .subtitle {
    color: var(--color-gray-medium);
    max-width: 600px;
    margin: var(--space-2) auto 0;
    font-size: var(--fs-subheading);
}

.section--navy .section-header .subtitle { color: rgba(255, 255, 255, 0.72); }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   COLOR UTILITIES
   ============================================================ */
.text-white  { color: var(--color-white); }
.text-navy   { color: var(--color-navy); }
.text-brand  { color: var(--color-brand); }
.text-muted  { color: var(--color-gray-medium); }
.text-lilac  { color: var(--color-lilac); }

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    animation: bounce 2s infinite;
}
.scroll-indicator__line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
}
.scroll-indicator__chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ============================================================
   ZENTRA CUSTOM LOADER
   ============================================================ */
.zl {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0c1754;
    z-index: 9999;
    overflow: hidden;
}

/* Dot-grid background */
.zl__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Radial ambient glow */
.zl__glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(0, 198, 255, 0.1) 0%,
        rgba(123, 47, 190, 0.07) 45%,
        transparent 70%
    );
    animation: zl-bg-breathe 3s ease-in-out 1.6s infinite;
    pointer-events: none;
}

@keyframes zl-bg-breathe {
    0%, 100% { transform: scale(1);   opacity: 0.7; }
    50%       { transform: scale(1.3); opacity: 1;   }
}

/* Brand logo wrapper */
.zl__logo-wrap {
    position: relative;
    z-index: 1;
    animation: zl-logo-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.zl__logo-img {
    width: clamp(180px, 28vw, 260px);
    height: auto;
    display: block;
    /* Boost brightness so dark-navy logo text reads on dark splash background */
    filter:
        brightness(1.8)
        drop-shadow(0 0 18px rgba(0, 198, 255, 0.4))
        drop-shadow(0 0 40px rgba(123, 47, 190, 0.25));
}

@keyframes zl-logo-in {
    from { opacity: 0; transform: scale(0.88) translateY(8px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);   }
}

.zl__tagline {
    margin-top: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    animation: zl-text-in 0.55s ease 0.7s both;
}

@keyframes zl-text-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Thin gradient progress bar pinned to the bottom */
.zl__bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.zl__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #7b2fbe);
    width: var(--blazor-load-percentage, 4%);
    transition: width 0.45s ease;
    border-radius: 0 2px 2px 0;
    min-width: 4%;
}

/* ============================================================
   TEXT GRADIENT UTILITY
   ============================================================ */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section eyebrow pill variant */
.section-eyebrow--pill {
    background: rgba(37, 69, 255, 0.08);
    border: 1px solid rgba(37, 69, 255, 0.18);
    border-radius: var(--radius-badge);
    padding: 0.25rem 0.875rem;
}

.section--navy .section-eyebrow--pill {
    background: rgba(217, 212, 255, 0.12);
    border-color: rgba(217, 212, 255, 0.25);
}

/* ============================================================
   BLAZOR ERROR UI (keep from scaffold)
   ============================================================ */
#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
}
#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}
.blazor-error-boundary::after {
    content: "An error has occurred.";
}
.loading-progress {
    position: absolute;
    display: block;
    width: 8rem;
    height: 8rem;
    inset: 20vh 0 auto 0;
    margin: 0 auto;
}
.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}
.loading-progress circle:last-child {
    stroke: var(--color-brand);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}
.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}
.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* ============================================================
   V4 AURORA BACKGROUND
   ============================================================ */
.aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(1200px 800px at 50% -10%, rgba(87,87,248,0.06), transparent 60%),
        radial-gradient(900px 700px at 90% 110%, rgba(58,166,255,0.05), transparent 60%),
        var(--cloud-canvas);
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    mix-blend-mode: multiply;
    opacity: .55;
    will-change: transform;
}
.b1 { width: 760px; height: 760px; background: var(--aur-violet);  left: -200px; top: -260px; animation: aurora-drift1 24s ease-in-out infinite alternate; }
.b2 { width: 640px; height: 640px; background: var(--aur-blue);    right: -160px; top: 12vh;  animation: aurora-drift2 28s ease-in-out infinite alternate; }
.b3 { width: 560px; height: 560px; background: var(--aur-teal);    left: 30%; top: 60vh;      animation: aurora-drift3 32s ease-in-out infinite alternate; opacity:.40; }
.b4 { width: 540px; height: 540px; background: var(--aur-magenta); right: 8%; top: 105vh;     animation: aurora-drift4 30s ease-in-out infinite alternate; opacity:.40; }
.b5 { width: 480px; height: 480px; background: var(--aur-amber);   left: -100px; top: 195vh;  animation: aurora-drift1 34s ease-in-out infinite alternate; opacity:.30; }
.b6 { width: 600px; height: 600px; background: var(--aur-violet);  right: -80px; top: 250vh;  animation: aurora-drift2 36s ease-in-out infinite alternate; opacity:.35; }

@keyframes aurora-drift1 { 0% { transform: translate3d(0,0,0) scale(1); }     100% { transform: translate3d(160px,90px,0) scale(1.08); } }
@keyframes aurora-drift2 { 0% { transform: translate3d(0,0,0) scale(1); }     100% { transform: translate3d(-180px,120px,0) scale(1.10); } }
@keyframes aurora-drift3 { 0% { transform: translate3d(0,0,0) scale(1); }     100% { transform: translate3d(120px,-100px,0) scale(.95); } }
@keyframes aurora-drift4 { 0% { transform: translate3d(0,0,0) scale(1); }     100% { transform: translate3d(-120px,-140px,0) scale(1.05); } }

.grid-veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(32,32,32,0.05) 1px, transparent 1.5px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
    opacity: .6;
}

/* ============================================================
   V4 EYEBROW
   ============================================================ */
.eyebrow-v4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--electric-violet);
    padding: 6px 14px 6px 10px;
    background: var(--violet-soft);
    border-radius: var(--r-pill);
    margin-bottom: var(--space-3);
}
.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric-violet);
    box-shadow: 0 0 8px rgba(87,87,248,.5);
    animation: eyebrow-blink 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes eyebrow-blink { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }

/* ============================================================
   V4 TEXT GRADIENT
   ============================================================ */
.text-grad {
    background: linear-gradient(110deg, #5757f8 0%, #7e7afe 40%, #4ab0ff 70%, #34d5b8 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: grad-shine 9s ease-in-out infinite alternate;
}
@keyframes grad-shine { 0%{ background-position: 0% 0% } 100%{ background-position: 100% 0% } }

/* ============================================================
   V4 HERO SECTION
   ============================================================ */
.hero--v4 {
    position: relative;
    background: var(--cloud-canvas);
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(48px, 6vw, 80px);
    overflow: hidden;
}
.hero__inner--v4 {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero__meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px) saturate(1.5);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    border: 1px solid var(--glass-edge);
    border-radius: var(--r-pill);
    font-size: 13px;
    color: var(--midnight-ink);
    font-weight: 500;
    margin-bottom: var(--space-4);
    box-shadow: 0 8px 24px -16px rgba(60,40,180,.2);
}
.hero__chip-label {
    height: 22px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    background: var(--violet-soft);
    color: var(--electric-violet);
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero__display {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-display-lg);
    line-height: .95;
    letter-spacing: -0.04em;
    color: var(--midnight-ink);
    text-wrap: balance;
    margin-top: var(--space-2);
    margin-bottom: 0;
}
.hero__display-grad {
    background: linear-gradient(110deg, #5757f8 0%, #7e7afe 40%, #4ab0ff 70%, #34d5b8 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: grad-shine 9s ease-in-out infinite alternate;
}
.hero__lead {
    margin: var(--space-4) auto 0;
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted-ash);
    text-wrap: pretty;
}
.hero__ctas--v4 {
    display: inline-flex;
    gap: 12px;
    margin-top: var(--space-5);
    flex-wrap: wrap;
    justify-content: center;
}
.hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-arrow-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.hero__cta-primary:hover .btn-arrow-icon { transform: translateX(3px); }

/* Floating stat cards */
.hero__floaters {
    position: relative;
    height: 0;
    max-width: 1100px;
    margin: 0 auto;
    pointer-events: none;
}
.hero__floater {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border: 1px solid var(--glass-edge);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 24px 50px -28px rgba(60,40,180,.25);
    font-size: 13px;
    color: var(--midnight-ink);
    white-space: nowrap;
    will-change: transform;
}
.hero__floater-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero__floater-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ash-2);
}
.hero__floater-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}
.hero__floater--1 { left: 0%;   top: 10px;  animation: floatA 10s ease-in-out infinite alternate; }
.hero__floater--2 { right: 0%;  top: 80px;  animation: floatB 12s ease-in-out infinite alternate; }
.hero__floater--3 { left: 14%;  top: 170px; animation: floatC 11s ease-in-out infinite alternate; }
@keyframes floatA { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes floatB { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@keyframes floatC { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@media (max-width: 980px) { .hero__floaters { display: none; } }

/* Dashboard console */
.hero__console {
    margin: var(--space-8) auto 0;
    max-width: 1100px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid var(--glass-edge);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 40px 100px -50px rgba(60,40,180,.28);
    overflow: hidden;
    text-align: left;
}
.hero__console-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--hairline);
    background: rgba(255,255,255,0.60);
}
.hero__console-dots {
    display: flex;
    gap: 6px;
}
.hero__console-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}
.hero__console-tabs {
    display: flex;
    gap: 4px;
    justify-self: center;
}
.hero__console-tab {
    height: 26px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    color: var(--ash-2);
    border-radius: 6px;
    cursor: default;
}
.hero__console-tab--active {
    background: var(--violet-soft);
    color: var(--electric-violet);
}
.hero__console-path {
    justify-self: end;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ash-2);
    padding: 3px 10px;
    background: var(--cloud-canvas);
    border-radius: 5px;
}
.hero__console-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 380px;
}
.hero__console-side {
    border-right: 1px solid var(--hairline);
    padding: 14px 10px;
    background: rgba(255,255,255,0.50);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__side-h {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ash-2);
    padding: 6px 10px 4px;
}
.hero__side-i {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted-ash);
    cursor: default;
    transition: background 0.15s ease;
}
.hero__side-i svg { flex-shrink: 0; opacity: .7; }
.hero__side-i--active {
    background: var(--violet-soft);
    color: var(--electric-violet);
    font-weight: 500;
}
.hero__side-i--active svg { opacity: 1; }
.hero__console-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero__console-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.hero__console-stat-card {
    background: var(--cloud-canvas);
    border: 1px solid var(--hairline-2);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__console-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ash-2);
}
.hero__console-stat-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--midnight-ink);
}
.hero__console-stat-delta {
    font-size: 11px;
}
.hero__console-recent {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero__console-recent-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ash-2);
    margin-bottom: 2px;
}
.hero__console-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--cloud-canvas);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    font-size: 13px;
}
.hero__console-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero__console-row-text { flex: 1; color: var(--muted-ash); }
.hero__console-row-amt  { font-family: var(--font-mono); font-size: 12px; font-weight: 500; }

/* Trust bar */
.hero__trust {
    margin-top: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.hero__trust-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ash-2);
}
.hero__trust-logos {
    display: flex;
    gap: clamp(24px, 4vw, 56px);
    flex-wrap: wrap;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--midnight-ink);
    letter-spacing: -0.01em;
}
.hero__trust-logos span { opacity: .45; }

@media (max-width: 900px) {
    .hero__console-body { grid-template-columns: 1fr; }
    .hero__console-side { display: none; }
    .hero__console-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .hero__console-stats { grid-template-columns: 1fr; }
    .hero__console-tabs { display: none; }
}

/* ============================================================
   WHO SECTION
   ============================================================ */
.who-section {
    background: var(--cloud-canvas);
}
.who-section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--midnight-ink);
    margin-bottom: var(--space-2);
}
.who-section__sub {
    font-size: 18px;
    color: var(--muted-ash);
    max-width: 52ch;
    margin: 0 auto var(--space-8);
    line-height: 1.55;
}
.section-header .who-section__sub { margin-top: var(--space-2); }
.who__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
.who-card {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.who-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.who-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.who-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--midnight-ink);
}
.who-card__desc {
    font-size: 13.5px;
    color: var(--muted-ash);
    line-height: 1.5;
    flex: 1;
}
.who-card__outcomes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: var(--space-1);
}
.who-card__outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted-ash);
    line-height: 1.4;
}
.who-card__outcomes li svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--electric-violet);
}
@media (max-width: 1024px) { .who__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .who__grid { grid-template-columns: 1fr; } }

/* ============================================================
   BRANCHES SECTION — foundation card as link
   ============================================================ */
.branch-card--link {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.branch-card--link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.branch-card__more-link {
    display: inline-block;
    margin-top: var(--space-2);
    font-size: 13px;
    color: var(--electric-violet);
    font-weight: 500;
}

/* ============================================================
   FOUNDATION PAGE
   ============================================================ */
.foundation-hero {
    position: relative;
    background: var(--cloud-canvas);
    padding-top: clamp(100px, 12vw, 140px);
    padding-bottom: clamp(64px, 8vw, 96px);
    overflow: hidden;
}
.foundation-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-6), 5vw, var(--space-10));
    align-items: center;
}
.foundation-hero__content {
    text-align: left;
}
.foundation-hero__content .foundation-hero__sub {
    margin: 0;
}
.foundation-hero__image-slot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 28px 80px rgba(87, 87, 248, 0.18), 0 8px 24px rgba(0,0,0,0.12);
    animation: slideInRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.foundation-hero__image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.foundation-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(87,87,248,0.22) 0%, transparent 60%);
    pointer-events: none;
}
.foundation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--electric-violet);
    padding: 6px 14px 6px 10px;
    background: var(--violet-soft);
    border-radius: var(--r-pill);
    margin-bottom: var(--space-4);
}
.foundation-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric-violet);
    box-shadow: 0 0 8px rgba(87,87,248,.5);
    animation: eyebrow-blink 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
.foundation-hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--midnight-ink);
    margin-bottom: var(--space-4);
    text-wrap: balance;
}
.foundation-hero__grad {
    background: linear-gradient(110deg, #5757f8 0%, #7e7afe 40%, #4ab0ff 70%, #34d5b8 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: grad-shine 9s ease-in-out infinite alternate;
}
.foundation-hero__sub {
    max-width: 58ch;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted-ash);
    text-wrap: pretty;
}
@media (max-width: 768px) {
    .foundation-hero__inner {
        grid-template-columns: 1fr;
    }
    .foundation-hero__content {
        text-align: center;
    }
    .foundation-hero__content .foundation-hero__sub {
        margin: 0 auto;
    }
    .foundation-hero__image-slot {
        order: -1;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }
}

/* Stats bar */
.foundation-stats-bar { background: var(--paper-white); padding: var(--space-6) 0; }
.foundation-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.foundation-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}
.foundation-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--midnight-ink);
    letter-spacing: -0.02em;
}
.foundation-stat-label {
    font-size: 13px;
    color: var(--ash-2);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--font-mono);
}
.foundation-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--hairline-2);
}
@media (max-width: 640px) { .foundation-stat-divider { display: none; } }

/* Skills section */
.foundation-skills-section { background: var(--cloud-canvas); }
.foundation-section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}
.foundation-section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.025em;
    color: var(--midnight-ink);
    margin-bottom: var(--space-2);
}
.foundation-section-sub {
    font-size: 16px;
    color: var(--muted-ash);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.55;
}
.foundation-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}
@media (max-width: 900px)  { .foundation-skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .foundation-skills-grid { grid-template-columns: 1fr; } }
.foundation-skill-card {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.foundation-skill-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.foundation-skill-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--violet-soft);
    color: var(--electric-violet);
    display: flex;
    align-items: center;
    justify-content: center;
}
.foundation-skill-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--midnight-ink);
}
.foundation-skill-desc { font-size: 13.5px; color: var(--muted-ash); line-height: 1.5; }

/* Partners */
.foundation-partners-section { background: var(--paper-white); }
.foundation-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}
@media (max-width: 900px)  { .foundation-partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .foundation-partners-grid { grid-template-columns: 1fr; } }
.foundation-partner-card {
    padding: var(--space-4);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    transition: transform 0.2s ease;
}
.foundation-partner-card--link { cursor: pointer; }
.foundation-partner-card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.foundation-partner-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.foundation-partner-icon--violet { background: var(--violet-soft);            color: var(--electric-violet); }
.foundation-partner-icon--blue   { background: rgba(142,198,255,0.15);         color: #2a7abd; }
.foundation-partner-icon--teal   { background: rgba(139,230,212,0.15);         color: #1a9e84; }
.foundation-partner-body { flex: 1; }
.foundation-partner-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--midnight-ink);
    margin-bottom: 6px;
}
.foundation-partner-desc { font-size: 13.5px; color: var(--muted-ash); line-height: 1.5; margin-bottom: 8px; }
.foundation-partner-cta { font-size: 13px; color: var(--electric-violet); font-weight: 500; }

/* Foundation gallery */
.foundation-gallery-section { background: var(--cloud-canvas); }

/* CTA back bar */
.foundation-back-section { background: var(--paper-white); padding: var(--space-5) 0; }
.foundation-back__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.foundation-back__text { font-size: 16px; color: var(--muted-ash); }
.foundation-back__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--electric-violet);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}
.foundation-back__btn:hover { background: var(--violet-deep); transform: translateY(-1px); }

/* Navbar v4 gradient logo */
.navbar__logo-icon {
    transition: filter 0.2s ease;
}
.navbar__logo:hover .navbar__logo-icon {
    filter: drop-shadow(0 0 6px rgba(87,87,248,.4));
}

/* Section backgrounds updated for v4 palette */
.section--off-white { background: var(--paper-white); }
.section--white     { background: var(--cloud-canvas); }

/* ============================================================
   FOUNDATION THEME — WHITE · ROYAL BLUE · PURPLE
   ============================================================ */
.foundation-theme {
    --f-bg:          #ffffff;
    --f-blue:        #2555F5;          /* royal blue */
    --f-purple:      #8820C8;          /* purple */
    --f-grad:        linear-gradient(135deg, #2555F5 0%, #8820C8 100%);
    --f-dark:        #0c1754;          /* very dark navy */
    --f-muted:       #4a5899;          /* blue-toned muted text */
    --f-card:        #f0f3ff;          /* white with faint blue tint */
    --f-card-border: rgba(37,85,245,.15);
    background: var(--f-bg);
    color: var(--f-dark);
}

/* Eyebrow pill */
.f-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--f-blue);
    padding: 6px 14px 6px 10px;
    background: rgba(37,85,245,.07);
    border: 1px solid rgba(37,85,245,.22);
    border-radius: var(--r-pill); margin-bottom: var(--space-4);
}
.f-eyebrow--light { color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.f-eyebrow__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor; box-shadow: 0 0 8px currentColor;
    animation: eyebrow-blink 2.4s ease-in-out infinite; flex-shrink: 0;
}

/* Section header */
.f-section-header { text-align: center; margin-bottom: var(--space-7); }
.f-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; color: var(--f-dark);
    letter-spacing: -.03em; margin-bottom: var(--space-3); text-wrap: balance;
}
.f-section-title--light { color: white; }
.f-section-sub { font-size: 17px; color: var(--f-muted); max-width: 52ch; margin: 0 auto; line-height: 1.6; }
.f-section-sub--light { color: rgba(255,255,255,.72); }
.f-body-text { font-size: 17px; line-height: 1.75; color: var(--f-muted); margin: 0; }

/* ── Video Hero ── */
.f-hero {
    position: relative; height: 100vh; min-height: 580px;
    overflow: hidden; display: flex; align-items: center;
}
.f-hero__media { position: absolute; inset: 0; }
.f-hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.f-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12,23,84,.88) 0%, rgba(136,32,200,.45) 100%);
}
.f-hero__inner {
    position: relative; z-index: 1; color: white;
    max-width: 720px; padding-top: 80px;
}
.f-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600; line-height: 1.02; letter-spacing: -.04em;
    color: white; margin-bottom: var(--space-4); text-wrap: balance;
}
.f-hero__grad {
    background: linear-gradient(110deg, #a78bfa 0%, #8820C8 40%, #2555F5 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.f-hero__sub {
    font-size: 18px; line-height: 1.65;
    color: rgba(255,255,255,.85); max-width: 54ch;
    margin-bottom: var(--space-6); text-wrap: pretty;
}
.f-hero__coming-soon {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--r-pill); color: rgba(255,255,255,.9);
    font-size: 13px; font-weight: 500; backdrop-filter: blur(12px);
}
.f-hero__scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.4); font-size: 22px;
    animation: f-bounce 2s ease-in-out infinite;
}
@keyframes f-bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%     { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
.f-stats-bar { background: var(--f-blue); padding: var(--space-5) 0; }
.f-stats-grid { display: flex; align-items: center; justify-content: center; gap: var(--space-6); flex-wrap: wrap; }
.f-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.f-stat__num { font-family: var(--font-display); font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: white; line-height: 1; }
.f-stat__lbl { font-size: 11px; color: rgba(255,255,255,.72); letter-spacing: .07em; text-transform: uppercase; font-weight: 500; }
.f-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* ── Story Section ── */
.f-story { background: white; padding: clamp(var(--space-8),8vw,var(--space-12)) 0; }
.f-story__grid {
    display: grid; grid-template-columns: 3fr 2fr;
    gap: clamp(var(--space-6),5vw,var(--space-10)); align-items: start;
}
.f-story__question {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    color: var(--f-purple); margin: var(--space-6) 0 var(--space-3); letter-spacing: -.01em;
}
.f-story__card {
    background: white; border: 1px solid var(--f-card-border);
    border-radius: 18px; padding: var(--space-5); margin-bottom: var(--space-4);
    box-shadow: 0 2px 16px rgba(37,85,245,.07);
}
.f-story__card--highlight {
    background: linear-gradient(135deg, rgba(37,85,245,.05) 0%, rgba(136,32,200,.04) 100%);
    border-color: rgba(136,32,200,.22);
}
.f-story__card-icon { font-size: 28px; margin-bottom: var(--space-2); line-height: 1; }
.f-story__card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--f-dark); margin: 0 0 var(--space-2); }
.f-story__card-text { font-size: 14.5px; line-height: 1.7; color: var(--f-muted); margin: 0; }

/* ── Carousel ── */
.f-carousel-section { background: var(--f-dark); padding: clamp(var(--space-8),6vw,var(--space-10)) 0; }
.f-carousel { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-6); }
.f-carousel__track { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-3); flex: 1; }
.f-carousel__item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.f-carousel__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.f-carousel__item:hover img { transform: scale(1.06); }
.f-carousel__item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,85,245,.4), rgba(136,32,200,.4));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .25s;
}
.f-carousel__item:hover .f-carousel__item-overlay { opacity: 1; }
.f-carousel__btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
    color: white; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background .22s, border-color .22s, transform .22s;
}
.f-carousel__btn:hover { background: var(--f-blue); border-color: var(--f-blue); transform: scale(1.08); }
.f-carousel__counter { text-align: center; margin-top: var(--space-4); font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .08em; }

/* ── Skills ── */
.f-skills-section { background: var(--f-card); padding: var(--space-10) 0; }
.f-skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); }
.f-skill-card {
    background: white; border: 1px solid var(--f-card-border);
    border-radius: 16px; padding: var(--space-5);
    transition: transform .22s ease, box-shadow .22s ease;
}
.f-skill-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,85,245,.14); }
.f-skill-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(37,85,245,.1); color: var(--f-blue);
    display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3);
}
.f-skill-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--f-dark); margin: 0 0 var(--space-2); }
.f-skill-desc { font-size: 14px; line-height: 1.65; color: var(--f-muted); margin: 0; }

/* ── Partners ── */
.f-partners-section { background: white; padding: var(--space-10) 0; }
.f-partners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); }
.f-partner-card {
    background: var(--f-card); border: 1px solid var(--f-card-border);
    border-radius: 16px; padding: var(--space-5);
    display: flex; gap: var(--space-4); align-items: flex-start;
    box-shadow: 0 2px 12px rgba(37,85,245,.06);
}
.f-partner-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-partner-icon--violet { background: rgba(136,32,200,.12); color: #8820C8; }
.f-partner-icon--amber  { background: rgba(37,85,245,.12);  color: #2555F5; }
.f-partner-icon--teal   { background: rgba(90,55,230,.12);  color: #5537E6; }
.f-partner-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--f-dark); margin: 0 0 var(--space-2); }
.f-partner-desc { font-size: 14px; line-height: 1.65; color: var(--f-muted); margin: 0; }

/* ── Back CTA ── */
.f-back-section { background: var(--f-grad); background: linear-gradient(135deg, #2555F5, #8820C8); padding: var(--space-7) 0; }
.f-back__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.f-back__text { color: rgba(255,255,255,.9); font-size: 17px; font-weight: 500; margin: 0; }
.f-back__btn {
    display: inline-flex; align-items: center; padding: 12px 28px;
    background: white; color: var(--f-blue);
    border-radius: var(--r-pill); text-decoration: none;
    font-weight: 700; font-family: var(--font-display); font-size: 14px;
    transition: transform .2s, box-shadow .2s;
}
.f-back__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ── Foundation Responsive ── */
@media (max-width: 1024px) {
    .f-skills-grid   { grid-template-columns: repeat(2,1fr); }
    .f-partners-grid { grid-template-columns: 1fr; }
    .f-story__grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .f-carousel__track { grid-template-columns: 1fr; }
    .f-carousel__track .f-carousel__item:nth-child(2),
    .f-carousel__track .f-carousel__item:nth-child(3) { display: none; }
    .f-stat-divider { display: none; }
    .f-stats-grid { gap: var(--space-4); }
}
@media (max-width: 640px) {
    .f-skills-grid { grid-template-columns: 1fr; }
    .f-back__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL REVEAL — entrance animations driven by JS observer
   ============================================================ */

/* Individual reveal elements */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.93) translateY(16px); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger container — children start hidden */
[data-reveal="stagger"] {
    opacity: 1;
    transform: none;
    transition: none;
}
[data-reveal="stagger"] > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity  0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
[data-reveal="stagger"] > *.is-visible {
    opacity: 1;
    transform: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal="stagger"] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

