/* ============================================================
   PropIQ Landing Page — Full Deck Narrative + Validation Portal
   Mobile-first. Min-width queries scale up to tablet/desktop.
   ============================================================ */

:root {
  --propiq-blue: #2563EB;
  --propiq-blue-deep: #1E40AF;
  --propiq-blue-darker: #1D4ED8;
  --propiq-blue-light: #3B82F6;
  --propiq-blue-soft: #EFF6FF;
  --propiq-blue-softer: #F1F5FE;

  --ink: #0F172A;
  --ink-2: #1E293B;
  --midnight: #0B1426;
  --midnight-2: #111E33;
  --muted: #64748B;
  --faint: #94A3B8;
  --hairline: #E2E8F0;
  --hairline-soft: #EDF2F7;
  --surface: #F8FAFC;
  --white: #FFFFFF;

  --warning: #F87171;
  --warning-soft: #FEF2F2;
  --success: #10B981;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 10px 30px rgba(37,99,235,0.10), 0 4px 8px rgba(15,23,42,0.06);
  --shadow-xl: 0 30px 60px -15px rgba(15,23,42,0.15), 0 10px 20px -5px rgba(15,23,42,0.08), 0 0 0 1px rgba(15,23,42,0.04);

  --font-head: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;

  --header-h: 56px;
  --mobile-cta-h: 76px;
  --container-max: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--mobile-cta-h);
}
a { color: var(--propiq-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, video, iframe { display: block; max-width: 100%; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 960px; }

/* ============================================================
   GENERIC SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 56px 0; }
.section-light { background: var(--white); border-top: 1px solid var(--hairline); }
.section-blue-soft { background: var(--propiq-blue-soft); border-top: 1px solid var(--hairline); }
.section-dark {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 100%);
  color: var(--white);
}
.section-portal {
  background: var(--white);
  padding: 56px 0 32px;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--propiq-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-on-dark { color: var(--propiq-blue-light); }

.section-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.section-title-on-dark { color: var(--white); }

.section-sub-large {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 720px;
  line-height: 1.6;
}
.section-sub-large strong { color: var(--ink); font-weight: 600; }
.section-sub-on-dark { color: rgba(255,255,255,0.78); }
.section-sub-on-dark strong { color: var(--white); }

.strike-blue {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-weight: 800;
}
.strike-blue::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 3px;
  background: var(--propiq-blue);
  transform: rotate(-3deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--propiq-blue); color: var(--white); }
.btn-primary:hover { background: var(--propiq-blue-deep); box-shadow: 0 8px 20px rgba(37,99,235,0.30); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}
.btn-ghost:hover { border-color: var(--propiq-blue); color: var(--propiq-blue); }
.btn-on-dark {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.20);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }
.btn-xl { height: 64px; padding: 0 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}
.brand-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: var(--propiq-blue);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.header-cta:hover { background: var(--propiq-blue-deep); text-decoration: none; }
.header-cta-text-full { display: none; }
.header-cta-text-short { display: inline; }

/* ============================================================
   HERO — DARK background, big claim
   ============================================================ */
.hero-dark {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 50%, var(--propiq-blue-darker) 130%);
  color: var(--white);
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  /* subtle dotted texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}
.hero-dark > .container { position: relative; }

.hero-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.hero-title-on-dark { color: var(--white); }
.hero-accent { color: var(--propiq-blue-light); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 640px;
}
.hero-sub-on-dark { color: rgba(255,255,255,0.80); }
.hero-sub-on-dark strong { color: var(--white); font-weight: 600; }

/* Video frame */
.hero-video { margin: 24px 0; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--midnight);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.06);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--propiq-blue-darker) 100%);
  cursor: pointer;
}
.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--propiq-blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.30);
  transition: transform 0.15s ease;
  padding-left: 4px;
}
.video-play:hover { transform: scale(1.06); }
.video-caption {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.hero-ctas .btn { width: 100%; }

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.40);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.urgency-strip strong { color: var(--white); font-weight: 600; }
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--propiq-blue-light);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.30);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59,130,246,0.30); }
  50% { box-shadow: 0 0 0 8px rgba(59,130,246,0.05); }
}

/* Hero validation strip — under headline, before sub */
.hero-validation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 10px 14px;
  margin: 0 0 20px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.hero-validation strong { color: var(--white); font-weight: 600; white-space: nowrap; }
.validation-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  margin-right: 4px;
}

