/* ═══════════════════════════════════════════════════════════════
   UNTAPPED AGENTS — Homepage v2 — Apple-Level Premium
   ═══════════════════════════════════════════════════════════════ */

/* ── Nav: dark style always on homepage ──
   On homepage only the dark nav is NOT sticky — it scrolls away with the
   hero so the light .hp-tabs pill bar pins at the top. The hamburger inside
   the pill bar gives access to the dark-nav links once it's gone. */
body:has(.v2-hero) nav,
body:has(.v2-hero) nav.scrolled {
  position: absolute;
  background: #0b0a1a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body:has(.v2-hero) nav .logo,
body:has(.v2-hero) nav .nv a {
  color: rgba(255,255,255,0.85);
}
body:has(.v2-hero) nav .nv a:hover {
  color: #fff;
}
body:has(.v2-hero) nav .cta {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
body:has(.v2-hero) nav .mbtn-bar {
  background: #fff;
}

/* ── Hero — Aurora WebGL ── */
.v2-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b0a1a;
}

#auroraGL {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* Stars */
.aurora-stars {
  position: absolute; inset: -15%; z-index: 2; pointer-events: none;
  animation: auroraStarRotate 300s linear infinite;
}
@keyframes auroraStarRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.aurora-star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: auroraTwinkle var(--dur) ease-in-out infinite alternate; opacity: 0;
}
@keyframes auroraTwinkle {
  0% { opacity: 0.02; } 50% { opacity: var(--peak); } 100% { opacity: 0.04; }
}

/* Cursor glow */
.aurora-cursor-glow {
  position: fixed; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none; z-index: 3;
  background: radial-gradient(circle, rgba(255,200,140,0.05) 0%, rgba(200,135,74,0.025) 35%, transparent 70%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.5s;
  mix-blend-mode: screen;
}
.aurora-cursor-glow.active { opacity: 1; }

/* Edge overlays */
.aurora-overlay-left {
  position: absolute; top: 0; bottom: 0; left: 0; width: 230px; z-index: 4;
  background: linear-gradient(to right, #0b0a1a, transparent);
  pointer-events: none;
}
.aurora-overlay-right {
  position: absolute; top: 0; bottom: 0; right: 0; width: 230px; z-index: 4;
  background: linear-gradient(to left, #0b0a1a, transparent);
  pointer-events: none;
}
.aurora-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 240px; z-index: 4;
  background: linear-gradient(to top, #0b0a1a, #0b0a1a 25%, transparent);
  pointer-events: none;
}
.aurora-overlay-top {
  position: absolute; top: 0; left: 0; right: 0; height: 180px; z-index: 4;
  background: linear-gradient(to bottom, #0b0a1a, rgba(11,10,26,0.6) 50%, transparent);
  pointer-events: none;
}

/* Film grain — now rendered inside the WebGL fragment shader (aurora.js):
   24fps frame-quantized hash-based grain, multiplicative blend.
   This static SVG overlay is intentionally disabled. Kept in the DOM so the
   element ordering / z-index stack stays stable for any future tweaks. */
.aurora-grain {
  position: absolute; inset: 0; z-index: 5;
  opacity: 0; pointer-events: none;
}

/* Hero content */
.v2-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: auroraReveal 2s ease-out 0.5s both;
}
@keyframes auroraReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.v2-hero-tag {
  display: inline-flex;
  padding: 0;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .094em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Aurora headline */
.aurora-headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.aurora-headline span {
  /* text-shadow, not drop-shadow: it's part of ink overflow, so WebKit keeps
     it inside the compositing layer during the entrance animation (a filter
     gets clipped at the h1's bottom edge while the fade-up runs). */
  text-shadow: 0 0 8px #ffffff;
}

/* Proof bar */
.aurora-proof-bar {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 1.75rem;
  list-style: none;
}
.aurora-proof-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.094em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Aurora buttons */
.btn-aurora-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 400;
  border-radius: 0.5rem; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0, 0, 1);
  text-decoration: none; letter-spacing: -0.01em;
  line-height: 1;
  background: #fff; color: #0b0a1a; border: none;
}
.btn-aurora-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.btn-aurora-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 400;
  border-radius: 0.5rem; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0, 0, 1);
  text-decoration: none; letter-spacing: -0.01em;
  line-height: 1;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5);
}
.btn-aurora-secondary:hover {
  background: #fff; color: #0b0a1a;
  transform: translateY(-1px);
}

