/* ============================================================
   GROW & TURN — Global Stylesheet v2.1
   Black #080808 · Electric Lime #C8F400 · Bricolage Grotesque
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,600;12..96,700;12..96,800&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── TOKENS ── */
:root {
  --black:        #080808;
  --off:          #0f0f0f;
  --card:         #141414;
  --border:       #222222;
  --mid:          #2a2a2a;
  --muted:        #888888;     /* captions, metadata only */
  --text:         #e8e8e8;     /* body copy — near-white */
  --white:        #ffffff;     /* headings */
  --lime:         #C8F400;     /* electric — same family as logo AND */
  --lime-dk:      #9fbe00;
  --lime-glow:    rgba(200,244,0,0.18);
  --lime-glow2:   rgba(200,244,0,0.06);
  --lime-rgb:     200,244,0;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-serif:   'Instrument Serif', serif;
  --font-mono:    'JetBrains Mono', monospace;
  --ease-out:     cubic-bezier(0.16,1,0.3,1);
  --ease-spring:  cubic-bezier(0.34,1.56,0.64,1);
  --radius:       12px;
  --nav-h:        76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
  mix-blend-mode: exclusion;
}
#cursor.grow { width: 52px; height: 52px; }
@media (hover: none) { #cursor { display: none; } }

/* ── SUBTLE FILM GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed; top: var(--nav-h); left: 0; height: 2px; z-index: 9000;
  background: var(--lime); width: 0%;
  box-shadow: 0 0 12px var(--lime), 0 0 24px rgba(var(--lime-rgb),0.4);
  transition: width 0.08s linear;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav__logo { height: 42px; width: auto; transition: opacity 0.2s; }
.nav__logo:hover { opacity: 0.85; }
.nav__links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 9px 16px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
/* Lime underline slides in on hover — lime stays as interactive signal */
.nav__link::after {
  content: '';
  position: absolute; bottom: 5px; left: 16px; right: 16px;
  height: 1px; background: var(--lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover  { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--white); }
.nav__link.active::after { transform: scaleX(1); }

/* CTA — white pill, lime on hover */
.nav__cta {
  margin-left: 24px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.nav__cta:hover {
  background: var(--lime);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--lime-rgb),0.35);
}

/* Hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav__mobile {
  display: none; position: fixed;
  inset: var(--nav-h) 0 0 0; z-index: 999;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 20px; padding: 14px 32px; color: var(--white); }
.nav__mobile .nav__cta { font-size: 15px; padding: 14px 40px; margin: 20px 0 0; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad    { padding: 128px 0; }
.section-pad-sm { padding: 80px 0; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ── KICKER LABEL ── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
}

/* ── TYPOGRAPHY SCALE ── */
/* Grand, monumental sizing — agency sites should feel imposing */
.display-xl {
  font-size: clamp(56px, 8.5vw, 120px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--white);
}
.display-lg {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}
.display-md {
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
}
.display-sm {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Italic accent — lime for structure, white italic for elegance within white blocks */
.italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}

/* Body copy — white-ish for readability, NOT grey */
.body-xl  { font-size: clamp(18px, 2vw, 24px); color: var(--text); line-height: 1.7; }
.body-lg  { font-size: clamp(17px, 1.8vw, 22px); color: var(--text); line-height: 1.7; }
.body-md  { font-size: clamp(15px, 1.4vw, 18px); color: var(--text); line-height: 1.7; }
.body-sm  { font-size: 14px; color: var(--muted); line-height: 1.65; } /* muted for captions only */

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); }

.btn-lime {
  background: var(--lime); color: var(--black);
  box-shadow: 0 4px 24px rgba(var(--lime-rgb),0.3);
}
.btn-lime:hover { box-shadow: 0 12px 48px rgba(var(--lime-rgb),0.5); }

.btn-white {
  background: var(--white); color: var(--black);
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.btn-white:hover { background: var(--lime); box-shadow: 0 12px 48px rgba(var(--lime-rgb),0.4); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--lime); color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}
.btn-arrow::after { content: ' →'; transition: margin-left 0.2s; }
.btn-arrow:hover::after { margin-left: 4px; }

/* ── STAT BAR ── */
.stat-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stat-bar__inner {
  display: flex; justify-content: center; align-items: stretch;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 150px;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--card); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-num span { color: var(--lime); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 14px; align-items: center;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}
