/* =========================================
   BRANDMORPH AI — LIGHT EDITORIAL THEME
   ========================================= */

:root {
    /* Palette — Indigo Future: light & airy, deep indigo + violet accent */
    --bg:       #FAFAFE;    /* near-white, cool */
    --bg-alt:   #FFFFFF;    /* pure white */
    --bg-soft:  #F1F0FA;    /* soft lavender-white */
    --bg-dark:  #16142E;    /* deep indigo */
    --bg-darker:#0E0C20;    /* deeper indigo panel */

    /* Section tints — white / indigo-tint alternation */
    --tint-blush: #F3F2FB;   /* indigo tint */
    --tint-mist:  #FFFFFF;   /* white */
    --tint-rose:  #F3F2FB;   /* indigo tint */
    --tint-cream: #FFFFFF;   /* white */
    --tint-pearl: #F3F2FB;   /* indigo tint */
    --tint-sand:  #FFFFFF;   /* white */
    --tint-sage:  #F3F2FB;   /* indigo tint */

    --ink:      #14132A;
    --ink-1:    #2A2842;
    --ink-2:    #595677;
    --ink-3:    #8B88A3;
    --ink-4:    #B8B6C9;

    --border:   rgba(20, 19, 42, 0.08);
    --border-hi:rgba(20, 19, 42, 0.18);
    --border-lo:rgba(20, 19, 42, 0.04);

    --accent:    #6366F1;    /* indigo */
    --accent-hi: #8B5CF6;    /* violet */
    --accent-lo: #4F46E5;    /* deep indigo */
    --rose:      #8B5CF6;    /* violet — ambient accent */
    --live:      #22C55E;    /* live status green */

    --grad-hero: radial-gradient(ellipse at 20% 0%, rgba(99,102,241,0.13), transparent 50%),
                 radial-gradient(ellipse at 80% 100%, rgba(139,92,246,0.10), transparent 55%);

    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-tight: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-emph:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-disp:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:  'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

    --container: 1360px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 28px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-1);
    background: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
    font-feature-settings: 'ss01', 'cv11', 'kern';
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }
em {
    font-style: normal;
    font-family: var(--font-emph);
    font-weight: 400;
    letter-spacing: -0.005em;
}
::selection { background: var(--ink); color: var(--bg); }

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 640px) { .container { padding: 0 22px; } }

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed; inset: 0; z-index: 1000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__word {
    display: flex; gap: 2px;
    justify-content: center;
    font-family: var(--font-disp);
    font-weight: 400; font-style: normal;
    font-size: clamp(38px, 6vw, 76px); line-height: 1;
    color: var(--ink); letter-spacing: -0.012em;
    margin-bottom: 32px;
}
.preloader__word span {
    display: inline-block;
    opacity: 0; transform: translateY(40px);
    animation: word-reveal 0.9s var(--ease-out) forwards;
}
.preloader__word span:nth-child(1){animation-delay:.05s}
.preloader__word span:nth-child(2){animation-delay:.10s}
.preloader__word span:nth-child(3){animation-delay:.15s}
.preloader__word span:nth-child(4){animation-delay:.20s}
.preloader__word span:nth-child(5){animation-delay:.25s}
.preloader__word span:nth-child(6){animation-delay:.30s}
.preloader__word span:nth-child(7){animation-delay:.35s}
.preloader__word span:nth-child(8){animation-delay:.40s}
.preloader__word span:nth-child(9){animation-delay:.45s}
.preloader__word span:nth-child(10){animation-delay:.50s}
.preloader__word span:nth-child(11){animation-delay:.55s}
.preloader__word span:nth-child(12){animation-delay:.60s}
.preloader__word span:nth-child(13){animation-delay:.65s}
@keyframes word-reveal { to { opacity: 1; transform: translateY(0); } }

.preloader__bar { width: 240px; height: 1px; margin: 0 auto; background: var(--border); overflow: hidden; }
.preloader__fill { width: 0; height: 100%; background: var(--ink); animation: bar-fill 1.6s var(--ease-out) 0.6s forwards; }
@keyframes bar-fill { to { width: 100%; } }
.preloader__label {
    margin-top: 18px;
    font-family: var(--font-disp);
    font-style: normal;
    font-size: 13px; color: var(--ink-3);
    opacity: 0; animation: fade-in 0.6s var(--ease-out) 1s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* =========================================
   AMBIENT + GRAIN
   ========================================= */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient__blob {
    position: absolute; border-radius: 50%;
    filter: blur(140px); opacity: 0.35;
    animation: blob 28s ease-in-out infinite;
}
.ambient__blob--1 {
    width: 720px; height: 720px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
    top: -220px; left: -160px;
    opacity: 0.18;
}
.ambient__blob--2 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, var(--rose), transparent 65%);
    bottom: 12%; right: -120px;
    opacity: 0.10;
    animation-delay: -14s;
}
@keyframes blob {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(60px, -60px) scale(1.15); }
}
.grain { display: none; }

/* =========================================
   SCROLL PROGRESS — top editorial rule
   ========================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(18,18,18,0.06);
    z-index: 700;
    pointer-events: none;
}
.scroll-progress__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-lo) 0%, var(--accent) 50%, var(--accent-hi) 100%);
    transform-origin: left;
    transition: width 0.08s linear;
    box-shadow: 0 0 12px rgba(99,102,241,0.5);
}

/* =========================================
   SCENE INDEX — editorial section counter
   ========================================= */
.scene-index {
    position: fixed;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    z-index: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
    font-family: var(--font-mono);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
}
.scene-index.is-visible { opacity: 1; }
.scene-index__rail {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--ink-3), transparent);
}
.scene-index__num {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    transition: color 0.4s;
}
.scene-index__divider {
    font-size: 13px;
    color: var(--ink-4);
    transform: rotate(18deg);
    line-height: 0.8;
}
.scene-index__total {
    font-size: 13px;
    color: var(--ink-3);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}
