@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; width: 100%; max-width: 100%; }
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; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.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;
  align-items: stretch;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  min-width: 0;
  box-shadow: none;
  outline: none;
  text-decoration: none;
}
.nav-search:focus-within {
  background: #fff;
  border-color: #fff;
}
.nav-search.is-search-open {
  overflow: visible;
}
.search-hits {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 6px);
  display: none;
  width: min(360px, calc(100vw - 24px));
  min-width: min(320px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 90;
  padding: 6px;
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.search-hits:not([hidden]) {
  display: block;
}
.search-hits:empty,
.search-hits[hidden] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.nav-search .search-hits .search-hit,
.nav-search .search-hits a.search-hit,
.nav-search .search-hits button.search-hit {
  all: unset;
  display: block;
  position: relative;
  box-sizing: border-box;
  float: none;
  clear: both;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 48px;
  margin: 0 0 2px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  overflow: visible;
  overflow-wrap: break-word;
  word-break: normal;
  cursor: pointer;
}
.nav-search .search-hits .search-hit:last-child {
  margin-bottom: 0;
}
.nav-search .search-hits .search-hit:hover,
.nav-search .search-hits .search-hit:focus,
.nav-search .search-hits .search-hit:focus-visible {
  background: #fff7f1;
  color: var(--ink);
}
.nav-search .search-hits .search-hit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.nav-search .search-hits .search-hit-label,
.nav-search .search-hits .search-hit b {
  display: block;
  width: 100%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.nav-search .search-hits .search-hit-path,
.nav-search .search-hits .search-hit small {
  display: block;
  width: 100%;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.nav-search input {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 0;
  padding: 10px 16px;
  color: #fff;
  caret-color: #fff;
  background: transparent;
  background-image: none;
  min-width: 0;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.nav-search input::-webkit-search-decoration,
.nav-search input::-webkit-search-cancel-button,
.nav-search input::-webkit-search-results-button,
.nav-search input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  opacity: 1;
}
.nav-search:focus-within input {
  color: var(--ink);
  caret-color: var(--ink);
}
.nav-search:focus-within input::placeholder {
  color: var(--muted);
}
.nav-search input:focus,
.nav-search input:focus-visible {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  border-bottom: 0;
}
.nav-search > button[type="submit"] {
  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 48px;
  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(32px, 4.8vw, 52px);
  line-height: 0.98;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}
.hero h1 .hero-line { display: block; }
.hero h1 .paid,
.page-hero h1 .paid { color: var(--orange); }
.hero-audience {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  max-width: 46ch;
}
.hero-def {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
  max-width: 46ch;
  color: #fff;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
}
.price-tease {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.price-tease a { color: var(--orange); }
.section .price-tease {
  margin: 24px 0 0;
  color: var(--ink);
}
.shape-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.shape-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.shape-card h3 { margin: 0 0 6px; font-size: 18px; }
.shape-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pocket-product { text-align: left; }
.pocket-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
}
.pocket-copy {
  width: 100%;
  min-width: 0;
  text-align: left;
}
#shape.pocket-product .lead,
.pocket-copy .lead {
  max-width: 46ch;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.pocket-stage { width: min(320px, 100%); }
.pocket-caps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.pocket-caps li {
  display: grid;
  gap: 4px;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--orange);
}
.pocket-caps b {
  font-size: 16px;
  letter-spacing: -0.03em;
}
.pocket-caps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.pocket-screen {
  padding: 16px 16px 8px;
}
.pocket-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pocket-screen > b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.035em;
}
.pocket-screen > p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}
.pocket-money {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 16px;
}
.pocket-money b {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.pocket-money span {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 700;
}
.pocket-bits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.pocket-bits li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 650;
}
.pocket-bits span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pocket-about {
  display: grid;
  gap: 28px;
  justify-items: center;
  margin-top: 24px;
}
.pocket-phone .phone-screen { min-height: 600px; }
@media (min-width: 821px) {
  .pocket-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    justify-items: stretch;
    align-items: center;
  }
  .pocket-copy { order: -1; }
  .pocket-about {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
  }
}
.about-hero,
.customers-hero {
  padding-bottom: 36px;
}
.about-story { max-width: 68ch; }
.growth-more-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 8px 0 28px;
}
.hero-cta {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  max-width: 42ch;
}
.hero-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px;
  font-size: 16px;
  text-align: center;
}
.hero-cta .btn-desk,
.hero-cta .btn-ghost.btn-line-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.hero-cta .btn-desk:hover,
.hero-cta .btn-ghost.btn-line-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.hero-anchor {
  margin: 22px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
  font-size: 13px;
  font-weight: 700;
}
.hero-anchor a {
  color: var(--orange);
  text-decoration: none;
}
.hero-anchor a:hover { text-decoration: underline; }
.hero .proof-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
  max-width: 42ch;
}
.hero .proof-chip {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
}
.hero-composite {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-stage {
  position: relative;
  display: block;
  min-height: 0;
  width: 100%;
  padding: 0;
}
.hero-laptop {
  margin: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.46));
}
.hero-laptop-lid {
  position: relative;
  background: linear-gradient(180deg, #3a404c 0%, #16191f 8px, #050608 100%);
  border: 1px solid #2a2f38;
  border-radius: 14px 14px 2px 2px;
  padding: 10px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-laptop-cam {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #1b1f26;
  box-shadow: inset 0 0 0 2px #0b0d11, 0 0 0 1px #3a404a;
}
.hero-board {
  position: relative;
  background: #0b1f3a;
  color: var(--ink);
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
}
.hero-board-shot,
.hero-phone-shot {
  display: block;
  width: 100%;
  height: auto;
}
.hero-board-shot {
  height: auto;
  object-fit: contain;
  object-position: top left;
}
.hero-shot-sr {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-board-side {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 7px;
  background: #0b1f3a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}
.hero-board-side strong {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.hero-board-side span {
  padding: 5px 6px;
  border-radius: 6px;
  color: rgba(255,255,255,0.78);
}
.hero-board-side .is-on {
  background: rgba(255, 106, 26, 0.2);
  color: #fff;
  box-shadow: inset 2px 0 0 var(--orange);
}
.hero-board-body { min-width: 0; background: #f7f9fc; }
.hero-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px 6px;
  background: #fff;
}
.hero-board-top strong { font-size: 14px; }
.hero-board-top em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #137a4d;
  background: #e8f8ef;
  border-radius: 999px;
  padding: 3px 7px;
}
.hero-board-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 0 10px 7px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hero-kpi {
  min-width: 0;
  padding: 5px 6px 4px;
  background: #f7f9fc;
  border: 1px solid #e6ebf2;
  border-radius: 7px;
}
.hero-kpi span,
.hero-kpi small { display: block; }
.hero-kpi span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-kpi b {
  display: block;
  font-size: 15px;
  line-height: 1.05;
  margin: 1px 0 0;
  letter-spacing: -0.03em;
}
.hero-kpi small { color: #137a4d; font-weight: 700; font-size: 10px; }
.hero-board-main {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.95fr;
  align-items: stretch;
  gap: 8px;
  padding: 7px 10px 8px;
}
.hero-board-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  min-width: 0;
}
.hero-board-col h3 { margin: 0 0 6px; font-size: 12px; }
.hero-jobs,
.hero-techs,
.hero-phone-slots,
.hero-board-ava dl { list-style: none; margin: 0; padding: 0; }
.hero-job,
.hero-techs li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid #eef2f7;
  font-size: 12px;
}
.hero-job:first-child,
.hero-techs li:first-child { border-top: 0; }
.hero-job .badge { font-size: 9px; padding: 2px 6px; }
.hero-job-time { font-weight: 800; color: var(--navy); }
.hero-job-body b,
.hero-job-body small { display: block; }
.hero-job-body b { font-size: 12px; line-height: 1.2; }
.hero-job-body small { color: var(--muted); font-size: 10px; }
.hero-job.is-next {
  background: #fff7f1;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 7px;
}
.hero-mini-map {
  position: relative;
  height: 68px;
  border-radius: 7px;
  overflow: hidden;
  background: #d7e0ea;
  margin-bottom: 5px;
}
.hero-mini-map-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.hero-mini-map-tiles img { width: 100%; height: 100%; object-fit: cover; }
.hero-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #2f74f0;
  box-shadow: 0 0 0 2px #fff;
}
.hero-pin.is-live { background: var(--orange); }
.hero-travel {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 7px;
  white-space: nowrap;
}
.hero-techs li { grid-template-columns: 1fr auto; font-size: 11px; }
.hero-board-ava { background: #eef4ff; border-color: #1d4ed8; }
.hero-board-ava h3 i { font-style: normal; color: #19b37a; font-size: 10px; margin-left: 4px; }
.hero-ava-line { margin: 0 0 4px; font-size: 12px; color: var(--muted); }
.hero-ava-callout { font-weight: 800; color: #1d4ed8; font-size: 13px; }
.hero-ava-pulse { display: grid; place-items: center; height: 34px; margin: 0 0 2px; }
.hero-ava-pulse .pulse-star { width: 34px; height: 34px; background: #fff; }
.hero-board-ava dl div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid #dbe4f3;
  font-size: 12px;
}
.hero-board-ava dt { color: var(--muted); }
.hero-board-ava dd { margin: 0; font-weight: 800; }
.hero-laptop-chin {
  height: 12px;
  background: linear-gradient(180deg, #eceff4 0%, #c5cad3 100%);
  border-radius: 0 0 2px 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.hero-laptop-base {
  height: 14px;
  margin: 0 5% -3px;
  background: linear-gradient(180deg, #d8dce4 0%, #9aa1ad 100%);
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.32);
}
.hero-phone-device {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 46px;
  width: 168px;
  margin: 0;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.52));
}
.hero-phone-bezel {
  position: relative;
  background: linear-gradient(160deg, #4a5160 0%, #14171d 14%, #050608 100%);
  border: 1px solid #2a2f38;
  border-radius: 26px;
  padding: 8px 5px 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-phone-shot {
  border-radius: 16px;
}
.hero-phone-island {
  width: 48px;
  height: 9px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: #000;
}
.hero-phone-screen {
  background: #f7f8fb;
  color: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
}
.hero-phone-home {
  display: block;
  width: 58px;
  height: 3px;
  margin: 5px auto 0;
  border-radius: 999px;
  background: #3a404c;
}
.hero-phone-status,
.hero-phone-head,
.hero-phone-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-phone-status { padding: 5px 8px 0; font-size: 10px; font-weight: 800; }
.hero-phone-signs {
  width: 34px;
  height: 8px;
  background:
    linear-gradient(#111, #111) 0 2px / 4px 6px no-repeat,
    linear-gradient(#111, #111) 6px 3px / 4px 5px no-repeat,
    linear-gradient(#111, #111) 12px 1px / 4px 7px no-repeat,
    linear-gradient(#111, #111) 22px 1px / 12px 6px no-repeat;
}
.hero-phone-head { padding: 1px 8px 5px; }
.hero-phone-head b { font-size: 15px; }
.hero-phone-job {
  margin: 0 6px 5px;
  background: var(--navy-2);
  color: #fff;
  border-radius: 9px;
  padding: 7px;
}
.hero-phone-job span,
.hero-phone-job p { margin: 0; font-size: 10px; color: rgba(255,255,255,0.72); }
.hero-phone-job strong { display: block; margin: 2px 0; font-size: 14px; }
.hero-phone-maps {
  display: inline-block;
  margin-top: 6px;
  background: var(--orange);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 8px;
}
.hero-phone-slots li {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0 6px 5px;
  padding: 5px 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 10px;
}
.hero-phone-slots li.is-on { border-color: var(--orange); }
.hero-phone-tabs {
  margin-top: 0;
  padding: 6px 5px 7px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  color: var(--muted);
}
.hero-phone-tabs .is-on { color: var(--orange); }
.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 {
  position: relative;
  background: #0b1f3a;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  display: grid;
  grid-template-columns: 148px 1fr;
}
.desk-side {
  background: var(--navy-2);
  color: #fff;
  padding: 10px 8px;
}
.desk-side .logo { margin: 2px 6px 10px; letter-spacing: 0.14em; font-size: 12px; }
.desk-nav-label {
  margin: 10px 8px 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.desk-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 4px 8px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}
.desk-mode button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  border-radius: 8px;
  padding: 6px 4px;
  font-size: 11px;
  font-weight: 800;
}
.desk-mode button.is-on {
  background: var(--orange);
  color: #111;
}
.desk-nav button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.78);
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 12px;
  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-nav button[data-view="ava"] {
  color: #fff;
}
.desk-nav button[data-view="ava"]::after {
  content: "Live";
  margin-left: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #19b37a;
}
.desk-main { min-width: 0; background: #0a1128; }
.desk-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #0b1f3a;
  border-bottom: 1px solid #143056;
  position: relative;
  z-index: 4;
  isolation: isolate;
  overflow: hidden;
}
.desk-top h3 { margin: 0; font-size: 16px; flex: 0 0 auto; }
.desk-top-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}
.desk-ask {
  flex: 0 0 auto;
  border: 0;
  background: var(--orange);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
}
.desk-greet {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
  line-height: 1.35;
}
.desk-body {
  padding: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 0;
}
.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) auto;
  gap: 4px 8px;
  padding: 7px 4px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  width: 100%;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  text-align: left;
  color: inherit;
  font: inherit;
}
.job:first-of-type { border-top: 0; }
.job.is-on {
  background: #eef4ff;
  border-radius: 10px;
  padding-left: 8px;
  padding-right: 8px;
  box-shadow: inset 3px 0 0 var(--orange);
}
.job b { display: block; font-size: 13px; }
.job small { color: var(--muted); }
.job > :last-child {
  grid-column: 3;
  justify-self: end;
}
.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: 0;
  border-top: 1px solid var(--line);
  width: 100%;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.tech-row.is-on {
  background: #eef4ff;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
  box-shadow: inset 3px 0 0 var(--orange);
}
.desk-select-note,
.ava-live-line {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ava-live-line { color: var(--navy-3); font-weight: 600; }
.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; }
.ava-panel {
  background: #eef4ff;
  border: 2px solid #1d4ed8;
}
.ava-callout {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: #1d4ed8;
}
.desk-ava-live {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(25, 179, 122, 0.14);
  color: #137a4d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.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;
}
button.list-row {
  width: 100%;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
button.list-row.is-on,
button.list-row:hover {
  color: var(--navy);
}

.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; }
#trades.trades-band.section { padding: 40px 0 32px; }
.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, #trades, #features, #footer, .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-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.phone-action-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.phone-action-title {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}
.phone-cal {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 0 6px;
  margin-bottom: 8px;
}
.phone-cal-slot {
  flex: 0 0 auto;
  min-width: 92px;
  max-width: 120px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  text-align: left;
  font: inherit;
  color: inherit;
}
.phone-cal-slot small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
}
.phone-cal-slot b {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
.phone-cal-slot.is-on {
  background: var(--navy-2);
  color: #fff;
  border-color: var(--navy-2);
}
.phone-cal-slot.is-on small { color: #ffb48a; }
.phone-cal-views {
  display: flex;
  gap: 6px;
  margin: 0 0 8px;
}
.phone-cal-views button,
.desk-cal-views button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  color: var(--ink);
}
.phone-cal-views button.is-on,
.desk-cal-views button.is-on {
  background: var(--navy-2);
  color: #fff;
  border-color: var(--navy-2);
}
.phone-week,
.phone-month {
  margin-bottom: 8px;
}
.phone-week.cal-week {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.phone-month.cal-month {
  gap: 4px;
}
.phone-ops {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
}
.phone-op {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  text-align: left;
  font: inherit;
  color: inherit;
  min-width: 0;
}
.phone-op-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.phone-op b {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}
.phone-op span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
}
.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-pills.pills-compact { margin: 10px 0 14px; }
.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-widget.is-docked,
.chat-toggle.is-docked {
  position: absolute;
}
.phone-demo .chat-widget.is-docked {
  right: 8px;
  bottom: 8px;
  z-index: 4;
  width: min(300px, calc(100% - 16px));
}
.phone-demo .chat-toggle.is-docked {
  right: 10px;
  bottom: 10px;
  z-index: 5;
}
.chat-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  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-toggle.is-docked { z-index: 5; }
.ava-hide {
  margin-left: 2px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  padding: 0 0 0 4px;
  cursor: pointer;
}
.ava-tab,
.chat-toggle.is-edge {
  position: fixed;
  right: 12px;
  bottom: 16px;
  left: auto;
  z-index: 40;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  padding: 0 14px;
  writing-mode: horizontal-tb;
  box-shadow: 0 10px 24px rgba(255,106,26,0.4);
}
.chat-toggle.is-edge img { display: none; }
.chat-toggle.is-edge .ava-hide { color: #111; }
body.has-ava-fab,
body:has(.ava-tab) {
  padding-right: 0;
}
body.has-ava-fab .cta-band,
body.has-ava-fab footer.site,
body.has-ava-fab .trade-grid,
body:has(.ava-tab) .trade-grid {
  padding-bottom: 12px;
}
.chat-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  margin-bottom: 70px;
}
.chat-panel.open { display: block; }
@media (max-width: 520px) {
  .chat-widget:not(.is-docked) {
    right: 8px;
    left: 8px;
    bottom: 8px;
    width: auto;
    max-width: none;
  }
  .chat-widget:not(.is-docked) .chat-panel.open {
    margin-bottom: 58px;
    max-height: min(72dvh, 560px);
  }
}
.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; align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.price-card > .btn { margin-top: auto; }
.price-card b { font-size: 28px; display: block; margin: 8px 0; }
.price-allowance {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.page-hero.is-plans .hero-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.later-hero {
  padding: 56px 0 48px;
}
.later-split {
  display: grid;
  gap: 28px;
  justify-items: center;
}
.later-hero .hero-copy {
  width: 100%;
  min-width: 0;
}
.later-hero h1 {
  max-width: 16ch;
}
.later-hero .hero-sub {
  max-width: 42ch;
}
.later-points {
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.later-points li {
  padding: 0 0 0 14px;
  border-left: 3px solid var(--orange);
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.45;
}
.later-visual {
  width: min(320px, 100%);
}
@media (min-width: 821px) {
  .later-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: center;
    justify-items: stretch;
  }
  .later-hero .hero-copy { order: -1; }
}

footer.site {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 20px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
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: 1fr 0.92fr; align-items: stretch; }
  .shape-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .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.4fr 1fr 1.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); }
.shop-os-menu {
  min-width: 240px;
}

.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 {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e4d8;
  margin-bottom: 8px;
}
.leaflet-host .leaflet-pane,
.leaflet-host .leaflet-map-pane,
.leaflet-host .leaflet-tile-pane,
.leaflet-host .leaflet-overlay-pane,
.leaflet-host .leaflet-marker-pane,
.leaflet-host .leaflet-shadow-pane,
.leaflet-host .leaflet-tile-container {
  overflow: visible;
  max-width: none;
}
.leaflet-host .leaflet-tile-container img,
img.leaflet-tile {
  filter: none;
  max-width: none !important;
  max-height: none !important;
}
.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);
}
.mkt-job-pin {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 0 2px #0a1128;
}
.mkt-job-pin.is-on {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.35);
}
.leaflet-tooltip.mkt-travel {
  background: var(--navy-2);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  box-shadow: none;
}

.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 28px; }
.ask-row { margin-top: 16px; margin-bottom: 28px; }
.desk-open { margin: 20px 0 28px; }
.hero-cta + .proof-chips,
.cta-row + .explore-grid,
.ask-row + .explore-grid,
.desk-open + .explore-grid,
.cta-row + .shape-grid,
.cta-row + .stats-row,
.cta-row + .how-row,
.cta-row + .play-beats,
.ask-row + .play-beats {
  margin-top: 8px;
}
.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: 0 16px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ui-mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -16px 12px;
  padding: 12px 16px;
  background: var(--navy-2);
  color: #fff;
}
.ui-mock-top b { color: #fff; }
.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,
.mega-col .mega-col-title { margin: 0 0 6px; font-size: 13px; display: flex; gap: 6px; align-items: center; font-weight: 700; }
.mega-col h3 span,
.mega-col .mega-col-title 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: 0;
  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: 28px 0 20px;
  text-align: center;
}
.cta-band .kicker { margin: 0 0 4px; }
.cta-band h2 { margin: 4px 0 8px; }
.cta-band .lead { margin: 0 auto 8px; color: rgba(255,255,255,0.8); }
.cta-band .cta-row { margin: 12px 0 0; }
.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;
}
.app-demo-intro { max-width: 56ch; }
.app-demo .phone-jumps,
.app-demo .story-chips,
.app-demo .feature-chips {
  max-width: 980px;
  margin: 16px auto 0;
}
.app-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: 22px;
  align-items: start;
  width: min(1100px, 100%);
  margin: 20px auto 0;
}
.app-pair-board {
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(10, 17, 40, 0.08);
  overflow: hidden;
}
.cal-route,
.desk-cal .leaflet-host {
  overflow: hidden;
}
.app-demo-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: min(420px, 100%);
  width: 100%;
  margin: 0;
  padding: 20px 16px 24px;
  background: #f4f6fa;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.app-demo > .app-demo-ava {
  width: min(720px, 100%);
  max-width: none;
  margin: 22px auto 0;
}
@media (max-width: 979px) {
  .app-pair {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .cal-day-split,
  .cal-week {
    grid-template-columns: 1fr 1fr;
  }
  .desk-cal.is-compact .cal-week { grid-template-columns: 1fr 1fr; }
}
.phone-demo {
  position: relative;
  width: min(340px, 100%);
}
.app-demo-ava {
  width: 100%;
  max-width: 400px;
}
.product-play-beats { margin-bottom: 16px; }
.stats-row {
  display: grid;
  gap: 12px;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.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); }
  .explore-grid:has(> :nth-child(3):last-child),
  .explore-grid:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .explore-grid:has(> :nth-child(7):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #growth .home-growth-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-5.cards-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .stats-sub { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .explore-grid:has(> :nth-child(3):last-child),
  .explore-grid:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .explore-grid:has(> :nth-child(4):last-child),
  .explore-grid:has(> :nth-child(7):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #growth .home-growth-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-5.cards-compact { grid-template-columns: repeat(4, minmax(0, 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: 0 1 220px;
  width: 220px;
  max-width: 240px;
  min-width: 140px;
}
.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.8vw, 52px);
  line-height: 0.98;
  overflow-wrap: break-word;
}
.page-hero {
  overflow-x: hidden;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  overflow-wrap: break-word;
}
.hero-sub {
  max-width: 46ch;
}

