/* =====================================================================
   GANTHIX — "OBSIDIAN" design system
   Obsidian black · liquid chrome · molten gold
   Hand-written, dependency-free (no Tailwind runtime).
   ===================================================================== */

/* ---------------------------------------------------------------------
   0. TOKENS
--------------------------------------------------------------------- */
:root {
  /* base */
  --bg:        #050506;
  --bg-2:      #0a0a0d;
  --bg-3:      #101015;
  --surface:   rgba(255,255,255,0.025);
  --surface-2: rgba(255,255,255,0.045);
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.14);

  /* text */
  --ink:       #f4f4f6;
  --ink-soft:  rgba(244,244,246,0.66);
  --ink-dim:   rgba(244,244,246,0.40);
  --ink-faint: rgba(244,244,246,0.22);

  /* gold (molten) */
  --gold-1:    #fff0c2;
  --gold-2:    #f5d061;
  --gold-3:    #e8b73a;
  --gold-4:    #c8922a;
  --gold-deep: #8a5e16;

  /* chrome (liquid silver) */
  --chrome-1:  #ffffff;
  --chrome-2:  #d8d8e0;
  --chrome-3:  #9a9aa6;
  --chrome-4:  #5c5c66;

  /* glows */
  --glow-gold: rgba(245,208,97,0.45);
  --glow-warm: rgba(232,183,58,0.18);

  /* type */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --radius-lg: 30px;

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------
   1. RESET / BASE
--------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold-3); color: #0a0a0d; }

/* hide native cursor only where the custom one is active (pointer devices) */
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready, body.cursor-ready a, body.cursor-ready button { cursor: none; }
}

