/* Respondly — design tokens + base */
:root {
  --navy-900: #0A1628;
  --navy-800: #0F1E36;
  --navy-700: #152945;
  --navy-600: #1D3558;
  --navy-500: #274067;
  --line: rgba(245, 241, 234, 0.08);
  --line-strong: rgba(245, 241, 234, 0.16);
  --ink: #F5F1EA;
  --ink-dim: #B8C2D1;
  --ink-muted: #7A8BA3;
  --orange: #FF6B1A;
  --orange-hot: #FF8341;
  --orange-deep: #E85A0F;
  --green: #4ADE80;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-lift: 0 20px 60px -20px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 0 1px rgba(255,107,26,0.25), 0 20px 60px -20px rgba(255,107,26,0.4);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--navy-900);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* Subtle grid texture — barely visible */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(245,241,234,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,234,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

a { color: inherit; text-decoration: none; }

/* Typography scales */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 600; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.display {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.display .accent { color: var(--orange); }
.display .strike { position: relative; display: inline-block; }
.display .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 5px;
  background: var(--orange);
  transform: rotate(-2deg);
  animation: strike 1.2s ease-out 0.4s both;
  transform-origin: left center;
}
@keyframes strike {
  from { transform: rotate(-2deg) scaleX(0); }
  to { transform: rotate(-2deg) scaleX(1); }
}

.headline-lg { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.03em; }
.headline-md { font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.02em; }
.headline-sm { font-size: 22px; line-height: 1.15; letter-spacing: -0.01em; }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 62ch;
  font-weight: 400;
}

.body { font-size: 16px; line-height: 1.55; color: var(--ink-dim); }
.small { font-size: 14px; color: var(--ink-muted); }
.mono { font-family: var(--font-mono); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: #180A00;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--orange-hot); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink-dim); background: rgba(245,241,234,0.03); }
.btn-lg { padding: 20px 28px; font-size: 17px; border-radius: 12px; }
.btn-xl { padding: 24px 34px; font-size: 20px; border-radius: 14px; }

.arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-border { border-top: 1px solid var(--line); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 22, 40, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px; height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 100%; height: 100%; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--ink); background: rgba(245,241,234,0.04); }
.nav-link.active { color: var(--ink); background: rgba(245,241,234,0.06); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.phone-pill:hover { border-color: var(--orange); background: rgba(255,107,26,0.05); }
.phone-pill .pulse {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
}
.phone-pill .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero */
.hero { padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px); position: relative; overflow: hidden; }
.hero-copy { min-width: 0; }
.hero-visual { width: 100%; min-width: 0; display: flex; justify-content: center; align-items: stretch; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1.15fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.hero-eyebrow .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-eyebrow .live-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero p.lede { margin-top: 28px; }
.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-ctas .phone-big {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--line-strong);
}
.hero-ctas .phone-big .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-ctas .phone-big .num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-ctas .phone-big .num:hover { color: var(--orange); }

.hero-trust {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 13px;
  font-family: var(--font-mono);
}
.hero-trust .check {
  color: var(--orange);
  margin-right: 6px;
}

/* Call visualizer */
.call-viz {
  position: relative;
  width: 100%;
  min-width: 320px;
  min-height: 440px;
  aspect-ratio: 1 / 1.1;
  max-width: 520px;
  margin-left: auto;
}
.call-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.ring.r1 { width: 62%; height: 62%; }
.ring.r2 { width: 78%; height: 78%; }
.ring.r3 { width: 92%; height: 92%; }
.ring.active {
  border-color: var(--orange);
  animation: ringPulse 2s ease-out infinite;
}
.ring.r1.active { animation-delay: 0s; }
.ring.r2.active { animation-delay: 0.3s; }
.ring.r3.active { animation-delay: 0.6s; }
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.15); opacity: 0; }
}

.phone-card {
  position: absolute;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lift);
  font-size: 13px;
  width: 280px;
}
.phone-card-a {
  top: 8%;
  left: 0;
  animation: float 6s ease-in-out infinite;
}
.phone-card-b {
  bottom: 6%;
  right: 0;
  animation: float 7s ease-in-out -2s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phone-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.phone-card-head .tag-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}
.phone-card-head .tag-live::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.field-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.field-row:last-child { border-bottom: none; }
.field-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  min-width: 64px;
}
.field-row .v { color: var(--ink); }
.field-row .v.typing::after {
  content: "▍";
  color: var(--orange);
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.urgency-pill {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255,107,26,0.15);
  color: var(--orange);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Core Visualizer center */
.viz-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viz-core {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--orange-hot), var(--orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px -10px var(--orange), inset 0 0 40px rgba(0,0,0,0.2);
  position: relative;
}
.viz-core::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid rgba(255,107,26,0.3);
}
.viz-core-inner {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}
.viz-core-inner .big { font-size: 22px; display: block; color: var(--ink); letter-spacing: 0; margin-top: 4px; text-transform: none; font-family: var(--font-sans); font-weight: 600; }

/* Steps — animated scenes */
.step-scene {
  position: relative;
  height: 220px;
  margin-bottom: 32px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,107,26,0.04), transparent 60%),
    var(--navy-800);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
}
.step.active .step-scene {
  border-color: rgba(255,107,26,0.35);
  background:
    linear-gradient(180deg, rgba(255,107,26,0.09), transparent 60%),
    var(--navy-800);
}
.step .step-num,
.step .step-title,
.step .step-body {
  transition: opacity 0.4s;
}
.step:not(.active) .step-num,
.step:not(.active) .step-title,
.step:not(.active) .step-body {
  opacity: 0.45;
}
.step .active-bar {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--orange);
  width: 0;
  transition: width 0.2s linear;
}
.step.active .active-bar { width: 100%; transition: width 3.3s linear; }

