/* KAMP — TikTok Shop agency
   Editorial dark, KAMP green, chrome accents. No em dashes in copy. */

:root {
  --bg: #0A0A0B;
  --bg-2: #111114;
  --bg-3: #18181D;
  --bg-4: #1F1F25;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --fg: #F5F4F0;
  --fg-2: #B8B6B0;
  --fg-dim: #6F6D67;
  --accent: #AAFF0F;
  --accent-soft: rgba(170,255,15,0.14);
  --chrome: linear-gradient(180deg, #FFFFFF 0%, #C8C8CD 35%, #6E6E76 65%, #C8C8CD 100%);
  --maxw: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', 'Söhne', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01","cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.dim { color: var(--fg-dim); }
.dim-display { color: var(--fg-dim); }
.bullet { margin: 0 .35em; opacity: .5; }
.accent { color: var(--accent); }

a { color: inherit; }

/* ── Particle field (background motion) ─────────── */
.particle-field {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  animation-name: particle-drift;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  box-shadow: 0 0 8px rgba(170,255,15,0.4);
}
@keyframes particle-drift {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.55; }
  100% { transform: translate(var(--drift, 50px), -120vh); opacity: 0; }
}

/* film grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* live indicators */
.dot-live {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 1.6s infinite; margin-right: 8px; vertical-align: middle;
}
/* Hero "ON AIR" indicator — broadcast red */
.hero-meta .dot-live {
  background: #ff3b30;
  animation: pulse-red 1.6s infinite;
  box-shadow: 0 0 0 0 #ff3b30;
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
.dot-live.small { width: 6px; height: 6px; margin-right: 6px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(170,255,15,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(170,255,15,0); }
  100% { box-shadow: 0 0 0 0 rgba(170,255,15,0); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  background: linear-gradient(180deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.5) 70%, transparent 100%);
  backdrop-filter: blur(12px);
}
.nav-inner { display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 32px; max-width: var(--maxw); margin: 0 auto; }
.nav-logo img { height: 22px; display: block; filter: brightness(1.1); }

/* Pill-grouped link cluster */
.nav-links {
  display: inline-flex;
  gap: 4px;
  justify-self: center;
  padding: 4px;
  background: rgba(20,20,22,0.55);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.nav-links a {
  color: var(--fg-2); text-decoration: none;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  padding: 9px 16px;
  border-radius: 100px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active {
  color: var(--fg);
  background: rgba(255,255,255,0.08);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-signin {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-2); text-decoration: none;
  padding: 10px 16px; border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  transition: color .2s, border-color .2s, background .2s;
}
.nav-signin:hover { color: var(--fg); border-color: var(--fg-2); background: rgba(255,255,255,0.04); }
.nav-burger { display: none; }
.nav-mobile-menu { display: none; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent); color: #0A0A0B;
  box-shadow: 0 0 0 1px rgba(170,255,15,0), 0 8px 24px rgba(170,255,15,0);
}
.btn-primary:hover { background: #C1FF4D; box-shadow: 0 0 0 1px rgba(170,255,15,0.4), 0 12px 36px rgba(170,255,15,0.18); }
.btn-ghost { background: transparent; color: var(--fg-2); border: 1px solid var(--line-2); }
.btn-ghost:hover { color: var(--fg); border-color: var(--fg-2); }
.btn.disabled, .btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ── Section primitives ─────────────────────────── */
.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 28px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 18px; line-height: 1.55; color: var(--fg-2); margin: 0 0 16px; max-width: 60ch; text-wrap: pretty; }
.lead-2 { font-size: 16px; line-height: 1.6; color: var(--fg-dim); margin: 0; max-width: 62ch; text-wrap: pretty; }

.case-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); text-decoration: none; font-size: 14px;
  border-bottom: 1px solid rgba(170,255,15,0.4);
  padding-bottom: 4px;
  transition: gap .2s, border-color .2s;
}
.case-link:hover { gap: 16px; border-color: var(--accent); }
.case-link-arrow { transition: transform .2s; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.65);
}
.hero-video-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(170,255,15,0.10) 0%, transparent 40%),
    linear-gradient(180deg, rgba(10,10,11,0.30) 0%, rgba(10,10,11,0.55) 50%, rgba(10,10,11,0.95) 100%);
}