.marquee-track.rev { animation-direction: reverse; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-tag {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 40px;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}
.marquee-tag:hover { color: var(--lime); border-color: var(--lime); }
.marquee-dot { color: var(--lime); font-size: 8px; opacity: 0.6; }

/* ── CASE STUDY CARDS ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cs-card {
  position: relative;
  background: var(--card);
  padding: 44px 40px;
  overflow: hidden;
  cursor: default;
  transition: background 0.35s;
}
.cs-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.cs-card:hover { background: #191919; }
.cs-card:hover::before { transform: scaleX(1); }
.cs-card__tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 18px;
}
.cs-card__title {
  font-size: 28px; font-weight: 800;
  color: var(--white); line-height: 1.1;
  margin-bottom: 10px; letter-spacing: -0.025em;
}
.cs-card__sub {
  font-size: 15px; color: var(--text); line-height: 1.6;
  margin-bottom: 28px;
}
.cs-card__metrics {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.cs-metric { display: flex; flex-direction: column; }
.cs-metric__num {
  font-size: 34px; font-weight: 800;
  color: var(--white); letter-spacing: -0.035em; line-height: 1;
}
.cs-metric__num span { color: var(--lime); font-size: 22px; }
.cs-metric__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px;
}
.cs-card__arrow {
  position: absolute; bottom: 28px; right: 28px;
  font-size: 22px; color: var(--border);
  transition: color 0.3s, transform 0.3s var(--ease-spring);
}
.cs-card:hover .cs-card__arrow { color: var(--lime); transform: translate(4px, -4px); }

/* ── VIDEO PORTFOLIO ── */
.portfolio-section { padding: 128px 0; }
.portfolio-rows { display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.reel-row {
  display: flex; gap: 10px;
  width: max-content;
}
.reel-row:nth-child(1) { animation: scroll-left  36s linear infinite; }
.reel-row:nth-child(2) { animation: scroll-right 40s linear infinite; }
.portfolio-rows:hover .reel-row { animation-play-state: paused; }
@keyframes scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.reel-tile {
  position: relative;
  width: 170px; height: 302px;
  border-radius: 12px; overflow: hidden;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.reel-tile:hover {
  transform: scale(1.07) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(var(--lime-rgb),0.2);
}
/* Video fills the tile — JS will seek to 0.5s for thumbnail frame */
.reel-tile video {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
/* Fallback card (when video not uploaded yet) */
.reel-tile__fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #141414, #181818);
}
.reel-tile__fallback-inner { text-align: center; padding: 16px; }
.reel-tile__fallback-icon { font-size: 30px; margin-bottom: 10px; }
.reel-tile__fallback-name {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
}
/* Brand name ONLY on hover, bottom of tile */
.reel-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.2) 40%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 14px 16px;
}
.reel-tile:hover .reel-tile__overlay { opacity: 1; }
.reel-tile__brand {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
  text-shadow: 0 0 12px rgba(var(--lime-rgb),0.5);
}
/* Play icon */
.reel-play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(var(--lime-rgb),0.12);
  border: 1.5px solid rgba(var(--lime-rgb),0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring), background 0.3s;
}
.reel-tile:hover .reel-play-icon {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.12);
  background: rgba(var(--lime-rgb),0.22);
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox video {
  max-width: min(380px, 88vw);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}
#lb-close {
  position: absolute; top: 28px; right: 36px;
  font-size: 30px; color: rgba(255,255,255,0.6);
  cursor: pointer; line-height: 1;
  transition: color 0.2s, transform 0.3s var(--ease-spring);
}
#lb-close:hover { color: var(--lime); transform: rotate(90deg) scale(1.2); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.testi-card {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 640px;
  border-radius: 14px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testi-card:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.testi-card video { width: 100%; height: 100%; object-fit: cover; }
.testi-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 100%);
}
.testi-card__name { font-size: 17px; font-weight: 700; color: var(--white); }
.testi-card__role {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--lime); margin-top: 3px;
}
.testi-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(var(--lime-rgb),0.12);
  border: 2px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 24px;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.testi-card:hover .testi-play {
  transform: translate(-50%,-50%) scale(1.18);
  background: rgba(var(--lime-rgb),0.28);
}

