/* AgentCrunch VSL — operator aesthetic */

:root {
  --bg: #0a0a0b;
  --bg-elev: #111113;
  --fg: #f5f5f4;
  --fg-dim: #a3a3a0;
  --fg-muted: #6b6b68;
  --lime: #00b9d9;
  --lime-soft: rgba(0, 185, 217, 0.14);
  --lime-line: rgba(0, 185, 217, 0.28);
  --hairline: rgba(245, 245, 244, 0.09);
  --hairline-strong: rgba(245, 245, 244, 0.18);
  --danger: #ef4444;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}

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

body.vsl-body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

.mono { font-family: var(--mono); font-feature-settings: "tnum", "zero"; letter-spacing: 0; }
.caps { text-transform: uppercase; letter-spacing: 0.08em; }
.tnum { font-variant-numeric: tabular-nums; }
.dim { color: var(--fg-dim); }
.muted { color: var(--fg-muted); }
.lime { color: var(--lime); }

/* ===== Layout ===== */
.page { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .page { padding: 0 18px; } }

/* ===== Top bar ===== */
.topbar {
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(10px);
}
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.wordmark::after { content: "⟩"; color: var(--lime); margin-left: 2px; }
.status-pill {
  font-family: var(--mono); font-size: 11px; color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.status-dot {
  width: 6px; height: 6px; background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,185,217,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,185,217,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(0,185,217,0.06); }
}

/* ===== Sticky scroll CTA ===== */
.scroll-cta {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--lime); color: #000;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  transform: translateY(-100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-cta.visible { transform: translateY(0); }
.scroll-cta a {
  color: #000; text-decoration: none;
  border: 1px solid #000; padding: 5px 12px;
  transition: background 120ms;
}
.scroll-cta a:hover { background: #000; color: var(--lime); }
.scroll-cta .dismiss {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: #000; cursor: pointer;
  font-size: 18px; padding: 2px 6px; line-height: 1;
}

/* ===== Section kicker ===== */
.kicker {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before {
  content: ""; width: 24px; height: 1px; background: var(--lime);
}

.section { padding: 96px 0; border-top: 1px solid var(--hairline); }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ===== Headlines ===== */
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.035em; }
.h1 { font-size: clamp(38px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 500; }
.h2 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.05; letter-spacing: -0.035em; }
.h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; letter-spacing: -0.02em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 18px 22px;
  border: 1px solid var(--lime);
  background: var(--lime); color: #000;
  text-decoration: none; cursor: pointer;
  transition: all 140ms ease;
  border-radius: 0;
}
.btn:hover { background: transparent; color: var(--lime); }
.btn .arrow {
  display: inline-block;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn.invert { background: #000; color: var(--lime); border-color: var(--lime); }
.btn.invert:hover { background: var(--lime); color: #000; }
.btn.ghost { background: transparent; color: var(--fg); border-color: var(--hairline-strong); }
.btn.ghost:hover { border-color: var(--fg); background: transparent; color: var(--fg); }
.btn.pulse { animation: ctapulse 1.8s ease-in-out infinite; }
@keyframes ctapulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,185,217,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(0,185,217,0); }
}

/* ===== Hero ===== */
.hero { padding: 56px 0 72px; }
.hero-labels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px;
}
.hero-headline { max-width: 960px; }
.hero-headline .h1 { text-wrap: balance; }
.hero-headline .h1 em {
  font-style: normal; color: var(--lime);
  font-family: var(--serif); font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px); color: var(--fg-dim);
  margin-top: 24px; max-width: 720px; text-wrap: pretty;
}

.hero-cta-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  margin-top: 48px;
}
@media (max-width: 960px) { .hero-cta-split { grid-template-columns: 1fr; } }

