/* ==========================================================================
   NEXATHUS — Creator-founded influencer agency
   Advanced design system — Jonathus × David
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:            #060509;
  --bg-soft:       #0C0A12;
  --surface:       #131019;
  --surface-2:     #1A1622;
  --line:          rgba(255,255,255,0.07);
  --line-strong:   rgba(255,255,255,0.16);

  --text:          #F6F4FB;
  --muted:         #ADA8BC;
  --muted-2:       #6A6577;

  --indigo:        #6C4CFF;
  --violet:        #A66BFF;
  --pink:          #FF4D8D;
  --coral:         #FF7A45;
  --lime:          #C8FF4D;
  --cyan:          #46E3FF;

  --grad:          linear-gradient(110deg, #6C4CFF 0%, #A14CFF 40%, #FF4D8D 100%);
  --grad-2:        linear-gradient(120deg, #46E3FF, #6C4CFF 55%, #FF4D8D);
  --grad-warm:     linear-gradient(110deg, #FF4D8D, #FF7A45);
  --grad-soft:     linear-gradient(160deg, rgba(108,76,255,0.20), rgba(255,77,141,0.10));

  --font-display:  'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;

  --radius:        16px;
  --radius-lg:     26px;
  --radius-xl:     36px;
  --radius-pill:   999px;
  --maxw:          1320px;
  --gutter:        clamp(20px, 5vw, 72px);
  --section-y:     clamp(80px, 12vw, 180px);

  --shadow-glow:   0 0 0 1px var(--line), 0 40px 100px -50px rgba(108,76,255,0.6);
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html:not(.lenis) { scroll-behavior: smooth; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(16px, 1.05vw, 18px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* No-JS / pre-JS: reveal elements visible. Only hide once html.js is set. */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); }
html.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js [data-reveal-delay="1"].is-in { transition-delay: .08s; }
html.js [data-reveal-delay="2"].is-in { transition-delay: .16s; }
html.js [data-reveal-delay="3"].is-in { transition-delay: .24s; }
html.js [data-reveal-delay="4"].is-in { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html:not(.lenis) { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   ATMOSPHERE — aurora, grain, cursor, preloader
   ========================================================================== */
.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora--1 { width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(108,76,255,0.6), transparent 60%); top: -20vw; left: -10vw; animation: drift1 22s ease-in-out infinite; }
.aurora--2 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(255,77,141,0.45), transparent 60%); top: 30vh; right: -15vw; animation: drift2 26s ease-in-out infinite; }
.aurora--3 { width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(70,227,255,0.28), transparent 60%); bottom: -20vw; left: 20vw; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 50% { transform: translate(8vw, 10vh) scale(1.15); } }
@keyframes drift2 { 50% { transform: translate(-10vw, -6vh) scale(1.1); } }
@keyframes drift3 { 50% { transform: translate(6vw, -8vh) scale(1.2); } }

/* Film grain */
.grain { position: fixed; inset: -200%; z-index: 1; pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite; }
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-5%,3%)} 50%{transform:translate(4%,-4%)} 75%{transform:translate(-3%,5%)} 100%{transform:translate(2%,-2%)} }

/* Custom cursor (desktop fine-pointer only) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 7px; height: 7px; background: var(--lime); transform: translate(-50%,-50%); }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.55); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s; mix-blend-mode: difference; }
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.1); border-color: transparent; }
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--bg); display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: min(300px, 70vw); }
.preloader__mark { width: 54px; margin: 0 auto 1.4rem; animation: pulse 1.4s ease-in-out infinite; }
.preloader__bar { height: 2px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--grad); transition: width .3s var(--ease); }
.preloader__pct { margin-top: 1rem; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.3em; color: var(--muted); }
@keyframes pulse { 50% { opacity: 0.4; transform: scale(0.94); } }

/* ==========================================================================
   LAYOUT + TYPE
   ========================================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.section { position: relative; z-index: 2; padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }
.center { text-align: center; }
main, footer, header { position: relative; z-index: 2; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 0.98; letter-spacing: -0.02em; }
.display { font-size: clamp(3rem, 9vw, 8.5rem); line-height: 0.9; letter-spacing: -0.04em; font-weight: 600; }
h2.h-xl { font-size: clamp(2.2rem, 6vw, 5rem); letter-spacing: -0.035em; line-height: 0.95; }
h3.h-lg { font-size: clamp(1.4rem, 3vw, 2.1rem); }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.4rem); color: var(--muted); max-width: 56ch; line-height: 1.5; }
.eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--violet); display: inline-flex; align-items: center; gap: 0.7em; }
.eyebrow::before { content:""; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow.center::before { display: none; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-2 { background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outline-text { color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,0.35); }
.muted { color: var(--muted); }

/* Kinetic headline */
.kinetic { display: block; }
.kinetic .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.kinetic .line > span { display: inline-block; will-change: transform; }

