/* ============================================================
   ATMOSLY HOMEPAGE
   Design tokens — matched to dashboard
   ============================================================ */
:root {
  --brand-1: #2E6BFF;
  --brand-2: #20BEF2;
  --brand-3: #6486EE;
  --brand-4: #5CD7FF;
  --brand-grad: linear-gradient(135deg, #6486EE 0%, #20BEF2 60%, #5CD7FF 100%);
  --brand-grad-soft: linear-gradient(135deg, #EAF1FF 0%, #E6F8FF 100%);

  --ink-1: #0F172A;
  --ink-2: #3E4961;
  --ink-3: #64748B;
  --ink-4: #94A2B8;
  --ink-5: #C5CCDA;

  --bg: #FFFFFF;
  --bg-tint: #F5F7FA;
  --bg-sunken: #EEF1F6;
  --bg-dark: #0B1220;
  --bg-dark-2: #0F1729;

  --line-1: #E5E9F0;
  --line-2: #EEF1F6;
  --line-3: #F3F5F9;

  --ok: #10B981;
  --ok-soft: #E6F8F1;
  --warn: #F59E0B;
  --warn-soft: #FFF4E0;
  --crit: #EF4444;
  --crit-soft: #FDE8E8;
  --accent-soft: #EAF1FF;
  --accent-ink: #1E47B3;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px -2px rgba(15,23,42,0.06), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 50px -20px rgba(15,23,42,0.18), 0 8px 24px -8px rgba(15,23,42,0.08);
  --shadow-brand: 0 12px 30px -10px rgba(46,107,255,0.5);

  --font-sans: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ============================================================
   Reset + base
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink-1);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; color: inherit; }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum", "zero";
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { max-width: 820px; }

/* ============================================================
   Section heads (shared)
   ============================================================ */
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  text-wrap: pretty;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-1);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-1);
  box-shadow: 0 0 0 3px rgba(46,107,255,0.18);
}
.eyebrow-light {
  background: rgba(255,255,255,0.08);
  color: var(--brand-4);
}
.eyebrow-light .eyebrow-dot { background: var(--brand-4); box-shadow: 0 0 0 3px rgba(92,215,255,0.18); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-pri {
  background: var(--brand-1);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-pri:hover { background: #2559e0; transform: translateY(-1px); }

.btn-sec {
  background: #fff;
  color: var(--ink-1);
  border-color: var(--line-1);
  box-shadow: var(--shadow-sm);
}
.btn-sec:hover { border-color: var(--ink-5); box-shadow: var(--shadow-md); }

.btn-ter {
  background: transparent;
  color: var(--ink-2);
  padding-left: 4px;
  padding-right: 4px;
}
.btn-ter:hover { color: var(--brand-1); }

.btn-onlight {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-onlight:hover { background: rgba(255,255,255,0.24); }

.link-quiet {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 4px;
}
.link-quiet:hover { color: var(--ink-1); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line-1);
  background: rgba(255,255,255,0.92);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-grad);
  box-shadow: 0 4px 14px -2px rgba(46,107,255,0.45);
  position: relative;
}
.nav-logo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
}
.nav-wordmark {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 12px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--ink-1); }
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob-a {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(closest-side, rgba(46,107,255,0.42), transparent);
}
.hero-blob-b {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(closest-side, rgba(32,190,242,0.32), transparent);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero-grid-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 20px 0 22px;
  text-wrap: balance;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  text-wrap: pretty;
  margin: 0 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-micro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-micro li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ck {
  display: inline-flex;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ok-soft);
  color: var(--ok);
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

/* Hero visual — floating product panels */
.hero-visual {
  position: relative;
  min-height: 460px;
}
.hp {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Panel A: env clone (primary, large) */
.hp-a {
  top: 20px;
  left: 0;
  width: 86%;
  z-index: 2;
}
.hp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--line-2);
}
.hp-dots { display: flex; gap: 5px; }
.hp-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-5); display: block;
}
.hp-dots i:first-child { background: #FF8B7A; }
.hp-dots i:nth-child(2) { background: #FFC25C; }
.hp-dots i:nth-child(3) { background: #6DDB94; }
.hp-title {
  font-size: 12px;
  color: var(--ink-2);
  flex: 1;
}
.hp-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hp-pill.ok { background: var(--ok-soft); color: #047857; }
.hp-body { padding: 18px 20px; }

.clone-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink-1);
}
.clone-row.dim { color: var(--ink-4); }
.clone-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-sunken);
  color: var(--ink-4);
}
.clone-tick.done { background: var(--ok-soft); color: var(--ok); }
.clone-tick.run { background: var(--accent-soft); color: var(--brand-1); position: relative; }
.spin {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--brand-1);
  border-right-color: transparent;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.clone-time { font-size: 12px; color: var(--ink-3); }
