/* =========================================================
   Clout Cat — main.css
   Tokens / Reset / Type / Layout / Components
   ========================================================= */

:root {
  /* Color tokens — 80/15/5 (dark / neutrals / neon) */
  --bg-void:        #080808;
  --surface-1:      #111111;
  --surface-2:      #1A1A1A;
  --border:         #333333;
  --border-soft:    #222222;
  --text-muted:     #666666;
  --text-secondary: #999999;
  --text-primary:   #F0F0F0;
  --accent:         #0FDF2A;
  --accent-hover:   #0A9E1D;
  --accent-ghost:   rgba(15, 223, 42, 0.10);
  --accent-glow:    rgba(15, 223, 42, 0.35);

  /* Type scale (fluid) */
  --fs-xs:    clamp(0.75rem, 0.72rem + 0.15vw, 0.85rem);
  --fs-sm:    clamp(0.875rem, 0.84rem + 0.18vw, 1rem);
  --fs-base:  clamp(1rem, 0.95rem + 0.22vw, 1.125rem);
  --fs-lg:    clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --fs-xl:    clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --fs-2xl:   clamp(2rem, 1.6rem + 1.8vw, 3rem);
  --fs-3xl:   clamp(2.75rem, 2.1rem + 3vw, 4.5rem);
  --fs-4xl:   clamp(3.5rem, 2.6rem + 4.4vw, 6.5rem);

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.5rem;
  --sp-6:  2rem;
  --sp-7:  3rem;
  --sp-8:  4rem;
  --sp-9:  6rem;
  --sp-10: 8rem;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:  180ms;
  --t-med:   320ms;
  --t-slow:  600ms;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 28px var(--accent-glow);

  /* Layout heights */
  --nav-h: 72px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { border: 0; background: none; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* =========================================================
   Base
   ========================================================= */
html { overflow-x: hidden; }
body {
  font-family: 'Satoshi', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-lg); letter-spacing: -0.01em; }

p { color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

::selection { background: var(--accent); color: #000; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout primitives
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Satoshi', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--accent-ghost);
  border-radius: var(--radius-pill);
  background: var(--accent-ghost);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.lede {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 60ch;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 0 var(--accent-glow), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 28px var(--accent-glow), inset 0 -2px 0 rgba(0,0,0,0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--text {
  padding: 0.5rem 0;
  color: var(--text-primary);
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.btn--text:hover { color: var(--accent); border-color: var(--accent); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding-inline: var(--container-pad);
  background: rgba(8, 8, 8, 0.6);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}
.nav--scrolled {
  background: rgba(8, 8, 8, 0.85);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border-soft);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
}

.nav__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}
.nav__brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #000;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 18px var(--accent-glow);
}
/* Hide brand mark in the top nav (keep visible in footer) */
.nav .nav__brand-mark { display: none; }

/* Pill nav with sliding indicator */
.nav__menu {
  justify-self: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
}
.nav__link {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.05rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: color var(--t-fast) var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--text-primary);
}
.nav__indicator {
  position: absolute;
  top: 6px;
  height: calc(100% - 12px);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  transition: left var(--t-med) var(--ease-out),
              width var(--t-med) var(--ease-out),
              opacity var(--t-fast) var(--ease-out);
  pointer-events: none;
  opacity: 0;
}
.nav__indicator--active {
  background: var(--accent);
  opacity: 1;
}
.nav__menu:has(.nav__link[aria-current="page"]:hover) .nav__indicator {
  background: rgba(255,255,255,0.08);
}

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Mobile burger */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}
.nav__burger-bars {
  position: relative;
  width: 18px; height: 12px;
}
.nav__burger-bars::before,
.nav__burger-bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out),
              top var(--t-med) var(--ease-out);
}
.nav__burger-bars::before { top: 0; }
.nav__burger-bars::after  { top: 10px; }
.nav--open .nav__burger-bars::before { top: 5px; transform: rotate(45deg); }
.nav--open .nav__burger-bars::after  { top: 5px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + var(--sp-6)) var(--container-pad) var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu__list { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-4); }
.mobile-menu__link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.01em;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-soft);
  transform: translateY(20px);
  opacity: 0;
  transition: color var(--t-fast) var(--ease-out),
              transform var(--t-med) var(--ease-out),
              opacity var(--t-med) var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 120ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 300ms; }
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(60% 50% at 80% 0%, var(--accent-ghost) 0%, transparent 60%),
              radial-gradient(40% 40% at 0% 100%, rgba(15,223,42,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Single-column, center-stage hero (no side visual) */
.hero--centered { padding-top: calc(var(--nav-h) + clamp(4rem, 12vw, 9rem)); padding-bottom: clamp(6rem, 12vw, 10rem); }
.hero__grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hero__grid--single .hero__title { max-width: 18ch; }
.hero__grid--single .hero__sub { margin-inline: auto; }
.hero__grid--single .hero__ctas { justify-content: center; }

.hero__title {
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  margin-bottom: var(--sp-5);
  overflow-wrap: normal;
}
.hero__title-cycle {
  display: inline-block;
  position: relative;
  color: var(--accent);
  min-width: 1ch;
}
.hero__title-cycle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.hero__sub {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}
.hero__avatars {
  display: inline-flex;
}
.hero__avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--surface-1);
  object-fit: cover;
  margin-left: -10px;
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__trust strong { color: var(--accent); }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.7) 100%);
  pointer-events: none;
}

