/* Airbnb-inspired design tokens */
:root {
  --color-primary: #FF385C;
  --color-primary-hover: #E0314F;
  --color-primary-light: #FFF0F3;
  --color-text: #222222;
  --color-text-secondary: #717171;
  --color-text-muted: #6A6A6A;
  --color-border: #DDDDDD;
  --color-border-light: #EBEBEB;
  --color-bg: #FFFFFF;
  --color-bg-muted: #F7F7F7;
  --color-bg-dark: #222222;
  --color-success: #008A05;
  --color-success-bg: #E7F6E9;

  --font-family: "Airbnb Cereal VF", Circular, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 40px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.12);

  --header-height: 80px;
  --container-max: 1280px;
  --container-narrow: 720px;
  --section-padding: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 80px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

.section--trust {
  background: var(--color-bg);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.section-title--centered {
  text-align: center;
}

.section-title--calm {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
}

.section-subtitle--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--color-primary);
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav a:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--color-text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-inner {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-nav-inner a {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-inner a:last-of-type {
  border-bottom: none;
}

.mobile-nav-inner .btn {
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  background: linear-gradient(to right, #D70466 0%, #BD1E59 50%, #A61E4A 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  background: var(--color-bg-muted);
}

.btn-sm {
  font-size: 14px;
  padding: 12px 20px;
}

.btn-lg {
  font-size: 18px;
  padding: 16px 32px;
}

.btn-full {
  width: 100%;
}

/* Early access modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(34, 34, 34, 0.56);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-backdrop[hidden] {
  display: none;
}

.signup-modal {
  position: relative;
  width: min(100%, 480px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 40px;
  border: 1px solid var(--color-border-light);
  border-radius: 24px;
  background: var(--color-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  animation: modal-in 0.2s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--color-bg-muted);
}

.modal-close:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.modal-close span::before,
.modal-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--color-text);
}

.modal-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.modal-icon svg {
  width: 40px;
  height: 40px;
}

.signup-modal h2 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.modal-description {
  margin-bottom: 28px;
  color: var(--color-text-secondary);
}

.signup-form {
  display: flex;
  flex-direction: column;
}

.signup-form label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.signup-form input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.signup-form input::placeholder {
  color: var(--color-text-muted);
}

.signup-form input:hover {
  border-color: var(--color-text-muted);
}

.signup-form input:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 1px var(--color-text);
}

.signup-form input[aria-invalid="true"] {
  border-color: #c13515;
}

.signup-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  min-height: 21px;
  margin: 6px 0 10px;
  color: #c13515;
  font-size: 13px;
}

.modal-fine-print {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
}

.signup-success {
  text-align: center;
}

.signup-success h2 {
  margin: 0 auto 12px;
}

.signup-success p {
  margin-bottom: 28px;
  color: var(--color-text-secondary);
}

.success-check {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin: 8px auto 24px;
  border-radius: 50%;
  background: var(--color-success-bg);
}

.success-check::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 10px;
  height: 20px;
  border: solid var(--color-success);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.modal-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding-top: 56px;
  padding-bottom: var(--section-padding);
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  flex: 0 1 520px;
  max-width: 520px;
}

.eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subhead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-visual {
  flex: 0 0 auto;
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg);
}

.phone-frame--hero {
  width: min(100%, 300px);
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.price-microcopy {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.launch-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: center;
}

.hero-copy .launch-note {
  text-align: left;
}

/* How it works — alternating walkthrough */
.steps-showcase {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.step-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-showcase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.step-showcase-copy h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step-showcase-copy p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.step-showcase-phone {
  display: flex;
  justify-content: center;
}

.step-showcase-phone .phone-frame {
  border-radius: var(--radius-lg);
}

@media (min-width: 901px) {
  .step-showcase {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
  }

  .step-showcase--reverse {
    flex-direction: row-reverse;
  }

  .step-showcase--reverse .step-showcase-copy,
  .step-showcase--reverse .step-showcase-phone {
    order: unset;
  }

  .step-showcase-copy {
    flex: 0 1 420px;
    max-width: 420px;
  }

  .step-showcase-phone {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .step-showcase-phone .phone-frame {
    width: 300px;
  }
}

/* Mockup card */
.mockup-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup-card--hero {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  background: var(--color-bg-muted);
  border-bottom: 1px solid var(--color-border-light);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
}

.mockup-dot:first-child { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
}

.profile-chip--compact {
  padding: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #FF6B8A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.profile-name {
  font-size: 14px;
  font-weight: 600;
}

.profile-meta {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.alert-card {
  padding: 16px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
}

.alert-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot--live {
  background: var(--color-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.alert-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.alert-time {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-left: auto;
}

.alert-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alert-detail {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.message-preview {
  padding: 14px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
}

.message-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.message-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text);
}

.sent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.mockup-decision {
  padding: 14px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
}

.mockup-decision-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.mockup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}

.mockup-btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.mockup-btn--ghost {
  background: var(--color-bg);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-light);
}

.mockup-footnote {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

.comparison-card--before {
  opacity: 0.92;
}

.comparison-card--after {
  border-color: rgba(255, 56, 92, 0.2);
  box-shadow: var(--shadow-sm);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.comparison-header h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.chip {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.chip--muted {
  background: var(--color-bg-muted);
  color: var(--color-text-secondary);
}

.chip--accent {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 16px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.icon--x {
  background: #FFF0F0;
}

.icon--x::before,
.icon--x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #C13515;
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon--x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.icon--check {
  background: var(--color-success-bg);
}

.icon--check::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 5px;
  height: 9px;
  border: solid var(--color-success);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Stepper */
.stepper {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.stepper::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--color-border-light);
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: border-color 0.2s, background 0.2s;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.step-outcome {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.step--highlight .step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.35);
}

.step--highlight .step-content h3 {
  color: var(--color-primary);
}

.stepper-footnote {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Preview panels */
.preview-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.preview-panel {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.panel-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  padding: 16px 20px 0;
}

.panel-body {
  padding: 16px 20px 24px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
}

.panel-detail {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.panel-stat {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.match-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.match-address {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.match-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.match-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  border-radius: var(--radius-md);
  background: var(--color-bg-muted);
  object-fit: cover;
  margin-bottom: 12px;
}

.status-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.status-pill--sent {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.status-pill--accepted {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.panel-detail--muted {
  margin-bottom: 0;
  margin-top: 12px;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.panel-meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.app-time {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  padding: 32px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.benefit-card > p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.benefit-visual {
  padding: 20px;
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
  min-height: 80px;
}

.timeline-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

.timeline-arrow {
  color: var(--color-text-secondary);
}

.timeline-highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.snippet {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text);
  font-style: italic;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 32px 24px;
  text-align: center;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-muted);
  border-radius: 50%;
  color: var(--color-text);
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.trust-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* Pricing */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow 0.2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.period {
  font-size: 18px;
  color: var(--color-text-secondary);
}

.pricing-trial {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-success-bg);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23008A05' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 12px;
}

/* FAQ */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item p {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.faq-cta {
  margin-top: 48px;
  text-align: center;
}

.faq-cta .btn {
  min-width: 280px;
}

.btn-full-mobile {
  width: auto;
}

/* Final CTA */
.final-cta {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.final-cta .btn-primary {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
}

.final-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand-block {
  flex-shrink: 0;
}

.footer-brand {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none;
  }
}

/* Thin desktop — tighter gutters, compact panels */
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  .hero-grid {
    gap: 20px;
  }

  .steps-showcase {
    gap: 72px;
  }

  @media (min-width: 901px) {
    .step-showcase {
      gap: 40px 56px;
    }

    .step-showcase-phone .phone-frame {
      width: 260px;
    }
  }

  .preview-panel .panel-body {
    padding: 14px 16px 20px;
  }

  .preview-panel .panel-label {
    padding: 14px 16px 0;
  }

  .filter-chip {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Mobile / tablet — vertical stepper, stacked sections */
@media (max-width: 900px) {
  :root {
    --section-padding: 64px;
  }

  .hero-grid {
    flex-direction: column;
    gap: 24px;
  }

  .hero-visual {
    justify-content: center;
  }

  .phone-frame--hero {
    width: min(100%, 260px);
  }

  .hero-copy {
    max-width: none;
    width: 100%;
  }

  .hero-subhead {
    max-width: none;
  }

  .steps-showcase {
    max-width: 360px;
    margin: 0 auto;
    gap: 48px;
  }

  .step-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .step-showcase--reverse .step-showcase-copy,
  .step-showcase--reverse .step-showcase-phone {
    order: unset;
  }

  .step-showcase-phone .phone-frame {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-menu-open .mobile-nav-inner {
    display: flex;
  }

  .logo-tagline {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0;
  }

  .footer-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --section-padding: 48px;
    --header-height: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding-top: 32px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .signup-modal {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 32px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
  }

  .signup-modal h2 {
    font-size: 27px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-ghost {
    text-align: center;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 20px 0;
  }

  .section-subtitle {
    margin-bottom: 32px;
  }

  .btn-full-mobile {
    width: 100%;
    min-width: 0;
  }

  .faq-cta .btn {
    min-width: 0;
  }

  .hero-copy .launch-note {
    text-align: center;
  }

  body.sticky-active {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  body.nav-open {
    overflow: hidden;
  }
}
