/* Chip landing v3. Static, no build step. Brand tokens from design/tokens.json. */

/* Local font fallback so this file renders standalone from design/.
   When deployed, fonts.css (linked first) resolves the same faces from /assets/fonts/. */
@font-face {
  font-family: 'Tomorrow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/tomorrow-500-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Tomorrow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/tomorrow-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Tomorrow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/tomorrow-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/saira-400-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-600-latin.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --font-display: 'Tomorrow', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Saira', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --paper: #F6FAF7;
  --surface: #FFFFFF;
  --raised: #F1F8F4;
  --ink: #07130D;
  --ink-soft: #233830;
  --muted: #5E6F68;
  --line: #E2EDE7;
  --line-strong: #C8DED2;
  --accent: #00FF8F;
  --green: #009E60;
  --teal: #0B7B6A;
  --aqua: #7FF0C8;
  --warning: #FE8F01;
  --danger: #C53A32;
  --r-sm: 8px;
  --r-md: 15px;
  --r-lg: 24px;
  --r-pill: 999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-panel: 0 30px 80px -34px rgba(7, 19, 13, .25);
  --shadow-nav: 0 12px 40px -12px rgba(7, 19, 13, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.58 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--ink); }
/* Public-surface focus color from design/tokens.css (body[data-surface="public"]).
   #007747 meets WCAG 2.2 SC 2.4.11: 5.3:1 vs paper #F6FAF7, 5.6:1 vs surface #FFFFFF. */
:focus-visible { outline: 3px solid #007747; outline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.03em; }

.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px; border-radius: 10px;
  background: var(--ink); color: #fff; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- shared type ---------- */
.kicker {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  color: var(--teal);
  font: 600 11px/1.4 var(--font-mono);
  letter-spacing: .2em; text-transform: uppercase;
}
.kicker::before {
  content: ''; flex: none; width: 22px; height: 2px;
  border-radius: 2px; background: var(--accent);
}
.section-head h2, .teams-copy h2, .close h2 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: .98;
  font-weight: 700;
  overflow-wrap: break-word;
}
.section-sub {
  max-width: 620px; margin: 18px 0 0;
  color: var(--muted); font-size: 17px; line-height: 1.6;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px;
  border: 1px solid var(--ink); border-radius: var(--r-pill);
  background: var(--ink); color: #fff;
  font: 700 15px/1 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(7, 19, 13, .5); }
.btn-lg { min-height: 56px; padding: 0 30px; font-size: 16px; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 255, 143, .14); }

/* ---------- nav ---------- */
.nav {
  position: fixed; z-index: 50; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px)); min-height: 62px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 8px 10px 8px 18px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 26px; height: 26px; flex: none; border-radius: 8px; box-shadow: 0 0 14px rgba(0, 255, 143, .55); }