.hero__chip {
  position: absolute;
  z-index: 2;
  padding: 0.7rem 1rem;
  background: rgba(8,8,8,0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__chip strong { color: var(--accent); font-weight: 700; }
.hero__chip--tl { top: 18px; left: 18px; }
.hero__chip--br { bottom: 18px; right: 18px; }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  padding-block: var(--sp-7);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-1);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-right: 60px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  white-space: nowrap;
}
.marquee__item::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-void);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.stats__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(15,223,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.stat {
  position: relative;
  text-align: left;
  padding-right: var(--sp-4);
  border-right: 1px solid var(--border-soft);
}
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__value-suffix { color: var(--accent); }
.stat__label {
  margin-top: var(--sp-2);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================================================
   Section heads (shared)
   ========================================================= */
.section__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-7);
}
.section__head h2 { max-width: 16ch; }
.section__head .lede { justify-self: end; max-width: 42ch; }

/* =========================================================
   How it works (Spotlight cards)
   ========================================================= */
.how {
  position: relative;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.spot-card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-5);
}

/* ----- Spotlight border glow on every card type -----
   Uses a pseudo-element with mask-composite to clip a radial
   gradient down to only the 1px border ring, so the highlight
   tracks the cursor along the EDGE of the card.            */
.spot-card,
.feature,
.service-card,
.testi,
.post-card,
.team-card,
.contact-info {
  position: relative;
  isolation: isolate;
}
.spot-card > *,
.feature > *,
.service-card > *,
.testi > *,
.post-card > *,
.team-card > *,
.contact-info > * {
  position: relative;
  z-index: 1;
}

/* The cursor-tracking border highlight */
.spot-card::before,
.feature::before,
.service-card::before,
.testi::before,
.post-card::before,
.team-card::before,
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    520px circle at calc(var(--mx, 50%) * 1px) calc(var(--my, 50%) * 1px),
    rgba(15, 223, 42, 0.95),
    rgba(15, 223, 42, 0.4) 18%,
    transparent 55%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

/* A subtle inner glow that follows the cursor too (very faint fill) */
.spot-card::after,
.feature::after,
.service-card::after,
.testi::after,
.post-card::after,
.team-card::after,
.contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    440px circle at calc(var(--mx, 50%) * 1px) calc(var(--my, 50%) * 1px),
    rgba(15, 223, 42, 0.1),
    transparent 65%
  );
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.spot-card:hover::before,
.feature:hover::before,
.service-card:hover::before,
.testi:hover::before,
.post-card:hover::before,
.team-card:hover::before,
.contact-info:hover::before,
.spot-card:hover::after,
.feature:hover::after,
.service-card:hover::after,
.testi:hover::after,
.post-card:hover::after,
.team-card:hover::after,
.contact-info:hover::after { opacity: 1; }

.spot-card:hover { transform: translateY(-3px); }
.spot-card__step {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--fs-sm);
  color: var(--accent);
  letter-spacing: 0.12em;
}
.spot-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.spot-card__body { color: var(--text-secondary); font-size: var(--fs-sm); }
.spot-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-ghost);
  border: 1px solid rgba(15,223,42,0.3);
  display: grid; place-items: center;
  color: var(--accent);
}

/* =========================================================
   Why Clout Cat (feature tiles)
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feature {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast) var(--ease-out);
}
.feature:hover { border-color: var(--border); }
.feature__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-ghost);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.feature__title { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.feature__body { color: var(--text-secondary); font-size: var(--fs-sm); }

/* =========================================================
   Featured drops (case-style cards)
   ========================================================= */