/* Hero intro — pure CSS, driven by .hero-in (no animation library dependency) */
html.js .hero .kinetic .line > span { transform: translateY(120%); transition: transform 1.1s var(--ease); }
html.js .hero.hero-in .kinetic .line > span { transform: none; }
html.js .hero [data-hero-fade] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js .hero.hero-in [data-hero-fade] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .hero .kinetic .line > span,
  html.js .hero [data-hero-fade] { transform: none !important; opacity: 1 !important; }
}

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6em; padding: 1em 1.7em; border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: 600; font-size: 0.97rem; letter-spacing: -0.01em; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s; will-change: transform; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 16px 40px -14px rgba(124,76,255,0.75); }
.btn--primary::before { content:""; position: absolute; inset: 0; background: var(--grad-warm); opacity: 0; transition: opacity .4s var(--ease); }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost { background: rgba(255,255,255,0.035); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); }
.btn--light { background: var(--text); color: #0b0a10; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.pill { display: inline-flex; align-items: center; gap: 0.6em; padding: 0.55em 1em; border-radius: var(--radius-pill); background: rgba(255,255,255,0.04); box-shadow: inset 0 0 0 1px var(--line); font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.4; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: transform .5s var(--ease); }
.site-header.is-hidden { transform: translateY(-110%); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 84px; margin-top: 14px; padding-inline: clamp(14px, 2vw, 22px); border-radius: var(--radius-pill); transition: background .4s, box-shadow .4s, backdrop-filter .4s; }
.is-scrolled .nav { background: rgba(12,10,18,0.6); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px); box-shadow: inset 0 0 0 1px var(--line), 0 20px 50px -30px rgba(0,0,0,0.8); height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { padding: 0.55em 0.95em; border-radius: var(--radius-pill); font-size: 0.93rem; font-weight: 500; color: var(--muted); transition: color .25s, background .25s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; box-shadow: inset 0 0 0 1px var(--line-strong); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 3px auto; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 92px 14px auto 14px; flex-direction: column; align-items: stretch; gap: 0.25rem; background: rgba(10,9,14,0.97); backdrop-filter: blur(20px); padding: 1.2rem; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px var(--line); transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none; transition: transform .4s var(--ease), opacity .4s; }
  .nav-open .nav-links { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.9em 1em; font-size: 1.05rem; }
  .nav-open .nav-mobile-cta { display: flex; } .nav-mobile-cta { display: none; margin-top: 0.6rem; }
}
@media (min-width: 981px) { .nav-mobile-cta { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; position: relative; }
.hero h1 { margin-top: 1.4rem; }
.hero .lede { margin-top: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }
.hero__ticker { margin-top: clamp(2.4rem, 5vw, 4rem); display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3.4rem); align-items: baseline; }
.hero__ticker .ti { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__ticker b { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.hero__ticker span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.hero__ticker .sep { width: 1px; align-self: stretch; background: var(--line); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--muted-2); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 44px; background: linear-gradient(var(--violet), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--lime); animation: scrolldn 1.8s var(--ease) infinite; }
@keyframes scrolldn { to { transform: translateY(250%); } }
@media (max-width: 620px) { .scroll-cue { display: none; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(2.5rem, 6vw, 5rem); width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.6vw, 2rem); color: var(--muted-2); white-space: nowrap; letter-spacing: -0.01em; transition: color .3s; }
.marquee__track span:hover { color: var(--text); }
.marquee--reverse .marquee__track { animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Brand logo wall */
.marquee__track--logos { align-items: center; gap: clamp(2.6rem, 6vw, 5.5rem); }
.logo { height: 30px; width: auto; opacity: 0.46; transition: opacity .3s var(--ease); filter: saturate(0); }
.marquee:hover .logo { opacity: 0.46; }
.logo:hover { opacity: 1; }
.logo--word { display: inline-flex; align-items: center; gap: 0.5em; color: var(--text); white-space: nowrap; }
.logo--word svg { height: 22px; width: auto; }
.logo--word b { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -0.01em; }

/* ==========================================================================
   SECTION HEADS / GRIDS / CARDS
   ========================================================================== */
.section-head { max-width: 60ch; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; } .section-head p { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
@media (max-width:980px){ .grid--3,.grid--4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:620px){ .grid--2,.grid--3,.grid--4{grid-template-columns:1fr;} }

.card { position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.6rem,2.6vw,2.4rem); box-shadow: inset 0 0 0 1px var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .4s; overflow: hidden; }
.card::after { content:""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .5s; pointer-events: none; }
.card:hover { transform: translateY(-7px); background: var(--surface-2); }
.card:hover::after { opacity: 0.7; }
.card__num { font-family: var(--font-display); font-size: 0.85rem; color: var(--violet); font-weight: 600; letter-spacing: 0.12em; }
.card h3 { margin: 0.9rem 0 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 1.3rem; }
.card__icon svg { width: 24px; height: 24px; stroke: var(--violet); }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.3rem; }
.card__tags span { font-size: 0.75rem; color: var(--muted); padding: 0.32em 0.75em; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1px var(--line); }

.feature { display: flex; flex-direction: column; gap: 0.8rem; padding: clamp(1.6rem,2.6vw,2.2rem); border-radius: var(--radius-lg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.feature .num { font-family: var(--font-display); font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 600; line-height: 1; }

/* ==========================================================================
   FOUNDERS
   ========================================================================== */
.founders { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.2rem,2.4vw,2rem); }
@media (max-width: 820px){ .founders { grid-template-columns: 1fr; } }
.founder { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 540px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.8rem,3vw,2.6rem); color: #fff; isolation: isolate; box-shadow: inset 0 0 0 1px var(--line); }
.founder__bg { position: absolute; inset: 0; z-index: -2; }
.founder::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.85) 95%); }
.founder__role { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.74rem; opacity: 0.85; }
.founder h3 { font-size: clamp(2rem,4vw,3rem); margin: 0.5rem 0 0.8rem; }
.founder p { color: rgba(255,255,255,0.82); max-width: 42ch; }
.founder__stats { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.16); }
.founder__stats b { display: block; font-family: var(--font-display); font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 600; line-height: 1; }
.founder__stats span { font-size: 0.75rem; opacity: 0.8; }
.founder__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.16); }
.founder__chips span { font-size: 0.8rem; padding: 0.4em 0.85em; border-radius: var(--radius-pill); background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }
.founder__tag { position: absolute; top: 1.4rem; left: 1.4rem; z-index: 1; }