.brand-word { font: 700 17px/1 var(--font-display); letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-signin { color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; }
.nav-signin:hover { color: var(--teal); }
.btn-nav { min-height: 44px; padding: 0 20px; font-size: 14px; }

/* ---------- hero ---------- */
.hero { padding: 148px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-title {
  margin: 0;
  font-size: clamp(52px, 6.6vw, 96px);
  line-height: .94; font-weight: 700; letter-spacing: -.045em;
}
.hero-title em { font-style: normal; color: var(--green); text-shadow: 0 12px 28px rgba(0, 158, 96, .18); }
.hero-sub {
  margin: 26px 0 0;
  font-size: clamp(19px, 2vw, 25px); line-height: 1.35; font-weight: 650;
  color: var(--ink-soft);
}
.hero-line { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.hero-actions { margin-top: 34px; display: grid; gap: 14px; justify-items: start; }
.hero-note { margin: 0; color: var(--teal); font: 600 11px/1.5 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }

.hero-stage { min-width: 0; }
.stage-frame {
  position: relative; margin: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}
.stage-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--aqua));
}
.stage-img {
  display: block; width: 100%; height: clamp(280px, 30vw, 430px);
  object-fit: cover; object-position: center 32%;
}
.receipt {
  position: relative; z-index: 1;
  margin: -72px 20px 20px;
  padding: 18px 20px 14px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px -20px rgba(7, 19, 13, .35);
}
.receipt-head { display: flex; align-items: center; gap: 10px; }
.receipt-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.receipt-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font: 600 10px/1.4 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.receipt-state {
  flex: none; padding: 5px 10px;
  border: 1px solid #BDEFD9; border-radius: var(--r-pill); background: #EAFFF5;
  color: var(--teal); font: 600 9.5px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase;
}
.receipt-list { display: grid; gap: 8px; margin: 14px 0 12px; padding: 0; list-style: none; }
.receipt-list li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14.5px; }
.receipt-list li::before { content: ''; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); box-shadow: 0 0 8px rgba(0, 255, 143, .6); }
.receipt-foot { margin: 0; padding-top: 12px; border-top: 1px dashed var(--line-strong); color: var(--teal); font: 600 11px/1.4 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- done band ---------- */
.done-band { border-block: 1px solid var(--line); background: var(--surface); padding: 56px 0; }
.done-grid {
  display: grid; grid-template-columns: repeat(3, 1fr) .9fr;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.done-item { padding: 26px 24px; border-left: 1px solid var(--line); }
.done-item:first-child { border-left: 0; }
.done-item h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.2; }
.done-item p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.done-tag {
  display: grid; place-items: center; padding: 26px 24px;
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 255, 143, .14), rgba(127, 240, 200, .1));
}
.done-tag p { margin: 0; color: var(--green); font: 700 20px/1.3 var(--font-display); letter-spacing: -.02em; text-align: center; }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section-tint { border-block: 1px solid var(--line); background: var(--surface); }
.section-head { margin-bottom: 48px; }
/* Rhythm variation: consecutive sections must not share one header silhouette. */
.section-head-split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end;
}
.section-head-split .section-head-lead .kicker { margin-bottom: 18px; }
.section-head-split .section-sub { margin: 0 0 6px; }
.section-head-center { text-align: center; }
.section-head-center .kicker { justify-content: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- agents ---------- */
.agent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.agent-card {
  display: flex; flex-direction: column;
  padding: 26px 24px 22px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: 0 16px 44px -30px rgba(7, 19, 13, .3);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.agent-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 26px 54px -28px rgba(7, 19, 13, .4); }
.agent-icon {
  width: 60px; height: 60px; margin-bottom: 20px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 18px;
  background: var(--raised);
}
.agent-icon svg { width: 40px; height: 40px; }
.agent-card h3 { margin: 0 0 10px; font-size: 21px; }
.agent-card > p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.agent-cadence {
  margin-top: auto; padding-top: 18px;
  color: var(--teal) !important;
  font: 600 10px/1.4 var(--font-mono) !important;
  letter-spacing: .14em; text-transform: uppercase;
}

/* ---------- setup demo ---------- */
.setup-card {
  max-width: 720px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}
.setup-top {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line); background: var(--surface);
}
.setup-dots { display: inline-flex; gap: 6px; }
.setup-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.setup-dots i:first-child { background: var(--accent); }
.setup-title { flex: 1; color: var(--muted); font: 600 10.5px/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; }
.setup-progress {
  flex: none; padding: 5px 10px;
  border: 1px solid #BDEFD9; border-radius: var(--r-pill); background: #EAFFF5;
  color: var(--teal); font: 600 9.5px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase;
}

.setup-panes { position: relative; min-height: 420px; }
.setup-pane {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 26px 24px 24px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .38s var(--ease), transform .38s var(--ease), visibility 0s linear .38s;
}
.setup-pane.is-active {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .38s var(--ease), transform .38s var(--ease), visibility 0s;
}
.pane-label { margin: 0 0 18px; color: var(--ink); font: 700 22px/1.2 var(--font-display); letter-spacing: -.02em; }
.pane-options { display: grid; gap: 10px; }
.opt {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 14px;
  padding: 15px 18px;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  background: var(--surface);
  font: inherit; text-align: left; cursor: pointer;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.opt:hover { border-color: var(--accent); transform: translateY(-1px); }
.opt.is-picked { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 255, 143, .18); }
.opt-name { font: 700 16px/1.2 var(--font-body); color: var(--ink); }
.opt-desc { grid-column: 1 / -1; color: var(--muted); font-size: 13.5px; }
.opt.is-picked .opt-name::after {
  content: ''; display: inline-block; vertical-align: middle;
  width: 8px; height: 8px; margin-left: 10px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent);
}

.connect-box { display: grid; gap: 16px; justify-items: start; align-content: start; }
.connect-copy { margin: 0; color: var(--muted); font-size: 15px; }
.btn-google {
  background: var(--surface); color: var(--ink); border-color: var(--line-strong);
  min-width: 240px;
}
.btn-google:hover { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 255, 143, .14); }
.btn-google[disabled] { opacity: .75; cursor: wait; transform: none; box-shadow: none; }
.g-mark { width: 20px; height: 20px; flex: none; }
.btn-google.is-loading .g-mark { animation: gspin .9s linear infinite; }
@keyframes gspin { to { transform: rotate(360deg); } }
.connect-status { min-height: 22px; margin: 0; color: var(--teal); font: 600 11px/1.5 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }

.done-state { display: grid; gap: 12px; justify-items: center; align-content: center; text-align: center; flex: 1; }
.done-check svg { width: 64px; height: 64px; display: block; }
.done-line { margin: 0; font: 700 24px/1.2 var(--font-display); letter-spacing: -.02em; }
.done-sub { margin: 0; color: var(--muted); font-size: 15px; }
.done-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 14px; }