/* ---------------------------------------------------------------------
   2. GLOBAL TEXTURE LAYERS (grain + ambient field + vignette)
--------------------------------------------------------------------- */
.fx-grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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");
}
.fx-vignette {
  position: fixed; inset: 0; z-index: 9991; pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.fx-ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.fx-ambient span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.fx-ambient .a1 { width: 46vw; height: 46vw; top: -12vw; right: -8vw;
  background: radial-gradient(circle, rgba(232,183,58,0.20), transparent 65%); }
.fx-ambient .a2 { width: 40vw; height: 40vw; bottom: -10vw; left: -10vw;
  background: radial-gradient(circle, rgba(154,154,170,0.12), transparent 65%); }
.fx-ambient .a3 { width: 30vw; height: 30vw; top: 45%; left: 55%;
  background: radial-gradient(circle, rgba(245,208,97,0.08), transparent 65%); }

/* ---------------------------------------------------------------------
   3. CUSTOM CURSOR
--------------------------------------------------------------------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.6);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.is-hover {
  width: 64px; height: 64px; border-color: var(--gold-2);
  background: rgba(245,208,97,0.08);
}
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------------------------------------------------------------------
   4. PRELOADER
--------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 10vw, 7rem); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 1.25rem;
}
.pre-bar {
  width: min(220px, 60vw); height: 2px; background: var(--line);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.pre-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-4), var(--gold-2), var(--chrome-1));
  transition: width .2s linear;
}
.pre-num {
  margin-top: .9rem; font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .35em; color: var(--ink-dim);
}

/* ---------------------------------------------------------------------
   5. SCROLL PROGRESS
--------------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  z-index: 9995;
  background: linear-gradient(90deg, var(--gold-4), var(--gold-2), var(--chrome-1));
  box-shadow: 0 0 14px var(--glow-gold);
}

/* ---------------------------------------------------------------------
   6. TYPOGRAPHY HELPERS
--------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3));
}
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; }

.display {
  font-size: clamp(2.6rem, 8.5vw, 7rem);
  line-height: 0.96; letter-spacing: -0.045em; font-weight: 700;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.035em; margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 44ch; line-height: 1.6;
}

/* chrome + gold gradient text */
.t-chrome {
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-4) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.t-gold {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 40%, var(--gold-4) 80%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* animated shimmer sweep */
.t-shimmer {
  background: linear-gradient(110deg,
    var(--gold-4) 0%, var(--gold-2) 25%, var(--gold-1) 38%,
    #ffffff 50%, var(--gold-1) 62%, var(--gold-2) 75%, var(--gold-4) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: -250% 0; } }

/* ---------------------------------------------------------------------
   7. LAYOUT
--------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(5rem, 12vh, 9rem); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.25rem; }

/* ---------------------------------------------------------------------
   8. BUTTONS
--------------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: -0.01em; padding: 1rem 1.75rem; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s, background .3s;
  white-space: nowrap; will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold {
  color: #160f02;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-4));
  box-shadow: 0 8px 30px rgba(232,183,58,0.30), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold:hover { box-shadow: 0 14px 44px rgba(232,183,58,0.5), inset 0 1px 0 rgba(255,255,255,0.7); }

.btn-ghost {
  color: var(--ink); background: var(--surface-2);
  border: 1px solid var(--line-2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-3); }

.btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------
   9. NAVBAR
--------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  transition: transform .4s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin: 1rem auto 0; max-width: var(--maxw);
  padding: .7rem .7rem .7rem 1.25rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
  margin-inline: var(--gutter);
}
.nav.scrolled .nav-inner {
  background: rgba(10,10,13,0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  position: relative; font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  padding: .5rem .85rem; border-radius: 100px; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: .25rem; width: 0; height: 1px;
  background: var(--gold-2); transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 40%; }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-cta { padding: .7rem 1.3rem; font-size: .88rem; }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 8999;
  background: rgba(5,5,6,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: .5rem;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 9vw, 3.2rem);
  letter-spacing: -0.03em; color: var(--ink-soft); padding: .4rem 0; transition: color .25s, padding-left .3s var(--ease);
}
.mobile-menu a:hover { color: var(--gold-2); padding-left: .6rem; }
.mobile-menu .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ---------------------------------------------------------------------
   10. HERO
--------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 4rem; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.10; z-index: -1; filter: grayscale(0.3) contrast(1.1);
}
.hero-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 40%, transparent, rgba(5,5,6,0.4) 90%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem; border-radius: 100px; margin-bottom: 2rem;
  background: var(--surface-2); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-soft);
  backdrop-filter: blur(8px);
}
.hero-badge .pip { width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2); box-shadow: 0 0 12px var(--gold-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { margin-bottom: 1.75rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }

.hero-rotator { display: inline-grid; }
.hero-rotator > span {
  grid-area: 1 / 1; opacity: 0; transform: translateY(0.5em);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.hero-rotator > span.active { opacity: 1; transform: translateY(0); }

.hero-sub {
  max-width: 56ch; margin: 0 auto 2.5rem; color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem); line-height: 1.6;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.75rem; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-dim);
}
.hero-scroll .mouse { width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px; }
.hero-scroll .mouse i { width: 3px; height: 7px; background: var(--gold-2); border-radius: 2px;
  animation: scrolly 1.8s var(--ease) infinite; }
@keyframes scrolly { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------------------------------------------------------------------
   11. MARQUEE
--------------------------------------------------------------------- */
.marquee {
  position: relative; overflow: hidden; padding-block: 1.6rem;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  -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: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em; color: transparent;
  -webkit-text-stroke: 1px var(--ink-faint); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: '✦'; -webkit-text-stroke: 0; color: var(--gold-3); font-size: .7em; }
.marquee-track .fill { color: var(--ink); -webkit-text-stroke: 0; }
.marquee-track .gold { color: transparent; -webkit-text-stroke: 1px var(--gold-3); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------
   12. STATS
--------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; }
.stat { background: var(--bg-2); padding: clamp(1.75rem, 4vw, 2.75rem) 1.5rem; text-align: center;
  position: relative; transition: background .3s; }
.stat:hover { background: var(--bg-3); }
.stat-num { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.04em; }
.stat-num .suffix { -webkit-text-fill-color: var(--gold-2); color: var(--gold-2); }
.stat-label { margin-top: .6rem; font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------------------------------------------------------------------
   13. BENTO / SERVICES
--------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.9rem, 1.6vw, 1.25rem); }
.card {
  position: relative; border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.card::before { /* gradient sheen following pointer */
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(245,208,97,0.14), transparent 60%);
  pointer-events: none;
}
.card:hover { border-color: var(--line-2); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.card:hover::before { opacity: 1; }
.card > * { transform: translateZ(30px); }

.svc-1 { grid-column: span 2; }
.svc-2 { grid-column: span 2; }
.svc-3 { grid-column: span 2; }
.card-index { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em;
  color: var(--ink-dim); margin-bottom: 1.5rem; }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 1.5rem; color: var(--gold-2);
  background: radial-gradient(circle at 30% 25%, rgba(245,208,97,0.22), rgba(245,208,97,0.05));
  border: 1px solid rgba(245,208,97,0.25);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.card p { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; margin-bottom: 1.5rem; }
.card-list { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; }
.card-list li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: var(--ink-soft); }
.card-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 8px var(--glow-gold); }
.card-link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display);
  font-weight: 600; font-size: .92rem; color: var(--gold-2); transition: gap .3s var(--ease); }