/* drifting product card */
.hero-floating-card {
  position: absolute; top: 28%; right: 5%;
  z-index: 2; pointer-events: none;
  animation: float-drift 9s ease-in-out infinite;
}
.float-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(20,20,22,0.78);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.float-card-thumb {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, #2a2a30, #404048);
  flex-shrink: 0;
}
.float-card-info { flex: 1; min-width: 0; }
.float-card-title { font-size: 13px; font-weight: 500; }
.float-card-price { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.float-card-price .strike { color: var(--fg-dim); text-decoration: line-through; }
.float-card-price .now { color: var(--accent); font-weight: 600; }
.float-card-tag {
  font-size: 9px; padding: 4px 8px; border-radius: 4px;
  background: var(--accent); color: #000; font-weight: 600;
}
@keyframes float-drift {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50%      { transform: translate(-16px, 12px) rotate(1deg); }
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--maxw); margin: 0 auto;
  padding: 120px 32px 40px;
  display: flex; flex-direction: column;
}

.hero-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-headline {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(58px, 9vw, 156px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-headline em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.08em; background: var(--accent); opacity: 0.25;
  transform: scaleX(0); transform-origin: left;
  animation: headline-underline 1.4s 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes headline-underline {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-meta-strip {
  color: var(--fg-dim); font-size: 11.5px;
  margin-bottom: 36px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 720px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-partner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-partner-badge {
  height: 26px; width: auto; display: block;
  filter: invert(1) brightness(1.1);
  opacity: 0.85;
}

/* ── Marquee ticker ─────────────────────────────── */
.marquee-ticker {
  position: relative; z-index: 5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-ticker.accent {
  background: var(--bg-2);
  border-color: var(--line-2);
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 24px; }
.marquee-tag { color: var(--accent); }
.marquee-v { color: var(--fg); font-size: 13px; }
.marquee-sep { color: var(--fg-dim); font-size: 8px; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section 02: Laced Up proof ─────────────────── */
.proof {
  position: relative; z-index: 2;
  padding: 40px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: start;
}
.proof-text { padding-top: 12px; }
.proof-text .lead, .proof-text .lead-2 { margin-bottom: 24px; }

.proof-stage { display: flex; flex-direction: column; gap: 24px; }
.proof-stage-frame {
  position: relative;
  aspect-ratio: 9 / 12;
  max-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.proof-stage-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, #2a2a2f 0%, #15151a 50%, #0a0a0b 100%);
  animation: proof-bg-drift 12s ease-in-out infinite alternate;
}
@keyframes proof-bg-drift {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.08) translate(-4%, -2%); }
}
.proof-stage-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.02) 3px),
    radial-gradient(ellipse at 60% 70%, rgba(170,255,15,0.16) 0%, transparent 55%);
}
.proof-stage-overlay {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 4;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.proof-stage-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.5); padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--line-2); backdrop-filter: blur(8px);
}
.proof-stage-host { color: var(--fg); background: rgba(0,0,0,0.5); padding: 6px 10px; border-radius: 6px; }
.proof-stage-product {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  background: rgba(15,15,17,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 14px; padding: 12px;
}
.proof-stage-thumb { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg, #34343a, #4d4d54); flex-shrink: 0; }
.proof-stage-title { font-size: 14px; font-weight: 500; }
.proof-stage-meta { font-size: 10px; color: var(--fg-dim); margin-top: 4px; }
.proof-stage-price { font-size: 16px; font-weight: 600; color: var(--accent); margin-left: auto; }

.proof-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.proof-tile { background: var(--bg); padding: 22px 18px; }
.proof-tile-v { font-family: 'Instrument Serif', serif; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 12px; }
.proof-tile-k { color: var(--fg); margin-bottom: 6px; font-size: 10.5px; }
.proof-tile-sub { color: var(--fg-dim); font-size: 12px; }

/* ── Section 03: Flow stepper ───────────────────── */
.flow {
  position: relative; z-index: 2;
  padding: 40px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.flow-head { max-width: 880px; margin-bottom: 32px; }
.flow-lead { max-width: 70ch; }

.flow-track {
  position: relative;
  padding-top: 48px;
}
.flow-line {
  position: absolute; top: 58px; left: 10%; right: 10%; height: 2px;
  background: var(--line);
  z-index: 1;
}
.flow-line-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transition: width .12s linear;
}

.flow-nodes {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative; z-index: 2;
}
.flow-node {
  position: relative;
  padding: 0 4px;
}
.flow-node-dot {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  margin-bottom: 26px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.flow-node-dot span {
  position: absolute; inset: 4px; border-radius: 50%;
  background: var(--bg);
  transition: background .3s;
}
.flow-node.reached .flow-node-dot { border-color: var(--accent); transform: scale(1.1); box-shadow: 0 0 24px rgba(170,255,15,0.4); }
.flow-node.reached .flow-node-dot span { background: var(--accent); }

.flow-node-window { color: var(--accent); margin-bottom: 8px; opacity: 0; transform: translateY(4px); transition: opacity .4s, transform .4s; }
.flow-node.reached .flow-node-window { opacity: 1; transform: translateY(0); }
.flow-node-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-dim); margin-bottom: 12px;
}
.flow-node-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 1.6vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 12px;
}
.flow-node-body {
  font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 0;
}
.flow-node-detail {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--line);
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s, padding-top .25s, margin-top .25s;
}
.flow-node-detail p { font-size: 12.5px; line-height: 1.55; color: var(--fg-dim); margin: 8px 0 0; }
.flow-node.open .flow-node-detail {
  max-height: 200px; opacity: 1;
}