/* ============================================================
   STAT BAR — under hero
   ============================================================ */
.stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  padding: 32px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-num.is-blue { color: var(--propiq-blue); }
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}
.stat-sub {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

/* ============================================================
   PROBLEM CARDS — "filters on the same public records"
   ============================================================ */
.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.problem-x {
  font-size: 18px;
  font-weight: 800;
  color: var(--warning);
  flex-shrink: 0;
  line-height: 1.4;
}
.problem-text {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* ============================================================
   SIGNALS CALLOUT — 166 motivation signals
   ============================================================ */
.signals-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.signals-callout::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--propiq-blue);
}
.signals-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--propiq-blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.signals-headline {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.35;
}
.signals-detail {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}
.signals-vs {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin-top: 4px;
}
.signals-vs-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.signals-vs-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--warning);
  line-height: 1;
  margin-bottom: 4px;
}
.signals-vs-detail {
  font-size: 11px;
  color: var(--faint);
  font-style: italic;
}

/* ============================================================
   FLOW GRID — 3-step process
   ============================================================ */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 22px;
  position: relative;
}
.flow-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--propiq-blue);
  margin-bottom: 10px;
}
.flow-arrow {
  display: none; /* shown only on desktop in horizontal layout */
}
.flow-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.flow-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PORTAL / SEARCH SECTION
   ============================================================ */
.portal-intro { margin-bottom: 24px; }

/* Aggregate catches strip — shown above the search card. Dark inverted card so it
   stands out against the white search section. Matches hero/final-cta aesthetic. */
.catches-strip {
  margin-top: 24px;
  padding: 24px 24px 22px 28px;
  background:
    radial-gradient(ellipse at top right, rgba(37,99,235,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 100%);
  border-radius: 14px;
  box-shadow:
    0 14px 36px -10px rgba(37,99,235,0.32),
    0 0 0 1px rgba(37,99,235,0.18);
  position: relative;
  overflow: hidden;
}
.catches-strip::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--propiq-blue-light) 0%, var(--propiq-blue) 100%);
}
.catches-total {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.catches-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--propiq-blue-light);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(37,99,235,0.35);
}
.catches-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.4;
}
.catches-label span { font-weight: 700; color: var(--white); }
.catches-leaders {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.catches-leader-label {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10.5px;
  margin-right: 4px;
}
.catches-leader { color: rgba(255,255,255,0.88); }
.catches-leader strong { color: var(--propiq-blue-light); font-weight: 700; margin-right: 4px; }
.catches-sep { color: rgba(255,255,255,0.28); }

@media (min-width: 720px) {
  .catches-strip { padding: 28px 30px 26px 34px; }
  .catches-total { gap: 18px; }
  .catches-num { font-size: 64px; }
  .catches-label { font-size: 17px; }
  .catches-leaders { font-size: 13.5px; }
}

.search-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-md);
}
.search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-input,
.search-county,
.search-btn {
  height: 52px;
  font-size: 16px;
  font-family: var(--font-body);
  border-radius: 10px;
  border: 1.5px solid var(--hairline);
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.search-input:focus,
.search-county:focus {
  border-color: var(--propiq-blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.search-county {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.search-btn {
  background: var(--propiq-blue);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.search-btn:hover { background: var(--propiq-blue-deep); }
.search-btn:disabled { background: var(--faint); cursor: not-allowed; }

.search-status {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  min-height: 18px;
}
.search-status .ready { color: var(--success); font-weight: 500; }

/* Coverage chips */
.coverage { margin-top: 28px; }
.coverage-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.chip-count {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.coverage-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}
.coverage-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   RESULTS
   ============================================================ */
.results-section {
  padding: 8px 0 32px;
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.match-card {
  background: var(--white);
  border: 2px solid var(--propiq-blue);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: cardIn 0.35s ease;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.match-header {
  background: linear-gradient(135deg, var(--propiq-blue) 0%, var(--propiq-blue-deep) 100%);
  padding: 20px 22px;
  color: var(--white);
}
.match-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  opacity: 0.85;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.match-headline {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.match-headline .accent { opacity: 0.85; font-weight: 500; }
.match-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.match-property h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ink);
  word-break: break-word;
}
.match-property .owner {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  word-break: break-word;
}
.match-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin: 0;
}
.match-meta dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.match-meta dd {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  word-break: break-word;
}
.match-meta dd .sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.match-score-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 20px;
}
.pool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: 999px;
  text-transform: uppercase;
}
.pool-ULTRA   { background: var(--propiq-blue);      color: var(--white); }
.pool-HOT     { background: var(--propiq-blue-deep); color: var(--white); }
.pool-BASE    { background: var(--propiq-blue-light); color: var(--white); }
.pool-VOLUME  { background: var(--midnight);         color: var(--white); }
.pool-explain {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}
.pool-explain strong { color: var(--ink); font-weight: 600; }
.score-block { margin-top: 20px; }
.score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.score-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--propiq-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.score-percentile {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.match-callout {
  margin: 0 22px 22px;
  padding: 14px 16px;
  background: var(--propiq-blue-soft);
  border-left: 3px solid var(--propiq-blue);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
}
.match-callout strong { color: var(--propiq-blue-deep); }
.match-cta {
  margin: 0 22px 22px;
  padding: 22px;
  background: var(--midnight);
  color: var(--white);
  border-radius: 12px;
  text-align: center;
}
.match-cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--propiq-blue-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.match-cta-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--white);
}
.match-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
  line-height: 1.5;
}
.match-cta .btn { width: 100%; max-width: 320px; }

.results-list-header {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.results-list-header strong { color: var(--ink); font-weight: 600; }
.results-list { display: flex; flex-direction: column; gap: 10px; }
.result-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
  -webkit-tap-highlight-color: rgba(37,99,235,0.05);
}
.result-row:hover {
  border-color: var(--propiq-blue);
  box-shadow: var(--shadow-sm);
}
.result-row:active { transform: translateY(1px); }
.result-main { min-width: 0; }
.result-main .addr {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  word-break: break-word;
}
.result-main .meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  word-break: break-word;
}
.result-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}
.result-score {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--propiq-blue);
}

