@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/PlusJakartaSans-latin.woff2") format("woff2");
}

:root {
  --navy: #0a1128;
  --navy-2: #0b1f3a;
  --navy-3: #143056;
  --navy-4: #1b3c68;
  --orange: #ff6a1a;
  --orange-2: #ff8120;
  --ink: #0c1b2e;
  --muted: #5c6c80;
  --line: #e4eaf2;
  --paper: #f4f7fb;
  --white: #ffffff;
  --live: #19b37a;
  --blue: #2f74f0;
  --shadow: 0 24px 60px rgba(7, 21, 38, 0.22);
  --radius: 18px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--orange);
  color: #000;
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.wrap-wide {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.star {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
}
.logo.dark { color: var(--ink); }
.logo img, .logo svg { width: 22px; height: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #111; }
.btn-orange:hover { background: var(--orange-2); }
.btn-ghost {
  background: transparent;
  color: var(--white);
}
.btn-navy { background: var(--navy-2); color: #fff; }
.btn-line {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-sm { padding: 8px 12px; font-size: 13px; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
}
.hero .kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.hero .kicker .state-pill {
  margin-left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy);
  color: #fff;
  --nav-h: 72px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}
.nav-search {
  flex: 1;
  display: flex;
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  min-width: 0;
}
.search-hits {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 90;
  padding: 6px;
}
.search-hit {
  display: grid;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  border-radius: 8px;
}
.search-hit:hover { background: #fff7f1; }
.search-hit small { color: var(--muted); font-size: 11px; }
.nav-search input {
  flex: 1;
  border: 0;
  padding: 10px 16px;
  color: var(--ink);
  min-width: 0;
  outline: none;
}
.nav-search button {
  width: 52px;
  height: 44px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--orange);
  color: #fff;
  flex: 0 0 52px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { text-decoration: none; opacity: 0.92; }
.nav-links .btn { opacity: 1; }
.nav-toggle {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; font-weight: 600; }
.nav-group {
  display: grid;
  gap: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-group summary {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
  content: "+";
  font-size: 18px;
  color: #fff;
}
.nav-group[open] summary::after { content: "–"; }
.nav-group .kicker { margin: 0 0 4px; }
.nav-group a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(5, 16, 32, 0.48);
}
.nav-backdrop.open { display: block; }
body.nav-open { overflow: hidden; }

.hero {
  background: var(--navy);
  color: #fff;
  padding: 28px 0 18px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  background: repeating-radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.07) 0 1px,
    transparent 1px 28px
  );
  mask-image: radial-gradient(circle at center, #000 0 42%, transparent 72%);
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  gap: 28px;
}
.hero h1 {
  font-size: clamp(36px, 8vw, 64px);
  line-height: 0.98;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}
.hero h1 .paid,
.page-hero h1 .paid { color: var(--orange); }
.hero-sub {
  font-size: 16px;
  max-width: 42ch;
  color: rgba(255,255,255,0.86);
  margin: 0 0 20px;
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.fine { font-size: 13px; color: rgba(255,255,255,0.7); }
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.value i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,106,26,0.14);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.desk-frame {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  display: grid;
  grid-template-columns: 168px 1fr;
}
.desk-side {
  background: var(--navy-2);
  color: #fff;
  padding: 14px 10px;
}
.desk-side .logo { margin: 4px 8px 14px; letter-spacing: 0.14em; font-size: 12px; }
.desk-nav button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.78);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
}
.desk-nav button.active, .desk-nav button:hover {
  background: rgba(255,106,26,0.22);
  color: #fff;
}
.desk-nav button.active {
  box-shadow: inset 3px 0 0 var(--orange);
}
.desk-main { min-width: 0; background: #f7f9fc; }
.desk-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.desk-top h3 { margin: 0; font-size: 16px; flex: 0 0 auto; }
.desk-greet {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
  line-height: 1.35;
}
.desk-body { padding: 12px; }
.cols-3 {
  display: grid;
  gap: 10px;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  min-width: 0;
}
.panel h4 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.job {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 6px 8px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  align-items: start;
}
.job:first-of-type { border-top: 0; }
.job b { display: block; font-size: 13px; }
.job small { color: var(--muted); }
.job > :last-child {
  grid-column: 2;
  justify-self: start;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge.green { background: #e7f8ef; color: #137a4d; }
.badge.blue { background: #e7efff; color: #1d4ed8; }
.badge.orange { background: #fff1e6; color: #c2410c; }
.badge.soon { background: #f3f4f6; color: #6b7280; }
.badge.ready { background: #e7f8ef; color: #137a4d; }

.map {
  height: 150px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(20,48,86,0.04), rgba(20,48,86,0.12)),
    repeating-linear-gradient(90deg, #d7e3f3 0 12px, #c9d8ec 12px 13px),
    repeating-linear-gradient(#d7e3f3 0 12px, #c9d8ec 12px 13px);
  position: relative;
  overflow: hidden;
}
.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -7px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47,116,240,0.18);
}
.tech-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.ava-live {
  display: grid;
  place-items: center;
  padding: 10px 0 6px;
}
.pulse-star {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: #eef4ff;
}
.pulse-star::before,
.pulse-star::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(47,116,240,0.35);
  animation: pulse 2s ease-out infinite;
}
.pulse-star::after { animation-delay: 0.7s; }
@keyframes pulse {
  to { transform: scale(1.25); opacity: 0; }
}
.ava-stat { font-size: 13px; display: flex; justify-content: space-between; padding: 4px 0; }
.glance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}
.metric span { display: block; color: var(--muted); font-size: 11px; }
.metric b { font-size: 16px; }
.delta { color: var(--live); font-size: 11px; font-weight: 700; }
.detail {
  display: grid;
  gap: 8px;
}
.detail p { margin: 0; color: var(--muted); font-size: 14px; }
.list-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.trades {
  padding: 22px 0 8px;
  text-align: center;
}
.trades .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}
.trade-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  text-align: left;
}
.trade {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.trade img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.trade b { display: block; margin-bottom: 4px; }
.trade p { margin: 0; color: rgba(255,255,255,0.72); font-size: 14px; }
.trade span { display: block; margin-top: 8px; color: var(--orange); font-size: 13px; font-weight: 700; }
.icon-blob {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-size: 18px;
}
.icon-blob.blue { background: #1a3d73; color: #8ec5ff; }
.icon-blob.orange { background: rgba(255,106,26,0.16); color: var(--orange); }

.section { padding: 64px 0; }
.section.paper { background: var(--paper); }
#desk, #app, #product, #growth, #onboarding, #how, #play, #compare, #faq, #board, #who, #contact, #stack, #tools, #also, #plans, .step-tab, .cta-band {
  scroll-margin-top: 88px;
}
.section h2 {
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  line-height: 1.1;
}
.lead { color: var(--muted); max-width: 52ch; }
.lead.tight { margin: 0 0 16px; max-width: 60ch; }

.split {
  display: grid;
  gap: 28px;
  align-items: start;
}
.how-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(12,27,46,0.06);
  border: 1px solid var(--line);
}
.how-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.how-num {
  color: var(--orange);
  font-weight: 800;
  font-size: 20px;
}
.how-card h3 { margin: 10px 0 6px; }
.how-card p { margin: 0 0 12px; color: var(--muted); }
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.check li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.check li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='white' d='M2 6.3 4.6 9 10 3.4 8.8 2.2 4.6 6.6 3.2 5.1z'/></svg>") center/10px no-repeat;
  flex: 0 0 18px;
}

.phone-shell {
  width: min(340px, 100%);
  margin: 0 auto;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone-screen {
  background: #f7f8fb;
  border-radius: 28px;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 4px;
  font-size: 11px;
  font-weight: 700;
}
.phone-head { padding: 4px 16px 10px; }
.phone-head h3 { margin: 0; }
.next-job {
  margin: 0 12px 12px;
  background: var(--navy-2);
  color: #fff;
  border-radius: 16px;
  padding: 14px;
}
.next-job span { font-size: 12px; color: rgba(255,255,255,0.7); }
.phone-list { padding: 0 12px; flex: 1; min-height: 0; overflow: auto; }
.phone-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
}
.phone-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
}
.phone-tabs button {
  border: 0;
  background: transparent;
  padding: 12px 4px 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.phone-tabs button.active { color: var(--orange); }
.phone-item { width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; }
.phone-row { display: flex; justify-content: space-between; gap: 8px; align-items: start; }
.phone-k { margin: 10px 4px 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.phone-metric { display: block; font-size: 22px; }
.phone-map { height: 210px; margin: 0 0 8px; }
.next-job h3 { margin: 4px 0 8px; }
.next-addr { opacity: 0.8; margin: 6px 0 10px; }
.phone-ask { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; }

.playback {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill.active, .feature-pill.active {
  border-color: var(--orange);
  color: #9a3412;
  background: #fff7f1;
}
.chat-log { flex: 1; display: grid; align-content: start; gap: 8px; }
.bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
}
.bubble.ava { background: var(--navy-2); color: #fff; }
.bubble.customer { background: var(--paper); margin-left: auto; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.feature-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cards-5 {
  display: grid;
  gap: 12px;
}
.feat-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}
.feat-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 16px;
}
.feat-card h3 span { color: var(--orange); }
.feat-card li {
  list-style: none;
  padding: 7px 0;
  color: var(--ink);
  font-size: 14px;
  display: flex;
  gap: 8px;
}
.feat-card ul { margin: 0; padding: 0; }
.only {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange);
  border: 1px solid #ffd7bf;
  border-radius: 999px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: 1px;
}

.expander {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  margin-top: 12px;
}
.expander[open] { box-shadow: 0 10px 24px rgba(12,27,46,0.05); }
.expander summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}
.quote-split {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}
.quote-split img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.growth-grid {
  display: grid;
  gap: 14px;
}
.growth-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.growth-card img { width: 100%; height: 180px; object-fit: cover; }
.growth-card div { padding: 14px 16px 16px; }
.growth-card h3 { margin: 0 0 6px; }
.growth-card p { margin: 0; color: var(--muted); }

.stepper {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.step-tab {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
}
.step-tab.active {
  border-color: var(--orange);
  background: #fff7f1;
}
.wheel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: #111;
}
.wheel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: none;
}
.wheel img.show { display: block; }
.wheel-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(7,21,38,0.82);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.integ {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.integ a, .integ .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  background: #fff;
}
.integ b { display: block; }
.integ small { color: var(--muted); }

