:root {
  color-scheme: light;
  --ink: #121315;
  --muted: #5d6673;
  --line: #dfe5ea;
  --surface: #ffffff;
  --soft: #f4f7f8;
  --green: #126c49;
  --green-2: #0f9a67;
  --blue: #2154a3;
  --warning: #9a3b18;
  --shadow: 0 18px 48px rgba(18, 19, 21, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fa;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 11, 15, 0.72), rgba(7, 11, 15, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 18px;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f4f7f0;
  color: var(--green);
  font-weight: 850;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101820;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 15, 0.86), rgba(6, 11, 15, 0.34) 55%, rgba(6, 11, 15, 0.18)),
    linear-gradient(0deg, rgba(7, 11, 15, 0.76), rgba(7, 11, 15, 0.1) 45%);
}

.hero-copy {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 88px) 74px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 790;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9be1bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.18;
}

.hero-actions,
.approval-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.command-row button,
.approval-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 720;
}

.button.primary,
.command-row button,
#approve-btn {
  background: var(--green);
  color: #fff;
}

.button.secondary,
#reset-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

#reset-btn {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.band {
  padding: clamp(62px, 8vw, 102px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(960px, 100%);
  margin: 0 auto 30px;
}

.section-head h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.spot-band {
  background: #fbfcfc;
}

.spot-grid,
.launch-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.spot-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: stretch;
}

.spot-stage,
.spot-script,
.listing-preview,
.phone-device,
.launch-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.spot-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(480px 360px at 78% 30%, rgba(18, 108, 73, 0.28), transparent 70%),
    linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.04) 32%, rgba(255, 255, 255, 0.04) 40%, transparent 42%),
    linear-gradient(180deg, #17222c 0%, #101820 60%, #0c141b 100%);
}

.spot-progress {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.spot-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #9be1bd;
  transition: width 0.35s ease;
}

.spot-frame {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  max-width: 620px;
  padding: 44px 34px 52px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.spot-frame.active {
  opacity: 1;
  transform: translateY(0);
}

.spot-frame h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

.spot-frame p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.35;
}

.spot-script {
  padding: 28px;
}

.spot-script h3,
.launch-grid h3,
.phone-contact h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.spot-script ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.demo-band {
  background: #eef3f1;
}

.listing-preview,
.phone-device {
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafb;
  color: var(--muted);
  font-size: 13px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd4dc;
}

.browser-bar strong {
  margin-left: 10px;
  font-weight: 690;
}

.listing-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 120px 120px;
  gap: 4px;
  padding: 16px;
  background: #fff;
}

.photo {
  display: grid;
  place-items: center;
  min-width: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 760;
  background:
    linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.09) 36%, rgba(255, 255, 255, 0.09) 46%, transparent 48%),
    linear-gradient(135deg, #14764f, #21549f);
}

.photo.large {
  grid-row: span 2;
  font-size: 34px;
}

.listing-body {
  padding: 4px 24px 28px;
}

.listing-state {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.listing-state span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #718096;
}

.listing-state[data-state="preview"] {
  color: #9a4e1f;
}

.listing-state[data-state="preview"] span {
  background: #d97732;
}

.listing-state[data-state="approved"] {
  color: var(--green);
}

.listing-state[data-state="approved"] span {
  background: #27b273;
}

.listing-preview.is-preview {
  outline: 3px solid rgba(217, 119, 50, 0.24);
  outline-offset: -3px;
}

.listing-preview.is-approved {
  outline: 3px solid rgba(39, 178, 115, 0.24);
  outline-offset: -3px;
}

.preview-alert {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #e8f4ee;
  color: var(--green);
  font-weight: 760;
}

.preview-alert.urgent {
  background: #fff0e8;
  color: var(--warning);
}

.listing-body h3 {
  margin-bottom: 4px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.muted {
  color: var(--muted);
}

.profile-lines {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.profile-lines div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 720;
}

dd {
  margin: 0;
  line-height: 1.45;
}

.phone-demo {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.phone-device {
  width: min(390px, 100%);
  padding: 12px 12px 16px;
  border: 1px solid #2f353c;
  border-radius: 42px;
  background: #15191f;
  box-shadow: 0 24px 60px rgba(18, 19, 21, 0.24);
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 2px 18px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.phone-sensors {
  letter-spacing: 0.14em;
}

.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #f4f6f8;
}

.phone-contact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #dce1e6;
  background: rgba(255, 255, 255, 0.96);
}

.contact-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 820;
}