.clone-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
}

/* Panel B: AI copilot */
.hp-b {
  bottom: 50px;
  right: -10px;
  width: 64%;
  z-index: 3;
}
.ai-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-2);
}
.ai-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ai-title { font-size: 13px; font-weight: 700; color: var(--ink-1); }
.ai-sub { font-size: 11px; color: var(--ink-3); }
.ai-stamp { margin-left: auto; font-size: 11px; color: var(--ink-4); }
.ai-body {
  padding: 14px 16px 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}
.ai-body b { color: var(--ink-1); }
.ai-fix {
  margin: 6px 16px 14px;
  padding: 10px 12px;
  background: var(--bg-sunken);
  border-radius: 8px;
  font-size: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
}
.ai-fix del { color: var(--crit); text-decoration: line-through; }
.ai-fix ins { color: var(--ok); text-decoration: none; font-weight: 600; }
.ai-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
}
.ai-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line-1);
  color: var(--ink-1);
}
.ai-btn-pri {
  background: var(--brand-1);
  border-color: var(--brand-1);
  color: #fff;
}

/* Panel C: cost mini */
.hp-c {
  top: 280px;
  left: 30px;
  width: 56%;
  padding: 16px 18px;
  z-index: 1;
}
.hp-c-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-c-label {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hp-c-delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}
.hp-c-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hp-c-from {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  text-decoration: line-through;
}
.hp-c-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-sunken);
}
.hp-c-bar span { display: block; height: 100%; }
.hp-c-legend {
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof {
  padding: 56px 0 64px;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.proof-lead {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  margin: 0 0 32px;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-card {
  text-align: center;
  padding: 0 4px;
}
.proof-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 14px;
}
.proof-outcome b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  margin-bottom: 4px;
}
.proof-outcome span {
  font-size: 13px;
  color: var(--ink-3);
}

/* ============================================================
   TIME COMPARISON
   ============================================================ */
.compare-time {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #E8ECF5;
  position: relative;
  overflow: hidden;
}
.compare-time::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(46,107,255,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(32,190,242,0.12), transparent 60%);
  pointer-events: none;
}
.compare-time .container { position: relative; }
.compare-time .section-head h2 {
  color: #fff;
}
.compare-time .section-sub { color: #C5CCDA; }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ct-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  backdrop-filter: blur(4px);
}
.ct-with {
  background: linear-gradient(180deg, rgba(46,107,255,0.10) 0%, rgba(32,190,242,0.04) 100%);
  border-color: rgba(92,215,255,0.28);
}
.ct-col-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.ct-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.ct-tag.bad { background: rgba(239,68,68,0.18); color: #FCA5A5; }
.ct-tag.good { background: rgba(16,185,129,0.18); color: #6EE7B7; }
.ct-col-head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.ct-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ct-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: baseline;
}
.ct-list li:last-child { border-bottom: none; }
.ct-time {
  font-size: 12px;
  color: var(--brand-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ct-today .ct-time { color: #FCA5A5; }
.ct-step {
  font-size: 15px;
  color: #C5CCDA;
  line-height: 1.5;
}
.ct-step b { color: #fff; font-weight: 600; }
.ct-foot {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 8px;
  text-align: center;
}
.ct-foot.bad { background: rgba(239,68,68,0.12); color: #FCA5A5; }
.ct-foot.good { background: rgba(16,185,129,0.16); color: #6EE7B7; }

/* ============================================================
   PRODUCT TOUR
   ============================================================ */
.tour {
  padding: 100px 0;
  background: var(--bg-tint);
}
.tour-shell {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tour-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--line-1);
}
.tour-tab {
  text-align: left;
  padding: 22px 24px;
  border-right: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: background 160ms ease;
}
.tour-tab:last-child { border-right: none; }
.tour-tab:hover { background: rgba(255,255,255,0.5); }
.tour-tab.is-active {
  background: #fff;
}
.tour-tab.is-active::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: -1px;
  height: 3px;
  background: var(--brand-1);
  border-radius: 2px 2px 0 0;
}
.tour-tab-num {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}
.tour-tab.is-active .tour-tab-num { color: var(--brand-1); }
.tour-tab-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.005em;
}
.tour-tab-sub {
  font-size: 13px;
  color: var(--ink-3);
}

.tour-stage {
  padding: 36px;
  background: #fff;
  min-height: 540px;
}
.tour-panel { display: none; }
.tour-panel.is-active { display: block; animation: fadeIn 240ms ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.tp-screenshot {
  background: var(--bg-sunken);
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tp-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line-2);
}
.tp-chrome-dots { display: flex; gap: 5px; }
.tp-chrome-dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-5);
  display: block;
}
.tp-chrome-dots i:first-child { background: #FF8B7A; }
.tp-chrome-dots i:nth-child(2) { background: #FFC25C; }
.tp-chrome-dots i:nth-child(3) { background: #6DDB94; }
.tp-chrome-url {
  font-size: 12px;
  color: var(--ink-3);
  flex: 1;
}

/* TP - env clone screenshot */
.tp-env-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  padding: 28px;
  background: #fff;
}
.tp-env-h {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tp-field { margin-bottom: 16px; }
.tp-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tp-input {
  background: var(--bg-tint);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tp-tag {
  font-size: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tp-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tp-chip {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-tint);
  border: 1px solid var(--line-1);
  color: var(--ink-2);
}
.tp-chip.on {
  background: var(--accent-soft);
  border-color: #C9D8FB;
  color: var(--accent-ink);
  font-weight: 500;
}
.tp-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.tp-toggle-pill {
  width: 32px; height: 18px;
  background: var(--ink-5);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}
.tp-toggle-pill.on { background: var(--brand-1); }
.tp-toggle-pill::after {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 200ms ease;
}
.tp-toggle-pill.on::after { left: 16px; }
.tp-go {
  margin-top: 8px;
  background: var(--brand-1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 8px;
}
.tp-env-right {
  background: var(--bg-tint);
  border-radius: 12px;
  padding: 20px;
}
.tp-env-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--ink-2);
}
.tp-env-checks li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-1);
}
.tp-env-checks li:last-child { border-bottom: none; }
.tp-env-cost {
  font-size: 13px;
  color: var(--ink-3);
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}
.tp-env-cost b { color: var(--ink-1); font-weight: 700; }

/* TP - AI screenshot */
.tp-ai-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  background: #fff;
}
.tp-ai-incident {
  background: var(--bg-tint);
  border-left: 3px solid var(--crit);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 14px;
}
.tp-ai-incident-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--ink-3);
}
.tp-ai-sev {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--crit-soft);
  color: #B91C1C;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.tp-ai-time { margin-left: auto; }