/* ── Section 04: Pillars ────────────────────────── */
.pillars {
  position: relative; z-index: 2;
  padding: 40px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.pillars-head { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin-bottom: 32px; }
.pillars-lead { max-width: 60ch; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pillar-card-wrap { background: var(--bg); }
.pillar-card {
  padding: 28px 28px 32px;
  background: var(--bg);
  min-height: 320px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  display: flex; flex-direction: column;
  transition: background .3s;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px;
  background: var(--accent);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.pillar-card:hover::before { width: 100%; }
.pillar-card:hover { background: var(--bg-2); }
.pillar-num { color: var(--fg-dim); margin-bottom: 18px; }
.pillar-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.pillar-num-big {
  font-family: 'Instrument Serif', serif;
  font-size: 64px; line-height: 0.85; letter-spacing: -0.02em;
  color: var(--fg-dim);
  transition: color .4s;
}
.pillar-card:hover .pillar-num-big { color: var(--accent); }
.pillar-glyph {
  width: 56px; height: 56px;
  opacity: 0.55;
  transition: opacity .4s, transform .6s cubic-bezier(.2,.7,.2,1);
}
.pillar-glyph svg { width: 100%; height: 100%; }
.pillar-card:hover .pillar-glyph { opacity: 1; transform: rotate(-6deg) scale(1.08); }
.pillar-corner {
  position: absolute; right: 14px; bottom: 14px;
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--fg-dim);
  opacity: 0.5;
}
.pillar-title {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 14px;
  text-wrap: balance;
}
.pillar-body { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); margin: 0 0 auto; }
.pillar-bullet {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px;
  font-size: 13px; line-height: 1.55;
  color: var(--fg-dim);
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .4s, opacity .3s, color .3s;
}
.pillar-card:hover .pillar-bullet {
  max-height: 120px; opacity: 1; color: var(--fg-2);
}
.bullet-dash { color: var(--accent); }

.pillars-cta { margin-top: 48px; text-align: center; }

/* ── Section 05: Studio ─────────────────────────── */
.studio {
  position: relative; z-index: 2;
  padding: 40px 0 40px;
  max-width: var(--maxw); margin: 0 auto;
}
.studio-head { padding: 0 32px; max-width: 980px; margin-bottom: 32px; }
.studio-lead, .studio-lead-2 { margin-bottom: 18px; }

.studio-rail-wrap { padding: 0 32px; margin-bottom: 32px; }
.studio-rail {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 24px;
  scrollbar-color: var(--line-2) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.studio-rail::-webkit-scrollbar { height: 6px; }
.studio-rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.studio-photo {
  position: relative; flex: 0 0 auto;
  width: 360px; aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  transition: transform .3s, border-color .3s;
}
.studio-photo:hover { transform: translateY(-4px); border-color: var(--line-2); }
.studio-photo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(170,255,15,0.08) 0%, transparent 50%),
    linear-gradient(135deg, hsl(calc(var(--seed) * 67deg), 18%, 22%) 0%, #15151a 100%);
}
.studio-photo-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(255,255,255,0.025) 9px),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.studio-photo-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(0,0,0,0.55); padding: 6px 10px; border-radius: 4px;
  border: 1px solid var(--line-2); backdrop-filter: blur(6px);
  color: var(--fg);
}