.phone-contact h3 {
  margin-bottom: 2px;
  font-size: 17px;
}

.phone-contact p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27b273;
}

.simulation-pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8f4ee;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-preset {
  margin: 0;
  padding: 12px 14px 0;
}

.phone-preset select {
  min-height: 36px;
  font-size: 13px;
}

.message-log {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 264px;
  max-height: 304px;
  overflow-y: auto;
  padding: 14px;
  background: #f4f6f8;
  overscroll-behavior: contain;
}

.message {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 86%;
  padding: 10px 12px 7px;
  border-radius: 18px;
  line-height: 1.38;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.message time {
  justify-self: end;
  font-size: 10px;
  opacity: 0.64;
}

.message.assistant {
  border: 1px solid #dce1e6;
  border-bottom-left-radius: 6px;
  background: #fff;
}

.message.owner {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: var(--blue);
  color: #fff;
}

.typing-indicator {
  width: fit-content;
  margin: 0 14px 8px;
  padding: 10px 13px;
  border: 1px solid #dce1e6;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
}

.typing-indicator i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-radius: 50%;
  background: #7c8792;
  animation: typing-pulse 1s infinite ease-in-out;
}

.typing-indicator i:nth-of-type(2) {
  animation-delay: 0.15s;
}

.typing-indicator i:nth-of-type(3) {
  margin-right: 0;
  animation-delay: 0.3s;
}

@keyframes typing-pulse {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.quick-actions {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0 14px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #bfc9d2;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
}

.quick-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.phone-compose {
  padding: 0 14px;
}

.input-wrap {
  display: flex;
  gap: 8px;
}

.input-wrap input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #bfc9d2;
  border-radius: 999px;
  background: #fff;
  font: inherit;
}

.input-wrap input:disabled {
  background: #e7ebee;
}

.phone-compose button {
  width: 58px;
  flex: 0 0 58px;
  padding: 0;
  border-radius: 999px;
}

.approval-box {
  margin: 0 14px 10px;
  padding: 12px;
  border: 1px solid #b9ddcc;
  border-radius: 14px;
  background: #eef7f2;
}

.approval-box p {
  margin-bottom: 10px;
  color: #173c2b;
  line-height: 1.38;
  font-size: 13px;
}

.approval-box div {
  gap: 7px;
}

.approval-box button {
  min-height: 36px;
  padding: 0 11px;
  font-size: 12px;
}

#reject-btn {
  border-color: #e7b7a0;
  background: #fff;
  color: #8a3e1f;
}

.demo-privacy-note {
  margin: 8px 14px 13px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.phone-home-indicator {
  width: 112px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #6f7780;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.launch-band {
  background: #ffffff;
}

.launch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-grid > div {
  padding: 26px;
}

.launch-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  display: grid;
  gap: 10px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #dbe5df;
  background: #121315;
  font-size: 13px;
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #9be1bd;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  color: rgba(219, 229, 223, 0.85);
}

