/* ─────────────────────────────────────────────────────────────
   DeliveryOps — Liquid Glass landing
   Combined: app theme tokens + dashboard primitives + landing
   ──────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=JetBrains+Mono:wght@400;500&family=Caveat:wght@500;600&display=swap');

:root {
  --accent: #ff6a2a;
  --accent-2: #ff8a4a;
  --glass-opacity: 0.55;
  --glass-blur: 28px;
  --glass-stroke: rgba(255, 255, 255, 0.18);
  --glass-stroke-strong: rgba(255, 255, 255, 0.32);

  --bg: #0a0a0d;
  --bg-2: #131218;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --fg: #f6f4ef;
  --fg-2: rgba(246, 244, 239, 0.72);
  --fg-3: rgba(246, 244, 239, 0.48);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --input-bg: rgba(0, 0, 0, 0.28);
  --danger: #ff5a6a;
  --warn: #ffb454;
  --ok: #4ade80;
  --info: #7ab8ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0a0a0d;
  min-height: 100%;
}
html {
  overflow-x: hidden;
}
body {
  font-family:
    'Geist',
    system-ui,
    -apple-system,
    sans-serif;
  color: #f6f4ef;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
html.lp-drawer-open,
html.lp-drawer-open body {
  overflow: hidden;
}

a {
  color: inherit;
}

/* Brand mark + name ──────────────────────────────────────── */
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    0 4px 18px -4px var(--accent),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  display: grid;
  place-items: center;
  color: white;
  overflow: hidden;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-name {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-name em {
  font-style: italic;
  color: var(--accent);
}

/* Glass primitives ───────────────────────────────────────── */
.glass {
  background: var(--surface);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-stroke);
  border-radius: 18px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%);
  pointer-events: none;
}
.glass-strong {
  background: var(--surface-strong);
  border-color: var(--glass-stroke-strong);
}

/* Buttons + chips ────────────────────────────────────────── */
.btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.15s,
    filter 0.15s;
}
.btn:hover {
  background: var(--surface-strong);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
  box-shadow:
    0 6px 20px -6px var(--accent),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.btn-primary:hover {
  filter: brightness(1.05);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--fg-2);
}
.chip.accent {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
  color: var(--accent);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Landing page wrapper ──────────────────────────────────── */
.lp {
  width: 100%;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: visible;
}
.lp::before,
.lp::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
}
.lp::before {
  width: 900px;
  height: 900px;
  top: -360px;
  right: -200px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}
.lp::after {
  width: 800px;
  height: 800px;
  top: 1400px;
  left: -260px;
  background: radial-gradient(circle, #5a4fff, transparent 70%);
}

/* ─── Top nav ─────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: linear-gradient(to bottom, rgba(10, 10, 13, 0.7), rgba(10, 10, 13, 0.4));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.lp-nav-links a {
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-nav-links a:hover {
  color: var(--fg);
}
.lp-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.lp-link-ghost {
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
}
.lp-link-ghost:hover {
  color: var(--fg);
}
.lp-nav-demo {
  padding: 9px 14px;
  font-size: 13px;
}

/* Mobile hamburger + drawer (hidden on desktop) */
.lp-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  justify-self: end;
}
.lp-nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 1px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
html.lp-drawer-open .lp-nav-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
html.lp-drawer-open .lp-nav-toggle span:nth-child(2) {
  opacity: 0;
}
html.lp-drawer-open .lp-nav-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.lp-drawer {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 13, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.lp-drawer a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.lp-drawer a:last-child {
  border-bottom: 0;
}
.lp-drawer-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

/* ─── Hero ────────────────────────────────────────────────── */
.lp-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  position: relative;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.lp-hero-copy,
.lp-hero-visual {
  min-width: 0;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--fg-2);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.lp-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.lp-h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  margin: 0 0 28px;
  color: var(--fg);
  text-wrap: balance;
}
.lp-h1 em {
  font-style: italic;
  color: color-mix(in srgb, var(--accent) 92%, white 8%);
}
.lp-sub {
  font-size: 18px;
  line-height: 1.45;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}