.tp-ai-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-1);
  margin-bottom: 4px;
}
.tp-ai-meta {
  font-size: 11px;
  color: var(--ink-3);
}
.tp-ai-log {
  background: #0F1729;
  color: #C5CCDA;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.8;
}
.tp-ai-log-line { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-ai-log-line.bad { color: #FCA5A5; }
.tp-ai-card {
  background: linear-gradient(180deg, rgba(46,107,255,0.05) 0%, rgba(32,190,242,0.02) 100%);
  border: 1px solid #C9D8FB;
  border-radius: 12px;
  padding: 16px 18px;
}
.tp-ai-card-h {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--ink-1);
}
.tp-ai-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(46,107,255,0.18);
  animation: pulse 1.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,107,255,0.4); }
  100% { box-shadow: 0 0 0 8px rgba(46,107,255,0); }
}
.tp-ai-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 12px;
}
.tp-ai-card p b { color: var(--ink-1); }
.tp-ai-rec {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  font-size: 12px;
  margin-bottom: 8px;
}
.tp-ai-rec del { color: var(--crit); }
.tp-ai-rec ins { color: var(--ok); text-decoration: none; font-weight: 700; }
.tp-ai-conf {
  font-size: 11px;
  color: var(--ink-3);
  margin: 4px 0 12px;
}
.tp-ai-acts { display: flex; gap: 8px; }
.tp-ai-go, .tp-ai-pr {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
}
.tp-ai-go {
  background: var(--brand-1);
  color: #fff;
}
.tp-ai-pr {
  background: #fff;
  border: 1px solid var(--line-1);
  color: var(--ink-1);
}