@media (max-width: 900px) {
  .site-header {
    height: 62px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    margin-bottom: 52px;
  }

  .spot-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .phone-demo {
    order: -1;
  }

  .spot-stage {
    min-height: 430px;
  }

  .listing-hero {
    grid-template-rows: 100px 100px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 16px;
  }

  .mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-actions,
  .approval-box div {
    flex-direction: column;
  }

  .button,
  .approval-box button {
    width: 100%;
  }

  .spot-frame {
    padding: 34px 22px 52px;
  }

  .profile-lines div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .phone-device {
    width: min(390px, 100%);
    padding: 9px 9px 13px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .phone-contact {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .simulation-pill {
    grid-column: 2;
    justify-self: start;
  }

  .message-log {
    min-height: 240px;
    max-height: 280px;
  }
}

/* ---------------------------------------------------------------- */
/* Full-site expansion: nav CTA, how / who / pricing / faq / signup */
/* bands, legal subpages, focus states.                             */
/* ---------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #27b273;
  outline-offset: 2px;
}

.nav {
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-weight: 760;
}

.nav-cta:hover {
  background: var(--green);
}

/* How it works */

.how-band {
  background: #ffffff;
}

.steps {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  counter-reset: step;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.step-icon {
  width: 28px;
  height: 28px;
  color: var(--green-2);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

/* Who it's for */

.who-band {
  background: var(--soft);
}

.who-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.who-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.who-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.15;
}

.who-card .scenario {
  margin-bottom: 8px;
  color: var(--warning);
  font-weight: 760;
}

.who-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

/* Pricing */

.pricing-band {
  background: #fbfcfc;
}

.pricing-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.pricing-grid {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.tier.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  margin: 0;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 790;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tier h3 {
  margin-bottom: 4px;
  font-size: 26px;
  line-height: 1.1;
}

.tier-tag {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.tier-list {
  flex: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.tier-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.4;
  font-size: 15px;
}

.tier-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-2);
  font-weight: 800;
}

.tier-cta {
  width: 100%;
}

.tier .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

/* FAQ */

.faq-band {
  background: #ffffff;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 740;
  font-size: 17px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  color: var(--green-2);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list details a {
  color: var(--green);
  font-weight: 720;
  text-decoration: underline;
}

/* Signup band */

.signup-band {
  background: #101820;
  color: #fff;
}

.signup-band .section-head h2 {
  color: #fff;
}

.signup-band .eyebrow {
  color: #9be1bd;
}

.signup-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.signup-pitch p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.5;
}

.signup-points {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.signup-points li {
  position: relative;
  padding-left: 26px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.signup-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #9be1bd;
  font-weight: 800;
}

.signup-fineprint {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.signup-fineprint a {
  color: #9be1bd;
  text-decoration: underline;
}

.signup-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.onboarding-steps {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
  padding-left: 1.3rem;
}

.onboarding-steps li {
  padding-left: 0.35rem;
}

.onboarding-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.12rem;
}

#signup-form {
  display: grid;
  gap: 16px;
}

/* onboarding.html marks its fields up as bare <label> inside .field-row rather
   than .field wrappers, so none of the rules below matched and the setup form
   rendered with browser-default controls. Extend the same design to that
   structure instead of duplicating it; checkbox rows and the honeypot opt out. */
.field,
#onboarding-form label:not(.consent-row):not(.hp-field) {
  display: grid;
  gap: 7px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label,
#onboarding-form label:not(.consent-row):not(.hp-field) {
  font-size: 13px;
  font-weight: 740;
  color: rgba(255, 255, 255, 0.86);
}

.req {
  color: #9be1bd;
}

.opt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* Purpose-of-collection hint under a form control. Sits inside the <label>, so
   it must undo the label's own weight and size rather than inherit them. */
.field-hint {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea,
#onboarding-form label input:not([type=checkbox]),
#onboarding-form label select {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  /* Labels are 13px, and `font: inherit` would carry that into the control.
     iOS Safari zooms the whole page when a focused control is under 16px, so
     every tap would jerk the viewport. Pin the controls to 16px. */
  font-size: 16px;
}

.field select,
#onboarding-form label select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M4%206l4%204%204-4%22%20fill%3D%22none%22%20stroke%3D%22%239be1bd%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.field select option,
#onboarding-form label select option {
  color: var(--ink);
  background: #fff;
}

.field textarea {
  resize: vertical;
  line-height: 1.45;
}

.field input::placeholder,
.field textarea::placeholder,
#onboarding-form label input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.consent-field input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 2px;
  accent-color: #27b273;
}

.consent-field label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-submit {
  width: 100%;
  min-height: 50px;
  font-size: 17px;
}

.signup-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-fineprint {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
}

.signup-panel h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
  color: #fff;
}

.signup-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.panel-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: #9be1bd;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.copy-status {
  min-height: 1.2em;
  margin: 12px 0 0;
  color: #9be1bd;
  font-size: 14px;
}

/* Legal subpages (privacy / terms) */

.subpage .site-header {
  position: static;
  background: #101820;
}

.legal-band {
  background: #ffffff;
}

.legal-copy {
  width: min(760px, 100%);
  margin: 0 auto;
}

.legal-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
}