.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: min(360px, calc(100% - 24px));
}
.chat-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 51;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(255,106,26,0.4);
}
.chat-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  margin-bottom: 70px;
}
.chat-panel.open { display: block; }
.chat-head {
  background: var(--navy-2);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-msgs {
  height: 280px;
  overflow: auto;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: #f7f8fb;
}
.chat-form {
  display: flex;
  border-top: 1px solid var(--line);
}
.chat-form input {
  flex: 1;
  border: 0;
  padding: 12px;
  outline: none;
}
.chat-form button {
  border: 0;
  background: var(--orange);
  padding: 0 14px;
  font-weight: 800;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero h1 { margin: 8px 0; font-size: clamp(32px, 6vw, 52px); letter-spacing: -0.03em; }
.price-grid { display: grid; gap: 12px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.price-card b { font-size: 28px; display: block; margin: 8px 0; }

footer.site {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 36px 0 24px;
}
footer.site a { color: #fff; }
.foot-grid { display: grid; gap: 18px; }
.legal { font-size: 12px; color: rgba(255,255,255,0.6); }

.demo-note {
  font-size: 12px;
  color: var(--muted);
  background: #fff7f1;
  border: 1px solid #ffd7bf;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 8px 0 0;
}

@media (min-width: 760px) {
  .nav-links { display: flex; }
  .nav-toggle, .mobile-menu, .nav-backdrop { display: none !important; }
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
  .cols-3 { grid-template-columns: 1.1fr 0.9fr 0.9fr; }
  .glance { grid-template-columns: repeat(5, 1fr); }
  .trade-grid { grid-template-columns: repeat(3, 1fr); }
  .trade-grid.trades-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split { grid-template-columns: 1.15fr 0.85fr; }
  .split.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .cards-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-split { grid-template-columns: 1fr 1fr; }
  .growth-grid { grid-template-columns: repeat(3, 1fr); }
  .stepper { grid-template-columns: repeat(3, 1fr); }
  .integ { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-grid.fat { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .desk-frame.play { min-height: 560px; }
}

@media (min-width: 980px) {
  .integ { grid-template-columns: repeat(3, 1fr); }
  .how-stack { display: grid; gap: 12px; }
}

.feat-card a {
  color: inherit;
  text-decoration: none;
}
.feat-card h3 a { display: flex; align-items: center; gap: 8px; }
.feat-card li a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.feat-card li a::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 3px;
  border: 1.5px solid #c5cdd6;
  opacity: 0.7;
}

.drop { position: relative; }
.drop > a { display: inline-flex; align-items: center; gap: 4px; }
.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 60;
}
.drop:hover .drop-menu,
.drop:focus-within .drop-menu { display: grid; gap: 2px; }
.drop-menu a {
  color: var(--ink) !important;
  opacity: 1;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.drop-menu a:hover { background: var(--paper); }

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--live);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: 1px;
}
.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(25, 179, 122, 0.2);
}

.leaflet-host,
.leaflet-container {
  border-radius: 10px;
  overflow: hidden;
  background: #0d2138;
  margin-bottom: 8px;
}
.mkt-map-icon {
  background: none;
  border: 0;
}
.mkt-map-pin {
  display: block;
  width: 22px;
  height: 22px;
}
.mkt-map-pin i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 4px auto 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.28);
}