.studio-callout {
  padding: 32px;
  margin: 0 32px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--fg-2);
  font-size: 12px;
}

.studio-cta { padding: 0 32px; margin-top: 16px; }

/* ── US Map ──────────────────────────────────────── */
.us-map {
  position: relative;
  margin: 0 32px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 50%, var(--bg-2) 0%, var(--bg) 100%);
  overflow: hidden;
}
.us-map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.us-map-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.map-stat { background: var(--bg-2); padding: 16px 20px; }
.map-stat-v { font-family: 'JetBrains Mono', monospace; font-size: 18px; color: var(--accent); margin-top: 6px; }

/* arcs animation */
.map-arc { stroke-dasharray: 1500; stroke-dashoffset: 1500; animation: arc-trace 11s linear infinite; }
.arc-1 { animation-delay: 0s; }
.arc-2 { animation-delay: 1.4s; opacity: 0.6; }
.arc-3 { animation-delay: 2.6s; opacity: 0.4; }
@keyframes arc-trace {
  0%   { stroke-dashoffset: 1500; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1500; }
}

/* ping cities */
.map-ping-g { }
.ping-ring { fill: none; stroke: var(--accent); stroke-width: 0.8; transform-origin: center; transform-box: fill-box; animation: ping-ring-expand 2.4s ease-out infinite; }
.ping-dot { filter: drop-shadow(0 0 4px var(--accent)); }
.ping-label { fill: var(--fg-dim); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; opacity: 0.7; }
@keyframes ping-ring-expand {
  0%   { r: 3; opacity: 0.85; }
  100% { r: 14; opacity: 0; }
}
@keyframes ping-label-fade {
  0%, 30% { opacity: 0; }
  40%, 70% { opacity: 0.7; }
  100% { opacity: 0; }
}
@keyframes ping-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* studio markers */
.studio-pulse { transform-origin: center; transform-box: fill-box; }
.studio-pulse.a { animation: studio-pulse 2.4s ease-out infinite; }
.studio-pulse.b { animation: studio-pulse 2.4s ease-out infinite 1.2s; }
@keyframes studio-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.6); opacity: 0; }
}
.studio-core { filter: drop-shadow(0 0 8px var(--accent)); }
.studio-label { fill: var(--accent); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; font-weight: 600; }