/* ── LOGO WALL ── */
.logo-wall {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 6px;
}
.logo-pill {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 11px 22px;
  border: 1px solid var(--border); border-radius: 40px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.logo-pill:hover { color: var(--lime); border-color: var(--lime); background: var(--lime-glow2); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--lime);
  padding: 96px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(255,255,255,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .display-lg { color: var(--black); position: relative; }
.cta-band .italic-accent { color: rgba(0,0,0,0.5); }
.cta-band .body-lg { color: rgba(0,0,0,0.65); position: relative; margin: 18px 0 40px; }
.cta-band .btn-white {
  background: var(--black); color: var(--lime);
  position: relative;
  box-shadow: none;
}
.cta-band .btn-white:hover {
  background: #111;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: var(--lime);
}

/* ── FOOTER ── */
.footer {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__logo { height: 48px; margin-bottom: 18px; }
.footer__tagline { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 300px; line-height: 1.65; }
.footer__col h4 {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 18px;
}
.footer__col a {
  display: block; font-size: 15px; color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer__col a:hover { color: var(--white); padding-left: 6px; }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.4);
}

/* ── WHAT WE BUILD PILLARS ── */
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--card); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.pillar__glow {
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--lime-rgb),0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.pillar:hover { background: #191919; }
.pillar:hover .pillar__glow { opacity: 1; }
.pillar__icon { font-size: 36px; margin-bottom: 20px; display: block; }
.pillar__title { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.pillar__desc { font-size: 15px; color: var(--text); line-height: 1.65; }

/* ── HOME HERO ── */
.home-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
/* Radial ambient */
.home-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 70% 55%, rgba(var(--lime-rgb),0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(var(--lime-rgb),0.03) 0%, transparent 60%);
}
/* Perspective grid lines */
.home-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 100%);
}
.home-hero__content { position: relative; z-index: 2; padding: 100px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px; padding: 9px 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; background: var(--lime); border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow: 0 0 6px var(--lime)} 50%{box-shadow: 0 0 16px var(--lime)} }
.hero-ctas { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }

/* Typed effect */
#typed { display: inline; }
.typed-cursor { color: var(--lime); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Floating 3D stat cards */
.hero-floats {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 520px; pointer-events: none;
}
.float-card {
  position: absolute;
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}
.float-card:nth-child(1) { top: 20px; left: 80px; width: 200px; animation-delay: 0s; }
.float-card:nth-child(2) { top: 140px; left: 10px; width: 190px; animation-delay: -2s; }
.float-card:nth-child(3) { top: 70px; left: 230px; width: 195px; animation-delay: -4s; }
.float-card:nth-child(4) { top: 300px; left: 90px; width: 220px; animation-delay: -1s; }
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(0.4deg); }
}
.float-card__label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px;
}
.float-card__val {
  font-size: 32px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.03em;
}
.float-card__sub { font-size: 12px; color: var(--text); margin-top: 5px; line-height: 1.4; }