.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) auto;
}
.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: #0b1f3a;
  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: 148px; }
.desk-hero .leaflet-host { height: 148px; min-height: 148px; }
.desk-hero .desk-hero-map .leaflet-host { height: 160px; min-height: 160px; }
.desk-hero .pulse-star { width: 52px; height: 52px; }
#desk .desk-hero {
  margin-top: 8px;
}

.desk-stage {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% -8%, rgba(255, 106, 26, 0.2), transparent 52%),
    var(--navy);
  color: #fff;
}
.desk-stage .lead,
.desk-stage .hero-sub {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero.desk-stage {
  color: #fff;
}
.page-hero.desk-stage .hero-sub {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero.desk-stage .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.desk-stage .btn-navy {
  background: #fff;
  color: var(--navy);
}
.desk-bleed {
  --desk-copy-width: min(1100px, calc(100% - 24px));
  --desk-copy-left: calc((100% - var(--desk-copy-width)) / 2);
  width: calc(100% - 16px);
  margin: 0 auto;
  padding: 28px 0 36px;
  min-width: 0;
  max-width: none;
}
.desk-bleed > .kicker,
.desk-bleed > h1,
.desk-bleed > h2,
.desk-bleed > .lead,
.desk-bleed > .hero-sub,
.desk-bleed > .cta-row,
.desk-bleed > .proof-chips,
.desk-bleed > .feature-chips,
.desk-bleed > .play-beats,
.desk-bleed > .day-caps,
.desk-bleed > .desk-open-row {
  box-sizing: border-box;
  width: var(--desk-copy-width);
  max-width: var(--desk-copy-width);
  margin-left: var(--desk-copy-left);
  margin-right: auto;
  text-align: left;
}
.desk-bleed > .lead,
.desk-bleed > .hero-sub {
  width: auto;
  max-width: min(38rem, var(--desk-copy-width));
}
.desk-stage .proof-chip,
.page-hero.desk-stage .proof-chip,
.desk-bleed .proof-chip {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
}
.desk-stage-frame {
  position: relative;
  margin-top: 14px;
  background: #0b1f3a;
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(10, 17, 40, 0.16);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.day-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.day-caps li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}
.day-board-frame {
  background: #0b1f3a;
  box-shadow: 0 22px 56px rgba(10, 17, 40, 0.22);
}
.day-board {
  color: #fff;
  padding: 18px 18px 16px;
}
.day-board-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.day-board-bar b {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.day-board-bar small {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 700;
}
.day-board-count {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.day-board-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-areas:
    "jobs map"
    "next ava";
  gap: 12px;
}
.day-jobs { grid-area: jobs; }
.day-map { grid-area: map; }
.day-ava { grid-area: ava; }
.day-next { grid-area: next; }
.day-jobs,
.day-map,
.day-ava,
.day-next {
  min-width: 0;
  background: #10233c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
}
.day-board h3 {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.day-jobs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.day-job {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  background: #0d1c32;
  border: 1px solid transparent;
  cursor: pointer;
}
.day-job.is-on {
  border-color: rgba(255,106,26,0.45);
  background: #173154;
  box-shadow: inset 3px 0 0 var(--orange);
}
.day-job-time {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}
.day-job-body b {
  display: block;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.day-job-body small {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}
.day-map-canvas {
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,106,26,0.16), transparent 36%),
    linear-gradient(180deg, #16325a 0%, #0d1c32 100%);
}
.day-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.day-roads {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1.2;
}
.day-route-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 3 3;
}
.day-yard,
.day-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
}
.day-yard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: #0b1f3a;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.day-pin {
  display: grid;
  justify-items: center;
  gap: 2px;
  cursor: pointer;
}
.day-pin i {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #7ea2c7;
  box-shadow: 0 0 0 4px rgba(126,162,199,0.16);
}
.day-pin.is-live i {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,106,26,0.22);
}
.day-pin span {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.78);
}
.day-map-note {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 650;
}
.day-ava {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 4px;
}
.day-ava-live {
  display: flex;
  align-items: center;
  gap: 8px;
}
.day-ava-live h3 { margin: 0; color: #fff; font-size: 16px; letter-spacing: -0.03em; text-transform: none; }
.day-ava .ava-callout {
  margin: 2px 0 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}
.day-ava p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.day-next-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.day-next-detail {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}
.day-money {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.day-money span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0d1c32;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 700;
}
.day-money b {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 820px) {
  .day-board-grid,
  #desk .day-board-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "jobs"
      "map"
      "ava"
      "next";
  }
  .day-map-canvas { height: 168px; }
}
.desk-stage-frame .chat-widget.is-docked,
.desk-stage-frame .chat-toggle.is-docked {
  position: absolute;
}
.desk-stage-frame .chat-toggle.is-docked {
  right: 14px;
  bottom: 14px;
  z-index: 7;
}
.desk-stage-frame .chat-widget.is-docked {
  right: 14px;
  bottom: 14px;
  z-index: 6;
  width: min(360px, calc(100% - 28px));
}
.desk-embed {
  position: relative;
  width: 1280px;
  max-width: none;
  background: #0a1128;
  transform-origin: top left;
}
.desk-embed > .chat-toggle.is-docked {
  right: 14px;
  bottom: 14px;
  z-index: 7;
}
.desk-embed > .chat-widget.is-docked {
  right: 14px;
  bottom: 14px;
  z-index: 6;
  width: min(360px, calc(100% - 28px));
}
.desk-embed .desk-frame {
  position: relative;
  width: 1280px;
  min-height: 760px;
  box-shadow: none;
  border-radius: 0;
  grid-template-columns: 148px minmax(0, 1fr) !important;
}
.desk-embed .desk-side { display: block; padding: 10px 8px; }
.desk-embed .desk-nav button { font-size: 12px; padding: 5px 8px; }
.desk-embed .leaflet-host { height: 240px; min-height: 240px; }
.desk-embed .desk-hero-map .leaflet-host { height: 280px; min-height: 280px; }
.desk-embed .pulse-star { width: 72px; height: 72px; }
.desk-embed .job {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}
.desk-embed .job > :last-child {
  grid-column: 3;
  justify-self: end;
}
.desk-embed .job b,
.desk-embed .job small,
.desk-embed .tech-row b,
.desk-embed .ava-stat span,
.desk-embed .desk-beat span,
.desk-embed .desk-kpi span {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.desk-embed .hero-cols,
.desk-embed .cols-3 {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
}
.desk-embed .hero-cols > .panel,
.desk-embed .cols-3 > .panel {
  height: 100%;
}
.desk-embed .leaflet-host,
.desk-embed .leaflet-container {
  overflow: hidden;
  max-width: 100%;
}
.desk-embed .leaflet-pane,
.desk-embed .leaflet-map-pane,
.desk-embed .leaflet-tile-pane,
.desk-embed .leaflet-overlay-pane,
.desk-embed .leaflet-tile-container {
  overflow: visible;
  max-width: none;
}
.desk-embed .desk-map-view .leaflet-host {
  height: 240px;
  min-height: 240px;
  max-height: 240px;
}
.desk-embed .glance {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.desk-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.desk-kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 0;
}
.desk-kpi span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.desk-kpi b {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin: 2px 0;
}
.desk-kpi small {
  color: #137a4d;
  font-weight: 700;
}
.desk-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.desk-beat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 0;
}
.desk-beat small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
}
.desk-beat span {
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.desk-beat.live {
  box-shadow: inset 3px 0 0 var(--orange);
}
.desk-beat.done {
  box-shadow: inset 3px 0 0 #137a4d;
}
.cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}
.ava-board {
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.8fr);
  align-items: stretch;
}
.ava-board-side {
  display: grid;
  gap: 10px;
  align-content: start;
}
.ava-chat-panel {
  padding: 0;
  overflow: hidden;
  border: 2px solid #1d4ed8;
  min-height: 360px;
}
.ava-chat-panel .inline-ava {
  margin: 0;
  border: 0;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ava-chat-panel .inline-ava .chat-msgs {
  height: 280px;
  flex: 1;
}
.desk-fab {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 10px 22px rgba(255,106,26,0.38);
}
.desk-fab.is-on {
  box-shadow: 0 0 0 3px rgba(255,106,26,0.28), 0 10px 22px rgba(255,106,26,0.38);
}
.desk-embed .desk-side {
  display: block !important;
}
.desk-frame .panel,
.desk-embed .panel,
.desk-kpi,
.desk-beat,
.desk-frame .metric {
  background: #0b1f3a;
  border-color: #143056;
  color: #f4f7fb;
}
.desk-frame .job.is-on {
  background: #143056;
}
.desk-frame .ava-panel {
  background: #0b1f3a;
  border-color: #1b3c68;
}
.desk-frame .ava-callout {
  color: #fdba74;
}
.desk-frame button.list-row.is-on,
.desk-frame button.list-row:hover {
  color: #f4f7fb;
}
.desk-embed[data-theme="light"],
.desk-embed.ae-theme-light {
  background: #fff;
}
.desk-embed[data-theme="light"] .desk-frame,
.desk-embed.ae-theme-light .desk-frame {
  background: #fff;
  color: var(--ink);
}
.desk-embed[data-theme="light"] .desk-main,
.desk-embed.ae-theme-light .desk-main {
  background: #f7f9fc;
}
.desk-embed[data-theme="light"] .desk-top,
.desk-embed.ae-theme-light .desk-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.desk-embed[data-theme="light"] .desk-body,
.desk-embed.ae-theme-light .desk-body {
  background: #f7f9fc;
  color: var(--ink);
}
.desk-embed[data-theme="light"] .panel,
.desk-embed[data-theme="light"] .desk-kpi,
.desk-embed[data-theme="light"] .desk-beat,
.desk-embed[data-theme="light"] .metric,
.desk-embed.ae-theme-light .panel,
.desk-embed.ae-theme-light .desk-kpi,
.desk-embed.ae-theme-light .desk-beat,
.desk-embed.ae-theme-light .metric {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.desk-embed[data-theme="light"] .ava-panel,
.desk-embed.ae-theme-light .ava-panel {
  background: #eef4ff;
  border-color: #1d4ed8;
  color: var(--ink);
}
.desk-embed[data-theme="light"] .ava-callout,
.desk-embed.ae-theme-light .ava-callout {
  color: #1d4ed8;
}
.desk-embed[data-theme="light"] .job.is-on,
.desk-embed.ae-theme-light .job.is-on {
  background: #fff7f1;
}
.desk-embed[data-theme="light"] .desk-side,
.desk-embed.ae-theme-light .desk-side {
  background: #0b1f3a;
  color: #fff;
}
/* Homepage marketing desk: never paint the compact dark day board. */
#desk .day-board,
#desk .day-board-frame,
#hero .day-board {
  display: none !important;
}
#desk .desk-stage-frame {
  background: #fff;
}
.desk-embed[data-theme="light"] button.list-row.is-on,
.desk-embed[data-theme="light"] button.list-row:hover,
.desk-embed.ae-theme-light button.list-row.is-on,
.desk-embed.ae-theme-light button.list-row:hover {
  color: var(--ink);
}
.desk-open-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.feature-chips span {
  border-radius: 999px;
  background: rgba(10, 17, 40, 0.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  padding: 6px 10px;
}
.story-chips {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.desk-cal {
  min-width: 0;
}
.desk-cal-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.desk-cal-top h4 { margin: 0; }
.desk-cal-views { display: flex; gap: 6px; }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 750;
  color: var(--muted);
}
.cal-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.cal-legend i.green { background: #137a4d; }
.cal-legend i.blue { background: #2b6cb0; }
.cal-legend i.orange { background: var(--orange); }
.cal-legend i.travel {
  background: transparent;
  border: 2px dashed var(--orange);
  border-radius: 2px;
  width: 8px;
  height: 8px;
}
.cal-day-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
}
.cal-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cal-travel {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 8px;
  border-left: 3px dashed var(--orange);
}
.cal-apt,
.cal-chip {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 0;
}
.cal-apt.green, .cal-chip.green { border-left-color: #137a4d; }
.cal-apt.blue, .cal-chip.blue { border-left-color: #2b6cb0; }
.cal-apt.orange, .cal-chip.orange { border-left-color: var(--orange); }
.cal-apt.is-on,
.cal-chip.is-on {
  background: var(--navy-2);
  color: #fff;
  border-color: var(--navy-2);
}
.cal-apt small,
.cal-chip small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
}
.cal-apt.is-on small,
.cal-chip.is-on small { color: #ffb48a; }
.cal-apt b,
.cal-chip b {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.cal-apt span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.cal-apt.is-on span { color: #d7deea; }
.cal-week {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.cal-col {
  min-width: 0;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}
.cal-col.is-today {
  box-shadow: inset 0 0 0 1px var(--navy-2);
}
.cal-col h5 {
  margin: 0 0 8px;
  font-size: 12px;
}
.cal-chip { padding: 6px 8px; margin-bottom: 6px; }
.cal-chip b { font-size: 11px; }
.cal-month {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
}
.cal-day {
  min-height: 52px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  text-align: left;
  font: inherit;
  color: inherit;
}
.cal-day[disabled] { opacity: 0.55; }
.cal-day.is-today {
  outline: 2px dashed var(--orange);
  outline-offset: -2px;
}
.cal-day b { display: block; font-size: 12px; }
.cal-dots {
  display: block;
  letter-spacing: 1px;
  color: var(--navy-2);
  font-size: 14px;
  line-height: 1;
}
.desk-cal.is-compact .cal-week {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.desk-cal.is-compact .cal-day { min-height: 40px; padding: 4px; }
.desk-cal.is-compact .cal-apt b,
.desk-cal.is-compact .cal-chip b { font-size: 12px; }
.how-row {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.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%;
  min-height: 280px;
  max-height: none;
  overflow: visible;
}
.hero-panel {
  min-width: 0;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: visible;
}
.hero-panel.pocket-hero {
  display: flex;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  min-height: 0;
}
.page-hero .hero-panel,
.page-hero .ui-mock,
.page-hero .feature-board {
  align-self: start;
}

.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.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 32px;
  }
  .page-hero.is-plans .hero-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .hero-composite {
    width: 100%;
    max-width: none;
    margin-left: auto;
  }
  .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;
  }
  .how-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 979px) {
  .hero-board { grid-template-columns: minmax(0, 1fr); }
  .hero-board-side { display: none; }
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
  }
  .page-hero.is-plans .hero-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .hero .wrap-wide { width: min(1280px, calc(100% - 64px)); }
  .how-layout,
  .how-sheet {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.58fr);
    gap: 28px;
  }
  .how-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Fill the right hero column. Stay inside the 1280 track. */
@media (min-width: 980px) {
  .hero > .wrap-wide {
    width: min(1280px, calc(100% - 64px));
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .hero-grid {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
  }
  .page-hero.is-plans .hero-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .hero-composite {
    justify-content: stretch;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
  .hero-stage {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 759px) {
  .nav { position: relative; z-index: 3; }
  .nav-search { position: static; }
  .search-hits {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .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;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stage {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    transform: none;
    width: auto;
    margin: 0;
    height: auto;
    padding: 0;
  }
  .hero-laptop { width: 100%; }
  .hero-board-top { padding: 6px 8px 4px; }
  .hero-board-kpis { gap: 4px; padding: 0 8px 6px; }
  .hero-kpi { padding: 4px 5px 3px; }
  .hero-kpi b { font-size: 13px; }
  .hero-kpi small { font-size: 9px; }
  .hero-board-main { grid-template-columns: 1fr 1fr 1fr; padding: 6px; gap: 5px; }
  .hero-board-col { padding: 6px; }
  .hero-job-body small { display: none; }
  .hero-job { grid-template-columns: 34px minmax(0, 1fr); gap: 4px; }
  .hero-job .badge { display: none; }
  .hero-job-body b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-job:nth-child(n+2),
  .hero-techs { display: none; }
  .hero-mini-map { height: 44px; }
  .hero-ava-pulse { display: none; }
  .hero-board-ava dl div:nth-child(n+2) { display: none; }
  .hero-phone-slots { display: none; }
  .hero-phone-device {
    position: relative;
    left: auto;
    bottom: auto;
    width: 126px;
    margin: -22px 0 0 12px;
  }
  .hero-cta { width: 100%; max-width: none; }
}

@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);
    position: static;
  }
  .nav-search input {
    font-size: 12px;
    padding: 8px 8px;
  }
  .search-hits {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .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: 24px 0 16px; }
  .cta-band .cta-row { justify-content: center; }
  #trades .trade-grid { padding-right: 0; }
  .page-hero .hero-copy,
  .page-hero .cta-row,
  .page-hero .proof-chips { min-width: 0; max-width: 100%; }
  .page-hero .btn { max-width: 100%; }
  .page-hero .cta-row,
  .page-hero .hero-cta,
  .hero .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: none;
    gap: 10px;
    padding-right: 0;
  }
  .page-hero .cta-row .btn,
  .page-hero .hero-cta .btn,
  .hero .hero-cta .btn {
    width: 100%;
    min-width: 0;
  }
  .hero { padding: 28px 0 36px; }
  .hero h1 { font-size: clamp(28px, 8.4vw, 34px); }
  .hero-composite { padding: 0 0 8px; }
  .hero-anchor { margin-top: 16px; }
  .hero-board-main { grid-template-columns: 1fr 1fr 1fr; }
  .hero-board-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-stage { transform: none; width: auto; margin: 0; height: auto; }
  .hero-cta { width: 100%; max-width: none; }
  .hero .proof-chips { max-width: none; }
  .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; }
  .day-board { padding: 14px 12px 12px; }
  .day-board-grid,
  #desk .day-board-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "jobs"
      "map"
      "ava"
      "next";
    gap: 10px;
  }
  .day-map-canvas { height: 168px; }
  .day-job {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding: 9px 8px;
  }
  .day-job-body b { font-size: 13px; }
  .day-ava { min-height: 120px; }
  .day-next-title { font-size: 16px; }
  .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:not(.desk-embed) .desk-side { display: none; }
  #desk .desk-embed .desk-side,
  #desk .desk-embed[data-theme="light"] .desk-side,
  #desk .desk-embed.ae-theme-light .desk-side {
    display: block !important;
  }
  #desk .desk-embed .desk-frame,
  #desk .desk-embed[data-theme="light"] .desk-frame {
    grid-template-columns: 148px minmax(0, 1fr) !important;
  }
  .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:not(.desk-embed) .job:nth-child(n+4) { display: none; }
  .desk-hero .leaflet-host { height: 120px; min-height: 120px; }
  .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; }
  .stats-row > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .page-hero .cta-row,
  .page-hero .hero-cta,
  .page-hero .ask-row { padding-right: 8px; }
  .leftover-doc .related,
  .leftover-related,
  .related {
    grid-template-columns: 1fr;
  }
  .leftover-board { margin-top: 18px; }
  .leftover-phone-shell { width: 100%; max-width: 100%; }
  .leftover-phone .phone-screen { min-height: 400px; }
  .leftover-phone-extra { display: none; }
  .leftover-hero .hero-copy,
  .leftover-hero .cta-row,
  .leftover-hero .proof-chips { min-width: 0; max-width: 100%; }
  .hero-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 10px;
    font-size: 13px;
    line-height: 1.35;
  }
  .hero-price b { font-size: 18px; }
  .faq-item summary { overflow-wrap: anywhere; }
  .leftover-doc .block { padding: 16px; }
  .leftover-jumps { margin-top: 16px; }
  .thread-list .thread-card.is-on { margin: 0; }
  .ui-mock { max-height: none; min-height: 220px; }
  .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: "Custom"; }
  .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%; }
  .leaflet-host .leaflet-pane,
  .leaflet-host .leaflet-tile-container { max-width: none; overflow: visible; }
  .integ-card { grid-template-columns: 36px minmax(0, 1fr) auto; }
  .integ-arrow {
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
  }
  .thread-picks,
  .story-grid { grid-template-columns: 1fr; }
  .story-pick img { height: 120px; }
  .product-play-tabs { gap: 6px; }
  .onboard-wheel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    aspect-ratio: auto;
    width: 100%;
    gap: 8px;
  }
  .wheel-hub {
    position: static;
    inset: auto;
    grid-column: 1 / -1;
    border-radius: 16px;
    padding: 12px;
  }
  .wheel-step {
    position: static;
    transform: none;
    width: auto;
    margin: 0;
  }
  .play-beats { grid-template-columns: 1fr; }
  .home-play .play-beat b,
  .home-play .play-beat span,
  #play .play-beat b,
  #play .play-beat span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .home-play .product-play-stage,
  #play .feature-board {
    overflow: visible;
  }
  .story-chips { grid-template-columns: 1fr 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 .growth-block { margin-top: 16px; }
#growth .growth-block:first-child { margin-top: 4px; }
#growth .home-growth-grid { margin-top: 12px; }
#growth .home-growth-grid .explore-card p { flex: 0 1 auto; }
#growth .home-growth-grid .explore-card.growth-link img { height: 88px; }
.cards-5.cards-compact .feat-card { padding: 14px; }
.cards-5.cards-compact .feat-card li { padding: 5px 0; }
.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: 20px 0 28px; }
.published-checkout-band {
  padding: 8px 0 0;
}
.published-checkout,
.sms-consent {
  margin: 0 auto 8px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}