.scene-index__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 10px;
    font-weight: 500;
    transition: color 0.4s;
}
.scene-index.on-dark .scene-index__num,
.scene-index.on-dark .scene-index__label { color: rgba(255,255,255,0.9); }
.scene-index.on-dark .scene-index__total,
.scene-index.on-dark .scene-index__divider { color: rgba(255,255,255,0.4); }
.scene-index.on-dark .scene-index__rail {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
}
@media (max-width: 1200px) { .scene-index { display: none; } }

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    transition: all 0.4s var(--ease-out);
}
.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px 40px;
    display: flex; align-items: center; gap: 40px;
}
.header.is-scrolled {
    background: rgba(250, 250, 254, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.header.is-scrolled .header__inner { padding: 14px 40px; }
@media (max-width: 640px) { .header__inner, .header.is-scrolled .header__inner { padding: 16px 22px; } }

.logo {
    display: inline-flex; align-items: baseline; gap: 0.24em;
    font-family: var(--font-disp);
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.018em;
    color: var(--ink);
    white-space: nowrap;
}
.logo__name { font-weight: 600; }
.logo__accent {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
    padding: 8px 16px;
    font-family: var(--font-tight);
    font-size: 14px; color: var(--ink-2);
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 100px;
    transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav__link::before {
    content: attr(data-count);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ink-4);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), color 0.3s;
}
.nav__link:hover { color: var(--ink); background: rgba(18,18,18,0.05); }
.nav__link:hover::before { opacity: 1; transform: translateX(0); color: var(--accent); }
.nav__link--current { color: var(--accent); }
.nav__link--current::before { opacity: 1; transform: translateX(0); color: var(--accent); }
@media (max-width: 960px) { .nav { display: none; } }

.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (max-width: 960px) { .header__actions { margin-left: auto; } }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    font-family: var(--font-tight);
    font-size: 14px; font-weight: 600;
    letter-spacing: -0.012em;
    border-radius: 100px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), color 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    isolation: isolate;
    overflow: hidden;
}
.btn > svg { transition: transform 0.5s var(--ease-spring); }
.btn:hover > svg { transform: translateX(4px); }

.btn--primary {
    background: var(--ink); color: var(--bg);
    box-shadow: 0 2px 0 rgba(255,255,255,0.08) inset, 0 8px 20px -10px rgba(18,18,18,0.4);
}
.btn--primary::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, var(--accent-lo) 0%, var(--accent-hi) 55%, var(--accent-lo) 100%);
    opacity: 0; transition: opacity 0.5s var(--ease-out);
    z-index: -1;
}
.btn--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.9s var(--ease-out);
    z-index: -1;
    pointer-events: none;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(99, 102, 241, 0.5), 0 4px 12px -6px rgba(79, 70, 229, 0.35);
    color: #fff;
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
    color: var(--ink-2);
    font-weight: 500;
}
.btn--ghost:hover { color: var(--ink); background: rgba(18,18,18,0.04); }

.btn--outline {
    color: var(--ink);
    border: 1px solid var(--ink);
    background: transparent;
}
.btn--outline:hover {
    background: rgba(18,18,18,0.06);
}

.btn--large { padding: 18px 30px; font-size: 15px; }
.btn--full { width: 100%; }

/* =========================================
   DISPLAY TYPOGRAPHY — tighter editorial tune
   ========================================= */
.hero__title,
.section-title,
.chapter__display,
.sia__title,
.showcase__title,
.about__title,
.cta__title,
.custom__title,
.vision__quote,
.footer__wordmark {
    font-feature-settings: 'kern', 'liga', 'calt', 'dlig';
    font-optical-sizing: auto;
    text-wrap: balance;
}

/* =========================================
   CHAPTER MARKER — Apple-style scene break
   ========================================= */
.chapter {
    padding: clamp(140px, 18vw, 240px) 0 clamp(80px, 10vw, 140px);
    position: relative;
    text-align: center;
}
.chapter + section { padding-top: clamp(40px, 6vw, 80px); }
.chapter--dark { background: var(--bg-dark); color: #fff; }
.chapter--dark + section { padding-top: clamp(60px, 7vw, 100px); }

.chapter__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}
.chapter__kicker {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: clamp(28px, 3vw, 44px);
    font-weight: 600;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);
}
.chapter__kicker::before,
.chapter__kicker::after {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}
.chapter__kicker::after { background: var(--ink); box-shadow: none; width: 4px; height: 4px; opacity: 0.4; }
.chapter--dark .chapter__kicker {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.14);
}
.chapter--dark .chapter__kicker::before { background: var(--accent-hi); box-shadow: 0 0 10px var(--accent-hi); }
.chapter--dark .chapter__kicker::after { background: #fff; opacity: 0.3; }

.chapter__display {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(22px, 3.5vw, 52px);
    line-height: 0.86;
    white-space: nowrap;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.chapter--dark .chapter__display { color: #fff; }

.chapter__display em {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.chapter--dark .chapter__display em { color: var(--accent-hi); }

.chapter__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: clamp(40px, 5vw, 72px);
    flex-wrap: wrap;
}
.chapter__rule {
    width: clamp(40px, 7vw, 100px);
    height: 1px;
    background: var(--ink-3);
    transition: width 1.4s var(--ease-out) 0.1s;
}
.chapter--dark .chapter__rule { background: rgba(255,255,255,0.3); }
.chapter__inner[data-reveal] .chapter__rule { width: 0; }
.chapter__inner[data-reveal].is-visible .chapter__rule { width: clamp(40px, 7vw, 100px); }

.chapter__caption {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
}
.chapter--dark .chapter__caption { color: rgba(255,255,255,0.6); }

@media (max-width: 640px) {
    .chapter { padding: 100px 0 60px; }
    .chapter__foot { gap: 14px; }
}

/* =========================================
   SECTION COMMON
   ========================================= */
.section-head { margin-bottom: clamp(64px, 8vw, 110px); max-width: 1000px; }
.section-head--split {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px;
    max-width: 100%;
    align-items: end;
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-eyebrow { justify-content: center; }
@media (max-width: 900px) { .section-head--split { grid-template-columns: 1fr; gap: 36px; } }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 32px;
    font-weight: 500;
    font-family: var(--font-mono);
}
.eyebrow__line {
    width: 40px; height: 1px;
    background: var(--ink-2);
    display: inline-block;
}
.eyebrow__mark {
    margin-left: auto;
    font-family: var(--font-mono);
    color: var(--ink-3);
    letter-spacing: 0.1em;
}
.section-title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 84px);
    line-height: 1.18;
    letter-spacing: -0.028em;
    color: var(--ink);
}
.section-title em {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.section-title--center { text-align: center; }
.agents .section-title,
.gallery .section-title {
    font-size: clamp(26px, 4vw, 60px);
    white-space: nowrap;
}
@media (max-width: 720px) {
    .agents .section-title,
    .gallery .section-title { white-space: normal; font-size: clamp(28px, 7vw, 44px); }
}
.section-lead {
    font-size: 18px;
    color: var(--ink-2);
    margin-top: 24px;
    font-weight: 300;
    line-height: 1.6;
}
.section-lead--right { margin-top: 0; align-self: end; }

/* =========================================
   HERO
   ========================================= */
.hero {
    padding: 160px 0 0;
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    background: var(--grad-hero);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.6), transparent 55%),
        linear-gradient(180deg, transparent 60%, rgba(10,10,12,0.04));
    pointer-events: none;
    z-index: 0;
}
.hero__container { position: relative; z-index: 1; }
.hero__container {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 120px;
}
@media (max-width: 1100px) { .hero__container { grid-template-columns: 1fr; gap: 80px; padding-bottom: 80px; } }

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-1);
    margin-bottom: 44px;
    backdrop-filter: blur(6px);
    font-weight: 500;
}
.hero__eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 72px);
    line-height: 1.18;
    letter-spacing: -0.032em;
    color: var(--ink);
    margin-bottom: 44px;
}
.hero__title .line { display: block; overflow: hidden; padding: 0.02em 0; }
.hero__title [data-split] {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s var(--ease-out);
}
.hero__title em {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
    padding-right: 0.02em;
    letter-spacing: -0.015em;
}
.is-loaded .hero__title [data-split] { transform: translateY(0); }
.is-loaded .hero__title .line:nth-child(1) [data-split] { transition-delay: 0.05s; }
.is-loaded .hero__title .line:nth-child(1) [data-split]:nth-child(2) { transition-delay: 0.15s; }
.is-loaded .hero__title .line:nth-child(2) [data-split] { transition-delay: 0.25s; }
.is-loaded .hero__title .line:nth-child(2) [data-split]:nth-child(2) { transition-delay: 0.35s; }
.is-loaded .hero__title .line:nth-child(2) [data-split]:nth-child(3) { transition-delay: 0.4s; }
.is-loaded .hero__title .line:nth-child(3) [data-split] { transition-delay: 0.48s; }
.is-loaded .hero__title .line:nth-child(3) [data-split]:nth-child(2) { transition-delay: 0.55s; }