/* ---------- pricing ----------
   A single divided panel, not floating cards, so the pricing section reads
   as one decision table and stays visually distinct from the agent grid. */
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.price-card {
  display: flex; flex-direction: column;
  padding: 30px 26px 26px;
  background: transparent;
}
.price-card + .price-card { border-left: 1px solid var(--line); }
.price-free {
  background: linear-gradient(180deg, rgba(0, 255, 143, .14), rgba(127, 240, 200, .04));
  box-shadow: inset 0 4px 0 var(--accent);
}
.price-tier { margin: 0; color: var(--teal); font: 600 11px/1 var(--font-mono); letter-spacing: .2em; text-transform: uppercase; }
.price-amount { margin: 16px 0 14px; font: 700 clamp(44px, 4vw, 58px)/.9 var(--font-display); letter-spacing: -.04em; }
.price-amount span { font-size: 16px; letter-spacing: 0; color: var(--muted); }
.price-for { margin: 0 0 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.price-card .btn { margin-top: auto; }
.price-note { margin: 16px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.price-foot { margin: 26px 0 0; color: var(--muted); font: 500 12px/1.6 var(--font-mono); letter-spacing: .04em; }

/* ---------- teams ---------- */
.teams-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.teams-points { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.teams-points li { padding: 16px 0 16px 30px; border-bottom: 1px solid var(--line); font-weight: 600; position: relative; }
.teams-points li::before {
  content: ''; position: absolute; left: 2px; top: 22px;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--accent); box-shadow: 0 0 10px rgba(0, 255, 143, .6);
}
.teams-form {
  padding: 30px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-panel);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong); border-radius: 11px;
  background: var(--surface); color: var(--ink);
  font: inherit;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #007747; outline: 3px solid rgba(0, 119, 71, .22);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 12.5px; font-weight: 600; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13.5px; font-weight: 400; color: var(--ink-soft); cursor: pointer; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--green); }
.team-honeypot {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.form-status { min-height: 22px; margin: 16px 0 0; color: var(--teal); font-weight: 600; }
.form-status.is-error { color: var(--danger); }
.btn-submit { margin-top: 18px; }
.teams-form.is-done .field-grid, .teams-form.is-done .btn-submit { display: none; }
.form-confirm { display: grid; gap: 10px; justify-items: start; padding: 8px 0 2px; }
.form-confirm strong { font: 700 24px/1.2 var(--font-display); letter-spacing: -.02em; }
.form-confirm p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- close ---------- */
.close { border-top: 1px solid var(--line); background: var(--surface); padding: 88px 0 96px; }
.close-inner { display: grid; justify-items: center; gap: 26px; text-align: center; }
.close-video {
  width: 190px; height: 190px; object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 10px rgba(0, 255, 143, .12), 0 24px 60px -20px rgba(7, 19, 13, .35);
}
.close-video-wrap { position: relative; display: inline-grid; justify-items: center; }
.close h2 { max-width: 900px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--paper); padding: 26px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-line { margin: 0; color: var(--muted); font: 500 11px/1.4 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--ink-soft); font-size: 13.5px; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--teal); }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card:nth-child(2n+1) { border-left: 0; }
  .price-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .done-grid { grid-template-columns: 1fr 1fr; }
  .done-item:nth-child(3) { border-left: 0; }
  .done-item, .done-tag { border-top: 1px solid var(--line); }
  .done-item:nth-child(-n+2) { border-top: 0; }
  .done-tag { grid-column: 1 / -1; }
  .teams-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .wrap { width: calc(100% - 28px); }
  .nav { top: 8px; width: calc(100% - 16px); min-height: 56px; padding-left: 14px; }
  .nav-signin { display: none; }
  .btn-nav { min-height: 40px; padding: 0 16px; font-size: 13px; }
  .hero { padding: 118px 0 56px; }
  .hero-title { font-size: clamp(46px, 14vw, 64px); }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-actions { justify-items: stretch; text-align: center; }
  .stage-img { height: 300px; }
  .receipt { margin: -56px 12px 12px; }
  .done-grid { grid-template-columns: 1fr; }
  .done-item { border-left: 0; border-top: 1px solid var(--line); }
  .done-item:first-child { border-top: 0; }
  .done-tag { border-left: 0; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head-split { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .section-head-split .section-sub { margin: 0; }
  .agent-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: 0; border-top: 1px solid var(--line); }
  .setup-panes { min-height: 430px; }
  .done-actions { flex-direction: column; width: 100%; }
  .done-actions .btn { width: 100%; }
  .price-card .btn { width: 100%; }
  .field-grid { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; }
  .close { padding: 64px 0 72px; }
  .close .btn { width: 100%; }
  .close-inner { gap: 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