.plan-reminder {
  position: sticky;
  bottom: 12px;
  z-index: 8;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 28px rgba(8, 18, 40, 0.28);
}
.plan-reminder p {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.4;
}
.plan-reminder .check {
  margin: 0;
}
.plan-reminder .check li {
  color: rgba(255, 255, 255, 0.86);
}
.price-contact {
  margin: 8px 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.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; }
.estimate-preview-card {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #1b3c68;
  background: #102848;
  color: #f4f7fb;
  text-align: left;
}
.estimate-preview-kicker {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fb923c;
}
.estimate-preview-hero {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
}
.estimate-preview-hero img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #0b1f3a;
}
.estimate-preview-hero small { display: block; color: #c5d0de; }
.estimate-preview-money {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.estimate-preview-money li {
  display: flex;
  justify-content: space-between;
  gap: 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-beats.story-chips,
.play-beats.desk-tab-jumps,
.play-beats.feature-jumps,
.play-beats.growth-jumps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.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;
}
.feature-jumps .play-beat b,
.feature-jumps .play-beat span,
.growth-jumps .play-beat b,
.growth-jumps .play-beat span {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.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; }
.legal-doc p,
.legal-doc li { color: var(--ink-soft, #3d4558); margin-bottom: 10px; }
.legal-doc .note {
  background: #fff7f1;
  border-left: 3px solid var(--orange, #ff6a1a);
  padding: 12px 14px;
  margin: 16px 0;
}
.leftover-doc .block {
  background: #fff;
  border: 1px solid var(--line, #e4e7ee);
  border-radius: 14px;
  padding: 20px;
  margin-top: 12px;
}
.leftover-doc .block h2 { font-size: 22px; margin: 0 0 8px; }
.leftover-doc .block p,
.leftover-doc .block li { color: var(--ink-soft, #3d4558); margin-top: 10px; }
.leftover-related,
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.leftover-related a,
.related a {
  background: #fff;
  border: 1px solid var(--line, #e4e7ee);
  border-radius: 12px;
  padding: 14px;
  font-weight: 650;
}
.leftover-related span,
.related span {
  display: block;
  color: var(--muted, #5f6b88);
  font-size: 13px;
  margin-top: 6px;
}
.leftover-honesty {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  max-width: 56ch;
}
.leftover-hero .hero-copy { min-width: 0; }
.leftover-phone {
  justify-self: center;
  width: min(320px, 100%);
}
.leftover-phone-shell { width: min(320px, 100%); }
.leftover-phone .phone-screen { min-height: 480px; }
.leftover-phone .next-job small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}
.leftover-phone .phone-item > span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.leftover-faq { margin-top: 18px; }
.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin: 10px 0 8px;
  font-size: 15px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
}
.hero-price b {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.field input,
.field textarea,
.field select {
  min-height: 44px;
  border: 1px solid var(--line, #e4e7ee);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
}
.consent {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted, #5f6b88);
  font-size: 13px;
}
.pricing-note {
  margin-top: 22px;
  color: var(--muted, #5f6b88);
  font-size: 13px;
}
.leftover-doc .faq details {
  border-top: 1px solid var(--line, #e4e7ee);
  padding: 12px 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;
}
.ava-preview {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.ava-preview-tag {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ava-preview img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 8px;
}
.ava-preview b { display: block; margin: 0 0 4px; }
.ava-preview p { margin: 0; color: var(--muted); font-size: 13px; }
.ava-preview [data-confirm] {
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  padding: 6px 10px;
  cursor: pointer;
}
.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); }
}

@media (max-width: 759px) {
  .play-beats { grid-template-columns: 1fr; }
  .home-play .play-beat b,
  .home-play .play-beat span,
  #play .play-beat b,
  #play .play-beat span,
  .play-beat b,
  .play-beat span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .phone-jumps,
  .product-play-beats,
  .story-jumps,
  .hero-jumps,
  .story-chips,
  .play-beats.story-chips,
  .play-beats.desk-tab-jumps,
  .play-beats.feature-jumps,
  .play-beats.growth-jumps,
  .feature-jumps,
  .growth-jumps { grid-template-columns: 1fr 1fr; }
  .page-hero h1,
  .page-hero .hero-sub {
    overflow-wrap: break-word;
    white-space: normal;
  }
  .page-hero .cta-row .btn {
    white-space: nowrap;
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }
  #desk,
  #app {
    overflow-x: clip;
    max-width: 100%;
  }
}

.desk-tour {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.desk-tour[hidden] { display: none; }
.desk-tour-scrim {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  background: transparent;
}
.desk-tour-hole {
  position: fixed;
  border-radius: 14px;
  box-shadow: 0 0 0 9999px rgba(10, 17, 40, 0.58);
  outline: 2px solid #ff6a1a;
  outline-offset: 0;
  pointer-events: none;
}
.desk-tour-card {
  position: fixed;
  pointer-events: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(10, 17, 40, 0.28);
  padding: 16px 18px 14px;
  max-width: 360px;
}
.desk-tour-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.desk-tour-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}
.desk-tour-copy {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}
.desk-tour-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Aestar marketing density. Keep navy + orange. Do not change homepage hero geometry or Ask AI rest rules. */
.nav-links .btn-orange {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}
.section h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.038em;
  line-height: 1.08;
}
.center-copy .kicker,
.center-copy h2,
.center-copy .lead {
  margin-left: auto;
  margin-right: auto;
}
.center-copy .lead { max-width: 54ch; }
#shape:not(.pocket-product) .wrap,
#how .wrap,
#product .wrap,
#faq .wrap {
  text-align: center;
}
#shape .lead,
#how .lead,
#product .lead,
#faq .lead {
  margin-left: auto;
  margin-right: auto;
}
#shape .shape-grid,
#how .how-row,
#product .cards-5,
#product .feature-pills,
#faq .faq-grid {
  text-align: left;
}

.shape-card,
.how-card,
.feat-card,
.explore-card,
.price-card {
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.04);
}
.shape-card,
.how-card,
.feat-card {
  padding: 28px 26px 24px;
}
.how-num {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.compare-ways { padding-top: 72px; }
.way-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}
.way-card {
  border-radius: 24px;
  padding: 32px 28px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.way-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.way-card p { margin: 0 0 20px; color: var(--muted); line-height: 1.55; }
.way-old {
  background: #f4f6fa;
  border: 1px solid var(--line);
}
.way-new {
  background: var(--navy);
  color: #fff;
}
.way-new .kicker { color: var(--orange); }
.way-new p { color: rgba(255, 255, 255, 0.78); }
.way-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.way-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 27, 46, 0.06);
  font-size: 13px;
  font-weight: 700;
}
.way-new .way-pills span {
  background: var(--orange);
  color: #111;
}

.cta-rail {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}
.cta-rail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-rail p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.cta-rail .btn {
  min-height: 48px;
  padding: 12px 22px;
  flex: 0 0 auto;
}

.app-band .kicker { color: var(--orange); }
.app-band .lead { color: rgba(255, 255, 255, 0.78); }
.app-band .play-beat {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.app-band .play-beat span { color: rgba(255, 255, 255, 0.68); }
.app-band .btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.app-band .btn-navy {
  background: #fff;
  color: var(--navy);
}
.app-band .play-beat.on,
.app-band .play-beat.active {
  background: #fff;
  color: var(--navy);
}
.app-band .play-beat.on span,
.app-band .play-beat.active span { color: var(--muted); }

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}
.cta-band .kicker { color: var(--orange); }
.cta-band h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.038em;
  line-height: 1.08;
  margin: 8px 0 14px;
}
.cta-band .lead {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.cta-band .cta-row {
  justify-content: center;
  margin-top: 28px;
}
.cta-band .btn {
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
}
.cta-band .btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.cta-pills span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}

.page-hero {
  padding: 80px 0 72px;
}
.page-hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  letter-spacing: -0.042em;
  line-height: 1.05;
}
.page-hero .about-hero,
.page-hero .customers-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 8px;
}
.page-hero .about-hero .hero-sub,
.page-hero .customers-hero .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.page-hero .about-hero .cta-row,
.page-hero .customers-hero .cta-row {
  justify-content: center;
}