.hero__sub {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--ink-2);
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.005em;
}
.hero__sub strong {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    font-size: 1.1em;
    color: var(--ink);
    padding: 0 0.04em;
    letter-spacing: -0.01em;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }

/* Hero stats row — cinematic specimen grid */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    max-width: 620px;
}
.hstat {
    padding: 22px 22px 22px 0;
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
}
.hstat + .hstat {
    padding-left: 22px;
    border-left: 1px solid var(--border);
}
.hstat__ref {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--ink-4);
    text-transform: uppercase;
    margin-bottom: -2px;
}
.hstat__k {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 0.92;
    letter-spacing: -0.024em;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.hstat__k em {
    font-family: var(--font-emph);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.hstat__unit {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding-left: 2px;
}
.hstat:nth-child(2) .hstat__k { color: var(--accent); }
.hstat:nth-child(2) .hstat__unit { color: var(--accent-lo); }
.hstat:nth-child(3) .hstat__k em { color: var(--accent); }
.hstat__v {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    line-height: 1.5;
}
@media (max-width: 560px) {
    .hero__stats { grid-template-columns: 1fr; }
    .hstat + .hstat { padding-left: 0; border-left: none; border-top: 1px solid var(--border); }
}

/* Hero stage — floating image mosaic */
.hero__stage {
    position: relative;
    height: clamp(460px, 60vh, 640px);
}
.stage {
    position: absolute; inset: 0;
}
.stage__img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(26, 24, 20, 0.35), 0 10px 30px -10px rgba(26, 24, 20, 0.18);
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s;
    opacity: 0;
    animation: stage-rise 1.2s var(--ease-out) forwards;
}
.stage__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 1.6s var(--ease-out);
}
.stage__img figcaption {
    position: absolute; bottom: 10px; left: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    background: rgba(18,18,18,0.7);
    color: #fff;
    padding: 5px 9px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(4px);
    transition: 0.3s;
}
.stage__img:hover figcaption { opacity: 1; transform: translateY(0); }
.stage__img:hover img { transform: scale(1.08); }

.stage__img--1 { top: 2%; left: 2%; width: 42%; height: 46%; animation-delay: 0.3s; transform: rotate(-3deg); }
.stage__img--2 { top: 8%; right: 6%; width: 46%; height: 38%; animation-delay: 0.45s; transform: rotate(2deg); z-index: 2; }
.stage__img--3 { top: 50%; left: 22%; width: 38%; height: 38%; animation-delay: 0.6s; transform: rotate(-2deg); z-index: 3; }
.stage__img--4 { top: 48%; right: 2%; width: 40%; height: 44%; animation-delay: 0.75s; transform: rotate(4deg); z-index: 2; }
.stage__img--5 { top: 38%; left: 0%; width: 32%; height: 34%; animation-delay: 0.9s; transform: rotate(-6deg); }

@keyframes stage-rise {
    from { opacity: 0; transform: translateY(40px) scale(0.9) rotate(var(--r, 0deg)); }
    to   { opacity: 1; }
}

.stage__badge {
    position: absolute; bottom: -20px; right: -10px;
    z-index: 10;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 22px 14px 16px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 100px;
    box-shadow: 0 20px 40px -20px rgba(26,24,20,0.6);
    opacity: 0;
    animation: stage-rise 1s var(--ease-out) 1.3s forwards;
}
.stage__badge-pulse {
    position: relative;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
}
.stage__badge-pulse::after {
    content: ""; position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    animation: ring 1.8s var(--ease-out) infinite;
}
@keyframes ring {
    from { transform: scale(0.8); opacity: 1; }
    to { transform: scale(1.8); opacity: 0; }
}
.stage__badge-text { display: flex; flex-direction: column; line-height: 1; }
.stage__badge-text strong { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.stage__badge-text em {
    font-family: var(--font-disp);
    font-style: normal;
    font-size: 12px; color: var(--ink-4);
    margin-top: 2px;
}

/* Strip caption */
.strip__caption {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 24px;
    text-align: center;
}
.strip__caption-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 18px;
}
.strip__caption-eyebrow .eyebrow__line {
    width: 36px; height: 1px;
    background: var(--ink-3);
    display: inline-block;
}
.strip__caption-title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(20px, 2.6vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 14px;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .strip__caption-title { white-space: normal; }
}
.strip__caption-title em {
    color: var(--accent);
    font-style: normal;
    font-family: var(--font-emph);
    font-weight: 400;
}
.strip__caption-sub {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
}