.v2-hero-acts {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.v2-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.v2-hs {
  text-align: center;
}

.v2-hs-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.v2-hs-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .aurora-overlay-left, .aurora-overlay-right { display: none; }
  .aurora-proof-bar { flex-direction: column; gap: 0.5rem; }
  .v2-hero-acts { flex-direction: column; align-items: center; }
  .btn-aurora-primary, .btn-aurora-secondary { width: 100%; max-width: 280px; }
  .v2-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* ── Trust Strip ── */
.v2-trust {
  padding: 1.5rem 0;
  background: var(--bg0);
  overflow: hidden;
  position: relative;
}

.v2-trust-track {
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.v2-trust-logos {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.v2-trust-label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tbr);
  letter-spacing: -0.01em;
  opacity: 0.35;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 1.75rem;
}

.v2-trust-logo {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tbr);
  letter-spacing: -0.01em;
  opacity: 0.35;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 1.75rem;
  transition: opacity 0.3s ease;
}

.v2-trust-track:hover .v2-trust-logos {
  animation-play-state: paused;
}

.v2-trust-track:hover .v2-trust-logo {
  opacity: 0.55;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-33.333%, 0, 0); }
}

/* ── Section Headers ── */
.v2-shc {
  text-align: center;
  margin-bottom: 4rem;
}

.v2-sl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cy);
  margin-bottom: 1rem;
}

.v2-sl::before {
  content: '//';
  opacity: 0.35;
}

.v2-sh {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--tbr);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.v2-sd {
  color: var(--tmd);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

/* ── How It Works ── */
.v2-how {
  padding: 8rem 2rem;
}

.v2-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-how-step {
  text-align: center;
  padding: 2.5rem 2rem;
  transition: transform 0.3s cubic-bezier(.25, 1, .5, 1);
}

.v2-how-step:hover {
  transform: translateY(-2px);
}

.v2-how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--bdr);
  background: var(--bg1);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tl);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.v2-how-step h3 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tbr);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.v2-how-step p {
  font-size: 0.9rem;
  color: var(--tmd);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ── Results / Social Proof ── */
.v2-results {
  padding: 8rem 2rem;
  border-top: 1px solid var(--bdr);
}

.v2-results-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.v2-results-lead {
  margin-bottom: 3rem;
}

.v2-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.v2-result {
  position: relative;
  padding-left: 1.5rem;
}

.v2-result::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cy);
  border-radius: 2px;
  opacity: 0.3;
}

.v2-result-num {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--tbr);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.v2-result-label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--tmd);
  line-height: 1.6;
  display: block;
}

.v2-results-quote {
  border-top: 1px solid var(--bdr);
  padding-top: 2.5rem;
}

.v2-results-quote blockquote {
  max-width: 680px;
}

.v2-results-quote p {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--tbr);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.v2-results-quote cite {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--tmd);
  font-style: normal;
}

/* ── Agents Grid ── */
.v2-agents {
  padding: 8rem 2rem;
  background: var(--bg1);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.v2-ag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
}

.v2-ag-grid-triad {
  grid-template-columns: 1fr;
  gap: var(--space-3, 1.5rem);
}

.v2-ag {
  background: var(--bg1);
  padding: 2.5rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.v2-ag:hover {
  background: var(--bg2);
}

.v2-ag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ag-c, var(--cy));
  opacity: 0;
  transition: opacity 0.35s;
}

.v2-ag:hover::before {
  opacity: 1;
}

.v2-ag-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.v2-ag-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bdr);
  background: var(--bg1);
  font-size: 1.1rem;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.v2-ag:hover .v2-ag-icon {
  border-color: var(--ag-c, var(--cy));
}

.v2-ag-num {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--td);
  letter-spacing: 0.08em;
}

.v2-ag-title {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tbr);
  letter-spacing: -0.01em;
}

.v2-ag-sub {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--ag-c, var(--cy));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.v2-ag-desc {
  font-size: 0.85rem;
  color: var(--tmd);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.v2-ag-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--bdr);
}