.lp-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-cta-lg {
  padding: 14px 20px;
  font-size: 14px;
  border-radius: 14px;
}

.lp-hero-meta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lp-hero-meta > div:not(.lp-hero-meta-sep) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-hero-meta-v {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--fg);
}
.lp-hero-meta span:last-child {
  font-size: 11px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-hero-meta-sep {
  width: 1px;
  height: 28px;
  background: var(--line-strong);
}

/* Hero visual ─────── */
.lp-hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  min-height: 540px;
}

/* Chaos layer */
.chaos {
  position: absolute;
  inset: -30px -60px -40px -40px;
  z-index: 1;
  pointer-events: none;
  filter: saturate(0.85);
}
.chaos-bubble {
  position: absolute;
  max-width: 220px;
  padding: 8px 12px 10px;
  border-radius: 18px;
  background: rgba(40, 40, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fg-2);
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.6);
  opacity: 0.78;
}
.chaos-bubble.blue {
  background: linear-gradient(135deg, #2a6fda, #0a4fbf);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}
.chaos-bubble-from {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 3px;
}
.chaos-bubble-time {
  font-size: 9.5px;
  opacity: 0.5;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.sticky-note {
  position: absolute;
  width: 130px;
  padding: 12px 12px 14px;
  background: #f6e58d;
  color: #2d2400;
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 14px;
  line-height: 1.25;
  box-shadow:
    0 16px 30px -12px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.06) inset;
  opacity: 0.85;
}
.sticky-note.yellow {
  background: #ffd56b;
}
.sticky-note.pink {
  background: #ffb6c1;
  color: #2a1014;
}
.sticky-scribble {
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 4px;
  font-size: 13px;
}

.whiteboard {
  position: absolute;
  width: 240px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
  color: var(--fg-2);
  opacity: 0.7;
}
.wb-head {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.wb-strike {
  text-decoration: line-through;
  color: var(--fg-3);
}

.receipt {
  position: absolute;
  width: 130px;
  padding: 10px 12px;
  background: #f1ebde;
  color: #1d1810;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  line-height: 1.45;
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.55);
  opacity: 0.82;
}

/* App preview on top of chaos */
.hero-app {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 60px 100px -30px rgba(0, 0, 0, 0.7),
    0 30px 50px -20px rgba(0, 0, 0, 0.5);
  transform: perspective(2200px) rotateY(-3deg) rotateX(2deg) translateZ(0);
  transform-origin: 60% 50%;
}
.hero-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(20, 20, 26, 0.6);
  border-bottom: 1px solid var(--line);
}
.hero-dots {
  display: flex;
  gap: 6px;
  width: 60px;
}
.hero-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.hero-dots span:nth-child(1) {
  background: #ff5f56;
}
.hero-dots span:nth-child(2) {
  background: #ffbd2e;
}
.hero-dots span:nth-child(3) {
  background: #28c940;
}
.hero-app-title {
  font-size: 11.5px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
}
.hero-app-body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 420px;
}
.hero-app-sidebar {
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(20, 20, 26, 0.3);
}
.hero-app-sidebar > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--fg-2);
}
.hero-side-active {
  background: color-mix(in srgb, var(--accent) 16%, transparent) !important;
  color: var(--fg) !important;
  position: relative;
}
.hero-side-active::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-side-badge {
  margin-left: auto;
  background: var(--accent);
  color: white;
  font-size: 9.5px;
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-app-main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hero-stat {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hero-stat-l {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  font-weight: 500;
}
.hero-stat-v {
  font-family: 'Geist', sans-serif;
  font-size: 26px;
  line-height: 1;
  margin-top: 5px;
}
.hero-stat-t {
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 4px;
}

.hero-schedule {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-schedule-head {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  padding: 2px 4px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.hero-row {
  display: grid;
  grid-template-columns: 52px 1fr 110px 70px 78px;
  gap: 8px;
  align-items: center;
  padding: 7px 6px;
  border-radius: 8px;
}
.hero-row:hover {
  background: var(--surface-strong);
}
.hero-row-time {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  line-height: 1;
}
.hero-row-name {
  font-size: 11.5px;
  font-weight: 500;
}
.hero-row-sub {
  font-size: 10px;
  color: var(--fg-3);
}
.hero-row-route {
  font-size: 10.5px;
  color: var(--fg-2);
}
.hero-row-crew {
  font-size: 10.5px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
}
.hero-row-state .chip {
  font-size: 10px;
  padding: 2px 7px;
}

.hero-replaces {
  position: absolute;
  right: -16px;
  bottom: -32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(20, 20, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  max-width: 340px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--fg-2);
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.6);
}
.hero-replaces-arrow {
  font-size: 20px;
  color: var(--accent);
  font-family: 'Geist', sans-serif;
  line-height: 1;
}
.hero-replaces-label {
  font-size: 9.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* Logos strip */
.lp-logos {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
/* HTML hidden attr must win over .lp-logos display:flex (A/B test variant swap) */
.lp-logos[hidden],
.lp-trust-bar-kill[hidden] {
  display: none !important;
}
.lp-logos-label {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.lp-logos-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.7;
}
.lp-logo {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  color: var(--fg-2);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* ─── Section primitives ──────────────────────────────────── */
.lp-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
}
.lp-section.narrow {
  max-width: 980px;
}
.lp-section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.lp-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lp-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.lp-h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  margin: 0 0 22px;
  padding-bottom: 4px;
  text-wrap: balance;
}
.lp-h2 em {
  font-style: italic;
  color: color-mix(in srgb, var(--accent) 92%, white 8%);
}
.lp-section-sub {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
  text-wrap: pretty;
}
.lp-section-head.center .lp-section-sub {
  margin: 0 auto;
}

/* ─── Problem / pain cards ────────────────────────────────── */
.pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pain {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 220px;
}
.pain-art {
  position: relative;
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 14px;
}
.pain-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pain-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.pain-title {
  font-family: 'Geist', sans-serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.pain-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-2);
  text-wrap: pretty;
}

/* pain art bits */
.pain-art-msgs {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.pa-msg {
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  max-width: 75%;
  color: var(--fg-2);
}
.pa-msg.right {
  align-self: flex-end;
  background: var(--accent);
  color: white;
}
.pa-badge {
  position: absolute;
  top: 8px;
  right: 4px;
  background: #ff3b3b;
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 4px 10px -2px #ff3b3b;
}

.pain-art-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pa-card {
  width: 120px;
  padding: 8px 10px;
  background: #f6e58d;
  color: #2d2400;
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 13px;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.pa-card-y {
  background: #ffd56b;
}
.pa-card-p {
  background: #ffb6c1;
  color: #2a1014;
}

.pain-art-clock {
  display: flex;
  gap: 14px;
  align-items: center;
}
.pa-clock {
  position: relative;
  width: 90px;
  height: 90px;
}
.pa-clock svg {
  width: 100%;
  height: 100%;
}
.pa-clock-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Geist', sans-serif;
  font-size: 24px;
  flex-direction: column;
}
.pa-clock-num span {
  display: block;
  font-size: 9px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  margin-top: -2px;
}
.pa-clock-side {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--fg-2);
  line-height: 1.6;
}

.pain-art-head {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.pa-head-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1.5px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  padding: 18px;
  position: relative;
}
.pa-head-eye {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-2);
}
.pa-head-mouth {
  grid-column: 1 / 3;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--fg-3);
  margin-top: 6px;
}
.pa-thought {
  position: absolute;
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 11px;
  color: var(--fg-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  padding: 2px 8px;
}

/* ─── Product showcase ────────────────────────────────────── */
.showcase {
  position: relative;
}
.showcase-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 80px 120px -40px rgba(0, 0, 0, 0.7),
    0 40px 60px -20px rgba(0, 0, 0, 0.45);
}
.showcase-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(20, 20, 26, 0.7);
  border-bottom: 1px solid var(--line);
}
.showcase-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-3);
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.showcase-body {
  position: relative;
  height: 684px;
  overflow: hidden;
  background: var(--bg);
}