/* ── SERVICES PAGE ── */
.service-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 168px 0 96px;
}
.service-visual {
  position: relative; height: 520px;
  border-radius: 16px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
}
.service-visual__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.75);
  transition: filter 0.5s;
}
.service-visual:hover .service-visual__img { filter: grayscale(0%) brightness(0.9); }
.service-visual__badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--lime); color: var(--black);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 4px;
}
.service-cards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 2px;
}
.service-card {
  background: var(--card); padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.service-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--lime);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
  box-shadow: 2px 0 12px rgba(var(--lime-rgb),0.4);
}
.service-card:hover { background: #191919; }
.service-card:hover::after { transform: scaleY(1); }
.service-card__icon { font-size: 40px; margin-bottom: 22px; display: block; filter: grayscale(0.6); transition: filter 0.3s; }
.service-card:hover .service-card__icon { filter: none; }
.service-card__num { font-family: var(--font-mono); font-size: 11px; color: var(--lime); letter-spacing: 0.12em; margin-bottom: 12px; }
.service-card__title { font-size: 26px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.1; }
.service-card__desc { font-size: 15px; color: var(--text); line-height: 1.7; }

/* ── PROCESS TIMELINE ── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 52px 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -5px; top: 10px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--border);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.timeline-item:hover::before {
  border-color: var(--lime); background: var(--lime);
  box-shadow: 0 0 12px rgba(var(--lime-rgb),0.5);
}
.timeline-week {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px;
}
.timeline-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.timeline-desc { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 500px; }

/* ── CONTACT PAGE ── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 168px 0 96px;
}
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 52px 44px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 9px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-display); font-size: 16px;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  background: rgba(var(--lime-rgb),0.03);
  box-shadow: 0 0 0 3px rgba(var(--lime-rgb),0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit {
  width: 100%; background: var(--lime); color: var(--black);
  font-family: var(--font-mono); font-size: 14px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 18px; border-radius: 8px;
  cursor: pointer; border: none; margin-top: 8px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(var(--lime-rgb),0.4);
}
.contact-info-block { display: flex; flex-direction: column; gap: 36px; padding-top: 72px; }
.contact-info-item h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px;
}
.contact-info-item a,
.contact-info-item p { font-size: 18px; font-weight: 600; color: var(--white); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--lime); }
.contact-info-item .sub { font-size: 14px; color: var(--text); font-weight: 400; margin-top: 4px; }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.social-link:hover { border-color: var(--lime); background: rgba(var(--lime-rgb),0.03); }
.social-link__icon { font-size: 22px; }
.social-link__name { font-weight: 700; color: var(--white); font-size: 16px; }
.social-link__handle { font-family: var(--font-mono); font-size: 11px; color: var(--lime); margin-top: 1px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--white);
}
.faq-q .icon { transition: transform 0.3s; color: var(--lime); font-size: 20px; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--text); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ── CONTACT TABS ── */
.contact-tabs { display: flex; gap: 2px; margin-bottom: 28px; }
.ctab {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 6px;
  border: 1px solid var(--border); color: rgba(255,255,255,0.4);
  cursor: pointer; background: transparent;
  transition: all 0.25s;
}
.ctab.active { background: var(--lime); color: var(--black); border-color: var(--lime); }
.ctab:hover:not(.active) { border-color: var(--lime); color: var(--lime); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 168px 0 80px; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 64px 0; }
.founder-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s;
}
.founder-card:hover { border-color: rgba(var(--lime-rgb),0.3); }
.founder-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top;
  filter: grayscale(15%);
  transition: filter 0.5s;
}
.founder-card:hover .founder-photo { filter: grayscale(0%); }
.founder-info { padding: 32px; }
.founder-name { font-size: 26px; font-weight: 800; color: var(--white); }
.founder-role { font-family: var(--font-mono); font-size: 11px; color: var(--lime); letter-spacing: 0.1em; text-transform: uppercase; margin: 8px 0 14px; }
.founder-bio { font-size: 15px; color: var(--text); line-height: 1.7; }
/* About timeline */
.about-timeline { position: relative; }
.about-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--border); transform: translateX(-50%);
}
.at-item { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 44px 0; position: relative; }
.at-item::before {
  content: ''; position: absolute; left: 50%; top: 44px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--border);
  transform: translateX(-50%);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.at-item:hover::before { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(var(--lime-rgb),0.12); }
.at-year {
  text-align: right; padding-right: 44px;
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: var(--border); letter-spacing: -0.05em; line-height: 1;
  align-self: start; padding-top: 6px;
  transition: color 0.3s;
}
.at-item:hover .at-year { color: var(--lime); }
.at-content { padding-left: 44px; }
.at-content h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.at-content p { font-size: 15px; color: var(--text); line-height: 1.7; }

/* ── INDUSTRIES ── */
.industry-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.industry-card {
  background: var(--card); padding: 40px 30px;
  position: relative; overflow: hidden; cursor: default;
  transition: background 0.3s;
}
.industry-card::before {
  content: attr(data-letter);
  position: absolute; top: -10px; right: 14px;
  font-size: 88px; font-weight: 900; color: var(--border);
  line-height: 1; pointer-events: none;
  transition: color 0.3s;
}
.industry-card:hover { background: #191919; }
.industry-card:hover::before { color: rgba(var(--lime-rgb),0.08); }
.industry-card__name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.industry-card__count { font-family: var(--font-mono); font-size: 11px; color: var(--lime); letter-spacing: 0.08em; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(var(--lime-rgb),0.2); }
.blog-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--mid); }
.blog-card__body { padding: 28px; }
.blog-card__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 12px; }
.blog-card__title { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 10px; }
.blog-card__excerpt { font-size: 14px; color: var(--text); line-height: 1.65; }
.blog-card__meta { display: flex; justify-content: space-between; margin-top: 18px; font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

/* ── 3D TILT ── */
.tilt-card { transform-style: preserve-3d; perspective: 900px; will-change: transform; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }
  .hero-floats { display: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .at-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .at-year { font-size: 28px; padding-right: 0; text-align: left; }
  .about-timeline::before { left: 80px; }
  .at-item::before { left: 80px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .cs-grid { grid-template-columns: 1fr; }
  .service-hero-grid { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .contact-info-block { padding-top: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .reel-tile { width: 140px; height: 248px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