.drops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.drop {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.drop:hover { transform: translateY(-3px); border-color: rgba(15,223,42,0.3); }
.drop__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.drop__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.drop:hover .drop__media img { transform: scale(1.05); }
.drop__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.7) 100%);
}
.drop__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); }
.drop__handle {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.drop__title { font-size: var(--fs-lg); }
.drop__meta {
  display: flex; gap: var(--sp-4);
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.drop__meta strong { color: var(--text-primary); }

/* =========================================================
   Testimonials
   ========================================================= */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.testi {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.testi__quote {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: var(--fs-xl);
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.testi__quote::before { content: "\201C"; color: var(--accent); margin-right: 0.15em; }
.testi__person {
  display: flex; align-items: center; gap: var(--sp-3);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--sp-4);
}
.testi__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.testi__name { font-weight: 600; color: var(--text-primary); }
.testi__role { font-size: var(--fs-sm); color: var(--text-muted); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.cta-band__inner {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--surface-1) 0%, #050505 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(60% 60% at 50% 50%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.cta-band__title { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 22ch; margin-inline: auto; }
.cta-band__sub { margin-block: var(--sp-4) var(--sp-5); color: var(--text-secondary); max-width: 52ch; margin-inline: auto; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-soft);
  padding-block: clamp(3rem, 6vw, 5rem) var(--sp-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 36ch;
}
.footer__col h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col a { color: var(--text-secondary); font-size: var(--fs-sm); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.footer__socials { display: flex; gap: var(--sp-3); }
.footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  transition: color var(--t-fast), border-color var(--t-fast), background-color var(--t-fast);
}
.footer__socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-ghost);
}

/* =========================================================
   Forms (contact)
   ========================================================= */
.form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form__field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__field label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 500;
}
.form__field input,
.form__field select,
.form__field textarea {
  padding: 0.95rem 1rem;
  background: var(--surface-1);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: border-color var(--t-fast), background-color var(--t-fast);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: var(--surface-2);
}
.form__field textarea { resize: vertical; min-height: 140px; }

/* Minimal select — no native chrome */
.form__field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.75rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 1.25rem,
    calc(100% - 0.85rem) 1.25rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form__field select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
}
.form__field select::-ms-expand { display: none; }
.form__field select option {
  background: var(--surface-2);
  color: var(--text-primary);
  padding: 0.75rem;
}

.form__submit { align-self: flex-start; }

/* =========================================================
   Inner page hero
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 5rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(50% 50% at 70% 0%, var(--accent-ghost) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-block: var(--sp-4) var(--sp-5);
}
.page-hero .lede { font-size: var(--fs-lg); max-width: 58ch; }
.page-hero__meta {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.page-hero__meta strong { color: var(--text-primary); font-weight: 600; }

/* =========================================================
   Service detail cards (use .spot-card from home)
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--t-fast);
}
.service-card:hover { border-color: rgba(15,223,42,0.3); }
.service-card__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-card h3 { font-size: var(--fs-xl); }
.service-card ul { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-3); }
.service-card li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 2px;
  background: var(--accent);
}

/* Process timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}
.timeline__item {
  position: relative;
  padding-left: 4rem;
}
.timeline__dot {
  position: absolute;
  left: 16px; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg-void), 0 0 18px var(--accent-glow);
}
.timeline__week {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--fs-sm);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timeline__title { font-size: var(--fs-lg); margin: var(--sp-2) 0; }
.timeline__body { color: var(--text-secondary); }

/* =========================================================
   Team / about
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.team-grid--two {
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: start;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .team-grid, .team-grid--two { grid-template-columns: 1fr; } }

.team-card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--t-med);
}
.team-card:hover .team-card__photo img { filter: grayscale(0%); }
.team-card__body { padding: var(--sp-5); }
.team-card__name { font-size: var(--fs-lg); margin-bottom: 4px; }
.team-card__role { color: var(--accent); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.1em; }
.team-card__bio { color: var(--text-secondary); margin-top: var(--sp-3); font-size: var(--fs-sm); }

/* Mission split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Blog
   ========================================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
}
.post-card:hover { transform: translateY(-3px); border-color: rgba(15,223,42,0.3); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.post-card__meta {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex; gap: var(--sp-3);
}
.post-card__title { font-size: var(--fs-lg); }
.post-card__excerpt { color: var(--text-secondary); font-size: var(--fs-sm); flex: 1; }
.post-card__readmore {
  color: var(--accent);
  font-weight: 500;
  font-size: var(--fs-sm);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: var(--sp-2);
}
.post-card__readmore .arrow { transition: transform var(--t-fast) var(--ease-out); }
.post-card:hover .post-card__readmore .arrow { transform: translateX(4px); }

/* Article body */
.article {
  max-width: 70ch;
  margin: 0 auto;
}
.article__cover {
  margin-block: var(--sp-6) var(--sp-7);
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-1);
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__body {
  font-size: 1.075rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.article__body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-block: var(--sp-7) var(--sp-3);
}
.article__body h3 {
  font-size: var(--fs-xl);
  margin-block: var(--sp-6) var(--sp-3);
  color: var(--text-primary);
}
.article__body p { margin-bottom: var(--sp-4); }
.article__body ul, .article__body ol {
  margin-block: var(--sp-4);
  padding-left: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.article__body ul { list-style: disc; }
.article__body ol { list-style: decimal; }
.article__body li::marker { color: var(--accent); }
.article__body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(15,223,42,0.3);
  transition: border-color var(--t-fast);
}
.article__body a:hover { border-color: var(--accent); }
.article__body blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-5);
  background: var(--surface-1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--fs-lg);
  line-height: 1.45;
}

/* Related posts strip */
.related {
  margin-top: var(--sp-10);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border-soft);
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-7);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.contact-info h3 { font-size: var(--fs-xl); }
.contact-info dl { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-info dt {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info dd {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--text-primary);
}
.contact-info dd a { color: var(--accent); }
.contact-info dd a:hover { color: var(--accent-hover); }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