.v2-ag-price {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ag-c, var(--cy));
}

.v2-ag-link {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--tm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}

.v2-ag-link:hover {
  color: var(--ag-c, var(--cy));
}

.v2-ag.ag1 { --ag-c: var(--cy); --ag-bg: var(--cyd); }
.v2-ag.ag2 { --ag-c: var(--or); --ag-bg: var(--ord); }
.v2-ag.ag3 { --ag-c: var(--gn); --ag-bg: var(--gnd); }
.v2-ag.ag4 { --ag-c: var(--bl); --ag-bg: var(--bld); }
.v2-ag.ag5 { --ag-c: var(--pr); --ag-bg: var(--prd); }
.v2-ag.ag6 { --ag-c: var(--pk); --ag-bg: var(--pkd); }
.v2-ag.ag7 { --ag-c: var(--yl); --ag-bg: var(--yld); }
.v2-ag.ag8 { --ag-c: var(--rd); --ag-bg: var(--rdd); }

/* ── Agent Metrics ── */
.v2-ag-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.v2-ag-metric {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--bdr);
  background: var(--bg1);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--tmd);
  letter-spacing: 0.03em;
  border-radius: 100px;
  font-weight: 500;
}

/* ── Data Flow Visualization ── */
.v2-flow {
  max-width: 1080px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--bg0, #fff);
  border-radius: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 20px rgba(0, 0, 0, .04);
  position: relative;
}

.v2-flow-label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cy);
  margin-bottom: 1.5rem;
  text-align: center;
}

.v2-flow-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.v2-flow-node {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg0);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  transition: all 0.3s;
}

.v2-flow-node:hover {
  border-color: var(--bdrh);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transform: translateY(-2px);
}

.v2-flow-stage {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--cy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.v2-flow-agent {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tl, #1d1d1f);
  margin-bottom: 0.25rem;
}

.v2-flow-action {
  display: block;
  font-size: 0.72rem;
  color: var(--tmd, #6e6e73);
}

.v2-flow-arrow {
  font-size: 1.5rem;
  color: var(--cy);
  flex-shrink: 0;
  font-weight: 300;
  opacity: 0.5;
}

.v2-flow-note {
  font-size: 0.82rem;
  color: var(--tmd, #6e6e73);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Custom Agent Callout ── */
.v2-custom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  border: 1px dashed var(--bdrh);
  background: var(--bg2);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  border-radius: 18px;
}

.v2-custom::before {
  content: 'CUSTOM BUILD';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--cy);
  background: var(--bg2);
  padding: 0 0.75rem;
  letter-spacing: 0.12em;
}

.v2-custom h3 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tbr);
  margin-bottom: 0.75rem;
}

.v2-custom p {
  font-size: 0.9rem;
  color: var(--tmd);
  max-width: 500px;
  margin: 0 auto 1.25rem;
  line-height: 1.75;
}

.v2-custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.v2-custom-tag {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(158, 82, 97, .15);
  background: rgba(158, 82, 97, .03);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--cy);
  letter-spacing: 0.03em;
  border-radius: 100px;
}

.v2-custom-price {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--td);
}

/* ── Value Props ── */
.v2-vals {
  padding: 8rem 2rem;
}

.v2-vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-val {
  padding: 2rem 0;
}

.v2-val-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.v2-val h3 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tbr);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.v2-val p {
  font-size: 0.88rem;
  color: var(--tmd);
  line-height: 1.7;
}

/* ── Pricing ── */
.v2-pricing {
  padding: 8rem 2rem;
  background: var(--bg1);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.v2-ptable {
  border: 1px solid var(--bdr);
  background: var(--bg2);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  border-radius: 18px;
}

.v2-ptable table {
  width: 100%;
  border-collapse: collapse;
}

.v2-ptable thead th {
  padding: 0.9rem 1.5rem;
  text-align: left;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cy);
  background: var(--bg3);
  border-bottom: 1px solid var(--bdr);
}

.v2-ptable td {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--bdr);
  font-size: 0.85rem;
  vertical-align: middle;
}

.v2-ptable tr:last-child td {
  border-bottom: none;
}

.v2-ptable tbody tr {
  transition: background 0.2s;
}