/* TP - cost screenshot */
.tp-cost-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 24px;
  background: #fff;
}
.tp-cost-summary {
  background: var(--bg-tint);
  border-radius: 12px;
  padding: 20px;
}
.tp-cost-big { margin-bottom: 14px; }
.tp-cost-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 4px;
}
.tp-cost-val {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  display: block;
  margin-bottom: 4px;
}
.tp-cost-delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}
.tp-cost-chart { height: 60px; }
.tp-cost-chart svg { width: 100%; height: 100%; }
.tp-cost-table {
  font-size: 13px;
}
.tp-cost-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr 1.2fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}
.tp-cost-head-row {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line-1);
}
.tp-cost-ok {
  font-size: 12px;
  color: var(--ok);
  font-weight: 600;
}
.tp-cost-warn {
  font-size: 12px;
  color: #B45309;
  background: var(--warn-soft);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  justify-self: start;
}

.tp-caption {
  margin-top: 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 720px;
}
.tp-caption b { color: var(--ink-1); }

.tour-foot {
  background: var(--bg-sunken);
  padding: 20px 36px;
  border-top: 1px solid var(--line-1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.tour-foot-sub {
  font-size: 13px;
  color: var(--ink-3);
}

/* ============================================================
   DEVELOPER DAY
   ============================================================ */
.day {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #E8ECF5;
  position: relative;
  overflow: hidden;
}
.day::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 90% 100%, rgba(46,107,255,0.16), transparent 60%),
    radial-gradient(700px 400px at 10% 0%, rgba(32,190,242,0.08), transparent 60%);
  pointer-events: none;
}
.day .container { position: relative; }
.day .section-head h2 { color: #fff; }
.day .section-sub { color: #C5CCDA; }

.day-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.day-flow::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(92,215,255,0.4) 0%, rgba(92,215,255,0.05) 100%);
}
.day-step {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 24px;
  margin-bottom: 20px;
  position: relative;
}
.day-step:last-child { margin-bottom: 0; }
.day-step-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-4);
  letter-spacing: 0.04em;
  padding-top: 24px;
  position: relative;
}
.day-step-num::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-1);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(46,107,255,0.32);
}
.day-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
.day-step-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(92,215,255,0.3);
  transform: translateX(4px);
}
.day-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-4);
  background: rgba(92,215,255,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.day-step-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.day-step-card p {
  font-size: 15px;
  color: #C5CCDA;
  line-height: 1.55;
  margin: 0 0 14px;
}
.day-step-stat {
  font-size: 12px;
  color: var(--brand-4);
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

/* ============================================================
   STORIES
   ============================================================ */
.stories {
  padding: 100px 0;
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.story:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-5);
}
.story-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 20px;
}
.story-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-1);
  background: var(--bg-tint);
  padding: 10px 14px;
  border-radius: 6px;
}
.story-meta {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.story-meta div:first-child { color: var(--ink-2); font-weight: 600; margin-bottom: 2px; }

.story-nums {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.story-nums > div {
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: 10px;
}
.story-num {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink-1);
  margin-bottom: 2px;
}
.story-arrow {
  color: var(--brand-1);
  font-weight: 700;
}
.story-num-label {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
}

.story blockquote {
  margin: 0 0 20px;
  padding: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  border: none;
  font-style: normal;
  text-wrap: pretty;
}
.story blockquote::before {
  content: "\201C";
  font-size: 36px;
  line-height: 0;
  color: var(--brand-1);
  vertical-align: -10px;
  margin-right: 4px;
  font-weight: 700;
}

.story-byline {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line-1);
}
.story-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.story-byline b {
  display: block;
  font-size: 14px;
  color: var(--ink-1);
  font-weight: 700;
}
.story-byline span {
  font-size: 12px;
  color: var(--ink-3);
}
.story-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-1);
}
.story-read:hover { text-decoration: underline; }

/* ============================================================
   VERSUS
   ============================================================ */