.card-link:hover { gap: .85rem; }
.card-tag { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px; color: var(--gold-1);
  background: rgba(245,208,97,0.12); border: 1px solid rgba(245,208,97,0.3); }
.card.featured { background: linear-gradient(180deg, rgba(245,208,97,0.10), rgba(245,208,97,0.02)); border-color: rgba(245,208,97,0.25); }

/* ---------------------------------------------------------------------
   14. PROCESS TIMELINE
--------------------------------------------------------------------- */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.5rem); }
.process-line { position: absolute; top: 38px; left: 6%; right: 6%; height: 2px;
  background: var(--line); overflow: hidden; }
.process-line i { position: absolute; inset: 0; width: 0%;
  background: linear-gradient(90deg, var(--gold-4), var(--gold-2), var(--chrome-1));
  box-shadow: 0 0 12px var(--glow-gold); transition: width 1.4s var(--ease); }
.step { position: relative; }
.step-dot { width: 14px; height: 14px; border-radius: 50%; margin: 32px auto 1.75rem;
  background: var(--bg-3); border: 2px solid var(--line-2); position: relative; z-index: 2;
  transition: background .4s, border-color .4s, box-shadow .4s; }
.step.lit .step-dot { background: var(--gold-2); border-color: var(--gold-1); box-shadow: 0 0 18px var(--glow-gold); }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,5vw,3.5rem);
  line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--line-2); margin-bottom: .75rem; transition: -webkit-text-stroke-color .4s; }
.step.lit .step-num { -webkit-text-stroke: 1px var(--gold-3); }
.step h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.step p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

/* ---------------------------------------------------------------------
   15. WHY GRID
--------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem,1.6vw,1.25rem); }
.why {
  position: relative; padding: 1.9rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.why:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.why-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 1.25rem; color: var(--gold-2); background: rgba(245,208,97,0.08);
  border: 1px solid rgba(245,208,97,0.2); }
.why-ic svg { width: 22px; height: 22px; }
.why h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.why p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }

/* ---------------------------------------------------------------------
   16. SHOWCASE (pipeline visual)
--------------------------------------------------------------------- */
.showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.showcase-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.showcase-figure::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,0.6)); pointer-events: none; }
.showcase-figure .bar { display: flex; gap: .4rem; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); background: var(--bg-3); }
.showcase-figure .bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.showcase-figure img { width: 100%; }
.showcase-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.showcase-list .row { display: flex; gap: 1rem; align-items: flex-start; }
.showcase-list .k { font-family: var(--font-mono); color: var(--gold-2); font-size: .85rem; min-width: 2.5rem; }
.showcase-list .v strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .15rem; }
.showcase-list .v span { color: var(--ink-soft); font-size: .9rem; }