/* Infinite strip */
.strip {
    overflow: hidden;
    padding: 0 0 40px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.strip__track {
    display: flex; gap: 26px;
    animation: strip 50s linear infinite;
    width: max-content;
}
.strip.is-paused .strip__track,
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item {
    width: 300px; height: 400px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.strip__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.strip__overlay span {
    font-family: var(--font-disp);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #ffffff;
}
.strip__item .strip__overlay img {
    width: auto;
    max-width: 75%;
    height: 26px;
    object-fit: contain;
    filter: none;
}
.strip__item:hover .strip__overlay { opacity: 1; }
.strip__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
    filter: saturate(0.9);
}
.is-zoomable { cursor: zoom-in; }
.strip__item:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gallery__row.is-paused .gallery__track,
.gallery__row:hover .gallery__track { animation-play-state: paused; }
@keyframes strip { to { transform: translateX(-50%); } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    padding: clamp(20px, 5vw, 60px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox__frame { transform: scale(1); }
.lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto; height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__watermark {
    position: absolute;
    bottom: 16px; right: 16px;
    height: clamp(36px, 5.5vh, 64px);
    width: auto;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.lightbox__close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.05); }
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }
@media (max-width: 600px) {
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
}

/* =========================================
   PROMISE
   ========================================= */
.promise {
    padding: clamp(100px, 13vw, 180px) 0 clamp(80px, 11vw, 160px);
    border-top: 1px solid var(--border);
}
.promise__line {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(26px, 3.8vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--ink);
    max-width: 1100px;
}
.promise__line span { display: block; }
.promise__line em { color: var(--accent); font-family: var(--font-emph); font-style: normal; font-weight: 400; }

/* =========================================
   SIA SECTION
   ========================================= */
.sia { padding: 120px 0 160px; position: relative; background: var(--bg-dark); color: #fff; }
.sia .sia__eyebrow { color: rgba(255,255,255,0.7); }
.sia .sia__eyebrow .eyebrow__line { background: rgba(255,255,255,0.5); }
.sia .sia__title { color: #ffffff; }
.sia .sia__sub { color: rgba(255,255,255,0.78); }
.sia .slider__btn { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }
.sia .slider__btn:hover { background: #fff; color: #000; border-color: #fff; }
.sia .slider__count { color: #fff; }
.sia .slider__count-sep { color: rgba(255,255,255,0.5); }
.sia .slider__bar { background: rgba(255,255,255,0.15); }
.sia .slider__bar-fill { background: #fff; }
.sia .feat h4 { color: var(--ink); }
.sia .feat p { color: var(--ink-2); }
.sia .feat__icon { color: var(--accent); }
.sia .feat { background: var(--bg-alt); border-color: var(--border); }
.sia__head { max-width: 960px; margin-bottom: 100px; }
.sia__eyebrow { display: flex; align-items: center; gap: 14px; }
.sia__eyebrow { font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 28px; font-weight: 500; width: 100%; max-width: 720px; font-family: var(--font-mono); }
.sia__eyebrow .eyebrow__line { background: var(--ink-2); }
.sia__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 58px);
    line-height: 1.18;
    letter-spacing: -0.026em;
    color: var(--ink);
    margin-bottom: 32px;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .sia__title { white-space: normal; font-size: clamp(28px, 6.5vw, 42px); }
}
.sia__title em { color: var(--accent); font-style: normal; font-weight: 400; font-family: var(--font-emph); letter-spacing: -0.01em; }
.sia__sub {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.6;
    font-weight: 300;
}

/* Use-case slider — full-bleed, center-focused */
.slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 60px;
    margin-bottom: 100px;
    padding: 0 40px;
    box-sizing: border-box;
}
.slider__viewport {
    overflow: hidden;
}
.slider__track {
    display: flex;
    gap: 18px;
    transition: transform 0.7s var(--ease-out);
    will-change: transform;
}
.slide {
    flex: 0 0 min(1280px, calc(100vw - 200px));
    position: relative;
    cursor: pointer;
}
.slide__media {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(26,24,20,0.28), 0 10px 30px -12px rgba(26,24,20,0.12);
}
.slide__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ease-out), filter 0.6s var(--ease-out);
    filter: saturate(0.92);
}
.slide:not(.is-active) .slide__media img { filter: saturate(0.7) brightness(0.82); }
.slide.is-active .slide__media img { transform: scale(1.02); }
.slide__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}
.slide__label { display: none; }
.slide__label--keep {
    position: absolute; left: 36px; top: 36px;
    color: #fff;
    font-family: var(--font-disp);
    font-weight: 500;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.012em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
    z-index: 2;
    max-width: 75%;
}

.slider__nav {
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: fit-content;
}
.slider__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(18,18,18,0.18);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.slider__btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.slider__progress {
    display: flex;
    align-items: center;
    gap: 22px;
}
.slider__count {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.slider__count-sep { color: var(--ink-3); }
.slider__bar {
    position: relative;
    width: 180px;
    height: 1px;
    background: rgba(18,18,18,0.16);
}
.slider__bar-fill {
    position: absolute;
    left: 0; top: -1px;
    height: 3px;
    background: var(--ink);
    width: 0%;
    transition: width 0.5s var(--ease-out);
}
@media (max-width: 640px) {
    .slider__nav { gap: 16px; }
    .slider__progress { gap: 14px; }
    .slider__bar { width: 100px; }
}

@media (max-width: 800px) {
    .slider { padding: 0 20px; }
    .slide { flex: 0 0 calc(100vw - 60px); }
    .slide__media { aspect-ratio: 4 / 5; }
}

/* SIA Features */
.sia__features {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}
@media (max-width: 900px) { .sia__features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .sia__features { grid-template-columns: 1fr; } }

.feat {
    padding: 32px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease-out);
}
.feat:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(26,24,20,0.15);
}
.feat__icon {
    width: 36px; height: 36px;
    color: var(--accent);
    margin-bottom: 28px;
}
.feat h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}
.feat p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
}

/* =========================================
   SHOWCASE (Sweets / Jewel)
   ========================================= */