/* Scene 1 — Phone ringing */
.scene-ring {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.scene-ring .handset-wrap {
  position: relative;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-ring .rings-outer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-ring .ring-a {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0;
}
.step.active .scene-ring .ring-a {
  animation: sceneRing 1.8s ease-out infinite;
}
.step.active .scene-ring .ring-a.r1 { animation-delay: 0s; width: 70px; height: 70px; }
.step.active .scene-ring .ring-a.r2 { animation-delay: 0.35s; width: 70px; height: 70px; }
.step.active .scene-ring .ring-a.r3 { animation-delay: 0.7s; width: 70px; height: 70px; }
@keyframes sceneRing {
  0% { transform: scale(1); opacity: 0.9; }
  80%, 100% { transform: scale(3.2); opacity: 0; }
}
.scene-ring .handset {
  position: relative;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--orange);
  color: #180A00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(255,107,26,0.6);
  z-index: 2;
}
.step.active .scene-ring .handset { animation: handsetShake 0.5s ease-in-out infinite; }
@keyframes handsetShake {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}
.scene-ring .caller-tag {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-align: center;
}
.scene-ring .caller-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.step.active .scene-ring .caller-tag::before { animation: pulseDot 1s infinite; }
@keyframes pulseDot { 50% { opacity: 0.25; } }

/* Scene 2 — Conversation */
.scene-convo {
  position: absolute; inset: 0;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scene-convo .bubbles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  max-width: 78%;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.bubble.from-ai {
  align-self: flex-start;
  background: rgba(255,107,26,0.15);
  color: var(--orange);
  border-bottom-left-radius: 4px;
}
.bubble.from-caller {
  align-self: flex-end;
  background: var(--navy-700);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}
.bubble .tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 3px;
}
.step.active .scene-convo .bubble { animation: bubbleIn 0.4s ease-out forwards; }
.step.active .scene-convo .bubble.b1 { animation-delay: 0.1s; }
.step.active .scene-convo .bubble.b2 { animation-delay: 0.85s; }
.step.active .scene-convo .bubble.b3 { animation-delay: 1.65s; }
.step.active .scene-convo .bubble.b4 { animation-delay: 2.4s; }
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
.scene-convo .waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
  margin-top: 10px;
}
.scene-convo .waveform span {
  display: block;
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  height: 4px;
  opacity: 0.6;
}
.step.active .scene-convo .waveform span {
  animation: waveBar 0.9s ease-in-out infinite;
}
.step.active .scene-convo .waveform span:nth-child(1) { animation-delay: 0s; }
.step.active .scene-convo .waveform span:nth-child(2) { animation-delay: 0.08s; }
.step.active .scene-convo .waveform span:nth-child(3) { animation-delay: 0.16s; }
.step.active .scene-convo .waveform span:nth-child(4) { animation-delay: 0.24s; }
.step.active .scene-convo .waveform span:nth-child(5) { animation-delay: 0.32s; }
.step.active .scene-convo .waveform span:nth-child(6) { animation-delay: 0.4s; }
.step.active .scene-convo .waveform span:nth-child(7) { animation-delay: 0.28s; }
.step.active .scene-convo .waveform span:nth-child(8) { animation-delay: 0.2s; }
.step.active .scene-convo .waveform span:nth-child(9) { animation-delay: 0.12s; }
.step.active .scene-convo .waveform span:nth-child(10) { animation-delay: 0.04s; }
@keyframes waveBar {
  0%, 100% { height: 4px; opacity: 0.45; }
  50% { height: 22px; opacity: 1; }
}

/* Scene 3 — summary */
.scene-summary {
  position: absolute; inset: 0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scene-summary .summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.scene-summary .summary-head .live {
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scene-summary .summary-head .live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.step.active .scene-summary .summary-head .live::before { animation: pulseDot 1s infinite; }

.summary-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px dashed var(--line);
  opacity: 0;
  transform: translateY(4px);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  min-width: 56px;
  flex-shrink: 0;
}
.summary-row .v { color: var(--ink); font-size: 12.5px; }
.summary-row .v .urg {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(255,107,26,0.18);
  color: var(--orange);
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.step.active .scene-summary .summary-row { animation: rowIn 0.35s ease-out forwards; }
.step.active .scene-summary .summary-row.r1 { animation-delay: 0.15s; }
.step.active .scene-summary .summary-row.r2 { animation-delay: 0.6s; }
.step.active .scene-summary .summary-row.r3 { animation-delay: 1.05s; }
.step.active .scene-summary .summary-row.r4 { animation-delay: 1.5s; }
.step.active .scene-summary .summary-row.r5 { animation-delay: 1.95s; }
@keyframes rowIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Flow connector between steps */
.step-flow-dot {
  position: absolute;
  top: 100px;
  right: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid var(--line);
  z-index: 3;
}
.step.active .step-flow-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,0.2);
}
.step:last-child .step-flow-dot { display: none; }

/* Steps */
.steps-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
  counter-increment: step;
}
.step:last-child { border-right: none; padding-right: 0; }
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .step:last-child { border-bottom: none; }
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num .ln { flex: 1; height: 1px; background: var(--line-strong); }
.step-title {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-weight: 600;
}
.step-body { color: var(--ink-dim); font-size: 15.5px; line-height: 1.55; }
.step-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--orange);
}