.stats-xl b { color: var(--orange); }
.proof-band.section { padding: 72px 0; }

.price-card {
  padding: 28px 24px 24px;
  border-radius: 20px;
}
.price-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.price-card.featured p,
.price-card.featured .overage,
.price-card.featured .price-allowance,
.price-card.featured .check li { color: rgba(255, 255, 255, 0.86); }
.price-card.featured .price-allowance { color: var(--orange); }
.price-card.featured .callout {
  background: rgba(255, 106, 26, 0.16);
  color: #fff;
}
.price-card b { font-size: 40px; letter-spacing: -0.04em; }

.foot-from {
  padding: 28px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.foot-from .kicker { color: var(--orange); margin-bottom: 6px; }
.foot-from p { margin: 0; color: rgba(255,255,255,0.78); }
.foot-from-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.foot-from-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}
.foot-from-links a { color: #fff; text-decoration: none; }
.foot-grid.fat { padding-bottom: 28px; }

.mega-menu {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 21, 38, 0.16);
}
.trade {
  border-radius: 18px;
  padding: 16px;
}

.cta-rail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cta-rail .btn-line-light { min-height: 48px; }
.cta-demo-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--orange);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.journey-band .kicker { color: var(--orange); }
.journey-band .lead { color: rgba(255,255,255,0.78); }
.journey-split {
  display: grid;
  gap: 40px;
  align-items: center;
}
.journey-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.journey-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}
.journey-path li {
  position: relative;
  color: #fff;
}
.journey-path li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: calc(100% + 18px);
  height: 0;
  border-top: 2px dotted rgba(255,255,255,0.22);
}
.journey-path li:nth-child(4)::before,
.journey-path li:nth-child(8)::before { display: none; }
.journey-path span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28);
  background: #0b1628;
  font-size: 13px;
  font-weight: 800;
}
.journey-path li.is-on span {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
}
.journey-path b {
  display: block;
  margin: 10px 0 4px;
  font-size: 16px;
}
.journey-path small {
  display: block;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
  font-size: 13px;
}
.journey-path li { cursor: pointer; }
.journey-live {
  margin: 16px 0 18px;
  color: var(--orange);
  font-weight: 750;
}
.thread-list .thread-card.is-on {
  background: #fff7f1;
  border-radius: 16px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 520px) {
  .thread-list .thread-card.is-on { margin: 0; }
}
.thread-list .thread-card.is-on .thread-num { color: var(--orange); }