.showcase {
    padding: 120px 0 120px;
    position: relative;
}
.showcase--sweets { background: var(--tint-rose); }
.showcase--jewel {
    background: var(--bg-dark);
    color: var(--bg);
}
.showcase--jewel .section-eyebrow,
.showcase--jewel .showcase__meta { color: var(--ink-4); }
.showcase--jewel .eyebrow__line { background: var(--ink-4); }
.showcase--jewel .showcase__title { color: #fff; }
.showcase--jewel .showcase__title em { color: var(--accent-hi); }
.showcase--jewel .showcase__sub { color: #ADA9C6; }
.showcase--jewel .showcase__foot p { color: #ADA9C6; }
.showcase--jewel .btn--outline { color: #fff; border-color: #fff; }
.showcase--jewel .btn--outline:hover { background: #fff; color: var(--ink); }

.showcase__head {
    max-width: 920px;
    margin-bottom: clamp(56px, 6vw, 96px);
}
.showcase__head--reversed { margin-left: auto; text-align: right; }
.showcase__head--reversed .section-eyebrow,
.showcase__head--reversed .showcase__meta { justify-content: flex-end; }
.showcase__head--reversed .showcase__sub { margin-left: auto; }

.showcase__meta {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 28px;
    font-weight: 500;
    font-family: var(--font-mono);
}
.showcase__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(28px, 3.8vw, 60px);
    line-height: 1.18;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 28px;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .showcase__title { white-space: normal; font-size: clamp(28px, 6.5vw, 42px); }
}
.showcase__title em { color: var(--accent); font-style: normal; font-weight: 400; font-family: var(--font-emph); letter-spacing: -0.01em; }
.showcase__sub {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.6;
    font-weight: 300;
}

/* Mosaic */
.mosaic {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
}
.mosaic__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
    box-shadow: 0 18px 40px -18px rgba(26,24,20,0.22);
    cursor: pointer;
    background: #1a1a1f;
}
.showcase--jewel .mosaic__item { box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6); }
.mosaic__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform 1s var(--ease-out);
}
/* Fashion mosaic: faces sit higher → preserve heads */
.showcase--fashion .mosaic__item img { object-position: center 15%; }
/* For tall portrait cells (span 2 rows), give the image more room — use top */
.mosaic__item.mosaic__item--a img,
.mosaic__item.mosaic__item--j1 img { object-position: center 18%; }
.mosaic__item:hover { transform: translateY(-6px); }
.mosaic__item:hover img { transform: scale(1.06); }

.mosaic__item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.mosaic__item:hover::after { opacity: 1; }

.mosaic__meta { display: none; }
.stage__img figcaption { display: none; }
.mosaic__tag { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.mosaic__spec { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; }

/* mosaic layout — sweets */
.mosaic--sweets .mosaic__item--a { grid-column: span 3; grid-row: span 2; }
.mosaic--sweets .mosaic__item--b { grid-column: span 2; }
.mosaic--sweets .mosaic__item--c { grid-column: span 1; }
.mosaic--sweets .mosaic__item--d { grid-column: span 2; grid-row: span 1; }
.mosaic--sweets .mosaic__item--e { grid-column: span 1; }
.mosaic--sweets .mosaic__item--f { grid-column: span 6; }

/* mosaic layout — jewel */
.mosaic--jewel .mosaic__item--j1 { grid-column: span 2; grid-row: span 2; }
.mosaic--jewel .mosaic__item--j2 { grid-column: span 2; }
.mosaic--jewel .mosaic__item--j3 { grid-column: span 2; }
.mosaic--jewel .mosaic__item--j4 { grid-column: span 2; grid-row: span 1; }
.mosaic--jewel .mosaic__item--j5 { grid-column: span 2; grid-row: span 1; }
.mosaic--jewel .mosaic__item--j6 { grid-column: span 6; }

@media (max-width: 900px) {
    .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .mosaic__item, .mosaic__item--a, .mosaic__item--b, .mosaic__item--c, .mosaic__item--d, .mosaic__item--e, .mosaic__item--f,
    .mosaic__item--j1, .mosaic__item--j2, .mosaic__item--j3, .mosaic__item--j4, .mosaic__item--j5, .mosaic__item--j6 {
        grid-column: span 1; grid-row: span 1;
    }
    .mosaic__item--a, .mosaic__item--j1 { grid-column: span 2; grid-row: span 2; }
}

.showcase__foot {
    margin-top: 40px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.showcase__foot p {
    font-family: var(--font-disp);
    font-style: normal;
    font-size: 18px;
    color: var(--ink-2);
}

/* =========================================
   HOW
   ========================================= */
.how {
    padding: 140px 0 120px;
    background: var(--tint-cream);
    border-top: 1px solid var(--border);
}
.steps {
    display: flex; align-items: stretch;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.step {
    flex: 1 1 220px;
    min-width: 220px;
    padding: 32px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    transition: 0.4s var(--ease-out);
}
.step:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(26,24,20,0.15);
}
.step__num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-3);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.step__icon {
    width: 40px; height: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}
.step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
}
.step__arrow {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-disp);
    font-style: normal;
    font-size: 32px;
    color: var(--ink-4);
    padding: 0 4px;
}
@media (max-width: 900px) { .step__arrow { display: none; } }

/* =========================================
   GALLERY (infinite dual-row)
   ========================================= */
.gallery { padding: 120px 0 140px; background: var(--tint-pearl); }
.gallery__row {
    overflow: hidden;
    padding: 20px 0;
}
.gallery__row--1 { margin-top: 40px; }
.gallery__track {
    display: inline-flex; gap: 20px;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}
.gallery__track--left { animation: gallery 60s linear infinite; }
.gallery__track--right { animation: gallery 70s linear infinite reverse; }
@keyframes gallery { to { transform: translateX(-50%); } }

.gcard {
    position: relative;
    width: 320px; height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 18px 40px -18px rgba(26,24,20,0.18);
    transition: transform 0.4s var(--ease-out);
    cursor: pointer;
}
.gcard img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.8s;
}
.gcard span { display: none; }
.gcard span {
    position: absolute; bottom: 14px; left: 14px;
    padding: 6px 11px;
    background: rgba(18,18,18,0.75);
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(6px);
    transition: 0.3s;
    backdrop-filter: blur(8px);
}
.gcard:hover { transform: translateY(-4px) scale(1.02); }
.gcard:hover img { transform: scale(1.08); }
.gcard:hover span { opacity: 1; transform: translateY(0); }

/* =========================================
   AGENTS
   ========================================= */
.agents { padding: 120px 0; background: var(--tint-blush); }
.agents__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
}
.agents__grid .agent--lead { grid-column: 1 / 3; grid-row: 1 / 3; }
.agents__grid > .agent:nth-child(2) { grid-column: 3; grid-row: 1; }
.agents__grid > .agent:nth-child(3) { grid-column: 3; grid-row: 2; }
.agents__grid > .agent:nth-child(4) { grid-column: 1; grid-row: 3; }
.agents__grid > .agent:nth-child(5) { grid-column: 2; grid-row: 3; }
.agents__grid > .agent:nth-child(6) { grid-column: 3; grid-row: 3; }
@media (max-width: 1100px) {
    .agents__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
    .agents__grid .agent--lead,
    .agents__grid > .agent:nth-child(n) { grid-column: auto; grid-row: auto; }
    .agents__grid .agent--lead { grid-column: span 2; }
}
@media (max-width: 640px) {
    .agents__grid { grid-template-columns: 1fr; }
    .agents__grid .agent--lead { grid-column: span 1; }
}

.agent {
    padding: 28px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.agent:hover {
    transform: translateY(-4px);
    border-color: var(--ink);
    box-shadow: 0 20px 50px -20px rgba(26,24,20,0.2);
}

.agent--lead {
    padding: 40px;
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    display: flex; flex-direction: column;
    position: relative;
    overflow: hidden;
}
.agent--lead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/sia_selected/jewelry/aarla-nextech-ai-jewellery-editorial-4.jpeg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.agent--lead > * { position: relative; z-index: 1; }
.agent--lead h3, .agent--lead p { color: inherit; }
.agent--lead .agent__body { color: rgba(255,255,255,0.75); }
.agent--lead .agent__link { margin-top: auto; align-self: flex-start; }
.agent--lead:hover { box-shadow: 0 30px 60px -20px rgba(26,24,20,0.4); }

.agent__tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); background: rgba(99,102,241,0.14);
    border: 1px solid rgba(99,102,241,0.32);
    border-radius: 100px;
    margin-bottom: 24px;
    align-self: flex-start;
}