/* Pain/social proof */
.pain-section { background: var(--navy-800); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-stat {
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: var(--ink);
}
.pain-stat .pct { color: var(--orange); }
.pain-stat sub { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.08em; color: var(--ink-muted); text-transform: uppercase; display: block; margin-top: 16px; vertical-align: baseline; }
.pain-copy .lede { font-size: clamp(22px, 2.6vw, 32px); color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; max-width: none; }
.pain-copy .sub { margin-top: 24px; color: var(--ink-dim); font-size: 17px; line-height: 1.5; }

.money-stack {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.money-item .k { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.money-item .v { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
.money-item .v.orange { color: var(--orange); }

/* Why Respondly */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--navy-900);
  padding: 36px 30px 40px;
  position: relative;
  transition: background 0.25s;
}
.why-card:hover { background: var(--navy-800); }
.why-card .num {
  font-family: var(--font-mono);
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.why-card .title {
  font-size: 22px;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.why-card .title .hl { color: var(--orange); }
.why-card .body { margin-top: 12px; font-size: 15px; color: var(--ink-dim); line-height: 1.5; }

/* Serve section */
.serve-section { text-align: center; }
.serve-list {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.trade-chip {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 16px;
  color: var(--ink);
  background: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.2s;
}
.trade-chip:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.trade-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* Calculator */
.calc-section { background: var(--navy-800); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-result {
  font-family: var(--font-sans);
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s;
}
.calc-result .per { font-size: clamp(24px, 3vw, 38px); color: var(--ink-muted); font-family: var(--font-mono); letter-spacing: 0.02em; font-weight: 400; }

.calc-controls {
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
}
.calc-ctrl { margin-bottom: 28px; }
.calc-ctrl:last-child { margin-bottom: 0; }
.calc-ctrl .ctrl-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  gap: 16px;
}
.calc-ctrl .ctrl-label {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.calc-ctrl .ctrl-val {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--orange);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--navy-700);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--navy-800);
  box-shadow: 0 0 0 1px var(--orange), 0 4px 12px rgba(255,107,26,0.4);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--navy-800);
  box-shadow: 0 0 0 1px var(--orange);
}
.calc-days {
  display: flex;
  gap: 8px;
}
.calc-day-btn {
  flex: 1;
  padding: 12px 0;
  background: var(--navy-700);
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
}
.calc-day-btn:hover { border-color: var(--line-strong); color: var(--ink); }
.calc-day-btn.on {
  background: var(--orange);
  color: #180A00;
  border-color: var(--orange);
}

.calc-sub {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 40ch;
}
.calc-sub strong { color: var(--ink); font-weight: 500; }

.calc-formula {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.calc-formula .op { color: var(--orange); }

/* Demo CTA */
.demo-cta {
  background: var(--orange);
  color: #180A00;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(50px, 7vw, 90px) clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.demo-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.demo-cta .inner { position: relative; max-width: 900px; }
.demo-cta h2 {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.demo-cta p { font-size: clamp(18px, 1.6vw, 22px); margin-top: 20px; opacity: 0.85; line-height: 1.45; max-width: 700px; }
.demo-cta .call-now {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #180A00;
  color: var(--ink);
  padding: 24px 36px;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  transition: transform 0.15s;
}
.demo-cta .call-now:hover { transform: translateY(-2px); }
.demo-cta .call-now .label {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}
.demo-cta .meta { margin-top: 24px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* Footer */
.footer {
  padding: 80px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--navy-900);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .lede { margin-top: 20px; font-size: 15px; max-width: 36ch; color: var(--ink-dim); }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer li a { color: var(--ink-dim); font-size: 15px; transition: color 0.15s; }
.footer li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}

/* Sticky call bar for mobile */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--orange);
  color: #180A00;
  padding: 14px 18px;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  font-weight: 600;
}
@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 80px; }
}

/* Pricing */
.pricing-hero { padding: clamp(80px, 10vw, 120px) 0 40px; text-align: center; }
.pricing-hero .display { max-width: 18ch; margin: 24px auto 0; }
.pricing-hero .lede { margin: 28px auto 0; text-align: center; }

.plan-toggle {
  display: inline-flex;
  margin: 48px 0 0;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--navy-800);
  position: relative;
}
.plan-toggle button {
  position: relative;
  z-index: 2;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.plan-toggle button.active { color: #180A00; }
.plan-toggle .thumb {
  position: absolute;
  top: 4px; bottom: 4px;
  background: var(--orange);
  border-radius: 999px;
  transition: left 0.3s cubic-bezier(.4,0,.2,1), width 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.plan-toggle .save-badge {
  background: rgba(0,0,0,0.2);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.pricing-card-wrap {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 0 20px;
}
.pricing-card {
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,107,26,0.5), transparent 40%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pricing-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pricing-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.price-display .dollar { font-size: 40px; color: var(--ink-dim); font-weight: 500; }
.price-display .num { font-size: clamp(72px, 10vw, 120px); line-height: 1; }
.price-display .period { font-size: 18px; color: var(--ink-muted); font-family: var(--font-mono); letter-spacing: 0.04em; }

.price-sub { margin-top: 10px; color: var(--ink-dim); font-size: 16px; }
.price-sub .save { color: var(--orange); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; margin-left: 8px; }

.plan-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
@media (max-width: 640px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.feature-list li > span:last-child {
  flex: 1;
  text-align: center;
}
.feature-list .tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,107,26,0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-footer-row {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.pricing-footer-row .check { color: var(--orange); }

/* ROI */
.roi-section { padding: clamp(80px, 10vw, 120px) 0; }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-math {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  font-family: var(--font-mono);
}
.roi-math .row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-dim);
}
.roi-math .row:last-child { border-bottom: none; padding-bottom: 0; }
.roi-math .row.big {
  font-size: 22px;
  color: var(--ink);
  padding-top: 24px;
  border-top: 2px solid var(--orange);
  margin-top: 8px;
}
.roi-math .row.big .val { color: var(--orange); font-weight: 600; }
.roi-math .row .val { color: var(--ink); }

/* FAQ */
.faq-hero { padding: clamp(80px, 10vw, 120px) 0 0; text-align: center; }
.faq-hero .display { max-width: 18ch; margin: 24px auto 0; }

.faq-list {
  max-width: 880px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink);
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .q-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.1em;
  min-width: 56px;
  margin-top: 6px;
}
.faq-q .q-text {
  flex: 1;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.faq-q .q-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: transform 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: 2px;
}
.faq-item.open .q-toggle {
  transform: rotate(45deg);
  background: var(--orange);
  color: #180A00;
  border-color: var(--orange);
}
.faq-a-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a-wrap { max-height: 500px; }
.faq-a {
  padding: 0 0 32px 80px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 68ch;
}
@media (max-width: 640px) { .faq-a { padding-left: 0; } }

/* FAQ end CTA */
.faq-end-cta {
  max-width: 880px;
  margin: 80px auto 0;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.faq-end-cta h3 { font-size: 26px; letter-spacing: -0.02em; font-weight: 600; }
.faq-end-cta p { margin-top: 10px; color: var(--ink-dim); font-size: 15.5px; }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px;
  z-index: 100;
  box-shadow: var(--shadow-lift);
  display: none;
  font-size: 14px;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin: 0 0 14px; display: flex; justify-content: space-between; }
.tweak-row { margin-bottom: 14px; }
.tweak-row .lbl { font-size: 12px; color: var(--ink-dim); margin-bottom: 6px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opts button {
  background: var(--navy-700);
  color: var(--ink-dim);
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
}
.tweak-opts button.on { background: var(--orange); color: #180A00; border-color: var(--orange); }
.swatches { display: flex; gap: 6px; }
.swatch { width: 26px; height: 26px; border-radius: 6px; border: 2px solid transparent; cursor: pointer; }
.swatch.on { border-color: var(--ink); }

/* ——————————————————————————————————————
   Before / After hero
   —————————————————————————————————————— */
.ba-hero {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: var(--navy-900);
}
.ba-panel {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-width: 0;
}
.ba-before {
  background: linear-gradient(180deg, #1a1d22 0%, #15171b 100%);
  color: #8a8d92;
  filter: saturate(0.35);
}
.ba-after {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--ink);
  position: relative;
}
.ba-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(255,107,26,0.12), transparent 55%);
  pointer-events: none;
}

.ba-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
  min-width: 0;
  width: 100%;
}
.ba-label .ba-tag-sub {
  white-space: nowrap !important;
  text-align: right;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ba-label .ba-tag {
  flex: 0 0 auto;
  white-space: nowrap;
}
.ba-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.7;
}
.ba-tag-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}
.ba-tag-live {
  border-color: var(--orange);
  color: var(--orange);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ba-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,107,26,0.5);
  animation: livePulse 1.8s infinite;
}