/* ===== Video ===== */
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  border: 1px solid var(--hairline-strong);
  background: #000;
  overflow: hidden;
}
.video-wrap::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,185,217,0.04) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(245,245,244,0.015) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.video-chrome {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 0.14em;
  border-bottom: 1px solid var(--hairline);
  background: rgba(0,0,0,0.5);
  z-index: 3;
}
.video-chrome .rec { color: var(--lime); display: inline-flex; align-items: center; gap: 8px; }
.video-chrome .rec::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}
.video-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; z-index: 2;
}
.play-btn {
  width: 84px; height: 84px; border: 1px solid var(--lime);
  background: rgba(0,185,217,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 200ms;
  position: relative;
}
.play-btn::before {
  content: ""; position: absolute; inset: -1px; border: 1px solid var(--lime);
  opacity: 0.35;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.6); opacity: 0; }
}
.play-btn:hover { background: var(--lime); }
.play-btn:hover svg path { fill: #000; }
.play-btn svg { width: 26px; height: 26px; margin-left: 4px; }
.video-label {
  font-family: var(--mono); font-size: 11px; color: var(--fg);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.video-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 0.14em;
  border-top: 1px solid var(--hairline);
  background: rgba(0,0,0,0.5);
  z-index: 3;
}
.progress-bar {
  height: 2px; background: var(--hairline); position: relative; width: 40%;
}
.progress-fill { position: absolute; inset: 0 auto 0 0; width: 8%; background: var(--lime); }

/* ===== Hero CTA card ===== */
.cta-card {
  border: 1px solid var(--hairline-strong);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  background: var(--bg-elev);
}
.cta-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 24px; height: 1px; background: var(--lime);
}
.cta-card h3 { font-size: 22px; letter-spacing: -0.02em; line-height: 1.15; text-wrap: balance; }
.cta-card .btn { width: 100%; justify-content: space-between; }
.cta-sub { font-family: var(--mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== Trust bar ===== */
.trust-bar {
  margin-top: 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  font-family: var(--mono); font-size: 11px; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 10px; }
.trust-bar span::before {
  content: ""; width: 5px; height: 5px; background: var(--lime);
  display: inline-block;
}

/* ===== Who this is for ===== */
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border: 1px solid var(--hairline);
}
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr; } }
.who-cell {
  padding: 32px; border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  min-height: 260px;
}
.who-cell:last-child { border-right: none; }
@media (max-width: 860px) {
  .who-cell { border-right: none; border-bottom: 1px solid var(--hairline); }
  .who-cell:last-child { border-bottom: none; }
}
.who-num { font-family: var(--mono); font-size: 11px; color: var(--lime); letter-spacing: 0.18em; }
.who-title { font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; text-wrap: balance; }
.who-body { font-size: 15px; color: var(--fg-dim); text-wrap: pretty; }
.who-kicker {
  text-align: center; margin-top: 48px;
  font-family: var(--mono); font-size: 13px; color: var(--fg);
  letter-spacing: 0.04em;
}
.who-kicker .lime-box {
  border: 1px solid var(--lime-line);
  padding: 16px 20px;
  display: inline-block;
  background: var(--lime-soft);
}