/* Agent status chips (Live today / Coming soon) */
.agent__status {
    position: absolute;
    top: 18px; right: 18px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px 5px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 100px;
    background: var(--bg-soft);
    color: var(--ink-3);
    border: 1px solid var(--border);
    z-index: 2;
}
.agent__status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink-3);
    position: relative;
}
.agent__status.is-live {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.3);
    color: var(--live);
}
.agent__status.is-live .agent__status-dot {
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: status-pulse 1.8s var(--ease-out) infinite;
}
.agent__status.is-soon {
    background: rgba(18,18,18,0.04);
    border-color: var(--border);
    color: var(--ink-2);
}
.agent--lead .agent__status {
    background: rgba(34,197,94,0.14);
    border-color: rgba(34,197,94,0.45);
    color: #86EFAC;
}
.agent--lead .agent__status.is-live .agent__status-dot { background: #86EFAC; }
@keyframes status-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    80%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.agent__row {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 16px;
}
.agent__code {
    font-family: var(--font-disp);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 0.88;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.agent--lead .agent__code { color: var(--accent-hi); }
.agent__name h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 2px;
}
.agent__name p {
    font-size: 13px;
    color: var(--ink-3);
}
.agent--lead .agent__name h3 { color: #fff; font-size: 22px; }
.agent--lead .agent__name p { color: rgba(255,255,255,0.6); font-size: 15px; }
.agent__body {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
}
.agent__feat {
    list-style: none;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.agent__feat li {
    font-size: 13px; color: rgba(255,255,255,0.8);
    display: flex; align-items: center; gap: 8px;
}
.agent__feat li::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent-hi);
    flex-shrink: 0;
}
.agent__link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    padding: 10px 18px;
    border-radius: 100px;
    background: var(--accent);
    color: var(--ink);
    font-size: 13px; font-weight: 500;
    transition: 0.3s var(--ease-out);
    align-self: flex-start;
}
.agent__link:hover { background: var(--accent-hi); gap: 12px; }

/* Non-lead card feature list — adapt to light card */
.agent:not(.agent--lead) .agent__feat {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
}
.agent:not(.agent--lead) .agent__feat li {
    color: var(--ink-2);
    font-size: 12.5px;
}
.agent:not(.agent--lead) .agent__feat li::before { background: var(--accent); }

/* Subtle notify link for upcoming agents */
.agent__notify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 18px;
    transition: gap 0.3s var(--ease-out), color 0.3s;
}
.agent__notify:hover { gap: 10px; color: var(--accent-lo); border-bottom-color: var(--accent-lo); }
.agent { display: flex; flex-direction: column; }

/* Custom agent */
.custom {
    margin-top: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.custom::before {
    content: ""; position: absolute; top: -40%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
    pointer-events: none;
}
.custom__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 12px 0 16px;
}
.custom__title em { color: var(--accent); font-family: var(--font-emph); font-weight: 400; }
.custom__sub {
    font-size: 16px;
    color: var(--ink-2);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.6;
}
.custom__pills {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-self: end;
}
.custom__pills span {
    padding: 10px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-1);
    transition: 0.3s;
}
.custom__pills span:hover {
    background: var(--ink); color: var(--bg); border-color: var(--ink);
    transform: translateY(-2px);
}
@media (max-width: 900px) { .custom { grid-template-columns: 1fr; padding: 40px 28px; } .custom__pills { justify-self: start; } }

/* =========================================
   INDUSTRIES
   ========================================= */
.industries {
    padding: 120px 0;
    background: var(--tint-sand);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.industries__marquee {
    overflow: hidden;
    padding: 12px 0;
}
.industries__track {
    display: inline-flex; align-items: center;
    gap: 12px;
    white-space: nowrap;
    width: max-content;
    animation: industry-track 60s linear infinite;
}
.industries__track--right { animation: industry-track 70s linear infinite reverse; }
@keyframes industry-track { to { transform: translateX(-50%); } }
.ichip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 32px);
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--bg-alt);
    letter-spacing: -0.01em;
}
.ichip__icon {
    width: 1em; height: 1em;
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.85;
}
.ichip:nth-child(even) {
    font-style: normal;
    color: var(--accent);
    background: transparent;
    border-color: var(--accent);
}

/* =========================================
   ABOUT
   ========================================= */
.about {
    padding: 140px 0;
    background: var(--tint-blush);
    border-top: 1px solid var(--border);
}
.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 1000px) { .about__grid { grid-template-columns: 1fr; gap: 60px; } }

.about__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.026em;
    color: var(--ink);
    margin-bottom: 36px;
}
.about__title em { color: var(--accent); font-style: normal; font-weight: 400; font-family: var(--font-emph); letter-spacing: -0.01em; }
.about__lead {
    font-size: 19px;
    color: var(--ink-1);
    line-height: 1.55;
    margin-bottom: 18px;
    font-weight: 300;
}
.about__text p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }

.about__stats {
    margin-top: 40px;
    display: flex; flex-direction: row; gap: 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.astat {
    padding: 16px 20px 16px 0;
    display: flex; align-items: baseline; flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}
.astat:last-child { border-right: none; padding-right: 0; }
.astat__from {
    font-family: var(--font-disp);
    font-style: normal;
    font-size: 18px;
    color: var(--ink-3);
    text-decoration: line-through;
}
.astat__arrow { color: var(--ink-3); }
.astat__to {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 26px);
    color: var(--ink);
    letter-spacing: -0.012em;
}
.astat__label { width: 100%; color: var(--ink-2); font-size: 12px; margin-top: 1px; }

/* About visual stack */
.about__visual {
    position: relative;
    min-height: 560px;
}
.about__photo {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 50px -20px rgba(26,24,20,0.25);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about__photo--main { top: 0; right: 0; width: 70%; height: 60%; }
.about__photo--sec  { bottom: 0; left: 0; width: 55%; height: 50%; z-index: 2; }
.about__photo--ter  { top: 35%; right: 20%; width: 40%; height: 35%; z-index: 3; border: 8px solid var(--bg-alt); }

/* =========================================
   VISION
   ========================================= */
.vision {
    padding: 160px 0;
    text-align: center;
    background: var(--bg-dark);
    color: var(--bg);
}
.vision .section-eyebrow { justify-content: center; color: var(--ink-4); }
.vision .section-eyebrow .eyebrow__line { background: var(--ink-4); }
.vision__quote {
    font-family: var(--font-emph);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(26px, 4vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: #fff;
    max-width: 1100px;
    margin: 20px auto 40px;
}
.vision__quote em { color: var(--accent-hi); font-family: var(--font-emph); }
.vision__mark {
    display: block;
    font-family: var(--font-disp);
    font-size: 140px;
    line-height: 0;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 30px;
    font-weight: 400;
}
.vision__sub {
    max-width: 640px;
    margin: 0 auto;
    color: #ADA9C6;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* =========================================
   CTA FORM
   ========================================= */
.cta { padding: 140px 0; background: var(--tint-sage); }
.cta__grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 1000px) { .cta__grid { grid-template-columns: 1fr; gap: 50px; } }

.cta__title {
    font-family: var(--font-disp);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 64px);
    line-height: 1.18;
    letter-spacing: -0.026em;
    color: var(--ink);
    margin: 24px 0 24px;
}
.cta__title em { color: var(--accent); font-style: normal; font-weight: 400; font-family: var(--font-emph); letter-spacing: -0.01em; }
.cta__lead {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 28px;
    font-weight: 300;
}
.cta__bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta__bullets li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: var(--ink-1);
}
.cta__check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    font-size: 12px;
}