/* Before: phone lock-screen notification */
.ba-phone {
  background: #0f1014;
  border: 1px solid #2a2d32;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.ba-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #5a5d62;
  letter-spacing: 0.08em;
}
.ba-time { font-weight: 600; color: #e6e8ec; font-size: 15px; font-family: var(--font-sans); letter-spacing: 0; white-space: nowrap; }
.ba-status { display: inline-flex; gap: 6px; align-items: center; color: #8a8d92; }
.ba-status svg { width: 14px; height: 14px; }
.ba-phone {
  background: #0f1014;
  border: 1px solid #2a2d32;
  border-radius: 22px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.6);
}
.ba-phone-notch {
  width: 80px; height: 14px;
  background: #050608;
  border-radius: 0 0 12px 12px;
  margin: -14px auto 4px;
  position: relative;
}

.ba-notif {
  background: #1a1d22;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-notif-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #6a6d72;
}
.ba-notif-app {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.ba-notif-icon {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ba-notif-icon.gray { background: #3a3d42; }
.ba-notif-icon.orange { background: var(--orange); color: #180A00; }
.ba-notif-time { font-size: 11px; color: #5a5d62; white-space: nowrap; }
.ba-notif-title { font-size: 14px; color: #b0b3b8; font-weight: 500; }
.ba-notif-body { font-size: 13px; color: #7a7d82; }
.ba-notif-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #5a5d62;
  text-align: right;
  text-transform: uppercase;
  padding: 0 4px;
}

.ba-copy {
  margin-top: 16px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.ba-before .ba-copy-line {
  font-size: 14px;
  color: #7a7d82;
  line-height: 1.45;
}
.ba-money-lost {
  font-family: var(--font-mono);
  font-size: 15px;
  color: #ff8a3d;
  letter-spacing: 0.01em;
  font-weight: 600;
  filter: saturate(3) brightness(1.1);
  margin-top: 14px;
}

/* After: Respondly summary notification */
.ba-notif-card {
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,107,26,0.1);
  position: relative;
  z-index: 1;
}
.ba-notif-card::before {
  content: "";
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.7;
}
.ba-notif-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.ba-notif-card-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.ba-orange-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.18), 0 0 12px rgba(255,107,26,0.5);
  flex-shrink: 0;
}
.ba-notif-card-co {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.14em;
}
.ba-notif-card-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-notif-card-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  min-width: 0;
}
.ba-notif-card-row:last-child { border-bottom: none; }
.ba-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  min-width: 56px;
  width: 56px;
  flex-shrink: 0;
}
.ba-v {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
  min-width: 0;
  flex: 1;
}
.ba-v.mono { font-family: var(--font-mono); font-size: 12.5px; }
.ba-urg {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255,107,26,0.18);
  color: var(--orange);
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ba-after .ba-copy-line {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.45;
}
.ba-after .ba-copy-line strong { color: var(--orange); font-weight: 600; }

/* Divider with "with Respondly →" */
.ba-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
}
.ba-divider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line-strong);
  transform: translateX(-0.5px);
}
.ba-divider-pill {
  position: relative;
  z-index: 2;
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}
.ba-divider-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.ba-v-full { display: inline; }
.ba-v-short { display: none; }
@media (max-width: 780px) {
  .ba-phone-after .ba-v-full { display: none; }
  .ba-phone-after .ba-v-short { display: inline; }
}

/* Mobile: keep side-by-side, just shrink */
@media (max-width: 780px) {
  .ba-hero {
    grid-template-columns: 1fr 32px 1fr;
    min-height: 0;
  }
  .ba-divider-arrow { transform: none; }
  .ba-panel { padding: 16px 12px 16px; gap: 14px; }
  .ba-phone { width: min(100%, 150px) !important; padding: 20px 8px 12px !important; }
  .ba-label .ba-tag { font-size: 9px; padding: 3px 6px; letter-spacing: 0.08em; }
  .ba-label .ba-tag-sub { font-size: 8px; letter-spacing: 0.04em; }
  .ba-before .ba-copy-line, .ba-after .ba-copy-line { font-size: 12px; line-height: 1.4; }
  .ba-money-lost { font-size: 13px; }
  .ba-divider { min-width: 0; }
  /* Scale the floating "with Respondly" pill way down so it doesn't crash phones */
  .ba-divider-pill {
    font-size: 8px !important;
    padding: 4px 8px !important;
    letter-spacing: 0.04em !important;
    gap: 4px !important;
  }
  .ba-divider-pill .ba-divider-arrow { width: 10px; height: 10px; }
  /* Stack notification card rows: label on top, value below — much more room for values */
  .ba-phone-after .ba-notif-card { padding: 8px 7px 6px !important; }
  .ba-phone-after .ba-notif-card-row {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
    padding: 4px 0 !important;
  }
  .ba-phone-after .ba-k { font-size: 7px !important; letter-spacing: 0.08em !important; }
  .ba-phone-after .ba-v { font-size: 10px !important; line-height: 1.25 !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ba-phone-after .ba-v.mono { font-size: 10px !important; }
  .ba-phone-after .ba-notif-card-co { font-size: 8px !important; letter-spacing: 0.08em !important; }
  .ba-phone-after .ba-notif-card-time { font-size: 8px !important; flex-shrink: 0; }
  .ba-phone-after .ba-notif-card-head { gap: 6px; padding-bottom: 5px !important; margin-bottom: 5px !important; }
  .ba-phone-after .ba-notif-card-app { min-width: 0; overflow: hidden; }
  .ba-phone-after .ba-notif-card-co { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .ba-phone-after .ba-orange-dot { width: 5px; height: 5px; }
  .ba-phone-after .ba-urg { font-size: 7px !important; padding: 1px 4px !important; }
}
@media (max-width: 480px) {
  .ba-hero { grid-template-columns: 1fr 20px 1fr; }
  .ba-panel { padding: 14px 8px; gap: 12px; }
  .ba-phone { width: min(100%, 130px) !important; padding: 16px 6px 10px !important; }
  .ba-label { gap: 4px; flex-wrap: wrap; }
  .ba-label .ba-tag { font-size: 8px; padding: 2px 5px; }
  .ba-label .ba-tag-sub { font-size: 7px; }
  .ba-before .ba-copy-line, .ba-after .ba-copy-line { font-size: 11px; }
  .ba-money-lost { font-size: 12px; }
  /* Hide the floating pill entirely — too cramped to keep elegant */
  .ba-divider-pill { display: none !important; }
}

/* ——————————————————————————————————————
   Mobile nav — hamburger + drawer
   —————————————————————————————————————— */
.nav-logo { cursor: pointer; flex-shrink: 0; }
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 40px; height: 40px;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 49;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer-inner {
  background: var(--navy-800);
  border-bottom: 1px solid var(--line);
  padding: 20px clamp(20px, 4vw, 48px) 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-10px);
  transition: transform 0.25s;
}
.nav-drawer.open .nav-drawer-inner { transform: translateY(0); }
.drawer-link {
  padding: 16px 4px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.drawer-link.active { color: var(--orange); }
.drawer-cta {
  margin-top: 20px;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}
.drawer-call {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

/* Phone pill — never wrap */
.phone-pill {
  white-space: nowrap;
}
.phone-pill .phone-num { white-space: nowrap; }

/* Nav breakpoints */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav-book-btn { display: none; }
  .nav-inner { height: 60px; }
  .nav-drawer { inset: 60px 0 0 0; }
  .phone-pill { padding: 8px 12px; font-size: 13px; }
  .phone-pill .pulse { width: 6px; height: 6px; }
}
@media (max-width: 380px) {
  .phone-pill { padding: 7px 10px; font-size: 12px; gap: 7px; }
  .nav-inner { padding: 0 16px; }
  .nav-burger { width: 36px; height: 36px; }
}

/* ——————————————————————————————————————
   Responsive safety — no horizontal overflow
   —————————————————————————————————————— */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; }

/* Hero grid tweak — before/after takes full width at narrow breaks */
.hero-grid { min-width: 0; }
.hero-grid > div { min-width: 0; }

/* Reduce hero top/bottom padding on phones */
@media (max-width: 560px) {
  .hero { padding: 36px 0 48px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 10px 5px 8px; margin-bottom: 20px; }
  .hero p.lede { margin-top: 20px; }
  .hero-ctas { margin-top: 28px; }
  .hero-ctas .btn-lg { padding: 16px 22px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-trust { margin-top: 28px; gap: 14px; font-size: 12px; }
  .display { font-size: clamp(40px, 11vw, 56px); }
}

/* Section vertical rhythm on small screens */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
}

/* Calculator grid — stack, wider controls */
@media (max-width: 560px) {
  .calc-controls { padding: 24px 20px; }
  .calc-result { font-size: clamp(56px, 16vw, 80px); }
  .calc-result .per { font-size: 20px; }
  .calc-days { gap: 6px; }
  .calc-day-btn { font-size: 13px; padding: 10px 0; }
  .calc-ctrl .ctrl-label { font-size: 14px; }
}

/* Pain stat — constrain on phones */
@media (max-width: 560px) {
  .pain-stat { font-size: clamp(64px, 22vw, 120px); }
  .money-stack { grid-template-columns: 1fr; gap: 16px; }
  .money-item .v { font-size: 22px; }
}

/* Steps — tighten mobile */
@media (max-width: 560px) {
  .steps-head { margin-bottom: 36px; }
  .step-title { font-size: 22px; }
  .step-scene { height: 180px; margin-bottom: 24px; }
}

/* Trade chips — smaller on phones */
@media (max-width: 560px) {
  .trade-chip { padding: 10px 14px; font-size: 14px; }
  .serve-list { gap: 8px; margin-top: 32px; }
}

/* Demo CTA — tighter on phone */
@media (max-width: 560px) {
  .demo-cta { padding: 40px 24px; }
  .demo-cta .call-now { padding: 18px 20px; width: 100%; justify-content: center; font-size: 22px; }
  .demo-cta .call-now svg { width: 22px; height: 22px; }
}

/* Footer — single column on tiny phones */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { font-size: 11px; }
}