/* ---------------------------------------------------------------------
   17. TESTIMONIALS
--------------------------------------------------------------------- */
.tmarquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tmarquee-track { display: flex; gap: 1.25rem; width: max-content; animation: marquee 42s linear infinite; }
.tmarquee:hover .tmarquee-track { animation-play-state: paused; }
.tcard { width: min(420px, 82vw); flex-shrink: 0; padding: 2rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); }
.tcard .stars { color: var(--gold-2); letter-spacing: .15em; margin-bottom: 1.1rem; font-size: .95rem; }
.tcard p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; margin-bottom: 1.5rem; }
.tcard .who { display: flex; align-items: center; gap: .85rem; }
.tcard .ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: #160f02;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3)); }
.tcard .nm { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.tcard .rl { font-size: .8rem; color: var(--ink-dim); }

/* ---------------------------------------------------------------------
   18. BIG CTA
--------------------------------------------------------------------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  border: 1px solid rgba(245,208,97,0.25);
  background: linear-gradient(180deg, rgba(245,208,97,0.10), rgba(245,208,97,0.02)); }
.cta-band .glow { position: absolute; width: 60%; height: 140%; top: -20%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232,183,58,0.22), transparent 65%); filter: blur(40px);
  pointer-events: none; animation: pulse-cta 6s var(--ease) infinite; }
@keyframes pulse-cta { 0%,100% { opacity: .6; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.1); } }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.5rem); position: relative; z-index: 1; margin-bottom: 1.25rem; }
.cta-band p { color: var(--ink-soft); position: relative; z-index: 1; max-width: 44ch; margin: 0 auto 2.25rem; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------------------------------------------------------------------
   19. CONTACT
--------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact-info .lead { color: var(--ink-soft); margin-bottom: 2.25rem; font-size: 1.05rem; }
.contact-meta { display: flex; flex-direction: column; gap: 1rem; }
.contact-meta a { display: inline-flex; align-items: center; gap: .8rem; color: var(--ink-soft);
  font-size: 1rem; transition: color .25s; }
.contact-meta a:hover { color: var(--gold-2); }
.contact-meta .mic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--gold-2); flex-shrink: 0; }

.form { padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { position: relative; display: flex; flex-direction: column; }
.field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); padding: .85rem 1rem; font-size: .98rem; font-family: inherit;
  transition: border-color .25s, box-shadow .25s, background .25s; outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-3); box-shadow: 0 0 0 3px rgba(232,183,58,0.12); background: var(--bg-3); }
.field select option { background: var(--bg-3); color: var(--ink); }

/* honeypot — hide from humans, keep reachable for bots */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* submit status message */
.form-status { font-size: .9rem; line-height: 1.5; margin-top: -.25rem; min-height: 1.2em;
  opacity: 0; transform: translateY(4px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.form-status.show { opacity: 1; transform: none; }
.form-status.ok  { color: var(--gold-2); }
.form-status.err { color: #ff8e7a; }

/* ---------------------------------------------------------------------
   20. FOOTER
--------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(3rem,6vw,5rem); padding-bottom: 2.5rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand p { color: var(--ink-dim); font-size: .92rem; max-width: 32ch; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .7rem; }
.footer-logo img { height: 34px; }
.footer-logo .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft);
  transition: transform .3s var(--ease), color .25s, border-color .25s, background .25s; }
.socials a:hover { color: var(--gold-2); border-color: var(--gold-3); transform: translateY(-3px); background: rgba(245,208,97,0.08); }
.socials svg { width: 17px; height: 17px; }
.footer h4 { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 1.1rem; font-weight: 400; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: var(--ink-soft); font-size: .92rem; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--gold-2); padding-left: .25rem; }
.footer-wordmark { font-family: var(--font-display); font-weight: 700; line-height: .82;
  font-size: clamp(3.5rem, 17vw, 15rem); letter-spacing: -0.05em; text-align: center;
  color: transparent; -webkit-text-stroke: 1px var(--line-2);
  margin: 1rem 0 2rem; user-select: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.75rem;
  font-size: .82rem; color: var(--ink-dim); }
.footer-bottom .legal { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   21. REVEAL ANIMATIONS
--------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

.line-mask { overflow: hidden; }
.line-mask > * { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); }
.line-mask.in > * { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .line-mask > * { transform: none; }
}

/* ---------------------------------------------------------------------
   22. RESPONSIVE
--------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .showcase { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .svc-1, .svc-2, .svc-3 { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .process-line { display: none; }
  .step-dot { margin-top: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