.no-match {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: cardIn 0.35s ease;
}
.no-match-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.no-match-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.no-match-body {
  font-size: 14px;
  color: var(--muted);
  margin: 0 auto 16px;
  max-width: 540px;
  line-height: 1.55;
}
.no-match-body em { font-style: italic; color: var(--ink); }
.no-match-tips {
  text-align: left;
  display: inline-block;
  padding: 0 0 0 22px;
  margin: 4px auto 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.no-match-tips em { color: var(--ink); font-style: italic; font-weight: 500; }
.no-match-cta {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  background: var(--propiq-blue);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.no-match-cta:hover { background: var(--propiq-blue-deep); text-decoration: none; }

/* ============================================================
   DARK CAMPAIGN PROOF SECTION (127 sellers + dashboard receipt)
   ============================================================ */
.campaign-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.proof-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.proof-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 18px;
}
.proof-num-big {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--propiq-blue-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label-big {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.proof-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  font-style: italic;
  line-height: 1.4;
}

/* SmarterContact dashboard receipt — proof IS the dashboard */
.proof-receipt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.receipt-frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.5),
    0 10px 20px -5px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.receipt-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.receipt-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  font-style: italic;
  font-family: var(--font-mono);
}
.receipt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.20);
}

/* ============================================================
   WORKFLOW — 4-step product walkthrough
   ============================================================ */
.workflow {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
}
.workflow-intro { margin-bottom: 36px; max-width: 720px; }
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.workflow-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-meta { min-width: 0; }
.step-num-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--propiq-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-headline {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}
.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.product-shot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 30px 60px -15px rgba(15, 23, 42, 0.15),
    0 10px 20px -5px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-shot:hover {
  transform: translateY(-2px);
  box-shadow:
    0 40px 70px -15px rgba(37, 99, 235, 0.18),
    0 14px 28px -5px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.10);
}
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--surface) 0%, #EDF2FA 100%);
  text-align: center;
  padding: 32px;
}
.shot-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--propiq-blue);
  text-transform: uppercase;
}
.shot-desc {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  max-width: 80%;
  line-height: 1.4;
}

/* ============================================================
   PRICING GRID
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover { border-color: var(--propiq-blue-light); box-shadow: var(--shadow-md); }
.price-card-featured {
  border: 2px solid var(--propiq-blue);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--propiq-blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.price-badge-included {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}
.price-tier {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--propiq-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.price-tagline {
  font-size: 13.5px;
  color: var(--propiq-blue);
  font-weight: 600;
  margin: 8px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-features li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--propiq-blue);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 22px;
}
.faq-q {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.faq-a {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.faq-a strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FINAL CTA — closing
   ============================================================ */