/* ===== The math ===== */
.math-table {
  margin-top: 48px;
  border: 1px solid var(--hairline-strong);
  font-family: var(--mono);
  font-size: 14px;
  overflow: hidden;
}
.math-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
}
.math-row:last-child { border-bottom: none; }
.math-cell { padding: 18px 22px; border-right: 1px solid var(--hairline); }
.math-cell:last-child { border-right: none; }
.math-head { background: var(--bg-elev); }
.math-head .math-cell { color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.math-head .math-cell.agent { color: var(--lime); }
.math-label { color: var(--fg-dim); }
.math-value { color: var(--fg); }
.math-value.bad { color: var(--fg-muted); text-decoration: line-through; text-decoration-color: rgba(239, 68, 68, 0.45); text-decoration-thickness: 1px; }
.math-value.good { color: var(--lime); }
.math-savings {
  background: var(--lime); color: #000;
  font-weight: 600;
}
.math-savings .math-cell { border-right-color: rgba(0,0,0,0.15); }
.math-savings .math-cell.savings-label { grid-column: 1 / 3; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; }
.math-savings .math-cell.savings-value { text-align: right; font-size: 18px; letter-spacing: 0; }

@media (max-width: 720px) {
  .math-row { grid-template-columns: 1.4fr 1fr; font-size: 12px; }
  .math-row .math-cell:nth-child(2) { display: none; }
  .math-savings .math-cell.savings-label { grid-column: 1 / 2; }
}

/* ===== Proof cases ===== */
.proof-cases { margin-top: 48px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--hairline); }
.proof-case {
  padding: 32px; display: grid; grid-template-columns: 180px 1fr 280px; gap: 32px;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.proof-case:last-child { border-bottom: none; }
@media (max-width: 960px) { .proof-case { grid-template-columns: 1fr; gap: 18px; } }
.proof-label { font-family: var(--mono); font-size: 11px; color: var(--lime); letter-spacing: 0.18em; padding-top: 6px; }
.proof-headline { font-size: 24px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 500; text-wrap: balance; }
.proof-desc { color: var(--fg-dim); font-size: 15px; margin-top: 12px; text-wrap: pretty; }
.proof-meta { font-family: var(--mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.12em; padding-top: 6px; }
.proof-meta div { margin-bottom: 6px; }
.proof-meta span { color: var(--fg-dim); }

/* ===== Eddie block ===== */
.eddie {
  margin-top: 72px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 960px) { .eddie { grid-template-columns: 1fr; gap: 32px; } }
.eddie-copy .h2 { text-wrap: balance; margin-top: 16px; }
.eddie-copy p { color: var(--fg-dim); font-size: 16px; margin-top: 20px; text-wrap: pretty; }
.eddie-copy p strong { color: var(--fg); font-weight: 500; }

/* ===== Dashboard mock ===== */
.dash {
  border: 1px solid var(--hairline-strong);
  background: #0e0e10;
  font-family: var(--mono); font-size: 12px;
  overflow: hidden;
}
.dash-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
  background: #0a0a0b;
}
.dash-bar .dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--hairline-strong); }
.dash-bar .dash-title {
  font-size: 11px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.14em;
  margin-left: auto; margin-right: auto;
}
.dash-bar .dash-right { color: var(--lime); font-size: 10px; letter-spacing: 0.14em; }
.dash-body { padding: 0; }
.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
}
.dash-row:last-child { border-bottom: none; }
.dash-row .tag {
  display: inline-block; padding: 2px 6px;
  font-size: 9px; letter-spacing: 0.1em;
  border: 1px solid var(--hairline-strong);
  color: var(--fg-dim);
  text-transform: uppercase;
}
.dash-row .tag.done { color: var(--lime); border-color: var(--lime-line); background: var(--lime-soft); }
.dash-row .tag.run { color: #fbbf24; border-color: rgba(251,191,36,0.4); }
.dash-row .meta { color: var(--fg-muted); font-size: 10px; }
.dash-row .label { color: var(--fg); }
.dash-section {
  padding: 12px 14px;
  font-size: 10px; color: var(--fg-muted); letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  background: #0c0c0e;
  display: flex; justify-content: space-between;
}
.dash-section b { color: var(--lime); font-weight: 500; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--hairline); }
.dash-stat { padding: 14px; border-right: 1px solid var(--hairline); }
.dash-stat:last-child { border-right: none; }
.dash-stat .num { font-size: 22px; color: var(--fg); letter-spacing: -0.02em; }
.dash-stat .num .lime { color: var(--lime); }
.dash-stat .lbl { font-size: 9px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px; }

.dash-cursor {
  display: inline-block; width: 7px; height: 12px; background: var(--lime);
  vertical-align: middle; margin-left: 3px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ===== Stack ===== */
.stack {
  margin-top: 48px;
  border: 1px solid var(--hairline-strong);
  font-family: var(--mono);
}
.stack-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  padding: 20px 22px;
  border-bottom: 1px solid var(--hairline);
  gap: 20px;
  align-items: center;
}
.stack-row:last-child { border-bottom: none; }
.stack-num { color: var(--fg-muted); font-size: 12px; letter-spacing: 0.14em; }
.stack-label { color: var(--fg); font-size: 14px; text-wrap: balance; }
.stack-value { color: var(--lime); font-size: 13px; letter-spacing: 0.04em; text-align: right; font-weight: 600; }
.stack-total {
  background: var(--lime); color: #000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 22px;
  font-family: var(--mono); font-size: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.stack-subline {
  margin-top: 18px;
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 720px) {
  .stack-row { grid-template-columns: 40px 1fr; }
  .stack-value { grid-column: 2; text-align: left; padding-left: 0; }
}

/* ===== Guarantee ===== */
.guarantee {
  margin-top: 48px;
  border: 1px solid var(--lime-line);
  background: var(--lime-soft);
  padding: 56px 40px;
  text-align: center;
  position: relative;
}
.guarantee::before, .guarantee::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--lime);
}
.guarantee::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.guarantee::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.guarantee .h2 { text-wrap: balance; max-width: 760px; margin: 0 auto; }
.guarantee .h2 em { font-style: normal; color: var(--lime); font-family: var(--serif); font-weight: 400; }
.guarantee p { color: var(--fg-dim); max-width: 640px; margin: 20px auto 0; text-wrap: pretty; }
.guarantee .g-meta {
  margin-top: 32px;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg); text-transform: uppercase; letter-spacing: 0.16em;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.guarantee .g-meta span { display: inline-flex; align-items: center; gap: 10px; }