/* Embedded shell layout for showcase */
.showcase-shell {
  width: 1280px;
  height: 720px;
  display: flex;
  transform: scale(0.95);
  transform-origin: top left;
  position: relative;
  color: var(--fg);
  font-family: 'Geist', sans-serif;
}
@media (max-width: 1300px) {
  .showcase-body {
    height: 600px;
  }
  .showcase-shell {
    transform: scale(0.83);
  }
}

.shell-sidebar {
  width: 240px;
  height: 100%;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.shell-sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 12px;
  border-bottom: 1px solid var(--line);
}
.shell-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  color: var(--fg-3);
  font-size: 13px;
}
.shell-search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--fg);
  font: inherit;
  flex: 1;
  min-width: 0;
}
.kbd {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--fg-3);
}
.shell-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shell-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--fg-2);
  font-size: 13.5px;
  font-weight: 450;
  position: relative;
}
.shell-nav-item.active {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent
  );
  color: var(--fg);
}
.shell-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.shell-nav-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--fg-3);
}
.shell-nav-item.active .shell-nav-icon {
  color: var(--accent);
}
.shell-nav-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 4px;
}

.shell-main {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  gap: 16px;
  overflow: hidden;
  min-width: 0;
}
.shell-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.page-title {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-sub {
  color: var(--fg-3);
  font-size: 13px;
  margin-top: 6px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  padding: 14px 16px;
  border-radius: 16px;
  position: relative;
}
.stat-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.stat .trend {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 6px;
}
.stat .trend.up {
  color: var(--ok);
}

.panel {
  padding: 18px;
  border-radius: 18px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.panel-title {
  font-size: 15px;
  font-weight: 600;
}

.minimap {
  position: relative;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 20% 30%,
      color-mix(in srgb, var(--accent) 24%, transparent),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      color-mix(in srgb, #5a4fff 24%, transparent),
      transparent 40%
    ),
    repeating-linear-gradient(45deg, var(--line) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-45deg, var(--line) 0 1px, transparent 1px 18px), var(--input-bg);
}
.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  display: grid;
  place-items: center;
  color: white;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pin > span {
  transform: rotate(45deg);
}

.schedule-row {
  display: grid;
  grid-template-columns: 60px 1fr 90px 90px;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.schedule-row-time {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 1;
}
.schedule-row-name {
  font-size: 12.5px;
  font-weight: 500;
}
.schedule-row-sub {
  font-size: 11px;
  color: var(--fg-3);
}
.schedule-row-crew {
  font-size: 11.5px;
  color: var(--fg-2);
}

/* Annotation pins */
.pin-annot {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg);
}
.pin-annot.right {
  flex-direction: row-reverse;
}
.pin-label {
  background: rgba(20, 20, 26, 0.92);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.5);
}
.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent),
    0 0 14px var(--accent);
  flex-shrink: 0;
}