.legal-updated {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.legal-copy h2 {
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-copy p,
.legal-copy li {
  color: #333a43;
  line-height: 1.6;
}

.legal-copy ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.legal-copy a {
  color: var(--green);
  font-weight: 720;
  text-decoration: underline;
}

.legal-note {
  margin-bottom: 26px;
  padding: 14px 16px;
  border: 1px solid #b9ddcc;
  border-radius: 8px;
  background: #eef7f2;
  color: #173c2b;
  font-weight: 640;
}

/* Responsive additions */

@media (max-width: 1080px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .who-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  .tier.featured {
    order: -1;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .fallback-actions {
    flex-direction: column;
  }

  .fallback-actions .button {
    width: 100%;
  }

  .signup-card {
    padding: 18px;
  }

  .footer-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------- */
/* Industry pages, stories band, demo presets, accessibility pass.  */
/* ---------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 60;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  background: var(--green);
  color: #fff;
  font-weight: 760;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
}

.industry-links {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 720;
  font-size: 14px;
}

.industry-links a:hover {
  border-color: var(--green-2);
  color: var(--green);
}

/* Stories band */

.stories-band {
  background: var(--soft);
}

.stories-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.story-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.story-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.case-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border: 1px solid #eec7b0;
  border-radius: 999px;
  background: #fff0e8;
  color: var(--warning);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.35;
}

/* Demo preset row */

.preset-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.preset-row label {
  color: var(--muted);
  font-weight: 720;
  font-size: 13px;
}

.preset-row select {
  min-height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M4%206l4%204%204-4%22%20fill%3D%22none%22%20stroke%3D%22%23126c49%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  color: var(--ink);
  appearance: none;
  font: inherit;
}

/* Spot storyboard controls */

.spot-nav {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 40px;
  display: flex;
  gap: 8px;
}

.spot-nav button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(7, 11, 15, 0.55);
  color: #fff;
  cursor: pointer;
  font-weight: 760;
  font-size: 13px;
}

.spot-nav button:hover {
  background: rgba(7, 11, 15, 0.82);
}

/* Industry pages */

.industry-hero {
  color: #fff;
  background:
    radial-gradient(900px 380px at 88% 0%, rgba(15, 154, 103, 0.38), rgba(15, 154, 103, 0)),
    #101820;
}

.industry-hero .section-head {
  margin-bottom: 0;
}

.industry-hero .eyebrow {
  color: #9be1bd;
}

.industry-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 0.95;
}

.industry-hero .lede {
  max-width: 700px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.3;
}

.sms-story {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.listing-snap {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #b9ddcc;
  border-radius: 8px;
  background: #eef7f2;
}

.listing-snap strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
}

.listing-snap span {
  display: block;
  color: #173c2b;
  font-size: 14px;
  line-height: 1.45;
}

.update-checklist {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.update-checklist li {
  position: relative;
  padding-left: 26px;
  line-height: 1.45;
}

.update-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-2);
  font-weight: 800;
}

.case-study {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 19, 21, 0.04);
}

.case-study h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.case-study p {
  color: #333a43;
  line-height: 1.55;
}

.case-study p:last-child {
  margin-bottom: 0;
}

.cta-band {
  color: #fff;
  background: #101820;
}

.cta-band .section-head {
  margin-bottom: 0;
}

.cta-band .section-head h2 {
  color: #fff;
}

.cta-band .eyebrow {
  color: #9be1bd;
}

.cta-pitch {
  max-width: 640px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.5;
}

.footer-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-industries a {
  color: #9be1bd;
}

.footer-industries a:hover {
  text-decoration: underline;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .spot-frame,
  .spot-progress span,
  .typing-indicator i,
  .coming-down,
  .trio-layer {
    transition: none;
    animation: none;
  }

  /* Static teaser under reduced motion: show the resolved story frame. */
  .trio-card-before,
  .trio-phase-a,
  .trio-phase-b {
    opacity: 0;
  }

  .trio-card-after,
  .trio-phase-c {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------- */
/* Demo page: three-pane stage (Google card | phone | Apple card),  */
/* Apple place-card mock, homepage demo teaser.                     */
/* All colors reuse the custom properties at the top of this file.  */
/* ---------------------------------------------------------------- */

.demo-page .demo-band {
  padding-top: clamp(34px, 6vw, 64px);
}

/* The hero-styled secondary button is white-on-transparent; the demo band
   is light, so restyle it the same way the pricing tiers do. */
.demo-band .button.secondary {
  color: var(--ink);
  border-color: #b9c4bd;
  background: var(--surface);
}

.demo-stage {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.demo-lede {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.5;
}

.demo-exit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1280px, 100%);
  margin: 28px auto 0;
}

.pane-title {
  margin: 0 0 10px;
  color: #40525f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.pane-title.in-card {
  margin: 0;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--line);
  background: #f8fafb;
}

.card-footnote {
  margin: 14px 16px 16px;
  color: var(--muted);
  text-align: center;
  font-size: 11.5px;
  line-height: 1.4;
}