.cta__form {
    padding: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -30px rgba(26,24,20,0.18);
}
.cta__form-title { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 4px; }
.cta__form-sub { color: var(--ink-2); font-size: 14px; margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 8px;
    font-weight: 500;
}
.field__opt { text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.field input, .field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 14.5px;
    transition: all 0.3s var(--ease-out);
    outline: none;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus {
    background: var(--bg-alt);
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(18,18,18,0.08);
}
.field select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23595677' stroke-linecap='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}
.cta__form-foot { font-size: 11px; color: var(--ink-3); text-align: center; margin-top: 14px; }

.field__error {
    display: none;
    color: #c0392b;
    font-size: 12px;
    margin-top: 6px;
}
/* Multi-select dropdown */
.multiselect { position: relative; }
.multiselect__trigger {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-alt, #f5f1e6);
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.multiselect__trigger:hover { border-color: var(--ink); }
.multiselect.is-open .multiselect__trigger,
.multiselect__trigger:focus-visible {
    background: var(--bg-alt);
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(18, 18, 18, 0.08);
    outline: none;
}
.multiselect__label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.multiselect__label:empty::before {
    content: attr(data-placeholder);
    color: var(--ink-3);
}
.multiselect__caret {
    color: var(--ink-2);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.multiselect.is-open .multiselect__caret { transform: rotate(180deg); }
.multiselect__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    padding: 6px;
    z-index: 30;
    max-height: 280px;
    overflow-y: auto;
}
.multiselect__panel[hidden] { display: none; }
.multiselect__opt,
.field label.multiselect__opt {
    display: flex; align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-bottom: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
    user-select: none;
    transition: background 0.15s ease;
}
.multiselect__opt:hover { background: var(--bg-alt, #f5f1e6); }
.multiselect__opt span {
    line-height: 1;
}
.field .multiselect__opt input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px; height: 14px;
    min-width: 14px; min-height: 14px;
    padding: 0;
    margin: 0;
    border: 1.5px solid var(--ink-3);
    border-radius: 3px;
    background: #fff;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.field .multiselect__opt input[type="checkbox"]:checked {
    background: var(--ink);
    border-color: var(--ink);
}
.field .multiselect__opt input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 3px; top: 0px;
    width: 4px; height: 8px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}
.field.has-error .multiselect__trigger {
    border-color: #c0392b;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}
.field.has-error input,
.field.has-error select {
    border-color: #c0392b;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}
.field.has-error .field__error { display: block; }

.cta__form-status {
    min-height: 20px;
    margin: 8px 0 12px;
    font-size: 13px;
    text-align: center;
}
.cta__form-status.is-success { color: #1e8449; }
.cta__form-status.is-error { color: #c0392b; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-dark);
    color: #ADA9C6;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.footer .logo { color: #fff; font-size: 26px; }
.footer .logo__accent { color: var(--accent-hi); }

.footer__top {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }

.footer__tag {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 20px;
    max-width: 320px;
    color: #827F9A;
}
.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #827F9A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer__social-link:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-2px);
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media (max-width: 640px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer__col h4 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #827F9A;
    margin-bottom: 18px;
    font-weight: 500;
}
.footer__col a {
    display: block;
    color: #ADA9C6;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s;
}
.footer__col a:hover { color: var(--accent); }

/* =========================================
   LEGAL PAGE (Terms / Privacy / Cookies)
   ========================================= */
.legal {
    padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
}
.legal__head {
    max-width: 760px;
    margin: 0 auto clamp(40px, 6vw, 72px);
    text-align: left;
}
.legal__eyebrow {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 16px;
}
.legal__title {
    font-family: var(--font-disp, Georgia, serif);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--ink);
    margin: 0 0 14px;
}
.legal__meta {
    font-size: 13px;
    color: var(--ink-3);
    margin: 0 0 24px;
}
.legal__lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0;
}
.legal__body {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.75;
}
.legal__body section {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}
.legal__body section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.legal__body h2 {
    font-family: var(--font-disp, Georgia, serif);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 14px;
}
.legal__body p { margin: 0 0 14px; }
.legal__body p:last-child { margin-bottom: 0; }
.legal__body ul {
    margin: 0 0 14px;
    padding-left: 22px;
}
.legal__body li {
    margin-bottom: 8px;
}
.legal__body a {
    color: var(--ink);
    border-bottom: 1px solid currentColor;
    transition: opacity 0.2s ease;
}
.legal__body a:hover { opacity: 0.65; }
.legal__back {
    max-width: 760px;
    margin: clamp(40px, 5vw, 64px) auto 0;
}

.footer__bot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap; gap: 20px;
}
.footer__copy { color: #827F9A; font-size: 13px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: #827F9A; font-size: 13px; transition: color 0.3s; }
.footer__legal a:hover { color: #fff; }

.footer__wordmark {
    font-family: var(--font-disp);
    font-style: normal;
    animation: wordmark-fade 3s ease-in-out infinite;
    font-weight: 400;
    font-size: clamp(34px, 7.5vw, 112px);
    line-height: 0.82;
    letter-spacing: -0.012em;
    color: rgba(255,255,255,0.72);
    -webkit-text-stroke: none;
    text-align: center;
    margin-top: 0;
    pointer-events: none;
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal="left"] {
    transform: translateX(-70px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal="right"] {
    transform: translateX(70px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal="scale"] {
    transform: scale(0.88) translateY(20px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal].is-visible,
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@keyframes wordmark-fade {
    0%   { opacity: 0.18; }
    50%  { opacity: 0.55; }
    100% { opacity: 0.18; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================
   CLEAN CORPORATE TYPOGRAPHY — Inter
   ========================================= */
.hero__title, .section-title, .sia__title, .showcase__title, .about__title,
.cta__title, .strip__caption-title, .vision__quote, .preloader__word,
.footer__wordmark, .custom__title, .promise__line, .chapter__display {
    font-weight: 600;
    letter-spacing: -0.022em;
}
.hero__title em, .section-title em, .sia__title em, .showcase__title em,
.about__title em, .cta__title em, .strip__caption-title em, .vision__quote em {
    font-weight: 600;
}
.hero__sub strong { font-weight: 600; }

/* =========================================
   AI DEPLOYMENT SECTION (home) + SERVICES PAGE
   ========================================= */
.deploy {
    padding: clamp(90px, 11vw, 130px) 0;
    background: var(--tint-blush);
    border-top: 1px solid var(--border);
}
.deploy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
    gap: 18px;
    margin-top: clamp(40px, 5vw, 64px);
}
.deploy__cta {
    margin-top: 44px;
    display: flex;
    justify-content: center;
}

.page-hero {
    padding: clamp(150px, 18vw, 220px) 0 clamp(48px, 7vw, 88px);
    background: var(--grad-hero);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero__title {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: clamp(34px, 5.4vw, 74px);
    line-height: 1.1;
    letter-spacing: -0.024em;
    color: var(--ink);
    max-width: 18ch;
    margin: 0 auto 24px;
    text-wrap: balance;
}
.page-hero__title em { color: var(--accent); font-weight: 600; }
.page-hero__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 auto;
}
.svc { padding: clamp(70px, 9vw, 110px) 0; }
.svc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 18px;
}
.svc-cta {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
}
.svc-cta .section-eyebrow { justify-content: center; color: var(--ink-4); }
.svc-cta .section-eyebrow .eyebrow__line { background: var(--ink-4); }
.svc-cta h2 {
    font-family: var(--font-disp);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 52px);
    letter-spacing: -0.022em;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance;
}
.svc-cta p {
    color: var(--ink-4);
    font-size: 17px;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 32px;
}
.svc-cta .btn--primary { background: #fff; color: var(--ink); }
.svc-cta .btn--primary:hover { color: #fff; }

/* =========================================
   EXCITING HERO + STATIC INDUSTRIES GRID
   ========================================= */
.ambient__blob--1 { opacity: 0.30; }
.ambient__blob--2 { opacity: 0.20; }

/* Animated shimmer on the hero accent word */
.hero__title em {
    background: linear-gradient(100deg, var(--accent) 0%, var(--accent-hi) 45%, var(--accent) 90%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-shine 5.5s linear infinite;
}
@keyframes hero-shine { to { background-position: -220% center; } }

/* Industries — static visible grid (no marquee) */
.industries__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1120px;
    margin: 0 auto;
}

/* Footer contact block */
.footer__contact {
    margin-top: 26px;
    display: grid;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #ADA9C6;
}
.footer__contact a { color: #ADA9C6; transition: color 0.25s; }
.footer__contact a:hover { color: #fff; }
.footer__contact strong { color: #fff; font-weight: 600; }

/* Contact line under the CTA copy */
.cta__contact {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    font-size: 14px;
    color: var(--ink-2);
}
.cta__contact a { color: var(--ink); font-weight: 600; transition: color 0.25s; }
.cta__contact a:hover { color: var(--accent); }

/* =========================================
   AURORA HERO — centred & magical
   ========================================= */
.hero::before {
    background: linear-gradient(180deg, transparent 64%, var(--bg));
    z-index: 1;
}
.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding-bottom: clamp(56px, 8vw, 110px);
    z-index: 2;
}
.hero__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}
.hero__title {
    font-size: clamp(38px, 6.6vw, 86px);
    line-height: 1.07;
    margin-bottom: 28px;
}
.hero__sub {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero__cta { justify-content: center; }
.hero__stats { margin-left: auto; margin-right: auto; }
.strip__caption, .strip { position: relative; z-index: 2; }

/* Aurora background layers */
.hero__aurora {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none;
    z-index: 0;
}
.hero__beam {
    position: absolute; border-radius: 50%;
    filter: blur(86px); will-change: transform;
}
.hero__beam--1 {
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(99,102,241,0.46), transparent 70%);
    top: -150px; left: -110px;
    animation: aurora-1 21s ease-in-out infinite;
}
.hero__beam--2 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(139,92,246,0.44), transparent 70%);
    top: -110px; right: -120px;
    animation: aurora-2 25s ease-in-out infinite;
}
.hero__beam--3 {
    width: 720px; height: 520px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.32), transparent 72%);
    top: 130px; left: 50%; margin-left: -360px;
    animation: aurora-3 29s ease-in-out infinite;
}
@keyframes aurora-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(70px, 46px) scale(1.16); }
}
@keyframes aurora-2 {
    0%, 100% { transform: translate(0, 0) scale(1.06); }
    50%      { transform: translate(-66px, 52px) scale(0.92); }
}
@keyframes aurora-3 {
    0%, 100% { transform: translate(0, 0) scale(0.96); }
    50%      { transform: translate(44px, -30px) scale(1.14); }
}
.hero__orb {
    position: absolute;
    left: var(--x); top: var(--y);
    width: var(--s, 8px); height: var(--s, 8px);
    border-radius: 50%;
    background: radial-gradient(circle at 34% 32%, #fff, var(--accent-hi));
    box-shadow: 0 0 16px 3px rgba(139, 92, 246, 0.5);
    opacity: 0;
    animation: hero-orb 13s ease-in-out var(--d, 0s) infinite;
}
@keyframes hero-orb {
    0%   { opacity: 0; transform: translateY(26px) scale(0.5); }
    20%  { opacity: 0.85; }
    55%  { transform: translateY(-42px) scale(1); }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-96px) scale(0.6); }
}
@media (max-width: 640px) {
    .hero__beam { filter: blur(58px); }
    .hero__beam--3 { width: 460px; margin-left: -230px; }
}

/* ============================================================
   CALLBACK STRIP — reusable CTA band between sections
   Dark navy panel with light text for max readability.
   ============================================================ */
.callback-strip {
    position: relative;
    padding: clamp(2.6rem, 5vw, 4.2rem) clamp(1.5rem, 5vw, 4rem);
    margin: clamp(3rem, 6vw, 5rem) 0;
    background:
        radial-gradient(70% 80% at 78% 50%, rgba(167, 139, 250, 0.26), transparent 70%),
        radial-gradient(50% 70% at 18% 20%, rgba(99, 102, 241, 0.20), transparent 65%),
        linear-gradient(112deg, #0a0a18 0%, #14152a 50%, #0a0a18 100%);
    border-block: 1px solid rgba(167, 139, 250, 0.3);
    overflow: hidden;
    color: #ffffff;
}
.callback-strip__inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.callback-strip__text { flex: 1 1 auto; min-width: 18rem; }
.callback-strip__kicker {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 0.7rem;
}
.callback-strip__head {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
}
.callback-strip__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
    margin-top: 0.8rem; max-width: 56ch;
    line-height: 1.6;
}
.callback-strip .btn {
    flex-shrink: 0;
    background: #ffffff;
    color: #0a0a18;
    box-shadow: 0 12px 28px -10px rgba(167, 139, 250, 0.6);
}
.callback-strip .btn:hover {
    background: #c4b5fd;
    color: #0a0a18;
    transform: translateY(-2px);
}
@media (max-width: 720px) {
    .callback-strip__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FASHION SHOWCASE — inherits .showcase styles; small tweaks
   ============================================================ */
.showcase--fashion .mosaic__item a {
    display: block; height: 100%;
    color: inherit; text-decoration: none;
    transition: transform 0.5s ease;
}
.showcase--fashion .mosaic__item a:hover { transform: translateY(-4px); }
.showcase--fashion .mosaic__item img { transition: transform 1s ease, filter 0.4s ease; }
.showcase--fashion .mosaic__item a:hover img { transform: scale(1.04); filter: saturate(1.08) brightness(1.03); }