.compare-thesis {
  max-width: 62ch;
  margin: 0 0 36px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}
.way-arrow {
  display: none;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
}
.way-join {
  background: transparent !important;
  padding: 0 !important;
  min-height: 0 !important;
  color: var(--muted);
  font-weight: 700;
}
.way-new .way-join { color: rgba(255,255,255,0.55); }

.thread-band { background: #f6f3ee; }
.thread-band h2 {
  max-width: 16ch;
  font-size: clamp(36px, 5vw, 56px);
}
.thread-lead { max-width: 46ch; }
.thread-num {
  display: inline-flex;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.thread-ico {
  display: block;
  margin: 10px 0 8px;
  font-size: 22px;
}
.thread-card h3,
.family-card h3,
.proof-home-card h3,
.experience-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.03em;
}
.thread-card p,
.family-card p,
.experience-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.thread-grid,
.family-grid,
.proof-home-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}
.thread-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  max-width: 760px;
  gap: 0;
}
.thread-card {
  border-top: 1px solid rgba(12, 27, 46, 0.12);
  padding: 22px 4px 8px;
  min-height: 168px;
}
.thread-list .thread-card {
  display: grid;
  grid-template-columns: 48px 28px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(12, 27, 46, 0.1);
}
.family-card,
.proof-home-card {
  border-radius: 20px;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 188px;
}
.experience-split {
  display: grid;
  gap: 36px;
  align-items: center;
}
.experience-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 12ch;
}
.experience-stack { display: grid; gap: 16px; }
.experience-card {
  border-radius: 24px;
  padding: 28px 26px 24px;
}
.experience-customer {
  background: #f4f6fa;
  border: 1px solid var(--line);
}
.experience-owner {
  background: var(--navy);
  color: #fff;
}
.experience-owner .kicker { color: var(--orange); }
.experience-owner p { color: rgba(255,255,255,0.78); }