/* Tweaks panel should not overflow */
@media (max-width: 560px) {
  .tweaks-panel {
    left: 12px;
    right: 12px;
    bottom: 88px;
    width: auto;
  }
}

/* Fade entrance */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease-out forwards; }
.fade-up.d1 { animation-delay: 0.05s; }
.fade-up.d2 { animation-delay: 0.15s; }
.fade-up.d3 { animation-delay: 0.25s; }
.fade-up.d4 { animation-delay: 0.35s; }
.fade-up.d5 { animation-delay: 0.45s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ——————————————————————————————————————
   Cinematic Hero — transformation animation
   —————————————————————————————————————— */
.cine-hero {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 440px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
}

/* Shared card chrome */
.cine-card {
  position: relative;
  border-radius: 18px;
  padding: 20px 22px;
  width: 100%;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.2,.8,.2,1), filter 0.4s;
  pointer-events: none;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
}
.cine-card.on {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* BEFORE card — muted grays, red border accent */
.cine-before {
  background: linear-gradient(180deg, #1a1d22 0%, #15171b 100%);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #9a9da2;
  filter: saturate(0.5);
  position: absolute;
  inset: 0;
}
.cine-before.on { opacity: 0.92; }
.cine-before.exit {
  transform: translateX(-50px) scale(0.95);
  opacity: 0 !important;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.4,0,.6,1);
}
.cine-before.slam {
  animation: cardJolt 0.4s cubic-bezier(.36,.07,.19,.97);
}
@keyframes cardJolt {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(-6px, 2px) scale(1.01); }
  40% { transform: translate(4px, -2px) scale(1); }
  60% { transform: translate(-3px, 1px) scale(1); }
  80% { transform: translate(2px, 0) scale(1); }
}

.cine-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cine-before .cine-card-head { border-bottom-color: rgba(239, 68, 68, 0.25); }