.final-cta {
  padding: 48px 0;
  background: var(--white);
}
.final-cta-card {
  background:
    radial-gradient(ellipse at top right, rgba(37,99,235,0.20) 0%, transparent 50%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 50%, var(--propiq-blue-darker) 130%);
  color: var(--white);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}
.final-cta-card > * { position: relative; }
.final-cta-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--white);
}
.final-cta-accent { color: var(--propiq-blue-light); }
.final-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin: 0 auto 24px;
  max-width: 520px;
  line-height: 1.55;
}
.final-cta-card .btn { width: 100%; max-width: 360px; }
.final-cta-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-links { font-size: 13px; color: var(--muted); }
.footer-links a { color: var(--propiq-blue); }
.footer-sep { margin: 0 8px; color: var(--hairline); }
.footer-meta { font-size: 12px; color: var(--faint); }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 12px rgba(15,23,42,0.05);
}

/* ============================================================
   RESPONSIVE — TABLET (>=720px)
   ============================================================ */
@media (min-width: 720px) {
  .container { padding: 0 32px; }
  .section { padding: 72px 0; }
  .section-portal { padding: 72px 0 40px; }

  .hero-dark { padding: 56px 0 40px; }
  .hero-title { font-size: 56px; }
  .hero-sub { font-size: 18px; max-width: 720px; }
  .hero-ctas { flex-direction: row; gap: 14px; }
  .hero-ctas .btn { width: auto; min-width: 240px; }

  .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .stat-num { font-size: 44px; }

  .section-title { font-size: 40px; }

  .problem-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .signals-callout {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
  }
  .signals-num { font-size: 80px; }
  .signals-vs {
    border-top: none;
    border-left: 1px solid var(--hairline);
    padding: 4px 0 4px 28px;
    margin-top: 0;
    text-align: right;
  }

  .flow-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .search-row { display: grid; grid-template-columns: 1fr 200px 140px; gap: 12px; }

  .match-headline { font-size: 36px; }
  .match-property h3 { font-size: 22px; }
  .match-meta dd { font-size: 16px; }
  .score-value { font-size: 44px; }

  .proof-stats-col { grid-template-columns: repeat(4, 1fr); }
  .proof-num-big { font-size: 40px; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .footer-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (>=1024px)
   ============================================================ */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .mobile-cta-bar { display: none; }

  :root { --header-h: 64px; }
  .header-cta-text-full { display: inline; }
  .header-cta-text-short { display: none; }

  .section { padding: 88px 0; }
  .section-portal { padding: 88px 0 48px; }

  .hero-dark { padding: 80px 0 48px; }
  .hero-title { font-size: 68px; }
  .hero-video { max-width: 880px; margin: 36px auto; }

  .section-title { font-size: 48px; }

  .pricing-grid { grid-template-columns: repeat(4, 1fr); }

  /* Campaign proof — 2-column desktop: stats left, receipt right */
  .campaign-proof-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: start;
  }
  .proof-stats-col {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .proof-num-big { font-size: 44px; }

  .match-body { flex-direction: row; padding: 32px; gap: 32px; }
  .match-property { flex: 1.1; }
  .match-score-card { flex: 1; padding: 24px; }
  .match-callout { margin: 0 32px 32px; padding: 16px 20px; font-size: 14px; }
  .match-cta { margin: 0 32px 32px; padding: 28px; }
  .match-cta-title { font-size: 24px; }
  .result-row { padding: 18px 22px; }
  .result-side { flex-direction: row; align-items: center; gap: 14px; }
  .result-main .addr { font-size: 15px; }
  .result-main .meta { font-size: 12px; }

  /* Workflow alternating zig-zag */
  .workflow { padding: 96px 0; }
  .workflow-intro { margin-bottom: 56px; }
  .workflow-steps { gap: 80px; }
  .workflow-step { flex-direction: row; align-items: center; gap: 64px; }
  .workflow-step:nth-child(even) { flex-direction: row-reverse; }
  .workflow-step .step-meta { flex: 1; }
  .workflow-step .product-shot { flex: 1.15; }
  .step-headline { font-size: 30px; }
  .step-body { font-size: 16px; }

  .final-cta { padding: 96px 0; }
  .final-cta-card { padding: 64px 56px; }
  .final-cta-title { font-size: 44px; }
}