.action-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 18px 40px rgba(10, 17, 40, 0.08);
}
.action-preview-title,
.action-cmd {
  margin: 8px 0 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 750;
}
.action-cmd { font-size: 20px; }
.action-preview-table {
  margin: 0 0 18px;
}
.action-preview-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.action-preview-table dt { color: var(--muted); font-weight: 650; }
.action-preview-table dd { margin: 0; font-weight: 750; }
.action-preview-row {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.action-preview-note { margin: 12px 0 0; color: var(--muted); font-weight: 650; }
.desk-action-chrome {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.desk-action-chrome b { font-size: 14px; }
.desk-action-chrome small {
  color: var(--muted);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}
.family-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}
.family-chips a,
.plan-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.plan-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.plan-chips span {
  background: #f4f6fa;
  color: var(--navy);
}

.proof-home .kicker { color: var(--orange); }
.proof-home .lead { color: rgba(255,255,255,0.78); }
.proof-home-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: #fff; }
.proof-home-card p { color: rgba(255,255,255,0.78); }
.proof-home-stat { margin: 14px 0 12px !important; }
.proof-home-stat b {
  display: block;
  color: var(--orange);
  font-size: 32px;
  letter-spacing: -0.04em;
}
.proof-home-card a { color: #fff; font-weight: 750; }
.family-card a { color: var(--navy); font-weight: 750; }

.ava-demo { overflow: hidden; }
.ava-demo .kicker { color: var(--orange); }
.ava-demo .lead { color: rgba(255,255,255,0.78); max-width: 42ch; }
.ava-demo-help {
  margin: 12px 0 22px;
  color: rgba(255,255,255,0.58);
  font-size: 15px;
  max-width: 40ch;
}
.ava-demo-copy h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.038em;
  line-height: 1.08;
}
.ava-demo-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.ava-demo-stage {
  position: relative;
  min-height: 620px;
}
.ava-demo-glow {
  position: absolute;
  inset: 2% 0 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,26,0.28), transparent 68%);
  filter: blur(12px);
}
.ava-phone {
  position: absolute;
  width: min(300px, 64%);
  aspect-ratio: 9 / 18.4;
}
.ava-phone-bezel {
  height: 100%;
  border-radius: 28px;
  padding: 12px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.ava-phone-front .ava-phone-bezel { padding: 0 0 58px; }
.ava-phone-front .manage-notch { top: 12px; }
.ava-phone-back {
  left: -2%;
  top: 12%;
  width: min(230px, 50%);
  transform: rotate(-14deg);
  opacity: 0.78;
}
.ava-phone-front {
  right: 2%;
  top: 18px;
  transform: rotate(7deg);
  z-index: 2;
}
.ava-phone-screen {
  height: 100%;
  border-radius: 28px;
  background: #10233c;
  color: #fff;
  padding: 36px 14px 18px;
  display: none;
}
.ava-phone-front .ava-phone-screen {
  padding: 42px 14px 16px;
  border-radius: 28px 28px 0 0;
}
.ava-phone-front .ava-phone-screen.is-on,
.ava-phone-back .ava-phone-screen { display: block; }
.ava-phone-title {
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 800;
}
.ava-desk-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 2px 8px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  font-size: 13px;
}
.ava-desk-row b { grid-row: 1 / span 2; align-self: center; color: var(--orange); }
.ava-desk-row span { font-weight: 750; }
.ava-desk-row small { color: rgba(255,255,255,0.62); }
.ava-desk-row.is-next { background: rgba(255,106,26,0.18); border: 1px solid rgba(255,106,26,0.35); }
.ava-desk-row.is-draft b { color: #7dd3a3; }
.ava-card {
  margin-top: 14px;
  padding: 12px 12px 11px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}
.ava-card small {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ava-card b { display: block; margin: 4px 0 2px; font-size: 15px; }
.ava-card span { color: rgba(255,255,255,0.68); font-size: 12px; }
.ava-card.is-done { border-color: rgba(125,211,163,0.4); }
.ava-card.is-done small { color: #7dd3a3; }
.ava-card.is-draft { border-color: rgba(255,106,26,0.4); }
.ava-card.is-live { background: rgba(255,106,26,0.14); }
.ava-voice-screen { text-align: center; padding-top: 88px; }
.ava-voice-title {
  margin: 18px 8px 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.ava-voice-screen p { color: rgba(255,255,255,0.7); }
.ava-voice-wave {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  justify-content: center;
  height: 22px;
  margin-top: 22px;
}
.ava-voice-wave.is-loud { height: 36px; }
.ava-voice-wave i {
  width: 3px;
  background: var(--orange);
  border-radius: 99px;
  animation: ava-wave 0.8s ease-in-out infinite;
}
.ava-voice-wave i:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.ava-voice-wave i:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.ava-voice-wave i:nth-child(4) { animation-delay: 0.3s; height: 55%; }
.ava-voice-wave i:nth-child(5) { animation-delay: 0.15s; height: 80%; }
@keyframes ava-wave {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
.ava-phone-kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ava-bubble {
  margin: 12px 28px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #173154;
  font-size: 14px;
  line-height: 1.4;
}
.ava-bubble.is-reply {
  background: var(--orange);
  color: #111;
  margin-left: auto;
  margin-right: 0;
  max-width: 88%;
}
.ava-phone-screen[data-ava-screen="sms"] {
  background: #eef1f4;
  color: #10233c;
  padding: 38px 10px 16px;
}
.sms-thread {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
}
.sms-head {
  text-align: center;
  padding: 4px 8px 10px;
  border-bottom: 1px solid rgba(16, 35, 60, 0.08);
}
.sms-head small {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sms-head b {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}
.sms-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sms-bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px 16px 16px 6px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 35, 60, 0.06);
}
.sms-bubble p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.sms-bubble time {
  display: block;
  margin-top: 6px;
  color: rgba(16, 35, 60, 0.45);
  font-size: 10px;
  font-weight: 700;
}
.manage-feed .sms-thread {
  background: #eef1f4;
  border-radius: 16px;
  padding: 10px 10px 12px;
  color: #10233c;
}
.ava-phone-front:has([data-ava-screen="sms"].is-on) .ava-manage-voice,
.manage-phone:has([data-workflow-slide="sms"].is-on) .manage-voice {
  display: none;
}
.ava-manage-voice {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
}
.ava-card .manage-lines { margin-top: 8px; }
.ava-card .manage-success { display: block; margin-top: 8px; }
.ava-demo-controls,
.ava-ctrl-play {
  position: absolute;
  right: 8%;
  bottom: 4%;
  z-index: 4;
}
.ava-ctrl-voice {
  position: absolute;
  top: 0;
  right: 6%;
  z-index: 4;
}
.ava-demo-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 4;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.ava-demo-state {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}
.ava-demo-state.is-on { background: var(--orange); }
.ava-ctrl {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.ava-ctrl[aria-pressed="true"] { background: var(--orange); color: #111; }

.hero-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 16px 0 0;
}
.workflow-split {
  display: grid;
  gap: 36px;
  align-items: center;
}
.workflow-copy h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.038em;
  line-height: 1.08;
}
.workflow-stage { justify-self: center; }
.workflow-stage .phone-shell { margin: 0 auto; }
.workflow-slide { display: none; }
.workflow-slide.is-on { display: block; }
.workflow-slide .bubble { margin: 8px 0; }

.manage-phone { width: min(320px, 100%); }
.manage-phone .phone-screen {
  position: relative;
  background: #0d1c32;
  color: #fff;
  min-height: 680px;
  padding-top: 10px;
}
.manage-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 18px;
  border-radius: 12px;
  background: #111;
  transform: translateX(-50%);
}
.manage-phone .phone-status {
  color: rgba(255,255,255,0.78);
  padding: 28px 16px 2px;
}
.manage-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.manage-head img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,106,26,0.16);
  padding: 5px;
}
.manage-head h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.manage-head small {
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 700;
}
.manage-feed {
  padding: 12px 12px 8px;
}
.manage-phone .bubble.ava {
  background: #173154;
  margin-right: 28px;
}
.manage-phone .bubble.customer {
  background: var(--orange);
  color: #111;
  margin-left: auto;
  margin-right: 0;
}
.bubble-photo {
  margin: 8px 0 8px auto;
  max-width: 78%;
  padding: 6px;
  background: var(--orange);
  border-radius: 16px 16px 4px 16px;
}
.bubble-photo img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 10px;
}
.bubble-photo figcaption {
  margin: 6px 4px 2px;
  color: #111;
  font-size: 11px;
  font-weight: 750;
}
.manage-card {
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 16px;
}
.manage-phone .manage-card {
  background: #132844;
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.manage-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.manage-card-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.manage-demo {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0 6px;
  border-radius: 999px;
}
.manage-card-media {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 8px 0 4px;
}
.manage-card-media img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}
.manage-card-media b {
  display: block;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.manage-card-media span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}