.cine-badge-missed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c55a5a;
}
.cine-badge-label { color: #9a6d6d; letter-spacing: 0.1em; }
.cine-ring-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}
.cine-ring-icon svg { width: 16px; height: 16px; position: relative; z-index: 2; }
.cine-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #ef4444;
  opacity: 0;
}
.cine-before.on .cine-ring-pulse { animation: cineRingPulse 1.6s ease-out; animation-iteration-count: 3; }
.cine-before.on .cine-ring-pulse.d2 { animation-delay: 0.45s; }
.cine-before.on .cine-ring-pulse.d3 { animation-delay: 0.9s; }
@keyframes cineRingPulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.cine-time {
  color: #7a7d82;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.cine-caller-block { display: flex; flex-direction: column; gap: 4px; }
.cine-caller-name { font-size: 22px; font-weight: 600; color: #c0c3c8; letter-spacing: -0.01em; font-family: var(--font-sans); text-transform: none; }
.cine-caller-num { font-family: var(--font-mono); font-size: 14px; color: #7a7d82; letter-spacing: 0.04em; }

.cine-caller-sub {
  font-size: 13px;
  color: #7a7d82;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.4s;
  min-height: 1.4em;
}
.cine-caller-sub.typing {
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  animation: cineTypein 1.1s steps(30, end);
}
@keyframes cineTypein {
  from { width: 0; }
  to   { width: 100%; }
}
.cine-caller-sub span { display: inline-block; }

/* Diagonal strikethrough slam */
.cine-strike {
  position: absolute;
  top: 50%;
  left: -4%;
  right: -4%;
  height: 4px;
  background: #ef4444;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.5);
  transform: rotate(-8deg) scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.cine-strike.slam {
  animation: cineStrike 0.35s cubic-bezier(.7, 0, .3, 1) forwards;
  animation-delay: 0.4s;
}
@keyframes cineStrike {
  0%   { transform: rotate(-8deg) scaleX(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: rotate(-8deg) scaleX(1); opacity: 1; }
}

/* Red "$480 job — gone." stamp */
.cine-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg) scale(0.4);
  font-family: var(--font-mono);
  text-align: center;
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
  padding: 10px 20px;
  border: 3px solid #ef4444;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  opacity: 0;
  pointer-events: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 4;
  white-space: nowrap;
}
.cine-stamp-amt { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.cine-stamp-gone { font-size: 13px; color: #c55a5a; letter-spacing: 0.1em; margin-top: 2px; }
.cine-stamp.slam {
  animation: cineStamp 0.5s cubic-bezier(.36,.07,.19,1) forwards;
  animation-delay: 0.65s;
}
@keyframes cineStamp {
  0%   { transform: translate(-50%, -50%) rotate(-18deg) scale(1.8); opacity: 0; }
  60%  { opacity: 1; }
  80%  { transform: translate(-50%, -50%) rotate(-4deg) scale(0.95); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(-6deg) scale(1); opacity: 1; }
}

/* BRIDGE — "What if you'd caught it?" */
.cine-bridge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 5;
}
.cine-bridge.on { opacity: 1; animation: cineBridgeIn 0.8s ease-out; }
.cine-bridge-text {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(245, 241, 234, 0.82);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 32px;
}
.cine-bridge-text em { font-style: italic; font-weight: 300; }
@keyframes cineBridgeIn {
  0%   { opacity: 0; transform: translateY(6px); }
  30%  { opacity: 1; transform: translateY(0); }
  85%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}

/* AFTER card — full color, orange glow */
.cine-after {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(255, 107, 26, 0.35);
  color: var(--ink);
  position: absolute;
  inset: 0;
  transform: translateX(60px) scale(0.96);
  box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.15),
              0 30px 80px -20px rgba(255, 107, 26, 0.25),
              0 20px 60px -20px rgba(0,0,0,0.6);
}
.cine-after::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.35), transparent 40%, rgba(255, 107, 26, 0.15));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(12px);
}
.cine-after.on {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.6s ease, transform 0.65s cubic-bezier(.2,.8,.2,1);
}
.cine-after.on::before {
  opacity: 1;
  animation: cineGlowPulse 3s ease-in-out infinite;
}
@keyframes cineGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.cine-after .cine-card-head { border-bottom-color: rgba(255,255,255,0.08); }
.cine-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.cine-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.6);
  animation: cineLivePulse 1.8s ease-in-out infinite;
}
@keyframes cineLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 107, 26, 0); }
}
.cine-sep { color: var(--ink-muted); opacity: 0.5; }
.cine-co { color: var(--orange); letter-spacing: 0.16em; }

.cine-fields { display: flex; flex-direction: column; gap: 0; }
.cine-field {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  min-height: 32px;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
.cine-field.on { opacity: 1; }
.cine-field:last-child { border-bottom: none; }
.cine-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.cine-v {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
  font-family: var(--font-sans);
  word-break: break-word;
  min-width: 0;
}
.cine-v.typing::after {
  content: "▍";
  color: var(--orange);
  margin-left: 2px;
  animation: cineBlink 0.8s steps(1) infinite;
  display: inline-block;
  transform: translateY(-1px);
}
@keyframes cineBlink { 50% { opacity: 0; } }
.cine-urg-pill {
  display: inline-block;
  background: rgba(255, 107, 26, 0.18);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.cine-close {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 0 4px;
  max-width: 420px;
  margin: 4px auto 0;
  text-align: center;
}
.cine-close strong { color: var(--orange); font-weight: 600; }
.cine-close.on { opacity: 1; transform: translateY(0); }

/* Card stack area — holds both before + after */
.cine-hero::before {
  content: "";
  display: block;
  position: relative;
  min-height: 340px;
}

/* Make the hero card area have defined height for absolute positioning */
.cine-hero {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  align-content: stretch;
}
.cine-hero > .cine-card,
.cine-hero > .cine-bridge {
  grid-row: 1;
  grid-column: 1;
  position: relative;
}
.cine-hero > .cine-before,
.cine-hero > .cine-after {
  position: relative;
  inset: auto;
}
.cine-hero > .cine-bridge {
  position: absolute;
  inset: 0;
}
.cine-hero > .cine-after {
  grid-row: 1;
  grid-column: 1;
}
.cine-hero > .cine-before {
  grid-row: 1;
  grid-column: 1;
}
.cine-hero > .cine-close {
  grid-row: 2;
  grid-column: 1;
  margin-top: 14px;
}

/* Reduced motion — show final state only */
@media (prefers-reduced-motion: reduce) {
  .cine-card,
  .cine-stamp,
  .cine-strike,
  .cine-bridge,
  .cine-caller-sub,
  .cine-close,
  .cine-field,
  .cine-ring-pulse,
  .cine-live-dot,
  .cine-after::before {
    animation: none !important;
    transition: none !important;
  }
  .cine-before { display: none; }
  .cine-after { opacity: 1 !important; transform: none !important; }
  .cine-after::before { opacity: 0.7 !important; }
  .cine-close { opacity: 1 !important; transform: none !important; }
  .cine-field { opacity: 1 !important; }
}

/* Mobile: card stacks below headline, 90% viewport width */
@media (max-width: 980px) {
  .cine-hero {
    max-width: min(520px, 90vw);
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .cine-hero { width: 90%; max-width: 90%; }
  .cine-caller-name { font-size: 18px; }
  .cine-stamp-amt { font-size: 20px; }
  .cine-bridge-text { font-size: 20px; }
  .cine-field { grid-template-columns: 72px 1fr; }
}

/* ——————————————————————————————————————
   Motion polish — targeted additions
   —————————————————————————————————————— */

/* Scroll-reveal for section headers */
.reveal-header {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.reveal-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-header { opacity: 1; transform: none; transition: none; }
}

/* Nav scroll state — thin bottom border + stronger blur */
.nav {
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, backdrop-filter 0.25s ease, background 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 22, 40, 0.82);
}

/* Primary CTA — hover brightens 5% */
.btn-primary { transition: background 0.15s ease; }
.btn-primary:hover { background: color-mix(in oklab, var(--orange) 95%, white 5%); box-shadow: var(--shadow-glow); }

/* Pricing card — static, no tilt. The Get started button gets the hover. */
.pricing-card .btn-primary {
  transition: transform 0.18s cubic-bezier(.2,.7,.2,1), box-shadow 0.2s ease, background 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pricing-card .btn-primary:hover {
    transform: scale(1.03);
    box-shadow:
      0 0 0 1px rgba(255,107,26,0.45),
      0 14px 40px -10px rgba(255,107,26,0.55),
      0 0 70px -10px rgba(255,107,26,0.4);
  }
}

/* FAQ — smooth auto-height (uses explicit scrollHeight from JS) */
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.faq-item.open .faq-a-wrap { max-height: var(--faq-h, 1000px); }
@media (prefers-reduced-motion: reduce) {
  .faq-a-wrap { transition: none; }
}


/* ——————————————————————————————————————
   Hero split-screen continuous loop (~7.5s)
   Phases:
     0–20%   (0.0–1.5s)  Both visible, AFTER dimmed
     20–33%  (1.5–2.5s)  Divider pulses
     33–60%  (2.5–4.5s)  AFTER illuminates, fields appear sequentially
     60–87%  (4.5–6.5s)  Hold fully illuminated
     87–100% (6.5–7.5s)  AFTER fades back to dim → loop
   —————————————————————————————————————— */

@keyframes ba-after-illuminate {
  0%, 20%   { filter: saturate(0.35) brightness(0.7); opacity: 0.78; }
  33%       { filter: saturate(0.35) brightness(0.7); opacity: 0.78; }
  45%, 87%  { filter: saturate(1) brightness(1); opacity: 1; }
  100%      { filter: saturate(0.35) brightness(0.7); opacity: 0.78; }
}

@keyframes ba-after-glow {
  0%, 33%   { opacity: 0; }
  45%, 87%  { opacity: 1; }
  100%      { opacity: 0; }
}

@keyframes ba-divider-pulse {
  0%, 18%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,26,0); }
  22%       { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(255,107,26,0.18); }
  26%       { transform: scale(1); box-shadow: 0 0 0 12px rgba(255,107,26,0); }
  30%       { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(255,107,26,0.18); }
  34%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,26,0); }
}