/* ─── Features grid ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  padding: 26px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.feature-title {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.feature-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}
.feature-lines {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.feature-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
  font-family: 'JetBrains Mono', monospace;
}
.feature-line svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Booking comparison ──────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.compare-col {
  border-radius: 20px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.compare-col.after {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--accent) 10%, transparent),
    color-mix(in srgb, var(--accent) 2%, transparent)
  );
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}
.compare-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.compare-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.compare-tag.accent {
  color: var(--accent);
}
.compare-time {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  line-height: 1;
}
.compare-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 9px 0;
  align-items: start;
  font-size: 13px;
  color: var(--fg-2);
  border-bottom: 1px dashed var(--line);
}
.compare-step:last-child {
  border-bottom: 0;
}
.compare-emoji {
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.before .compare-step {
  color: var(--fg-3);
}
.after-step {
  padding: 14px 0 !important;
}
.after-step .compare-emoji {
  background: var(--accent);
  color: white;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  border-radius: 50%;
  font-weight: 500;
}
.after-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.after-sub {
  font-size: 12.5px;
  color: var(--fg-2);
  line-height: 1.45;
}
.after-result {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-strong);
}
.after-result-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.after-result-v {
  font-family: 'Geist', sans-serif;
  font-size: 56px;
  line-height: 1;
  margin: 6px 0 8px;
  color: var(--accent);
}
.after-result-v span {
  font-size: 18px;
  color: var(--fg-2);
  margin-left: 6px;
}
.after-result-s {
  font-size: 12.5px;
  color: var(--fg-2);
}
.after-result-s b {
  color: var(--fg);
  font-weight: 600;
}

/* ─── Testimonial ─────────────────────────────────────────── */
.quote {
  padding: 56px 64px;
  border-radius: 24px;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: 'Geist', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
}
.quote-text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-bottom: 36px;
  position: relative;
  text-wrap: balance;
}
.quote-text em {
  color: color-mix(in srgb, var(--accent) 92%, white 8%);
  font-style: italic;
}
.quote-meta {
  display: grid;
  grid-template-columns: 48px auto 1fr;
  gap: 14px;
  align-items: center;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6bff, var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 600;
}
.quote-name {
  font-size: 14px;
  font-weight: 500;
}
.quote-role {
  font-size: 12px;
  color: var(--fg-3);
}
.quote-stats {
  display: flex;
  gap: 28px;
  justify-self: end;
}
.quote-stats > div {
  font-size: 12px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.quote-stats b {
  display: block;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 2px;
}

/* ─── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.tier {
  padding: 32px 28px;
  border-radius: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent),
    0 40px 80px -30px color-mix(in srgb, var(--accent) 45%, transparent),
    0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 18px -4px var(--accent);
}
.tier-name {
  font-family: 'Geist', sans-serif;
  font-size: 30px;
  line-height: 1;
}
.tier-tag {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 22px 0 6px;
}
.tier-dollar {
  font-family: 'Geist', sans-serif;
  font-size: 26px;
  color: var(--fg-2);
}
.tier-num {
  font-family: 'Geist', sans-serif;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier-per {
  font-size: 13px;
  color: var(--fg-3);
  margin-left: 4px;
}
.tier-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.tier-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-2);
}
.tier-bullet svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Final CTA ───────────────────────────────────────────── */
.lp-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.lp-cta-inner {
  padding: 80px 56px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-inner::after {
  content: '';
  position: absolute;
  inset: -50% -20% auto auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent) 40%, transparent),
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.lp-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
}
.lp-cta-h {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  margin: 0 auto 22px;
  padding-bottom: 4px;
  max-width: 880px;
  position: relative;
  text-wrap: balance;
}
.lp-cta-h em {
  font-style: italic;
  color: color-mix(in srgb, var(--accent) 92%, white 8%);
}
.lp-cta-sub {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
  text-wrap: pretty;
}
.lp-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.lp-cta-fine {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  position: relative;
}