.guarantee .g-meta span::before { content: "◆"; color: var(--lime); font-size: 9px; }

/* ===== FAQ ===== */
.faq { margin-top: 48px; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: transparent; border: none; color: var(--fg);
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 19px; font-weight: 500;
  cursor: pointer; text-align: left;
  letter-spacing: -0.015em;
  transition: color 140ms;
}
.faq-q:hover { color: var(--lime); }
.faq-q .toggle {
  font-family: var(--mono); font-size: 18px; color: var(--lime);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 20px; text-align: center;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner {
  padding: 0 0 28px; color: var(--fg-dim); font-size: 16px;
  max-width: 760px; text-wrap: pretty;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ===== Final CTA ===== */
.final-cta {
  background: var(--lime); color: #000;
  padding: 96px 40px;
  text-align: center;
}
.final-cta .h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.035em; max-width: 920px; margin: 0 auto; text-wrap: balance; }
.final-cta .h2 em { font-style: normal; font-family: var(--serif); font-weight: 400; }
.final-cta p { font-size: 18px; margin: 24px auto 40px; max-width: 560px; }
.final-cta .btn {
  background: #000; color: var(--lime); border-color: #000;
}
.final-cta .btn:hover { background: var(--lime); color: #000; }
.final-cta .bottom-meta {
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  opacity: 0.7;
}

/* ===== Calendly section ===== */
.calendly-section {
  padding: 96px 0; border-top: 1px solid var(--hairline);
}
.calendly-frame {
  margin-top: 48px; border: 1px solid var(--hairline-strong);
  background: var(--bg-elev);
  min-height: 560px;
  display: flex; flex-direction: column;
  position: relative;
}
.calendly-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.14em;
}
.calendly-body {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 0;
  min-height: 500px;
}
@media (max-width: 860px) { .calendly-body { grid-template-columns: 1fr; } }
.calendly-left {
  padding: 32px; border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.calendly-left h3 { font-size: 24px; letter-spacing: -0.02em; line-height: 1.2; text-wrap: balance; }
.calendly-left .sub { color: var(--fg-dim); font-size: 15px; }
.calendly-left .meta-list { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.calendly-left .meta-list div {
  font-family: var(--mono); font-size: 12px; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
}
.calendly-left .meta-list div::before {
  content: ""; width: 5px; height: 5px; background: var(--lime);
  display: inline-block;
}
.calendly-right { padding: 32px; display: flex; flex-direction: column; }
.cal-step-label {
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px;
}

/* Calendar grid */
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-top: 8px;
}
.cal-head {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  font-family: var(--mono); font-size: 10px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cal-head div { text-align: center; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 140ms;
  background: transparent;
  color: var(--fg);
}
.cal-day.dim { color: var(--fg-muted); cursor: default; }
.cal-day.avail { border-color: var(--hairline-strong); color: var(--fg); }
.cal-day.avail:hover { border-color: var(--lime); color: var(--lime); background: var(--lime-soft); }
.cal-day.selected { background: var(--lime); color: #000; border-color: var(--lime); }
.cal-day.today { position: relative; }
.cal-day.today::after {
  content: ""; position: absolute; bottom: 4px; width: 4px; height: 1px; background: var(--lime);
}

.cal-month-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.cal-month-head .m-title { font-size: 18px; letter-spacing: -0.01em; }
.cal-month-nav button {
  background: transparent; border: 1px solid var(--hairline-strong); color: var(--fg);
  padding: 6px 10px; font-family: var(--mono); cursor: pointer;
  transition: all 120ms;
}
.cal-month-nav button:hover { border-color: var(--lime); color: var(--lime); }
.cal-month-nav { display: flex; gap: 6px; }

/* Time slots */
.cal-times {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-top: 16px;
  max-height: 260px; overflow-y: auto;
  padding-right: 4px;
}
.cal-times::-webkit-scrollbar { width: 4px; }
.cal-times::-webkit-scrollbar-thumb { background: var(--hairline-strong); }
.cal-time {
  padding: 12px; border: 1px solid var(--hairline-strong);
  background: transparent; color: var(--fg);
  font-family: var(--mono); font-size: 13px;
  cursor: pointer;
  transition: all 140ms;
  text-align: center;
}
.cal-time:hover { border-color: var(--lime); color: var(--lime); }
.cal-time.selected { background: var(--lime); color: #000; border-color: var(--lime); }

/* Confirm form */
.cal-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.cal-form label {
  font-family: var(--mono); font-size: 10px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.cal-form input, .cal-form textarea {
  background: #0e0e10; border: 1px solid var(--hairline-strong); color: var(--fg);
  padding: 12px 14px; font-family: var(--sans); font-size: 14px;
  border-radius: 0;
  transition: border-color 140ms;
}
.cal-form input:focus, .cal-form textarea:focus {
  outline: none; border-color: var(--lime);
}
.cal-form textarea { resize: vertical; min-height: 80px; font-family: var(--sans); }

.cal-summary {
  margin-top: 12px; padding: 14px; border: 1px solid var(--lime-line);
  background: var(--lime-soft);
  font-family: var(--mono); font-size: 12px; color: var(--fg);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.cal-summary .val { color: var(--lime); }

.cal-back {
  margin-top: 16px; background: transparent; border: none;
  color: var(--fg-dim); font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; text-align: left; padding: 0;
}
.cal-back:hover { color: var(--lime); }

/* Confirmation state */
.cal-confirmation { padding: 64px 32px; text-align: center; }
.cal-confirmation .check {
  width: 64px; height: 64px; border: 1px solid var(--lime);
  background: var(--lime-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.cal-confirmation .check svg { width: 28px; height: 28px; }
.cal-confirmation .h2 { font-size: 32px; max-width: 540px; margin: 0 auto; text-wrap: balance; }
.cal-confirmation .sub { color: var(--fg-dim); margin: 16px auto 32px; max-width: 480px; }
.cal-confirmation .receipt {
  margin: 32px auto 0; max-width: 520px; text-align: left;
  border: 1px solid var(--hairline-strong);
  font-family: var(--mono); font-size: 12px;
}
.cal-confirmation .receipt-row {
  display: grid; grid-template-columns: 140px 1fr;
  padding: 12px 16px; border-bottom: 1px solid var(--hairline); gap: 14px;
}
.cal-confirmation .receipt-row:last-child { border-bottom: none; }
.cal-confirmation .receipt-row .k { color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; }
.cal-confirmation .receipt-row .v { color: var(--fg); }
.cal-confirmation .next-steps {
  margin: 32px auto 0; max-width: 520px; text-align: left;
}
.cal-confirmation .next-steps-title {
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 14px;
}
.cal-confirmation .next-steps ol {
  padding: 0; margin: 0; list-style: none;
  counter-reset: step;
}
.cal-confirmation .next-steps li {
  counter-increment: step;
  padding: 12px 0; padding-left: 36px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  font-size: 14px; color: var(--fg-dim);
}
.cal-confirmation .next-steps li:last-child { border-bottom: none; }
.cal-confirmation .next-steps li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  letter-spacing: 0.1em;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 36px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
  flex-wrap: wrap; gap: 16px;
}

/* ===== Exit intent modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity 200ms;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  border: 1px solid var(--lime-line);
  background: var(--bg-elev);
  padding: 40px;
  max-width: 520px; width: 100%;
  position: relative;
  transform: translateY(12px); transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal::before, .modal::after {
  content: ""; position: absolute; width: 18px; height: 18px; border: 1px solid var(--lime);
}
.modal::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.modal::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.modal .close {
  position: absolute; top: 14px; right: 16px;
  background: transparent; border: none; color: var(--fg-dim);
  font-size: 20px; cursor: pointer;
  font-family: var(--mono);
}
.modal .close:hover { color: var(--fg); }
.modal .kicker { margin-bottom: 12px; }
.modal h3 { font-size: 28px; letter-spacing: -0.025em; line-height: 1.15; text-wrap: balance; }
.modal p { color: var(--fg-dim); margin-top: 14px; font-size: 15px; }
.modal .form-row { display: flex; gap: 10px; margin-top: 24px; }
.modal input {
  flex: 1; background: #0e0e10; border: 1px solid var(--hairline-strong); color: var(--fg);
  padding: 14px; font-family: var(--sans); font-size: 14px;
  border-radius: 0;
}
.modal input:focus { outline: none; border-color: var(--lime); }
.modal .btn { padding: 14px 20px; }

/* ===== Proof ticker ===== */
.ticker {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; padding: 14px 0;
  font-family: var(--mono); font-size: 11px; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 0.18em;
  white-space: nowrap;
  margin: 0;
}
.ticker-track { display: inline-flex; gap: 48px; animation: ticker 40s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 14px; }
.ticker span::before { content: "◆"; color: var(--lime); font-size: 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Tweaks panel ===== */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 60;
  background: var(--bg-elev);
  border: 1px solid var(--hairline-strong);
  padding: 20px;
  width: 300px;
  font-family: var(--mono);
  display: none;
  max-height: 80vh; overflow-y: auto;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  font-size: 11px; color: var(--lime); text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 16px;
  display: flex; justify-content: space-between;
}
.tweaks-panel h4 .close-t { background: transparent; border: none; color: var(--fg-dim); cursor: pointer; font-size: 16px; }
.tweak-row { margin-bottom: 16px; }
.tweak-row label { font-size: 10px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 6px; }
.tweak-row select, .tweak-row input[type="text"] {
  width: 100%; background: #0e0e10; border: 1px solid var(--hairline-strong); color: var(--fg);
  padding: 8px; font-family: var(--mono); font-size: 12px; border-radius: 0;
}
.tweak-row input[type="color"] { width: 100%; height: 32px; background: transparent; border: 1px solid var(--hairline-strong); padding: 2px; cursor: pointer; }
.tweak-swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-swatch {
  width: 28px; height: 28px; border: 1px solid var(--hairline-strong); cursor: pointer;
  position: relative;
}
.tweak-swatch.active { outline: 1px solid var(--fg); outline-offset: 2px; }

/* ===== Variation B — cinematic hero ===== */
.hero-b {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-b::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,185,217,0.08) 0%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(245,245,244,0.02) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero-b-inner { position: relative; }
.hero-b-tag {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--lime-line); padding: 8px 14px;
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  text-transform: uppercase; letter-spacing: 0.16em;
  background: var(--lime-soft);
  margin-bottom: 36px;
}
.hero-b-tag::before {
  content: ""; width: 6px; height: 6px; background: var(--lime); border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-b-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 32px;
}
.hero-b-headline .sans { font-family: var(--sans); font-weight: 500; letter-spacing: -0.045em; }
.hero-b-headline .lime { color: var(--lime); }
.hero-b-headline .strike { text-decoration: line-through; text-decoration-thickness: 3px; color: var(--fg-muted); }
.hero-b-sub {
  font-size: clamp(18px, 1.6vw, 22px); color: var(--fg-dim);
  max-width: 640px; text-wrap: pretty;
}
.hero-b-video {
  margin-top: 56px;
  max-width: 1120px;
  margin-left: auto; margin-right: auto;
}

.hero-b-ctas {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-b-meta {
  margin-top: 16px;
  font-family: var(--mono); font-size: 11px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
}

/* small utility */
.hidden { display: none !important; }
.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; }