@keyframes ba-divider-arrow {
  0%, 18%   { transform: translateX(0); }
  22%       { transform: translateX(2px); }
  26%       { transform: translateX(0); }
  30%       { transform: translateX(2px); }
  34%, 100% { transform: translateX(0); }
}

/* Per-row keyframes with discrete timings */
@keyframes ba-row-name {
  0%, 33%   { opacity: 0; transform: translateY(6px); }
  37%, 87%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(4px); }
}
@keyframes ba-row-phone {
  0%, 38%   { opacity: 0; transform: translateY(6px); }
  42%, 87%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(4px); }
}
@keyframes ba-row-address {
  0%, 43%   { opacity: 0; transform: translateY(6px); }
  47%, 87%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(4px); }
}
@keyframes ba-row-issue {
  0%, 48%   { opacity: 0; transform: translateY(6px); }
  52%, 87%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(4px); }
}
@keyframes ba-row-urgency {
  0%, 53%   { opacity: 0; transform: scale(0.85); }
  57%       { opacity: 1; transform: scale(1.1); }
  60%, 87%  { opacity: 1; transform: scale(1); }
  100%      { opacity: 0; transform: scale(0.9); }
}

@keyframes ba-urg-pulse {
  0%, 53%   { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
  57%       { box-shadow: 0 0 0 8px rgba(255,107,26,0.18); }
  62%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
}

/* Wire animations onto elements */
.ba-after {
  animation: ba-after-illuminate 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.ba-after::before {
  animation: ba-after-glow 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ba-divider-pill {
  animation: ba-divider-pulse 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.ba-divider-arrow {
  animation: ba-divider-arrow 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ba-after .ba-notif-card-row:nth-child(2)  { animation: ba-row-name    7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.ba-after .ba-notif-card-row:nth-child(3)  { animation: ba-row-phone   7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.ba-after .ba-notif-card-row:nth-child(4)  { animation: ba-row-address 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.ba-after .ba-notif-card-row:nth-child(5)  { animation: ba-row-issue   7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.ba-after .ba-notif-card-row:nth-child(6)  { animation: ba-row-urgency 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite; }

.ba-after .ba-urg {
  animation: ba-urg-pulse 7500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Pause when off-screen (perf) */
.ba-hero[data-paused="true"] .ba-after,
.ba-hero[data-paused="true"] .ba-after::before,
.ba-hero[data-paused="true"] .ba-divider-pill,
.ba-hero[data-paused="true"] .ba-divider-arrow,
.ba-hero[data-paused="true"] .ba-notif-card-row,
.ba-hero[data-paused="true"] .ba-urg {
  animation-play-state: paused !important;
}

/* Hero illuminate loop intentionally ignores prefers-reduced-motion —
   the before/after IS the product pitch. Other site animations still respect it. */


/* Hero two-line stacked headline */
.hero-h1-stack {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}
.hero-line-orange { color: var(--orange); display: block; }
.hero-line-cream  { color: var(--ink); display: block; }

/* Italic, slightly dimmer subhead — soft turn between accusing headline and CTA */
.hero-sub-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
}


/* ============================================================
   iPhone-shaped device frames for split-screen panels
   ============================================================ */

/* Override the old simple .ba-phone — make it a real iPhone */
.ba-phone {
  /* iPhone proportions ~9:19.5 */
  width: min(100%, 230px);
  aspect-ratio: 9 / 19.5;
  margin: 12px auto 0;
  background: #0a0b0e;
  border: 1.5px solid #1f2127;
  border-radius: 38px;
  padding: 28px 14px 18px;     /* top room for status bar / island */
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px #04050700,
    0 18px 50px -18px rgba(0,0,0,0.7),
    0 6px 12px -8px rgba(0,0,0,0.5);
}

/* Dynamic Island */
.ba-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #050608;
  border-radius: 999px;
  margin: 0;
  z-index: 3;
}

/* Status bar — aligned to Dynamic Island vertical center (iOS 16+ style) */
.ba-phone-top {
  position: absolute;
  top: 8px;        /* same as .ba-phone-notch top */
  left: 0;
  right: 0;
  height: 26px;    /* same as .ba-phone-notch height — gives shared vertical center */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  margin-bottom: 0;
  z-index: 2;      /* below the Dynamic Island so the island sits cleanly on top */
  pointer-events: none;
}
.ba-carrier {
  font-weight: 600;
  color: #e6e8ec;
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 0;
  line-height: 1;
}
.ba-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #e6e8ec;
}
.ba-ic-wifi    { width: 17px; height: 12px; display: block; }
.ba-ic-battery { width: 27px; height: 13px; display: block; }

/* Push the lock-screen content below the absolutely-positioned status bar */
.ba-phone-frame .ba-lock-date,
.ba-phone-frame > .ba-lock-clock { /* fallback */
  margin-top: 0;
}
.ba-phone .ba-lock-date { margin-top: 14px; }

/* Left (BEFORE) phone — slightly desaturated chrome to match the dim treatment */
.ba-phone:not(.ba-phone-after) .ba-carrier { color: rgba(230,232,236,0.62); }
.ba-phone:not(.ba-phone-after) .ba-status  { color: rgba(230,232,236,0.62); }

/* AFTER (right panel) — navy device with subtle orange glow */
.ba-phone-after {
  background: linear-gradient(180deg, #0d1322 0%, #0a0e1a 100%);
  border-color: #1c2436;
  box-shadow:
    0 0 0 1px rgba(255,107,26,0.05),
    0 18px 60px -18px rgba(255,107,26,0.18),
    0 6px 14px -8px rgba(0,0,0,0.6);
}
.ba-phone-after .ba-carrier { color: #f4f1ec; }
.ba-phone-after .ba-status  { color: #f4f1ec; }

/* The notification card inside the AFTER phone needs to fit nicely */
.ba-phone-after .ba-notif-card {
  margin: 0;
  border-radius: 14px;
  padding: 12px 12px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.ba-phone-after .ba-notif-card-row {
  padding: 5px 0;
  font-size: 11px;
}
.ba-phone-after .ba-k { font-size: 9px; }
.ba-phone-after .ba-v { font-size: 12px; }
.ba-phone-after .ba-notif-card-co { font-size: 10px; }
.ba-phone-after .ba-notif-card-time { font-size: 10px; }
.ba-phone-after .ba-urg { font-size: 9px; padding: 2px 6px; }

/* The lock-screen notification inside BEFORE phone */
.ba-before .ba-notif {
  margin: 0;
  font-size: 11px;
}
.ba-before .ba-notif-title { font-size: 12px; }
.ba-before .ba-notif-body { font-size: 11px; }
.ba-before .ba-notif-app { font-size: 9px; }
.ba-before .ba-notif-time { font-size: 10px; }

/* Tablet & narrow desktop — slightly smaller phones */
@media (max-width: 1100px) {
  .ba-phone { width: min(100%, 200px); }
}

/* Mobile — when panels stack, rotate divider arrow downward */
@media (max-width: 780px) {
  .ba-phone { width: min(100%, 150px); }
}
@media (max-width: 480px) {
  .ba-phone { width: min(100%, 130px); }
}

/* Make sure the divider arrow is visible at all times */
.ba-divider-arrow {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  display: inline-block;
  flex-shrink: 0;
  color: var(--orange);
  vertical-align: middle;
}
.ba-divider-pill {
  display: inline-flex;
  align-items: center;
}


/* Phone size + content fitting tweaks */
.ba-phone { width: min(100%, 240px); padding: 28px 12px 16px; }
@media (max-width: 1100px) { .ba-phone { width: min(100%, 210px); } }
@media (max-width: 780px) { .ba-phone { width: min(100%, 150px); padding: 20px 8px 12px; } }
@media (max-width: 480px) { .ba-phone { width: min(100%, 130px); padding: 16px 6px 10px; } }

/* Allow value column to be readable; reduce padding inside the after card */
.ba-phone-after .ba-notif-card { padding: 10px 10px 8px; }
.ba-phone-after .ba-notif-card-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px;
  padding: 4px 0;
  align-items: baseline;
}
.ba-phone-after .ba-k {
  font-size: 9px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ba-phone-after .ba-v {
  font-size: 11.5px;
  line-height: 1.3;
}
.ba-phone-after .ba-v.mono { font-size: 11px; }

/* Subtle mono PM/AM treatment to match real iOS lock screen vibe */


/* ============================================================
   iOS lock-screen big clock + date, notifications pushed down
   ============================================================ */

/* Center the date + big clock; spacer pushes notifications to bottom */
.ba-lock-date {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #c9ccd1;
  letter-spacing: 0.01em;
  margin-top: 2px;
  font-family: var(--font-sans);
}
.ba-lock-clock {
  text-align: center;
  font-size: 56px;
  font-weight: 300;             /* iOS uses thin weight, but spec says bold; tune to feel right at small size */
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: -2px;
  font-family: var(--font-sans);
  font-feature-settings: "tnum";
}
.ba-lock-spacer {
  flex: 1 1 auto;               /* shoves notification to lower portion */
  min-height: 8px;
}

/* Make .ba-phone use full vertical space so spacer works */
.ba-phone { gap: 6px; }

/* LEFT (muted) — slightly desaturated white */
.ba-before .ba-lock-clock { color: #e0e3e8; }
.ba-before .ba-lock-date  { color: #9ea2a8; }

/* RIGHT (alive) — fully saturated white, hint of warm glow */
.ba-phone-after .ba-lock-clock {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255,107,26,0.08);
}
.ba-phone-after .ba-lock-date { color: #d8dde4; }

/* Mobile: shrink the lock clock so phones don't overflow */
@media (max-width: 780px) {
  .ba-lock-clock { font-size: 30px; line-height: 1; }
  .ba-lock-date { font-size: 9px; margin-top: 4px !important; }
  .ba-status-bar { font-size: 9px; }
  .ba-status-time { font-size: 10px; }
  .ba-island { width: 60px; height: 18px; }
  .ba-lock-spacer { display: none !important; }
  .ba-phone .ba-phone-top + * { margin-top: 4px; }
  /* Tighten BEFORE notification too */
  .ba-notif-card { padding: 6px !important; gap: 4px !important; }
  .ba-notif-app { font-size: 8px !important; }
  .ba-notif-title { font-size: 10px !important; }
  .ba-notif-body { font-size: 9px !important; }
  .ba-notif-time { font-size: 9px !important; }
  .ba-notif-icon { width: 18px; height: 18px; }
  /* shrink AFTER summary card vertical pacing */
  .ba-phone-after .ba-notif-card-row { padding: 2px 0 !important; }
}
@media (max-width: 480px) {
  .ba-lock-clock { font-size: 24px; }
  .ba-lock-date { font-size: 8px; }
  .ba-island { width: 44px; height: 13px; }
  .ba-phone-after .ba-notif-card { padding: 6px 6px 4px !important; }
  .ba-phone-after .ba-notif-card-row { padding: 1px 0 !important; }
  .ba-phone-after .ba-k { font-size: 6.5px !important; }
  .ba-phone-after .ba-v { font-size: 9.5px !important; }
  .ba-phone-after .ba-notif-card-head { gap: 4px !important; }
  .ba-phone-after .ba-notif-card-co { font-size: 7px !important; letter-spacing: 0.05em !important; }
  .ba-phone-after .ba-notif-card-time { font-size: 7px !important; letter-spacing: 0.04em !important; }
}


/* Notifications sit immediately below the clock — middle third of phone */
.ba-lock-spacer {
  flex: 0 0 auto;
  height: 14px;          /* comfortable gap between clock and notif */
  min-height: 0;
}

/* Left (lifeless) phone — fade the notification card slightly */
.ba-before .ba-notif {
  opacity: 0.7;
}