.v2-ptable tbody tr:hover {
  background: rgba(158, 82, 97, .015);
}

.v2-pn {
  font-weight: 600;
  color: var(--tl);
  white-space: nowrap;
}

.v2-pp {
  font-family: 'Inter', 'DM Sans', sans-serif;
  color: var(--cy);
  font-weight: 500;
  font-size: 0.75rem;
  white-space: nowrap;
}

.v2-pg {
  color: var(--tmd);
  font-size: 0.8rem;
}

.v2-bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: visible;
}

.v2-bundle {
  padding: 2rem;
  background: var(--bg2);
  text-align: center;
  transition: all 0.3s;
}

.v2-bundle:hover {
  background: var(--bg3);
}

.v2-bundle.popular {
  background: var(--bg3);
  position: relative;
}

.v2-bundle.popular::after {
  content: 'POPULAR';
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.4rem;
  color: var(--cy);
  letter-spacing: 0.1em;
}

.v2-bundle-num {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cy);
  letter-spacing: -0.02em;
}

.v2-bundle-name {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tbr);
  margin: 0.25rem 0;
}

.v2-bundle-desc {
  font-size: 0.7rem;
  color: var(--td);
}

/* ── CTA ── */
.v2-cta {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: visible;
}

.v2-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 82, 97, .05) 0%, transparent 70%);
  pointer-events: none;
}

.v2-cta > * {
  position: relative;
  z-index: 1;
}

.v2-cta h2 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--tbr);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.v2-cta h2 em {
  font-style: normal;
  color: var(--cy);
}

.v2-cta p {
  font-size: 1rem;
  color: var(--tmd);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Shimmer text — static accent word */
.shimmer {
  color: var(--cy);
  display: inline-block;
}

/* ── Footer ── */
.ft-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ft-col {
  text-align: left;
}

.ft-logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tbr);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.ft-logo:hover {
  opacity: 0.7;
}

.ft-logo b {
  font-family: var(--font-body);
  color: var(--tbr);
  text-shadow: none;
  font-weight: inherit;
}

.ft-tagline {
  font-size: 0.82rem;
  color: var(--tmd);
  line-height: 1.6;
}

.ft-heading {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--tm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ft-links a {
  font-size: 0.82rem;
  color: var(--tmd);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: var(--cy);
}

.ft-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--bdr);
  text-align: center;
}

.ft-bottom p {
  font-size: 0.72rem;
  color: var(--td);
}

/* ── FAQ ── */
.v2-faq {
  padding: 8rem 2rem;
}

.v2-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.v2-fq {
  border-bottom: 0.5px solid rgba(0, 0, 0, .06);
}

.v2-fq summary {
  padding: 1.35rem 0;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tbr);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

.v2-fq summary::-webkit-details-marker { display: none; }
.v2-fq summary::marker { display: none; content: ''; }

.v2-fq summary::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
  background: rgba(0, 0, 0, .03) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2.5v7M2.5 6h7' stroke='%237c7c82' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}

.v2-fq summary:hover { color: var(--cy); }

.v2-fq[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(158, 82, 97, .08);
}

.v2-fq-ans {
  padding: 0 0 1.35rem;
  font-size: 0.95rem;
  color: var(--tmd);
  line-height: 1.75;
  max-width: 600px;
  animation: v2-fq-open 0.4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes v2-fq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── CTA Form ── */
.v2-cta-form {
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.v2-form-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.v2-form-field {
  flex: 1;
  position: relative;
}

.v2-form-field input {
  width: 100%;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #f5f5f7;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 980px;
  outline: none;
  transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  line-height: 1.4;
}

.v2-form-field input::placeholder {
  color: #86868b;
}

.v2-form-field input:hover {
  border-color: rgba(255, 255, 255, .25);
}

.v2-form-field input:focus {
  border-color: var(--cy);
  box-shadow: 0 0 0 3px rgba(158, 82, 97, .2);
}

.v2-form-btn {
  white-space: nowrap;
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(.25, 1, .5, 1);
  position: relative;
  overflow: hidden;
  background: #f5f5f7;
  color: #0a0a0a;
  cursor: pointer;
}

.v2-form-btn:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(255, 255, 255, .15);
  transform: translateY(-1px);
}

.v2-form-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.v2-form-note {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #86868b;
  margin-top: 1rem;
  letter-spacing: 0.005em;
}

.v2-form-error {
  display: block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #f5716c;
  margin-top: 0.35rem;
  min-height: 1.2em;
  padding-left: 1.25rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}

.v2-form-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Disclaimer ── */
.v2-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--td);
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .v2-ag-grid { grid-template-columns: 1fr; }
  .v2-ag-grid-triad { grid-template-columns: 1fr; }
  .v2-vals-grid, .v2-how-grid, .v2-bundles { grid-template-columns: 1fr; }
  .v2-results-grid { grid-template-columns: 1fr; }
  .v2-flow-chain { flex-direction: column; }
  .v2-flow-arrow { transform: rotate(90deg); }
  .v2-form-row { flex-direction: column; }
  .v2-form-btn { width: 100%; }
  .dd-grid-3 { grid-template-columns: 1fr; }
}