.versus {
  padding: 100px 0;
  background: var(--bg-tint);
}
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vs-col {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.vs-col.is-recommended {
  border-color: var(--brand-1);
  box-shadow: 0 20px 50px -20px rgba(46,107,255,0.32);
  position: relative;
}
.vs-col.is-recommended::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  z-index: -1;
  opacity: 0.12;
}
.vs-col-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 20px;
}
.vs-col-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: var(--bg-sunken);
  color: var(--ink-3);
}
.vs-col-tag.accent {
  background: var(--brand-1);
  color: #fff;
}
.vs-col h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink-1);
}
.vs-col-cost-big {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  line-height: 1;
}
.vs-col-cost-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
}
.vs-col-cost-sub {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--ink-2);
}
.vs-list li {
  padding: 8px 0;
  line-height: 1.5;
  border-bottom: 1px dashed var(--line-2);
}
.vs-list li:last-child { border-bottom: none; }
.vs-col-foot {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.vs-col-foot.bad { background: var(--crit-soft); color: #B91C1C; }
.vs-col-foot.warn { background: var(--warn-soft); color: #B45309; }
.vs-col-foot.good { background: var(--ok-soft); color: #047857; }

.vs-detail {
  margin-top: 36px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-2);
}
.vs-detail-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.vs-detail-links a {
  font-weight: 600;
  color: var(--brand-1);
  font-size: 14px;
}
.vs-detail-links a:hover { text-decoration: underline; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card.is-featured {
  border-color: var(--brand-1);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(46,107,255,0.03) 0%, transparent 100%);
  box-shadow: 0 24px 50px -16px rgba(46,107,255,0.22);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-h {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.price-amt {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.price-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-1);
  line-height: 1;
}
.price-unit {
  font-size: 13px;
  color: var(--ink-3);
}
.price-blurb {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 20px;
  min-height: 60px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ink-2);
}
.price-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-2);
}
.price-list li:last-child { border-bottom: none; }
.price-foot {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-tint);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.faq-item[open] {
  border-color: var(--brand-1);
  box-shadow: 0 12px 30px -16px rgba(46,107,255,0.24);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { content: "−"; color: var(--brand-1); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.faq-body p { margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.endcta {
  padding: 80px 0 120px;
  background: var(--bg);
}
.endcta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 80px 64px;
  background: linear-gradient(135deg, #2E6BFF 0%, #20BEF2 100%);
  color: #fff;
  text-align: center;
}
.endcta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.16), transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.endcta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.endcta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  background: rgba(255,255,255,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.endcta-card h2 {
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: #fff;
}
.endcta-sub {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 580px;
  opacity: 0.95;
}
.endcta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.endcta-card .btn-pri {
  background: #fff;
  color: var(--brand-1);
  box-shadow: 0 18px 40px -10px rgba(15,23,42,0.4);
}
.endcta-card .btn-pri:hover { background: #F8FAFF; }
.endcta-trust {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg-dark);
  color: #C5CCDA;
  padding: 64px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .nav-wordmark-light { color: #fff; }
.foot-brand .nav-logo-light {
  background: var(--brand-grad);
}
.foot-tagline {
  font-size: 14px;
  color: #94A2B8;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 280px;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: #94A2B8;
  padding: 6px 0;
  transition: color 160ms ease;
}
.foot-col a:hover { color: #fff; }
.foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6B7793;
}
.foot-bot-links { display: flex; gap: 24px; }
.foot-bot-links a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 480px; max-width: 600px; }
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  .proof-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ct-grid { grid-template-columns: 1fr; }
  .tour-tabs { grid-template-columns: 1fr; }
  .tour-tab { border-right: none; border-bottom: 1px solid var(--line-1); }
  .tour-tab.is-active::after {
    bottom: auto; top: 24px; left: auto; right: 24px;
    width: 4px; height: calc(100% - 48px);
    border-radius: 2px;
  }
  .tp-env-body, .tp-ai-body, .tp-cost-body {
    grid-template-columns: 1fr;
  }
  .story-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .day-step { grid-template-columns: 1fr; gap: 12px; }
  .day-step-num { padding-top: 0; }
  .day-step-num::after { display: none; }
  .day-flow::before { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 60px; }
  .hero-copy h1 { font-size: 38px; }
  .lede { font-size: 17px; }
  .hero-visual { min-height: 380px; }
  .hp-a { width: 100%; }
  .hp-b { width: 78%; right: -10px; bottom: 30px; }
  .hp-c { width: 72%; }
  .compare-time, .tour, .day, .stories, .versus, .pricing, .faq { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .endcta-card { padding: 48px 24px; }
  .foot-cols { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; gap: 12px; }
  .nav-cta .link-quiet { display: none; }
  .vs-detail { flex-direction: column; align-items: flex-start; }
  .tour-stage { padding: 20px; min-height: auto; }
  .tour-foot { flex-direction: column; align-items: stretch; padding: 20px; }
}