/* ==========================================================================
   MEGA NUMBERS
   ========================================================================== */
.mega { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.mega__cell { background: var(--bg-soft); padding: clamp(1.8rem,3.4vw,3rem) clamp(1.4rem,2.4vw,2.2rem); }
.mega__num { font-family: var(--font-display); font-size: clamp(2.6rem,6vw,5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 0.9; }
.mega__label { color: var(--muted); margin-top: 0.8rem; font-size: 0.95rem; }
@media (max-width:820px){ .mega{grid-template-columns:repeat(2,1fr);} }

/* ==========================================================================
   HORIZONTAL PINNED SERVICES
   ========================================================================== */
.hsec { position: relative; }
.hsec__head { margin-bottom: clamp(2rem,4vw,3rem); }
.htrack { display: flex; gap: clamp(1rem,1.6vw,1.6rem); }
.panel { flex: 0 0 min(440px, 80vw); background: var(--surface); border-radius: var(--radius-xl); padding: clamp(1.8rem,3vw,2.6rem); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; min-height: 440px; transition: background .4s; }
.panel:hover { background: var(--surface-2); }
.panel__n { font-family: var(--font-display); font-size: 0.9rem; color: var(--violet); letter-spacing: 0.14em; }
.panel__ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--line); margin: 1.2rem 0; }
.panel__ic svg { width: 26px; height: 26px; stroke: var(--violet); }
.panel h3 { font-size: clamp(1.5rem,2.4vw,2rem); margin-bottom: 0.7rem; }
.panel p { color: var(--muted); }
.panel ul { margin-top: auto; padding-top: 1.4rem; display: grid; gap: 0.5rem; }
.panel ul li { display: flex; gap: 0.6rem; align-items: center; color: var(--muted); font-size: 0.92rem; }
.panel ul li::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none; }
/* When pinning is active (desktop), the section becomes tall and the track is horizontal */
.hsec.is-pinned { height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hsec.is-pinned .htrack { flex-wrap: nowrap; will-change: transform; }
/* Fallback (mobile / reduced motion): horizontal swipe scroll */
.hsec:not(.is-pinned) .htrack { overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hsec:not(.is-pinned) .htrack::-webkit-scrollbar { display: none; }
.hsec:not(.is-pinned) .panel { scroll-snap-align: start; }

/* ==========================================================================
   WORK
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,1.6vw,1.6rem); }
@media (max-width:760px){ .work-grid{grid-template-columns:1fr;} }
.work-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.6rem,3vw,2.4rem); color: #fff; isolation: isolate; box-shadow: inset 0 0 0 1px var(--line); transition: transform .6s var(--ease); }
.work-card:hover { transform: translateY(-7px); }
.work-card__bg { position: absolute; inset: 0; z-index: -2; transition: transform .8s var(--ease); }
.work-card:hover .work-card__bg { transform: scale(1.06); }
.work-card::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%); }
.work-card__brand { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.work-card h3 { font-size: clamp(1.3rem,2.6vw,2rem); margin: 0.5rem 0 1rem; }
.work-card__metrics { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.work-card__metrics b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.work-card__metrics span { font-size: 0.78rem; opacity: 0.8; }
.work-card__tag { position: absolute; top: 1.4rem; left: 1.4rem; z-index: 1; }

/* ==========================================================================
   SPLIT / TICKLIST / STEPS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width:860px){ .split{grid-template-columns:1fr;} .split--reverse .split__media{order:0;} }
.split__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 380px; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }

.ticklist { display: grid; gap: 1rem; }
.ticklist li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--muted); }
.ticklist li b { color: var(--text); font-weight: 600; }
.ticklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); margin-top: 2px; }
.ticklist .tick svg { width: 13px; height: 13px; stroke: var(--lime); }

.steps { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.step { background: var(--bg-soft); padding: clamp(1.6rem,3vw,2.4rem); display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; transition: background .4s; }
.step:hover { background: var(--surface); }
.step__n { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; }
.step h3 { margin-bottom: 0.4rem; } .step p { color: var(--muted); font-size: 0.98rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote-grid { columns: 2; column-gap: clamp(1rem,1.6vw,1.6rem); }
@media (max-width:760px){ .quote-grid{columns:1;} }
.quote { break-inside: avoid; margin-bottom: clamp(1rem,1.6vw,1.6rem); background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.6rem,2.6vw,2.2rem); box-shadow: inset 0 0 0 1px var(--line); }
.quote p { font-size: 1.08rem; color: var(--text); }
.quote__by { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.4rem; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff; flex: none; }
.quote__by b { display: block; font-size: 0.95rem; } .quote__by span { color: var(--muted); font-size: 0.85rem; }

/* ==========================================================================
   ROSTER / TALENT
   ========================================================================== */
.roster-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(0.9rem,1.6vw,1.4rem); }
@media (max-width:860px){ .roster-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .roster-grid{grid-template-columns:1fr;} }
.talent { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/3.7; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; color: #fff; box-shadow: inset 0 0 0 1px var(--line); isolation: isolate; transition: transform .6s var(--ease); }
.talent:hover { transform: translateY(-6px); }
.talent__bg { position: absolute; inset: 0; z-index: -2; transition: transform .8s var(--ease); }
.talent:hover .talent__bg { transform: scale(1.06); }
.talent::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.82)); }
.talent b { font-family: var(--font-display); font-size: 1.2rem; } .talent span { font-size: 0.85rem; opacity: 0.85; }
.talent__stat { position: absolute; top: 1rem; right: 1rem; z-index: 1; font-size: 0.76rem; font-weight: 600; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); padding: 0.4em 0.75em; border-radius: var(--radius-pill); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 0.6rem; }
.faq__item { background: var(--surface); border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; transition: background .3s; }
.faq__item.is-open { background: var(--surface-2); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 1.6rem; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; }
.faq__q .ic { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .ic::before,.faq__q .ic::after { content:""; position: absolute; inset: 0; margin: auto; background: var(--violet); }
.faq__q .ic::before { width: 14px; height: 2px; }
.faq__q .ic::after { width: 2px; height: 14px; transition: transform .35s var(--ease), opacity .35s; }
.faq__item.is-open .ic::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 1.6rem 1.5rem; color: var(--muted); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(2.8rem,7vw,6rem); background: var(--grad); text-align: center; isolation: isolate; }
.cta-banner::after { content:""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 130% at 50% -20%, rgba(255,255,255,0.3), transparent 60%); }
.cta-banner h2 { color: #fff; font-size: clamp(2rem,6vw,4.4rem); max-width: 18ch; margin-inline: auto; line-height: 0.96; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 52ch; margin: 1.2rem auto 2.2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding-block: clamp(3.4rem,6vw,6rem) 2.5rem; background: var(--bg-soft); }
.footer-mega { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem,13vw,11rem); line-height: 0.85; letter-spacing: -0.04em; margin-bottom: clamp(2.5rem,6vw,5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 2.5rem; }
@media (max-width:820px){ .footer-top{grid-template-columns:1fr 1fr;gap:2rem;} }
@media (max-width:480px){ .footer-top{grid-template-columns:1fr;} }
.footer-brand p { color: var(--muted); margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--muted); padding: 0.35rem 0; font-size: 0.95rem; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--text); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.5rem,5vw,4rem); padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line-strong); transition: background .3s, transform .3s; }
.footer-social a:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