/* ── Section 06: Base Camp ──────────────────────── */
.basekamp-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 36px 0 20px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4));
}
.basecamp {
  position: relative; z-index: 2;
  padding: 40px 32px 40px;
  max-width: var(--maxw); margin: 0 auto;
}
.basecamp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
  gap: 16px 80px;
  /* Constrain section height to the text column, not the dashboard */
  grid-template-rows: min-content min-content min-content;
  grid-template-areas:
    "eyebrow app"
    "title   app"
    "text    app";
}
.basecamp-eyebrow-wrap { grid-area: eyebrow; }
.basecamp-title-wrap   { grid-area: title; }
.basecamp-text { grid-area: text; max-width: 540px; }
.basecamp-app  { grid-area: app; }
.basecamp-app {
  /* Allow overflow below the section boundary */
  margin-bottom: -200px;
}
.bc-mark {
  background: var(--chrome);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.basecamp-sub { margin-bottom: 24px; }
.basecamp-features { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.basecamp-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line);
  font-size: 14.5px; line-height: 1.5; color: var(--fg-2);
}
.basecamp-feature:last-child { border-bottom: 1px solid var(--line); }
.basecamp-feature-num { color: var(--accent); padding-top: 3px; flex-shrink: 0; }
.basecamp-cta { margin-top: 32px; }

/* portal mockup */
.basecamp-app { position: relative; }
.bc-window {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
  transform: perspective(1800px) rotateY(-3deg) rotateX(2deg);
  transition: transform .6s;
}
.bc-window:hover { transform: perspective(1800px) rotateY(0) rotateX(0); }
.bc-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.bc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-4); }
.bc-dot:nth-child(1) { background: #ff5f57; }
.bc-dot:nth-child(2) { background: #febc2e; }
.bc-dot:nth-child(3) { background: #28c840; }
.bc-url { margin-left: 16px; font-size: 11px; }
.bc-status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }

.bc-body { padding: 20px; display: flex; flex-direction: column; gap: 14px;
  filter: blur(0.4px);
}
.bc-row { display: grid; gap: 14px; }
.bc-row-1 { grid-template-columns: 1.6fr 1fr; }
.bc-row-2 { grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }

.bc-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.bc-hero-card { position: relative; overflow: hidden; }
.bc-hero-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 2.8vw, 40px); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 6px 0 4px;
}
.bc-sparkline { width: 100%; height: 80px; display: block; margin-top: 12px; }
.bc-spark-dot { animation: pulse 1.6s infinite; }

.bc-side-card .bc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.bc-list-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }

.bc-cell { background: var(--bg-3); padding: 16px 18px; }
.bc-cell-v { font-family: 'JetBrains Mono', monospace; font-size: 22px; margin: 6px 0 4px; color: var(--fg); }
.bc-cell-sub { font-size: 9.5px; }

/* ── Section 07: Receipts ───────────────────────── */
.receipts {
  position: relative; z-index: 2;
  padding: 40px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.receipts-head { max-width: 880px; margin-bottom: 32px; }
.receipts-stack { display: flex; flex-direction: column; gap: 16px; }

.receipt-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s;
}
.receipt-card.open { border-color: var(--accent); }
.receipt-card:hover { border-color: var(--line-2); }
.receipt-head {
  width: 100%; background: transparent; border: none; color: var(--fg);
  text-align: left; cursor: pointer; padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.receipt-head-left { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.receipt-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
}
.receipt-tag { color: var(--fg-dim); font-size: 11px; }
.receipt-head-right { font-size: 24px; color: var(--fg-dim); }

.receipt-body {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease;
  padding: 0 32px;
}
.receipt-card.open .receipt-body { max-height: 800px; padding: 0 32px 32px; }
.receipt-card.open .receipt-body { border-top: 1px solid var(--line); }
.receipt-card.open .receipt-body { padding-top: 28px; }

.receipt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0 28px; }
.receipt-block-h { color: var(--fg-2); margin-bottom: 16px; }
.receipt-block-rows { display: flex; flex-direction: column; gap: 12px; }
.receipt-stat { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); }
.receipt-stat:first-child { border-top: 1px solid var(--line-2); }
.receipt-stat-v { font-family: 'Instrument Serif', serif; font-size: 36px; line-height: 1; letter-spacing: -0.02em; color: var(--accent); }
.receipt-stat-k { color: var(--fg-2); font-size: 11px; }