/* ── Homepage Section Tabs (sticky horizontal bar) ── */
.hp-tabs {
  /* Symmetric 4rem keeps the centered tabs on the true page center. The
     right 4rem also clears the absolutely-positioned .hh-burger that pins in
     this bar once the dark nav scrolls away; the matching left 4rem balances
     it (an asymmetric 2rem/4rem nudged the tabs ~16px off-centre). */
  padding: 0.5rem 4rem;
  /* Sticky to the very top — dark nav scrolls away with the hero (see
     `body:has(.v2-hero) nav { position: absolute }` above) and this light
     section-pill bar pins at the top. */
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.hp-tabs-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.hp-tabs-inner::-webkit-scrollbar {
  display: none;
}
/* Center the tabs scroll-safely: auto-margins center the group when it fits
   and collapse to 0 when it overflows on narrow screens (so the row stays
   start-aligned and fully scrollable — no clipped first tab, which plain
   justify-content:center would cause). */
.hp-tabs-inner > .hp-tab:first-child { margin-left: auto; }
.hp-tabs-inner > .hp-tab:last-child  { margin-right: auto; }
.hp-tab {
  padding: 0.55rem 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tmd);
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 980px;
  margin: 0.15rem 0.2rem;
  transition: all 0.25s cubic-bezier(.25, 1, .5, 1);
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  background: transparent;
}
.hp-tab::after {
  display: none;
}
.hp-tab:hover {
  color: var(--tl);
  background: var(--bg1);
  border-color: var(--bdrh);
}
.hp-tab.act {
  color: var(--bg0);
  background: var(--tl);
  font-weight: 600;
  border-color: var(--tl);
}

@media (max-width: 768px) {
  .hp-tabs { padding: 0 1rem; }
  .hp-tab {
    padding: 0.75rem 0.85rem;
    font-size: 0.7rem;
    margin: 0.4rem 0.15rem;
  }
  .hp-tabs-inner { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .v2-hero { min-height: auto; }
  .v2-hero-content { padding: 7rem 1.25rem 4rem; }
  .v2-hero h1 { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .v2-hero h1 em { display: inline; }
  .v2-hero-stats { flex-direction: row; flex-wrap: wrap; gap: 2.5rem; justify-content: center; }
  .v2-agents, .v2-pricing, .v2-how, .v2-vals, .v2-results, .v2-faq { padding: 5rem 1.5rem; }
  .v2-ag { padding: 2rem 1.5rem; }
  .v2-ptable { overflow-x: auto; }
  .v2-ptable table { min-width: 600px; }
  .v2-ag-foot { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .v2-ft-inner, .ft-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-brand { grid-column: 1 / -1; text-align: center; }
  .v2-flow { padding: 1.5rem; margin-top: 2rem; }
  .v2-flow-node { min-width: auto; max-width: none; }
  .v2-ag-metrics { gap: 0.35rem; }
  .v2-ag-metric { font-size: 0.55rem; padding: 0.25rem 0.65rem; }
  .v2-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .ft-inner { grid-template-columns: 1fr; }
  .ft-brand { grid-column: 1; }
}

/* ── Live call-demo iframe (homepage "How it works") ── */
.v2-how-demo {
  width: 100%;
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0;
}
.v2-how-demo iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