/* ==========================================================================
   PAGE HEADER / FORMS / PROSE
   ========================================================================== */
.page-head { padding-top: clamp(140px, 18vh, 220px); padding-bottom: clamp(40px,6vw,72px); position: relative; }
.page-head h1 { font-size: clamp(2.6rem,8vw,6rem); margin-top: 1.2rem; max-width: 18ch; }
.page-head .lede { margin-top: 1.5rem; }
.crumb { display: flex; gap: 0.5rem; color: var(--muted-2); font-size: 0.85rem; }
.crumb a:hover { color: var(--text); }

.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width:560px){ .form .row{grid-template-columns:1fr;} }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.field input,.field select,.field textarea { font: inherit; color: var(--text); background: var(--surface); border-radius: 14px; padding: 0.95em 1.1em; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .25s, background .25s; }
.field input::placeholder,.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,.field select:focus,.field textarea:focus { outline: none; box-shadow: inset 0 0 0 1px var(--violet), 0 0 0 4px rgba(108,76,255,0.16); background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { color: var(--muted-2); font-size: 0.85rem; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.prose p,.prose li { color: var(--muted); margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.2rem; list-style: disc; }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }

/* Utility */
.mt-1{margin-top:1rem;} .mt-2{margin-top:2rem;} .mt-3{margin-top:3rem;}
.flex{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;}
.between{justify-content:space-between;}
@media (max-width:620px){ .hide-mobile{display:none;} }
.bg-soft{ background: var(--bg-soft); border-block: 1px solid var(--line); }