.inline-ava {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.inline-ava .chat-msgs { height: 200px; }
.inline-ava .chat-head { border-radius: 0; }

.how-layout,
.how-sheet {
  display: grid;
  gap: 28px;
  align-items: start;
}
.how-sheet {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(12, 27, 46, 0.05);
}
.how-page-section { padding-top: 40px; }
.how-intro h1 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  line-height: 1.1;
}
.how-stack { display: grid; gap: 12px; }
.how-ico { font-size: 18px; }

.integ-hero {
  display: grid;
  gap: 20px;
}
.integ-hero p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 42ch;
}
.integ-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.integ-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  cursor: pointer;
}
.integ-card:hover { border-color: #cfd8e4; }
.integ-card.connected { border-color: var(--live); background: #f3fbf7; }
.integ-state {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.integ-card.connected .integ-state { color: var(--live); }
.integ-card.compact { padding: 10px 12px; }
.integ-live {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.integ-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.integ-copy { display: grid; min-width: 0; }
.integ-copy b { font-size: 14px; }
.integ-copy small { color: var(--muted); font-size: 12px; }
.integ-arrow { color: #c5cdd6; font-weight: 700; font-size: 13px; white-space: nowrap; }

.ask-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.owner-ask-form {
  display: flex;
  gap: 8px;
  margin: 10px 0 12px;
}
.owner-ask-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.ask-trail {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--paper);
}
.ask-trail .ask-you,
.ask-trail .ask-ava { margin: 0 0 8px; }
.ask-trail .ask-ava { color: var(--navy); }
.feature-jumps { margin-top: 16px; }

.growth-card { text-decoration: none; color: inherit; display: block; }
.growth-card:hover { box-shadow: 0 10px 24px rgba(12, 27, 46, 0.06); }

@media (min-width: 760px) {
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .integ-hero { grid-template-columns: 1.2fr 1fr; align-items: end; }
}
@media (min-width: 980px) {
  .how-layout,
  .how-sheet { grid-template-columns: 1.1fr 0.9fr; }
  .integ-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 759px) {
  .desk-greet { display: none; }
  .drop-menu { position: static; display: grid; box-shadow: none; background: transparent; padding: 0 0 8px 12px; }
  .drop-menu a { color: #fff !important; }
}

.btn-ghost.btn-line-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 12px; }
.proof-chips { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 8px; }
.proof-chip {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255,255,255,0.86);
}
.proof-chip::before { content: "✓ "; color: var(--orange); font-weight: 800; }
.section .proof-chip { color: var(--ink); }

.state-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 8px;
  margin-left: 6px;
}
.state-pill.live { background: #dcfce7; color: #166534; }
.state-pill.sync { background: #e0f2fe; color: #075985; }
.state-pill.wait { background: #ffedd5; color: #9a3412; }
.state-pill.review { background: #f3e8ff; color: #6b21a8; }

.ui-mock {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.ui-mock-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 12px; }
.plan-list li { padding: 8px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.plan-list li.done::before { content: "✓ "; color: var(--orange); }
.plan-list li.await { color: var(--muted); }
.mock-stack { display: grid; gap: 8px; }
.mock-row { border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.mock-row.navy { background: var(--navy-2); color: #fff; border: 0; }
.mock-row.hi { background: #fff7f1; border-color: #ffd7bf; }
.mock-row b { display: block; }
.mock-k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.check-mini { font-size: 12px; color: var(--muted); }
.mock-chat .bubble { margin: 8px 0; }
.confirm-card { border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: var(--paper); }
.bar-row { position: relative; padding: 10px 0; font-size: 13px; display: grid; grid-template-columns: 1fr auto; }
.bar-row i { grid-column: 1 / -1; height: 6px; background: var(--orange); border-radius: 99px; opacity: 0.85; }
.attrib { margin-top: 10px; font-size: 13px; font-weight: 700; }
.mock-glance { margin: 10px 0; }
.ai-action { background: var(--orange); color: #111; border-radius: 12px; padding: 12px; font-weight: 700; font-size: 14px; }

.drop.mega { position: static; }
.mega-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 68px;
  width: min(1100px, calc(100% - 24px));
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 18px 20px 12px;
  box-shadow: var(--shadow);
  z-index: 70;
}
.drop.mega:hover .mega-menu,
.drop.mega:focus-within .mega-menu { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.mega-col { display: grid; align-content: start; gap: 4px; padding-bottom: 12px; }
.mega-col h3 { margin: 0 0 6px; font-size: 13px; display: flex; gap: 6px; align-items: center; }
.mega-col h3 span { color: var(--orange); }
.mega-col a { color: var(--ink); text-decoration: none; font-size: 13px; padding: 4px 0; opacity: 1; }
.mega-col a:hover { color: var(--orange); }
.mega-also {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.mega-also a { text-decoration: none; }
.mega-also a:hover { color: var(--orange); }
.mega-foot {
  display: block;
  text-align: center;
  padding: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}

.explore-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.explore-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
}
.explore-card h3 { margin: 0 0 8px; }
.explore-card p { margin: 0 0 12px; color: var(--muted); flex: 1; }
.explore-card a, .explore-card span { margin-top: auto; font-weight: 700; color: var(--ink); }
.explore-card.growth-link img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }
.explore-card.hi-card { background: var(--navy); color: #fff; border: 0; }
.explore-card.hi-card p { color: rgba(255,255,255,0.78); }
.plat-block { margin-top: 40px; }
.navy-band { background: var(--navy); color: #fff; }
.navy-band .lead, .navy-band .kicker { color: var(--orange); }
.navy-band .lead { color: rgba(255,255,255,0.78); }
.trust-card { border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; padding: 24px; }
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 88px 0;
  text-align: center;
}
.cta-band .lead { margin: 0 auto 8px; color: rgba(255,255,255,0.8); }
.center-copy { text-align: center; }
.center-copy .lead { margin-left: auto; margin-right: auto; }
.price-card.featured { border: 2px solid var(--navy); position: relative; padding-top: 28px; }
.ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--orange);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px;
  border-radius: 14px 14px 0 0;
}
.callout { background: #e7f8ef; color: #137a4d; border-radius: 10px; padding: 10px; font-size: 13px; font-weight: 700; margin: 8px 0; }
.overage { font-size: 13px; color: var(--muted); }
.compare-wrap { overflow: auto; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { border-bottom: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.compare thead th { background: var(--navy); color: #fff; }
.compare tbody th { width: 28%; font-weight: 700; }
.compare .hi-col { background: #fff7f1; font-weight: 700; }
.compare thead .hi-col { background: var(--orange); color: #111; }
.faq-grid { display: grid; gap: 16px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 16px 12px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  padding: 12px 0;
}
.faq-item p { margin: 0; color: var(--muted); }
.plan-live {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #ffd7bf;
  border-radius: 14px;
  background: #fff7f1;
}
.growth-engine { margin-top: 22px; }
.growth-play { display: grid; gap: 22px; margin-top: 18px; align-items: start; }
.growth-play-engine {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  min-width: 0;
}
.hero-jumps {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}
.hero-jumps .play-beat {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.hero-jumps .play-beat span { color: rgba(255,255,255,0.72); }
.onboard-wheel {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 24px;
}
.wheel-hub {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 1;
}
.wheel-hub b { font-size: 18px; }
.wheel-hub small { color: rgba(255,255,255,0.7); }
.wheel-step {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  margin: -28px 0 0 -59px;
  transform: rotate(calc(var(--i) * 60deg)) translateY(-148px) rotate(calc(var(--i) * -60deg));
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.wheel-step span { display: block; color: var(--orange); font-size: 10px; }
.wheel-step.on { outline: 2px solid var(--orange); }
.brand-preview[data-tone] { padding: 0; overflow: hidden; }
.brand-chrome {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.brand-preview[data-tone="orange"] .brand-chrome { background: var(--orange); color: #111; }
.brand-estimate,
.brand-gbp,
.brand-site { padding: 10px 12px; border-top: 1px solid var(--line); }
.brand-site img,
.brand-estimate img,
.onboard-brand-preview img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.brand-estimate img { height: 64px; }
.brand-preview[data-type="slab"] { font-family: Georgia, "Times New Roman", serif; }
.onboard-brand-preview { margin: 10px 0; }
.onboard-photos { margin: 8px 0; }
.brand-estimate small,
.brand-gbp small { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.growth-jumps,
.story-jumps { margin-top: 22px; }
.story-jumps { grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) {
  .story-jumps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.phone-jumps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}
.product-play-beats { margin-bottom: 16px; }
.stats-row { display: grid; gap: 12px; text-align: center; }
.stats-row b { display: block; font-size: 28px; }
.stats-row span { color: var(--muted); font-size: 13px; }
.stats-xl b { font-size: clamp(36px, 5vw, 52px); letter-spacing: -0.03em; line-height: 1; }
.stats-sub { margin-top: 18px; }
.stats-sub b { font-size: 22px; }
.proof-band { background: var(--paper); }
.feature-photo { width: 100%; border-radius: 16px; max-height: 280px; object-fit: cover; margin-top: 12px; }

@media (min-width: 760px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(5, 1fr); }
  .stats-sub { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
  .growth-play { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}
@media (max-width: 759px) {
  .mega-menu { display: none !important; }
  .section { padding: 48px 0; }
}

.btn-orange { color: #111; }

/* 1280 layout: copy never sits under the mock; header search stays compact */
.wrap,
.wrap-wide {
  width: min(1160px, calc(100% - 32px));
}

.nav {
  gap: 12px;
}
.logo { flex: 0 0 auto; }
.nav-search {
  flex: 1 1 140px;
  max-width: none;
  min-width: 0;
}
.nav-search input {
  padding: 10px 12px;
  font-size: 13px;
}
.nav-links {
  margin-left: auto;
  flex: 0 0 auto;
  gap: 14px;
  white-space: nowrap;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.06;
  overflow-wrap: break-word;
}
.page-hero {
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  overflow-wrap: break-word;
}
.hero-sub {
  max-width: 38ch;
}

.desk-frame { min-width: 0; }
.desk-main { min-width: 0; overflow: hidden; }
.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.job {
  grid-template-columns: 48px minmax(0, 1fr);
}
.job b,
.job small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tech-row,
.ava-stat {
  gap: 8px;
}
.tech-row b,
.ava-stat span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-hero {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  max-height: 540px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
  justify-self: stretch;
  align-self: stretch;
}
.desk-hero .desk-frame {
  width: 100%;
  max-width: 100%;
  min-height: 480px;
  max-height: 540px;
  height: 100%;
  box-shadow: none;
  border-radius: 0;
  grid-template-columns: 118px minmax(0, 1fr);
}
.desk-hero .desk-side {
  padding: 10px 6px;
  overflow: auto;
}
.desk-hero .desk-nav button {
  font-size: 11px;
  padding: 6px 8px;
}
.desk-hero .desk-greet {
  display: block;
  font-size: 12px;
}
.desk-hero .desk-body { padding: 8px; }
.desk-hero .hero-cols {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
}
.desk-hero .glance {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.desk-hero .map { height: 88px; }
.desk-hero .leaflet-host { height: 88px; min-height: 88px; }
.desk-hero .desk-hero-map .leaflet-host { height: 140px; min-height: 140px; }
.desk-hero .pulse-star { width: 52px; height: 52px; }
#desk .desk-hero {
  margin-top: 8px;
}

.desk-full { min-width: 0; }
.desk-full .desk-frame {
  min-height: 640px;
}
.desk-full .leaflet-host {
  min-height: 360px;
}
.desk-compact .desk-frame {
  grid-template-columns: 140px minmax(0, 1fr);
  min-height: 540px;
}
.desk-compact .desk-side { padding: 12px 8px; }
.desk-compact .desk-nav button {
  font-size: 12px;
  padding: 7px 8px;
}
.how-left,
.how-right { min-width: 0; }

.ui-mock {
  min-width: 0;
  max-width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.price-period {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 2px;
}

@media (min-width: 760px) {
  .nav-search {
    flex: 0 1 220px;
    width: 220px;
    max-width: 240px;
  }
  .hero-grid {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 24px;
  }
  .section { padding: 52px 0; }
  .cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .how-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.62fr);
    gap: 32px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
  }
  .how-layout,
  .how-sheet {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.58fr);
    gap: 28px;
  }
}

@media (max-width: 759px) {
  .nav { position: relative; z-index: 3; }
  .mobile-menu.open {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    height: calc(100dvh - var(--nav-h));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--navy);
    margin: 0;
    padding: 10px 20px 32px;
    z-index: 2;
  }
}

@media (max-width: 520px) {
  .wrap,
  .wrap-wide { width: min(1160px, calc(100% - 20px)); }
  .nav { gap: 6px; min-height: 60px; }
  .site-header { --nav-h: 60px; }
  .nav { position: relative; z-index: 3; }
  .nav-toggle {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    min-height: 40px;
    min-width: 64px;
  }
  .nav-search {
    flex: 1 1 88px;
    width: auto;
    max-width: min(42vw, 140px);
  }
  .nav-search input {
    font-size: 12px;
    padding: 8px 8px;
  }
  .mobile-menu.open {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    height: calc(100dvh - var(--nav-h));
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--navy);
    margin: 0;
    padding: 8px 16px 32px;
    z-index: 2;
  }
  .cta-band .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .btn { width: 100%; }
  .nav-toggle[aria-expanded="true"] {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }
  .desk-compact .desk-frame { min-height: 360px; }
  .cta-band { padding: 40px 0; }
  .cta-band .cta-row { justify-content: center; }
  .hero { padding: 20px 0 16px; }
  .hero h1 { font-size: clamp(28px, 8.4vw, 34px); }
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .section { padding: 48px 0; }
  .hero-grid,
  .split,
  .how-layout,
  .quote-split { grid-template-columns: 1fr; }
  .desk-hero {
    max-height: none;
    overflow: visible;
  }
  .desk-hero .desk-frame {
    min-height: 0;
    max-height: none;
    grid-template-columns: minmax(0, 1fr);
  }
  .desk-hero .desk-side { display: none; }
  .desk-hero .hero-cols,
  .desk-hero .glance { grid-template-columns: 1fr 1fr; }
  .desk-hero .hero-cols .panel:last-child { grid-column: 1 / -1; }
  .desk-hero .glance-label,
  .desk-hero .glance { display: none; }
  .desk-hero .job:nth-child(n+4) { display: none; }
  .desk-hero .leaflet-host { height: 72px; min-height: 72px; }
  .desk-compact .desk-side { display: none; }
  .desk-compact .desk-frame { grid-template-columns: minmax(0, 1fr); min-height: 360px; }
  .desk-full .desk-frame { grid-template-columns: 72px minmax(0, 1fr); min-height: 520px; }
  .desk-full .desk-nav button { font-size: 11px; padding: 6px 6px; }
  .phone-shell { width: 100%; max-width: 100%; }
  .phone-screen { min-height: 480px; }
  .stepper { grid-template-columns: 1fr 1fr; }
  .trade-grid.trades-4 { grid-template-columns: 1fr 1fr; }
  .trade img { height: 72px; }
  .step-tab { font-size: 12px; padding: 8px 8px; }
  .onboard-stage { min-height: 220px; padding: 14px; }
  .price-grid { gap: 10px; }
  .price-card { padding: 14px; }
  .price-card b { font-size: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ui-mock { max-height: 240px; }
  .btn { white-space: normal; text-align: center; }
  .compare-wrap { overflow: visible; }
  .compare { min-width: 0; width: 100%; font-size: 12px; }
  .compare thead { display: none; }
  .compare tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    margin: 0 0 10px;
    background: #fff;
  }
  .compare tbody th {
    grid-column: 1 / -1;
    width: auto;
    border: 0;
    padding: 0 0 6px;
  }
  .compare tbody td {
    border: 0;
    padding: 0;
  }
  .compare tbody td::before {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .compare tbody td:nth-child(2)::before { content: "Preview"; }
  .compare tbody td:nth-child(3)::before { content: "Shop OS"; }
  .compare tbody td:nth-child(4)::before { content: "Coverage"; }
  .foot-grid.fat { grid-template-columns: 1fr 1fr; }
  .foot-grid.fat > div:first-child { grid-column: 1 / -1; }
  .leaflet-host,
  .leaflet-container { overflow: hidden; max-width: 100%; }
  .integ-card { grid-template-columns: 36px minmax(0, 1fr); }
  .integ-arrow { display: none; }
  .thread-picks,
  .story-grid { grid-template-columns: 1fr; }
  .story-pick img { height: 120px; }
  .product-play-tabs { gap: 6px; }
  .onboard-wheel { display: none; }
  .play-beats { grid-template-columns: 1fr; }
  .play-beat b,
  .play-beat span { white-space: normal; }
  .phone-jumps,
  .product-play-beats,
  .story-jumps,
  .hero-jumps,
  .feature-jumps { grid-template-columns: 1fr 1fr; }
}

.growth-block { margin-top: 28px; }
.growth-block:first-child { margin-top: 8px; }
.growth-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.growth-more { font-weight: 800; text-decoration: none; }

button.how-card {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.how-card:hover,
.how-card:focus-visible {
  border-color: var(--orange);
}
.how-play {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.desk-open { margin: 14px 0 0; }
.published-checkout,
.sms-consent {
  margin: 16px 0 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.campaign-board {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}
.campaign-board .bar-row {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 12px 8px;
  border-radius: 10px;
}
.campaign-board .bar-row:hover,
.campaign-board .bar-row.active {
  background: #fff7f1;
}
.campaign-detail {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.campaign-detail p { margin: 0; color: var(--muted); }

.doc-drop { margin-top: 16px; }
.dropzone {
  display: grid;
  gap: 6px;
  justify-items: center;
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  background: #fff;
}
.dropzone input { display: none; }
.dropzone small { color: var(--muted); }
.dropzone.over {
  border-color: var(--orange);
  background: #fff7f1;
}
.drop-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.drop-list li {
  border: 1px solid var(--live);
  background: #f3fbf7;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.onboard-stage {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  min-height: 280px;
}
.onboard-panel h3 { margin: 0 0 8px; }
.onboard-panel p { margin: 0 0 12px; color: var(--muted); }
.onboard-status { font-weight: 700; color: var(--ink); }
.trade-picks, .mini-integ {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.mini-integ { display: grid; }
.trade-pick {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}
.trade-pick.on {
  border-color: var(--orange);
  background: #fff7f1;
  color: var(--ink);
}
.book-peek, .inbox-peek { display: grid; gap: 6px; }
.desk-next {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.desk-next p { margin: 0 0 8px; font-weight: 700; }

@media (min-width: 760px) {
  .mini-integ { grid-template-columns: repeat(2, 1fr); }
}

.feature-board {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  color: var(--ink);
}
.quote-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}
.quote-pick {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0 0 8px;
  text-align: left;
  overflow: hidden;
}
.quote-pick img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.quote-pick span { display: block; padding: 8px 10px 0; font-weight: 700; }
.quote-pick.on { border-color: var(--orange); }
.quote-result { margin-top: 12px; }
.quote-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.rate-rows { display: grid; gap: 8px; margin: 10px 0; }
.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.rate-row small { display: block; color: var(--muted); font-weight: 500; }
.rate-row.active {
  border-color: var(--orange);
  background: #fff7f1;
}
.call-ring {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff7f1;
}
.call-ring small { display: block; color: var(--muted); }
.brand-swatches { display: flex; gap: 10px; margin: 12px 0; }
.swatch {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
}
.swatch.navy { background: var(--navy); color: #fff; }
.swatch.orange { background: var(--orange); color: #111; }
.swatch.on { outline: 3px solid var(--ink); }
.brand-preview {
  padding: 12px;
  border-radius: 12px;
  background: var(--paper);
}
.product-play-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.product-play-stage { min-width: 0; }
#play.section { padding: 40px 0; }
.play-beats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}
.play-beat {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  display: block;
}
.play-beat small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.play-beat b,
.play-beat span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.play-beat b { font-size: 14px; margin: 4px 0 2px; }
.play-beat span { font-size: 12px; color: var(--muted); }
.play-beat.on,
.play-beat.active {
  outline: 2px solid var(--navy);
  background: #fff7f1;
}
.legal-doc { max-width: 68ch; }
.legal-doc h2 { font-size: 20px; margin: 28px 0 8px; letter-spacing: -0.02em; }
.legal-doc h2:first-child { margin-top: 0; }
.price-card[data-plan] { cursor: pointer; }
.price-card.picked { outline: 3px solid var(--orange); }

.ava-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 8px;
}
.ava-chips button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.bubble.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 28px;
}
.bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: chip 1s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chip {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.thread-picks,
.story-grid {
  display: grid;
  gap: 12px;
}
.story-pick,
button.story-pick {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 0 14px;
  background: #fff;
  overflow: hidden;
}
.story-pick img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.story-pick .kicker,
.story-pick h3,
.story-pick p,
.story-pick blockquote,
.story-pick .how-play {
  padding-left: 14px;
  padding-right: 14px;
}
.story-pick .kicker { margin-top: 12px; }
.story-pick h3 { margin: 4px 0; }
.story-pick blockquote {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}
.story-pick.on,
.how-card.on {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px #ffd7bf;
}
.story-live { margin-top: 18px; }
.integ-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.integ-filled {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

@media (min-width: 760px) {
  .thread-picks { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .thread-picks { grid-template-columns: repeat(4, 1fr); }
  .story-grid { grid-template-columns: repeat(4, 1fr); }
}