.receipt-placeholder .receipt-brand { color: var(--fg-dim); font-style: italic; }

/* ── Section 08: Why KAMP ───────────────────────── */
.why {
  position: relative; z-index: 2;
  padding: 40px 32px 120px;
  max-width: var(--maxw); margin: 0 auto;
}
.why-head { max-width: 880px; margin-bottom: 32px; }
.why-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.why-line {
  display: grid; grid-template-columns: 60px 32px 1fr;
  align-items: center; gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.why-num { color: var(--fg-dim); }
.why-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(170,255,15,0.25);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}

.credibility-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 120px;
}
.cred-stat { background: var(--bg-2); padding: 32px 28px; }
.cred-v {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.02em; color: var(--accent);
  margin-bottom: 10px;
}

/* ── Section 09: Intake ─────────────────────────── */
.intake {
  position: relative; z-index: 2;
  padding: 40px 32px 40px;
  max-width: var(--maxw); margin: 0 auto;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.intake-text { padding-top: 12px; }
.intake-sub { margin-bottom: 28px; }
.intake-meta {
  margin-top: 24px; padding: 24px 0;
  border-top: 1px solid var(--line);
}
.intake-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
}
.intake-meta-row:last-child { border-bottom: none; }
.intake-calendly { margin-top: 16px; display: inline-flex; }

.intake-exclusive {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.intake-exclusive-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(170,255,15,0.12);
}

.intake-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}
.intake-form { display: flex; flex-direction: column; gap: 22px; }
.intake-field { display: flex; flex-direction: column; gap: 8px; }
.intake-field label { letter-spacing: 0.06em; }
.intake-field input {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 2px;
  color: var(--fg); font-size: 15px;
  transition: border-color .2s;
  font-family: inherit;
}
.intake-field input:focus { outline: none; border-color: var(--accent); }
.intake-field input::placeholder { color: var(--fg-dim); }

.intake-radios { display: flex; gap: 8px; }
.intake-radio {
  background: transparent; color: var(--fg-2);
  border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; cursor: pointer; font-family: inherit;
  transition: all .2s;
}
.intake-radio:hover { color: var(--fg); border-color: var(--fg-2); }
.intake-radio.active { background: var(--accent); color: #000; border-color: var(--accent); }

.intake-submit { align-self: flex-start; margin-top: 8px; }
.intake-foot { margin-top: 8px; }

.intake-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.intake-success h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 48px; margin: 8px 0; color: var(--accent);
}
.intake-success p { color: var(--fg-2); margin: 0; max-width: 36ch; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 48px 32px 28px;
  max-width: var(--maxw); margin: 0 auto;
}
.footer-mark-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.footer-wordmark { height: 36px; display: block; }
.footer-partner-badge {
  height: 22px; width: auto; display: block;
  filter: invert(1) brightness(1.1);
  opacity: 0.85;
}
.footer-tagline {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--fg);
  letter-spacing: -0.01em;
  max-width: 56ch;
  margin: 0 0 28px;
}
.footer-tagline .dim { color: var(--fg-2); }
.footer-links {
  display: flex; flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-link {
  color: var(--fg-2); text-decoration: none;
  transition: color .2s;
}
.footer-link:hover { color: var(--accent); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .hero-floating-card { display: none; }
  .hero-inner { padding-top: 140px; }
  .proof-grid, .basecamp-grid, .intake-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-nodes { grid-template-columns: 1fr; gap: 32px; }
  .flow-line { display: none; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .receipt-grid { grid-template-columns: 1fr; gap: 24px; }
  .credibility-band { grid-template-columns: 1fr; }
  .us-map-stats { grid-template-columns: 1fr; }
  .bc-row-1 { grid-template-columns: 1fr; }
  .bc-row-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .proof-tiles { grid-template-columns: 1fr; }
  .why-line { grid-template-columns: 40px 1fr; }
  .why-line .why-icon { display: none; }
}

/* Fonts via Google import in HTML */