/* ─── Footer ──────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  padding: 60px 0 28px;
}
.lp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.lp-footer-brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
}
.lp-footer-tag {
  grid-column: 1 / 3;
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.5;
}
.lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-footer-h {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.lp-footer-cols a {
  display: block;
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  padding: 4px 0;
}
.lp-footer-cols a:hover {
  color: var(--fg);
}
.lp-footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 22px 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
}

/* ─────────────────────────────────────────────────────────────
   Responsive cascade
   1300 → tablet-land
   1100 → tablet
    900 → small tablet / large phone
    720 → mobile (hamburger)
    480 → small mobile
   ──────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .lp-hero {
    padding: 64px 24px 48px;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero-visual {
    min-height: 480px;
  }
  .pains {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .lp-footer-inner {
    grid-template-columns: 1fr;
  }
  .lp-footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .quote-meta {
    grid-template-columns: 48px 1fr;
  }
  .quote-stats {
    grid-column: 1 / 3;
    justify-self: start;
    margin-top: 16px;
  }
  .lp-footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .lp-section {
    padding: 80px 24px;
  }
  .lp-h1 {
    font-size: clamp(38px, 7.4vw, 64px);
  }
  .lp-hero-visual {
    min-height: 420px;
  }
  .hero-app-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-app-sidebar {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-row {
    grid-template-columns: 48px 1fr auto;
  }
  .hero-row-route,
  .hero-row-crew {
    display: none;
  }
  .showcase-body {
    height: 480px;
  }
  .showcase-shell {
    transform: scale(0.5);
  }
  .pin-annot {
    display: none;
  }
  .quote {
    padding: 40px 36px;
  }
}

@media (max-width: 720px) {
  /* Nav → hamburger */
  .lp-nav {
    padding: 12px 0;
  }
  .lp-nav-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 20px;
  }
  .lp-nav-links {
    display: none;
  }
  .lp-nav-cta {
    display: none;
  }
  .lp-nav-toggle {
    display: inline-flex;
  }
  .lp-drawer {
    display: block;
  }
  html:not(.lp-drawer-open) .lp-drawer {
    display: none;
  }
  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 8px;
  }
  .brand-name {
    font-size: 20px;
  }

  /* Sections */
  .lp-section {
    padding: 64px 20px;
  }
  .lp-section.narrow {
    padding: 48px 20px;
  }
  .lp-section-head {
    margin-bottom: 32px;
  }
  .lp-hero {
    padding: 40px 20px 32px;
  }
  .lp-cta {
    padding: 40px 20px 64px;
  }
  .lp-cta-inner {
    padding: 48px 24px;
    border-radius: 22px;
  }
  .lp-cta-inner::after {
    width: 360px;
    height: 360px;
  }

  /* Type */
  .lp-h1 {
    font-size: clamp(34px, 9vw, 48px);
    margin-bottom: 20px;
  }
  .lp-h1 br {
    display: none;
  }
  .lp-h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .lp-cta-h {
    font-size: clamp(32px, 8.5vw, 48px);
  }
  .lp-sub {
    font-size: 16px;
  }
  .lp-section-sub {
    font-size: 15px;
  }

  /* Hero */
  .lp-hero-visual {
    aspect-ratio: auto;
    min-height: 0;
  }
  .chaos {
    inset: -10px -20px -10px -20px;
    transform: scale(0.85);
    transform-origin: center;
  }
  .chaos-bubble {
    max-width: 180px;
    font-size: 11px;
  }
  .sticky-note {
    width: 100px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .whiteboard {
    width: 180px;
    padding: 8px 10px;
    font-size: 10px;
  }
  .receipt {
    width: 100px;
    font-size: 9.5px;
  }
  .hero-app {
    transform: none;
    border-radius: 14px;
  }
  .hero-app-body {
    min-height: 320px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat-v {
    font-size: 22px;
  }
  .hero-replaces {
    position: static;
    margin: 16px auto 0;
    max-width: 100%;
    border-radius: 12px;
  }
  .lp-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .lp-hero-meta {
    gap: 14px;
    margin-top: 24px;
  }
  .lp-hero-meta-sep {
    display: none;
  }
  .lp-hero-meta-v {
    font-size: 18px;
  }
  .lp-logos {
    margin-top: 56px;
  }
  .lp-logos-row {
    gap: 24px 32px;
  }
  .lp-logo {
    font-size: 18px;
  }

  /* Pain cards stack art on top */
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pain {
    grid-template-columns: 1fr;
  }
  .pain-art {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 140px;
    padding: 18px;
  }
  .pain-body {
    padding: 18px 20px;
  }
  .pain-title {
    font-size: 22px;
  }
  .pain-text {
    font-size: 13px;
  }

  /* Showcase: scale aggressively, kill annotations */
  .showcase-body {
    height: 360px;
  }
  .showcase-shell {
    transform: scale(0.36);
    width: 1280px;
    height: 720px;
  }
  .showcase-chrome {
    padding: 10px 14px;
  }
  .showcase-url {
    font-size: 10.5px;
    padding: 4px 10px;
  }

  /* Features */
  .feature {
    padding: 22px 20px;
    min-height: 0;
  }
  .feature-title {
    font-size: 24px;
  }

  /* Compare */
  .compare-col {
    padding: 18px 20px;
  }
  .after-result-v {
    font-size: 44px;
  }

  /* Testimonial */
  .quote {
    padding: 32px 24px;
  }
  .quote-mark {
    left: 18px;
    top: 14px;
    font-size: 80px;
  }
  .quote-text {
    margin-bottom: 28px;
  }
  .quote-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .quote-stats b {
    font-size: 22px;
  }

  /* Pricing */
  .tier {
    padding: 28px 24px;
  }
  .tier-num {
    font-size: 56px;
  }

  /* CTA row */
  .lp-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .lp-footer-inner {
    padding: 0 20px;
  }
  .lp-footer-cols {
    gap: 24px;
  }
  .lp-footer-bottom {
    padding: 22px 20px 0;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .lp-h1 {
    font-size: clamp(30px, 9.5vw, 40px);
  }
  .lp-h2 {
    font-size: clamp(26px, 8.6vw, 36px);
  }
  .lp-cta-h {
    font-size: clamp(28px, 9vw, 40px);
  }
  .lp-section {
    padding: 56px 18px;
  }
  .lp-hero {
    padding: 32px 18px 24px;
  }

  /* Hero visual: simplify further */
  .lp-hero-visual {
    min-height: 0;
  }
  .chaos {
    transform: scale(0.7);
  }
  /* trim some chaos elements that crowd at very small widths */
  .chaos .receipt,
  .chaos .whiteboard {
    display: none;
  }
  .hero-stat-v {
    font-size: 20px;
  }

  /* Showcase: smaller still */
  .showcase-body {
    height: 280px;
  }
  .showcase-shell {
    transform: scale(0.28);
  }

  /* Schedule rows inside showcase: drop crew column */
  .schedule-row {
    grid-template-columns: 50px 1fr auto;
  }
  .schedule-row-crew {
    display: none;
  }

  /* Footer cols single */
  .lp-footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ─── Beta signup form (lives inside #cta) ───────────────── */

.beta-form {
  max-width: 640px;
  margin: 1.75rem auto 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.beta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 600px) {
  .beta-form-row {
    grid-template-columns: 1fr;
  }
}

.beta-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.beta-label {
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

.beta-req {
  color: var(--accent, #ff6b35);
}

.beta-field input,
.beta-field textarea {
  font: inherit;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.beta-field input::placeholder,
.beta-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.beta-field input:focus,
.beta-field textarea:focus {
  outline: none;
  border-color: var(--accent, #ff6b35);
  background: rgba(255, 255, 255, 0.1);
}

.beta-field textarea {
  resize: vertical;
  min-height: 88px;
}

.beta-field--consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.25rem 0 0.5rem;
}
.beta-field--consent input[type='checkbox'] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent, #ff6b35);
}
.beta-consent-text {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.75;
}
.beta-consent-text a {
  color: inherit;
  text-decoration: underline;
}
.beta-consent-text a:hover {
  opacity: 1;
}

.beta-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.beta-status {
  margin: 0.25rem 0 0;
  min-height: 1.4em;
  font-size: 0.95rem;
  text-align: center;
}
.beta-status--pending {
  opacity: 0.7;
}
.beta-status--ok {
  color: #4ade80;
  font-weight: 600;
}
.beta-status--err {
  color: #ff8a8a;
}