/* Two columns from 901px: phone spans the top, cards sit beneath. */
@media (min-width: 901px) {
  .demo-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .demo-stage .phone-demo {
    grid-column: 1 / -1;
  }
}

/* Full stage from 1260px: Google | phone (center) | Apple. */
@media (min-width: 1260px) {
  .demo-stage {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px) minmax(0, 1fr);
  }

  .demo-stage .phone-demo {
    grid-column: auto;
  }

  .demo-stage .google-card {
    order: -1;
  }
}

/* Apple place-card mock: generic CSS-drawn map chrome, no logos or
   platform assets — labeled simulation via .card-footnote. */

.apple-card {
  border-radius: 16px;
}

.map-bar {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f2f5f7;
}

.map-search {
  display: block;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.map-canvas {
  position: relative;
  height: 128px;
  background:
    linear-gradient(90deg, transparent 47%, #d5dfe3 47%, #d5dfe3 53%, transparent 53%),
    linear-gradient(0deg, transparent 60%, #d5dfe3 60%, #d5dfe3 65%, transparent 65%),
    linear-gradient(115deg, #e2ebee, #edf3f1 55%, #e5edf0);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 15px;
  height: 15px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 6px rgba(18, 19, 21, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -4px;
  border: 4px solid transparent;
  border-top: 6px solid var(--blue);
}

.place-sheet {
  position: relative;
  margin-top: -14px;
  padding: 12px 22px 4px;
  border-radius: 16px 16px 0 0;
  background: var(--surface);
}

.sheet-grabber {
  display: block;
  width: 36px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--line);
}

.place-sheet h3 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
}

.apple-status {
  margin: 10px 0 12px;
  font-weight: 760;
}

.apple-status[data-tone="open"] {
  color: var(--green);
}

.apple-status[data-tone="special"] {
  color: #9a4e1f;
}

.apple-status[data-tone="closed"] {
  color: var(--warning);
}

.apple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 8px;
}

.apple-actions span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafb;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 720;
}

.apple-lines div {
  grid-template-columns: 116px minmax(0, 1fr);
}

@media (max-width: 560px) {
  .apple-lines div {
    grid-template-columns: 1fr;
  }
}

/* Homepage demo teaser */

.demo-teaser-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.demo-teaser-copy p:first-child {
  max-width: 560px;
  line-height: 1.55;
}

.demo-teaser-copy .demo-privacy-note {
  margin: 12px 0 0;
  text-align: left;
}

.teaser-trio {
  position: relative;
  min-height: 250px;
}

/* Looping mini-story inside the teaser: normal listing -> the texting ->
   the approved result on both listing cards. 9s cycle, three phases. */

.trio-card {
  position: absolute;
  top: 12%;
  width: 42%;
  height: 72%;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trio-google {
  left: 0;
}

.trio-apple {
  right: 0;
}

/* The phone overlaps the Apple card's left edge — keep its text clear. */
.trio-card.trio-apple .trio-label {
  left: 27%;
}

.trio-card.trio-apple .trio-layer {
  inset: 30px 12px 12px 27%;
}

.trio-label {
  position: absolute;
  top: 10px;
  left: 14px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trio-card .trio-layer {
  position: absolute;
  inset: 30px 14px 12px;
  display: grid;
  gap: 5px;
  align-content: start;
}

.trio-card strong {
  font-size: 13px;
  line-height: 1.2;
}

.trio-line {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.trio-line.changed {
  color: var(--green);
  font-weight: 760;
}

.trio-line.closed {
  color: var(--warning);
  font-weight: 760;
}

.trio-sub {
  color: var(--muted);
  font-size: 10px;
}

.trio-phone {
  position: absolute;
  left: 37%;
  top: 0;
  z-index: 1;
  width: 26%;
  height: 100%;
  border: 1px solid #2f353c;
  border-radius: 26px;
  background: #15191f;
  box-shadow: var(--shadow);
}

.trio-screen {
  position: absolute;
  inset: 9px 7px;
  overflow: hidden;
  border-radius: 19px;
  background: #f4f6f8;
}

.trio-phone .trio-layer {
  position: absolute;
  inset: 12px 8px;
  display: grid;
  gap: 6px;
  align-content: end;
}

.trio-bubble {
  max-width: 94%;
  padding: 6px 8px;
  border-radius: 11px;
  font-size: 9.5px;
  line-height: 1.3;
}

.trio-bubble.in {
  justify-self: start;
  border: 1px solid #dce1e6;
  border-bottom-left-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.trio-bubble.out {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: var(--blue);
  color: #fff;
}

.trio-bubble.ok {
  border-color: #b9ddcc;
  background: #eef7f2;
  color: #173c2b;
  font-weight: 720;
}

/* Phase visibility: cards show BEFORE through phases A+B, AFTER in C;
   the phone steps A -> B -> C. */

.trio-layer {
  opacity: 0;
}

.trio-card-before,
.trio-phase-a {
  opacity: 1;
}

@keyframes trio-card-before-cycle {
  0%, 60% { opacity: 1; }
  66%, 93% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes trio-card-after-cycle {
  0%, 60% { opacity: 0; }
  66%, 93% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes trio-phase-a-cycle {
  0%, 27% { opacity: 1; }
  33%, 93% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes trio-phase-b-cycle {
  0%, 27% { opacity: 0; }
  33%, 60% { opacity: 1; }
  66%, 100% { opacity: 0; }
}

@keyframes trio-phase-c-cycle {
  0%, 60% { opacity: 0; }
  66%, 93% { opacity: 1; }
  100% { opacity: 0; }
}

.trio-card-before {
  animation: trio-card-before-cycle 9s ease-in-out infinite;
}

.trio-card-after {
  animation: trio-card-after-cycle 9s ease-in-out infinite;
}

.trio-phase-a {
  animation: trio-phase-a-cycle 9s ease-in-out infinite;
}

.trio-phase-b {
  animation: trio-phase-b-cycle 9s ease-in-out infinite;
}

.trio-phase-c {
  animation: trio-phase-c-cycle 9s ease-in-out infinite;
}

@media (max-width: 900px) {
  .demo-teaser-grid {
    grid-template-columns: 1fr;
  }

  .teaser-trio {
    min-height: 170px;
    max-width: 420px;
  }
}

/* ---------------------------------------------------------------- */
/* Spot storyboard: four photographic beats. Each frame crops the   */
/* storefront photo (background-size zoom + position) and layers a  */
/* rendered prop: printed door notice, outgoing text, listing card, */
/* and the notice coming down. Text stays bottom-left as before.    */
/* ---------------------------------------------------------------- */

.spot-frame {
  max-width: none;
  background-repeat: no-repeat;
}

.spot-frame h3 {
  max-width: 600px;
}

.frame-door {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 15, 0.28) 0%, rgba(7, 11, 15, 0.4) 55%, rgba(7, 11, 15, 0.9) 100%),
    url("./assets/emergency-owner-demo.jpg");
  background-size: auto, 480% auto;
  background-position: center, 62% 35%;
}

.frame-text {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 15, 0.22) 0%, rgba(7, 11, 15, 0.38) 55%, rgba(7, 11, 15, 0.9) 100%),
    url("./assets/emergency-owner-demo.jpg");
  background-size: auto, 190% auto;
  background-position: center, 100% 42%;
}

.frame-update {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 15, 0.5) 0%, rgba(7, 11, 15, 0.62) 55%, rgba(7, 11, 15, 0.93) 100%),
    url("./assets/emergency-owner-demo.jpg");
  background-size: auto, 320% auto;
  background-position: center, 63% 82%;
}

.frame-takedown {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 15, 0.3) 0%, rgba(7, 11, 15, 0.42) 55%, rgba(7, 11, 15, 0.9) 100%),
    url("./assets/emergency-owner-demo.jpg");
  background-size: auto, 480% auto;
  background-position: center, 60% 42%;
}