.manage-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 4px;
}
.manage-price b {
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1;
}
.manage-phone .manage-price b { color: #fff; }
.manage-price small {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 700;
}
.manage-assume {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.4;
}
.manage-card.has-photo { padding-top: 10px; }
.manage-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,106,26,0.18);
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.manage-card .phone-action-detail,
.manage-card p { margin: 4px 0 10px; color: var(--muted); font-size: 13px; }
.manage-phone .manage-card .phone-action-title { color: #fff; }
.manage-phone .manage-card .phone-action-detail,
.manage-phone .manage-card p { color: rgba(255,255,255,0.68); }
.manage-lines {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.manage-lines li {
  position: relative;
  padding: 4px 0 4px 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}
.manage-phone .manage-lines li { color: rgba(255,255,255,0.82); }
.manage-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--orange);
}
.manage-extra:empty { display: none; }
.manage-extra {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 750;
}
.manage-card .ask-row { gap: 8px; }
.manage-phone .manage-card .btn-line {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.manage-success {
  display: none;
  margin: 10px 0 0;
  color: #7dd3a3;
  font-size: 13px;
  font-weight: 800;
}
.manage-card.is-edit { border-color: var(--orange); }
.manage-card.is-done {
  border-color: #1f8f4e;
  background: #f3faf6;
}
.manage-phone .manage-card.is-done {
  border-color: rgba(125,211,163,0.45);
  background: #143528;
}
.manage-card.is-done .phone-action-tag,
.manage-card.is-done .manage-pill { color: #1f8f4e; }
.manage-phone .manage-card.is-done .phone-action-tag,
.manage-phone .manage-card.is-done .manage-pill { color: #7dd3a3; }
.manage-card.is-done .ask-row { display: none; }
.manage-card.is-done .manage-success,
.manage-card.is-done [data-workflow-success],
.quote-result > .manage-success { display: block; }
.manage-voice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 12px 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #10233c;
  border: 1px solid rgba(255,255,255,0.1);
}
.manage-mic {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,106,26,0.16);
  position: relative;
}
.manage-mic::before {
  content: "";
  position: absolute;
  inset: 7px 10px 7px 10px;
  border-radius: 99px;
  background: #111;
}
.manage-voice b {
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.manage-voice .ava-voice-wave { margin: 0; height: 18px; }
.manage-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 750;
}
.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.workflow-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(12, 27, 46, 0.2);
  cursor: pointer;
}
.workflow-dot.is-on { background: var(--orange); }
.stats-stack {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
  text-align: left;
}
.stats-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.stats-card b {
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stats-card span { color: rgba(255,255,255,0.7); }
.cta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
}
.cta-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.integ-list { margin: 20px 0 28px; }
.integ-item {
  border-bottom: 1px solid var(--line);
}
.integ-item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}
.integ-item summary::-webkit-details-marker { display: none; }
.integ-item small { color: var(--muted); }
.integ-item p { margin: 0 0 14px; color: var(--muted); }
.lead-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: #0b1628;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
}
.lead-bar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.lead-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}
.lead-bar img { width: 18px; height: 18px; }
.lead-bar-field input {
  min-height: 46px;
  min-width: 220px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
}
.lead-bar .btn { min-height: 46px; }
body.has-lead-bar { padding-bottom: 72px; }
body.demo-modal-open .lead-bar { display: none; }

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.demo-modal[hidden] { display: none !important; }
.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 28, 0.72);
}
.demo-modal-card {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #0b1628;
  color: #fff;
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.demo-modal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}
.demo-modal-brand img { width: 22px; height: 22px; }
.demo-modal-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.6vw, 32px);
  letter-spacing: -0.035em;
}
.demo-modal-lead,
.demo-modal-card p { color: rgba(255,255,255,0.78); }
.demo-modal-lead { margin: 0 0 22px; max-width: 34ch; }
.demo-field { display: block; margin: 16px 0 0; }
.demo-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 750;
}
.demo-ico { color: var(--orange); }
.demo-modal-card input[type="tel"],
.demo-modal-card input[type="url"] {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #111d32;
  color: #fff;
  padding: 12px 18px;
}
.demo-modal-card input[type="tel"]:focus,
.demo-modal-card input[type="url"]:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}
.demo-modal-card .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.demo-modal-submit {
  width: 100%;
  margin-top: 22px;
  min-height: 52px;
  border-radius: 999px;
}
.demo-modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.demo-modal-error { color: #ffb4a2; }
.demo-modal-head {
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.demo-modal-sub {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.68);
}
.demo-prep-hero { text-align: center; }
.demo-prep-orb,
.demo-success-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 8px auto 18px;
}
.demo-prep-orb {
  position: relative;
  background: var(--orange);
  color: #111;
  font-size: 26px;
}
.demo-prep-orb::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(255,106,26,0.28);
  border-top-color: var(--orange);
  animation: demo-spin 0.8s linear infinite;
}
.demo-success-mark {
  background: #1f8f4e;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}
.demo-prep-hero h2 { margin: 0 0 8px; }
.demo-timer {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.7) !important;
}
.demo-prep-list {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  max-width: 280px;
}
.demo-prep-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: rgba(255,255,255,0.7);
}
.demo-prep-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28);
}
.demo-prep-list li.is-on { color: #fff; }
.demo-prep-list li.is-done {
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.demo-prep-list li.is-done::before {
  content: "✓";
  display: grid;
  place-items: center;
  background: #1f8f4e;
  border-color: #1f8f4e;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.demo-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.demo-success-actions .btn {
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
}
body.demo-modal-open { overflow: hidden; }
@keyframes demo-spin { to { transform: rotate(360deg); } }

@media (min-width: 760px) {
  .section { padding: 96px 0; }
  .way-grid { grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
  .way-arrow { display: grid; place-items: center; }
  .journey-split,
  .experience-split { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .thread-grid,
  .family-grid,
  .proof-home-grid { grid-template-columns: 1fr 1fr; }
  .thread-grid.thread-list { grid-template-columns: 1fr; }
  .stats-stack { grid-template-columns: 1fr 1fr; }
  .workflow-split { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .ava-demo-grid { grid-template-columns: 0.78fr 1.22fr; gap: 24px; }
}
@media (min-width: 980px) {
  .thread-grid { grid-template-columns: 1fr 1fr 1fr; }
  .thread-grid.thread-list { grid-template-columns: 1fr; }
  .ava-demo-stage { margin-right: -72px; }
}
@media (max-width: 759px) {
  .section { padding: 64px 0; }
  .cta-rail-row,
  .foot-from-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-rail .btn { width: 100%; }
  .cta-rail-actions { width: 100%; }
  .cta-band { padding: 64px 0 48px; }
  .page-hero { padding: 48px 0 40px; }
  .ava-demo-stage {
    min-height: 540px;
    padding: 44px 0 52px;
  }
  .ava-phone-back {
    left: 0;
    top: 16%;
    width: 48%;
    opacity: 0.42;
    transform: rotate(-10deg);
  }
  .ava-phone-front {
    width: min(260px, 70%);
    right: 4%;
    top: 28px;
    transform: rotate(4deg);
  }
  .ava-ctrl-voice { top: 0; right: 6%; }
  .ava-ctrl-play { bottom: 6px; right: 10%; }
  .ava-demo-dots { bottom: 50px; }
  .lead-bar-row { flex-direction: column; align-items: stretch; }
  .lead-bar-field input,
  .lead-bar .btn { width: 100%; min-width: 0; }
  .journey-path { grid-template-columns: 1fr 1fr; }
  .journey-path li:nth-child(2)::before,
  .journey-path li:nth-child(4)::before,
  .journey-path li:nth-child(6)::before { display: none; }
  .journey-path li:nth-child(4)::before { display: none; }
}

/* Pricing — navy/orange wash (not a light card page) */
body.plans-ink {
  background: var(--navy);
  color: #fff;
}
body.plans-ink main {
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(255, 106, 26, 0.22), transparent 58%),
    radial-gradient(720px 360px at 8% 18%, rgba(20, 48, 86, 0.9), transparent 62%),
    var(--navy);
}
body.plans-ink .page-hero.is-plans {
  background: transparent;
  padding-bottom: 36px;
}
body.plans-ink .section,
body.plans-ink #plans,
body.plans-ink #compare,
body.plans-ink #faq {
  background: transparent;
  color: #fff;
}
body.plans-ink .section.paper,
body.plans-ink #compare.section.paper {
  background: rgba(11, 31, 58, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.plans-ink .lead,
body.plans-ink .hero-sub,
body.plans-ink .published-checkout {
  color: rgba(255, 255, 255, 0.78);
}
body.plans-ink .price-grid {
  gap: 16px;
}
body.plans-ink .price-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
body.plans-ink .price-card p,
body.plans-ink .price-card .overage,
body.plans-ink .price-card .check li {
  color: rgba(255, 255, 255, 0.82);
}
body.plans-ink .price-card .price-allowance {
  color: var(--orange);
}
body.plans-ink .price-card .callout {
  background: rgba(255, 106, 26, 0.2);
  color: #fff;
}
body.plans-ink .price-card.featured,
body.plans-ink .price-card.featured.picked {
  background: linear-gradient(180deg, #1b3c68 0%, #0b1f3a 100%);
  border: 2px solid var(--orange);
  outline: 0;
  box-shadow: 0 24px 56px rgba(255, 106, 26, 0.18);
}
body.plans-ink .price-card .btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
body.plans-ink .price-card .btn-navy {
  background: #fff;
  color: var(--navy);
}
body.plans-ink .price-contact a {
  color: var(--orange);
}
body.plans-ink .plan-reminder {
  position: static;
  background: var(--navy-3);
  border: 1px solid rgba(255, 106, 26, 0.45);
  box-shadow: none;
  margin-top: 28px;
}
body.plans-ink .compare th,
body.plans-ink .compare td {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
body.plans-ink .compare thead th {
  background: var(--navy-3);
}
body.plans-ink .compare .hi-col {
  background: rgba(255, 106, 26, 0.16);
  color: #fff;
}
body.plans-ink .compare thead .hi-col {
  background: var(--orange);
  color: #111;
}
body.plans-ink .faq-item {
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.12);
}
body.plans-ink .faq-item summary {
  color: #fff;
}
body.plans-ink .faq-item p {
  color: rgba(255, 255, 255, 0.74);
}
body.plans-ink .published-checkout-band {
  padding: 20px 0 8px;
}
body.plans-ink .cta-band {
  background: #07101f;
}