.frame-door h3,
.frame-takedown h3 {
  max-width: 430px;
}

.frame-door .hand-sign {
  right: clamp(16px, 4vw, 60px);
  width: min(300px, 42%);
}

.frame-takedown .hand-sign {
  top: 10px;
  right: clamp(14px, 4vw, 60px);
  width: min(290px, 40%);
}

.frame-prop {
  position: absolute;
  z-index: 1;
}

/* Hand-written door note: sharpie on paper. */

.hand-sign {
  right: clamp(20px, 6vw, 96px);
  top: 34px;
  width: min(320px, 44%);
  padding: 22px 18px 24px;
  transform: rotate(-1.8deg);
  text-align: center;
  color: #1c1d20;
  background: linear-gradient(180deg, #fefefe 0%, #f3f2ec 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  font-family: "Marker Felt", "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
}

.hand-head {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
  line-height: 1.08;
}

/* Handwriting sells through irregularity: every line gets its own tilt,
   size, and drift; nothing centers perfectly. */
.hw {
  display: block;
  font-style: normal;
}

.hw1 {
  transform: rotate(-2.4deg) translateX(-5px);
  font-size: clamp(23px, 2vw, 27px);
  letter-spacing: 0.03em;
}

.hw2 {
  margin-top: 1px;
  transform: rotate(1.6deg) translateX(4px);
  font-size: clamp(25px, 2.2vw, 30px);
}

.hand-underline {
  display: block;
  width: 78%;
  height: 10px;
  margin: 2px auto 10px;
  transform: rotate(-1.2deg);
}

.hand-body {
  display: block;
  margin-top: 5px;
  font-size: 15.5px;
  line-height: 1.3;
}

.hb1 {
  transform: rotate(-1.3deg) translateX(-6px);
}

.hb2 {
  margin-top: 2px;
  transform: rotate(0.9deg) translateX(5px);
  font-size: 16.5px;
}

.hb3 {
  margin-top: 12px;
  transform: rotate(-1.8deg) translateX(-2px);
  font-size: 14.5px;
}

.hand-sign .tape {
  position: absolute;
  top: -10px;
  width: 54px;
  height: 18px;
  background: rgba(235, 228, 190, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hand-sign .tape-left {
  left: 8%;
  transform: rotate(-8deg);
}

.hand-sign .tape-right {
  right: 8%;
  transform: rotate(6deg);
}

/* Beat 4: the notice coming off the door (one tape already released). */

.coming-down {
  transform: rotate(-13deg) translate(26px, 30px);
  box-shadow: 0 30px 46px rgba(0, 0, 0, 0.55);
}

@keyframes sign-comes-down {
  from {
    transform: rotate(-1.8deg) translate(0, 0);
  }
  to {
    transform: rotate(-13deg) translate(26px, 30px);
  }
}

.spot-frame.active .coming-down {
  animation: sign-comes-down 0.9s cubic-bezier(0.45, 0.05, 0.6, 1) 0.35s backwards;
}

.frame-takedown .tape-ghost {
  position: absolute;
  top: 26px;
  right: clamp(66px, 12vw, 176px);
  width: 54px;
  height: 18px;
  background: rgba(235, 228, 190, 0.55);
  transform: rotate(-9deg);
  z-index: 0;
}

/* Beat 2: the outgoing text to the assistant. */

.sms-pop {
  display: grid;
  gap: 6px;
  justify-items: end;
  right: clamp(16px, 5vw, 72px);
  top: 46px;
  width: min(360px, 56%);
}

.sms-bubble {
  padding: 12px 16px;
  border-radius: 18px 18px 6px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.sms-status {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
}

/* Beat 3: the listing card, updated. */

.listing-pop {
  display: grid;
  gap: 4px;
  right: clamp(18px, 6vw, 96px);
  top: 40px;
  width: min(330px, 50%);
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(252, 253, 253, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.listing-pop-name {
  font-size: 16px;
  font-weight: 800;
}

.listing-pop-meta {
  color: var(--muted);
  font-size: 12px;
}

.listing-pop-old {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
  text-decoration: line-through;
  text-decoration-color: #b8402a;
}

.listing-pop-new {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
}

.listing-pop-new.closed {
  color: var(--warning);
}

.listing-pop-new.closed .pop-dot {
  background: #d97732;
}

.pop-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27b273;
}

.listing-pop-stamp {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hand-sign,
  .listing-pop {
    width: min(300px, 62%);
  }

  .sms-pop {
    width: min(330px, 72%);
  }
}

@media (max-width: 560px) {
  .hand-sign,
  .listing-pop {
    top: 20px;
    right: 12px;
    width: 76%;
  }

  .sms-pop {
    top: 24px;
    right: 12px;
    width: 84%;
  }

  .sign-body {
    font-size: 11.5px;
  }

  .frame-text {
    background-size: auto, 240% auto;
    background-position: center, 96% 32%;
  }
}


/* Consent rows: checkbox beside its text, with a touch-sized hit area. */
#onboarding-form .consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 4px;
}

#onboarding-form .consent-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #2f9e6b;
  flex: none;
}

#onboarding-form .consent-row a { color: #9be1bd; }


/* The form's own rows had no vertical rhythm, so each label sat flush against
   the control above it. */
#onboarding-form {
  display: grid;
  gap: 14px;
}
