/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== DESIGN TOKENS — Light SaaS (Notion/Linear style) ===== */
:root {
  --bg: #FFFFFF;
  --bg-2: #F9FAFB;
  --surface: #FFFFFF;
  --border: #E5E7EB;
  --fg: #111827;
  --fg-muted: #6B7280;
  --accent: #0066FF;
  --accent-dim: #0052CC;
  --accent-light: rgba(0, 102, 255, 0.06);
  --tier-red: #EF4444;
  --tier-red-bg: rgba(239, 68, 68, 0.06);
  --tier-amber: #F59E0B;
  --tier-amber-bg: rgba(245, 158, 11, 0.06);
  --tier-gray: #9CA3AF;
  --tier-gray-bg: rgba(156, 163, 175, 0.06);
  --white: #FFFFFF;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* ===== HERO ===== */
.hero-pricing-badge {
  display: inline-block;
  background: #F0FDF4;
  border: 1px solid #A7F3D0;
  color: #065F46;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.pricing-one-time {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.8;
}
.hero {
  padding: 96px 48px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 auto 40px;
}
.hero-input-group {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 14px;
  justify-content: center;
}
.hero-url-input {
  flex: 1;
  max-width: 360px;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.hero-url-input::placeholder { color: var(--fg-muted); }
.hero-url-input:focus {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,102,255,0.08);
}
.hero-cta {
  padding: 15px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.25);
}
.hero-cta:hover { background: var(--accent-dim); }
.hero-note { font-size: 13px; color: var(--fg-muted); }

/* ===== SHARED SECTION STYLES ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.hiw-inner .section-headline { margin-bottom: 56px; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--border);
}
.hiw-step {
  padding: 48px 40px;
  background: var(--white);
  text-align: center;
}
.hiw-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--border);
}
.hiw-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hiw-step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== 6-SUITE GRID ===== */
.suite-grid-section {
  padding: 96px 48px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
}
.suite-grid-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.suite-grid-inner .section-headline { margin-bottom: 12px; }
.suite-grid-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.suite-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.suite-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.3s;
}
.suite-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  border-color: #CBD5E1;
}
.suite-card--critical {
  background: linear-gradient(to bottom, #FFFFFF, rgba(254,242,242,0.4));
  border-color: #FECACA;
}
.suite-card--critical:hover {
  box-shadow: 0 8px 32px rgba(239,68,68,0.1);
  border-color: #FCA5A5;
}
.suite-card-icon {
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.suite-card--critical .suite-card-icon { color: var(--tier-red); }
.suite-card--healthy .suite-card-icon { color: var(--accent); }
.suite-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.suite-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.suite-card-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 20px;
}
.suite-status-healthy {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}
.suite-status-critical {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}
.suite-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suite-card-bullets li {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.suite-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94A3B8;
}

/* ===== TIER PREVIEW ===== */
.tier-preview {
  padding: 96px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.tp-inner { max-width: 1200px; margin: 0 auto; }
.tp-header { margin-bottom: 48px; text-align: center; }
.tp-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.tp-sub { font-size: 16px; color: var(--fg-muted); }
.tp-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.tp-tier {
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid;
}
.tp-tier-1 { background: var(--tier-red-bg); border-color: rgba(239,68,68,0.2); }
.tp-tier-2 { background: var(--tier-amber-bg); border-color: rgba(245,158,11,0.2); }
.tp-tier-3 { background: var(--tier-gray-bg); border-color: rgba(156,163,175,0.2); }
.tp-tier-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tp-tier-1 .tp-tier-label { color: var(--tier-red); }
.tp-tier-2 .tp-tier-label { color: var(--tier-amber); }
.tp-tier-3 .tp-tier-label { color: var(--tier-gray); }
.tp-tier-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.tp-tier-count { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.tp-tier-urgency {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.tp-tier-1 .tp-tier-urgency { background: rgba(239,68,68,0.12); color: var(--tier-red); }
.tp-tier-2 .tp-tier-urgency { background: rgba(245,158,11,0.12); color: var(--tier-amber); }
.tp-tier-3 .tp-tier-urgency { background: rgba(156,163,175,0.1); color: var(--tier-gray); }
.tp-tier-examples { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tp-tier-examples li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.tp-tier-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.tp-tier-1 .tp-tier-examples li::before { background: var(--tier-red); }
.tp-tier-2 .tp-tier-examples li::before { background: var(--tier-amber); }
.tp-tier-3 .tp-tier-examples li::before { background: var(--tier-gray); }
.tp-tier-locked { font-size: 13px; color: var(--fg-muted); font-style: italic; margin-top: 12px; }
.tp-funnel-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.pricing-amount-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-amount-value {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-tagline {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 auto 40px;
}
.pricing-cta-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pricing-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.25);
}
.pricing-cta:hover { background: var(--accent-dim); }
.pricing-no-sub { font-size: 13px; color: var(--fg-muted); }
.pricing-includes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.pi-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.pi-item-icon { font-size: 20px; margin-bottom: 10px; display: block; }
.pi-item-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.pi-item-body { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.pricing-batch { margin-top: 40px; font-size: 13px; color: var(--fg-muted); }
.pricing-batch a { color: var(--accent); text-decoration: none; }

/* ===== CLOSING ===== */
.closing {
  padding: 96px 48px;
  background: var(--white);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 3px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-links { display: flex; gap: 20px; margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}
.cookie-banner.show { display: flex; }
.cookie-text { font-size: 14px; color: var(--fg); flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--fg);
}
.cookie-btn:hover { background: var(--bg-2); }
.cookie-btn-accept { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cookie-btn-accept:hover { background: var(--accent-dim); }

/* ===== PAYWALL OVERLAY ===== */
.paywall-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 24px 16px;
}
.paywall-inner {
  background: var(--white);
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.paywall-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.paywall-close:hover { color: #475569; }
.paywall-header { margin-bottom: 24px; }
.paywall-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.paywall-logo-box {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 5px;
}
.paywall-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.paywall-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.paywall-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.paywall-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--tier-red);
  margin-bottom: 20px;
}
.paywall-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.paywall-addons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.addon-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.addon-checkbox:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.addon-checkbox input[type="checkbox"] {
  display: none;
}
.addon-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid #CBD5E1;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1px;
}
.addon-check-icon { display: none; }
.addon-checkbox input:checked ~ .addon-check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.addon-checkbox input:checked ~ .addon-check-box .addon-check-icon { display: block; color: #fff; }
.addon-content { flex: 1; }
.addon-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.addon-body {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.paywall-cta-wrap { text-align: center; }
.paywall-cta-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.3);
}
.paywall-cta-btn:hover { background: var(--accent-dim); }
.paywall-cta-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.paywall-micro {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .suite-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-tagline { display: none; }
  .nav-links { display: none; }
  .hero { padding: 64px 24px 48px; }
  .hero-input-group { flex-direction: column; align-items: center; }
  .hero-url-input { max-width: 100%; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .hiw-step:last-child { border-bottom: none; }
  .tp-tiers { grid-template-columns: 1fr; }
  .pricing-includes { grid-template-columns: 1fr; }
  .how-it-works, .suite-grid-section, .tier-preview, .pricing, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .cookie-banner { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 640px) {
  .suite-cards { grid-template-columns: 1fr; }
  .paywall-inner { padding: 28px 20px; }
}

/* ===== SCANNING OVERLAY ===== */
.scanning-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  gap: 20px;
}
.scanning-icon { font-size: 48px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.scanning-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.scanning-sub { font-size: 14px; color: var(--fg-muted); }
.scan-progress-track {
  width: 280px;
  height: 4px;
  background: #F3F4F6;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.scan-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: scanLoad 2.5s ease-in-out infinite;
  width: 0%;
}
@keyframes scanLoad {
  0% { width: 0%; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ===== RESULTS PAGE ===== */
.results-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
}
.results-header { text-align: center; margin-bottom: 48px; }
.results-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin: 12px 0 8px;
}
.results-url { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; }
.results-url-label { font-weight: 600; margin-right: 6px; color: var(--fg); }
.results-url a { color: var(--accent); text-decoration: none; }
.results-url a:hover { text-decoration: underline; }
.results-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.results-urgency--red { background: var(--tier-red-bg); color: var(--tier-red); border: 1px solid rgba(239,68,68,0.2); }
.results-urgency--amber { background: var(--tier-amber-bg); color: var(--tier-amber); border: 1px solid rgba(245,158,11,0.2); }
.results-urgency--gray { background: var(--tier-gray-bg); color: var(--tier-gray); border: 1px solid rgba(156,163,175,0.2); }
.urgency-icon { font-size: 16px; }
.results-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.summary-card--red { border-color: rgba(239,68,68,0.2); background: var(--tier-red-bg); }
.summary-card--amber { border-color: rgba(245,158,11,0.2); background: var(--tier-amber-bg); }
.summary-card--gray { border-color: rgba(156,163,175,0.15); background: var(--tier-gray-bg); }
.summary-count {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.summary-card--red .summary-count { color: var(--tier-red); }
.summary-card--amber .summary-count { color: var(--tier-amber); }
.summary-card--gray .summary-count { color: var(--tier-gray); }
.summary-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
.summary-loss {
  display: block;
  font-size: 12px;
  color: var(--tier-red);
  font-weight: 600;
  margin-top: 8px;
  background: rgba(239,68,68,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}
.tier-section {
  border-radius: 12px;
  border: 1px solid;
  margin-bottom: 32px;
  overflow: hidden;
}
.tier-section--red { border-color: rgba(239,68,68,0.2); }
.tier-section--amber { border-color: rgba(245,158,11,0.2); }
.tier-section--gray { border-color: rgba(156,163,175,0.15); }
.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.tier-title-group { display: flex; flex-direction: column; gap: 6px; }
.tier-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tier-badge--red { background: var(--tier-red-bg); color: var(--tier-red); }
.tier-badge--amber { background: var(--tier-amber-bg); color: var(--tier-amber); }
.tier-badge--gray { background: var(--tier-gray-bg); color: var(--tier-gray); }
.tier-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
}
.tier-count-badge { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.tier-count-badge--red { background: var(--tier-red-bg); color: var(--tier-red); }
.tier-count-badge--amber { background: var(--tier-amber-bg); color: var(--tier-amber); }
.tier-count-badge--gray { background: var(--tier-gray-bg); color: var(--tier-gray); }
.findings-list { list-style: none; }
.finding-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.finding-item:last-child { border-bottom: none; }
.finding-item--red { background: rgba(239,68,68,0.03); }
.finding-item--amber { background: rgba(245,158,11,0.03); }
.finding-item--gray { background: rgba(156,163,175,0.02); }
.finding-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  padding-top: 2px;
}
.finding-item--red .finding-icon { color: var(--tier-red); }
.finding-item--amber .finding-icon { color: var(--tier-amber); }
.finding-item--gray .finding-icon { color: var(--tier-gray); }
.finding-body { flex: 1; }
.finding-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.finding-text { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.finding-desc { font-size: 13px; color: var(--fg-muted); margin-top: 4px; line-height: 1.5; }
.finding-location { font-size: 12px; color: var(--fg-muted); margin-top: 6px; font-style: italic; opacity: 0.7; }
.tier-teaser { border-radius: 12px; margin-bottom: 32px; }
.tier-teaser--gray { background: var(--tier-gray-bg); border: 1px solid rgba(156,163,175,0.15); }
.tier-teaser--amber { background: var(--tier-amber-bg); border: 1px solid rgba(245,158,11,0.15); }
.teaser-inner { padding: 28px 24px; text-align: center; }
.teaser-count {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin: 12px 0 8px;
}
.teaser-cta { font-size: 14px; color: var(--fg-muted); }
.teaser-finding {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 6px;
  text-align: left;
}
.teaser-finding-title { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.unlock-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
}
.unlock-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.unlock-headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.unlock-sub { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.unlock-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.unlock-includes li { font-size: 13px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.unlock-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.unlock-price-block { text-align: center; margin-bottom: 20px; }
.unlock-price-original {
  display: block;
  font-size: 20px;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.unlock-price-now {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.unlock-price-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.unlock-btn {
  display: block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.25);
}
.unlock-btn:hover { background: var(--accent-dim); }
.unlock-note { font-size: 12px; color: var(--fg-muted); text-align: center; margin-top: 10px; }
.finding-fix {
  margin-top: 12px;
  background: var(--accent-light);
  border: 1px solid rgba(0,102,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
}
.fix-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.fix-steps { display: flex; flex-direction: column; gap: 4px; }
.fix-step { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.fix-step strong { color: var(--fg); }
.seo-order-bump {
  margin-top: 24px;
  padding: 16px;
  background: var(--accent-light);
  border: 1px solid rgba(0,102,255,0.12);
  border-radius: 8px;
}
.seo-bump-toggle { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.seo-bump-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.seo-bump-label { font-size: 15px; color: var(--fg); font-weight: 600; }
.seo-bump-label strong { color: var(--tier-amber); }
.seo-bump-sub { font-size: 12px; color: var(--fg-muted); margin-top: 8px; line-height: 1.5; }
.paid-banner {
  text-align: center;
  padding: 16px;
  background: var(--accent-light);
  border: 1px solid rgba(0,102,255,0.12);
  border-radius: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ===== CLEAN SLATE UPSELL (Report Footer) ===== */
.clean-slate {
  background: var(--fg);
  border-top: 2px solid var(--accent);
  padding: 80px 48px;
  text-align: center;
}
.clean-slate-inner { max-width: 700px; margin: 0 auto; }
.clean-slate-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.clean-slate-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.clean-slate-sub {
  font-size: 16px;
  color: #9CA3AF;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.clean-slate-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: left;
}
.clean-slate-checklist li {
  font-size: 15px;
  color: #D1D5DB;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.clean-slate-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.clean-slate-pricing { margin-bottom: 24px; }
.clean-slate-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.clean-slate-price-label { font-size: 14px; color: #9CA3AF; margin-top: 6px; }
.clean-slate-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.35);
  margin-bottom: 16px;
  cursor: pointer;
  border: none;
}
.clean-slate-cta:hover { background: var(--accent-dim); }
.clean-slate-fine-print {
  font-size: 12px;
  color: #6B7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== LOCKED ADD-ON PANELS ===== */
.locked-panel {
  border-radius: 12px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.locked-panel--social { border: 1px solid rgba(168,85,247,0.2); }
.locked-panel--ads { border: 1px solid rgba(16,185,129,0.2); }
.locked-panel-inner {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.locked-panel-blur {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.locked-panel-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.locked-panel-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.locked-panel-sub {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 440px;
  margin: 0 auto 20px;
}
.locked-panel-cta {
  display: inline-block;
  padding: 11px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.locked-panel-cta:hover { background: var(--accent-dim); }

/* ===== PLUG THE HOLES — TERMINAL UPSELL ===== */
.plug-holes {
  background: #111827;
  border-top: 4px solid #06B6D4;
  padding: 80px 48px;
  text-align: center;
}
.plug-holes-inner { max-width: 700px; margin: 0 auto; }
.plug-holes-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #06B6D4;
  margin-bottom: 16px;
}
.plug-holes-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.plug-holes-sub {
  font-size: 16px;
  color: #9CA3AF;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.plug-holes-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: left;
}
.plug-holes-checklist li {
  font-size: 15px;
  color: #D1D5DB;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.plug-holes-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #06B6D4;
  font-weight: 700;
}
.plug-holes-pricing { margin-bottom: 24px; }
.plug-holes-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plug-holes-price-label { font-size: 14px; color: #9CA3AF; margin-top: 6px; }
.plug-holes-cta {
  display: inline-block;
  padding: 16px 40px;
  background: #06B6D4;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.plug-holes-cta:hover { background: #0891b2; }
.plug-holes-fine-print {
  font-size: 12px;
  color: #6B7280;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ===== ONBOARDING PAGE ===== */
.onboarding-wrap {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 24px;
}
.onboarding-header { text-align: center; margin-bottom: 48px; }
.onboarding-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-decoration: none;
}
.onboarding-logo-icon {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}
.onboarding-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.onboarding-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.onboarding-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.onboarding-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.form-label-sub { display: block; font-size: 12px; color: var(--fg-muted); font-weight: 400; margin-top: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 100px; font-family: 'Courier New', monospace; font-size: 13px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,102,255,0.25);
}
.form-submit:hover { background: var(--accent-dim); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.onboarding-success { text-align: center; padding: 48px 32px; }
.onboarding-success-icon { font-size: 48px; margin-bottom: 20px; }
.onboarding-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.onboarding-success-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 24px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.legal-page .legal-meta { font-size: 13px; color: var(--fg-muted); margin-bottom: 48px; }
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page p { font-size: 15px; color: var(--fg); line-height: 1.75; margin-bottom: 16px; }
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { font-size: 15px; color: var(--fg); line-height: 1.75; margin-bottom: 6px; }

/* ===== OPERATOR DASHBOARD ===== */
.operator-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
}
.operator-header { margin-bottom: 40px; }
.operator-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.operator-sub { font-size: 15px; color: var(--fg-muted); }

/* ===== SCAN OVERLAY — Sequential scan lines ===== */
.scan-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 32px 24px;
  backdrop-filter: blur(2px);
}
.scan-overlay-inner {
  max-width: 620px;
  width: 100%;
  text-align: center;
}
.scan-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.scan-logo-box {
  background: #0066FF;
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border-radius: 5px;
}
.scan-logo-name {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #111827;
  letter-spacing: -0.02em;
}
.scan-title {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.scan-sub {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 40px;
}

/* Scan lines — terminal-style output */
.scan-lines {
  background: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
  min-height: 240px;
}
.scan-line {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  word-break: break-word;
}
.scan-line.scan-line--pending {
  opacity: 0.35;
  color: #94A3B8;
  transform: none;
}
.scan-line.scan-line--active {
  opacity: 1;
  color: #10B981;
  transform: translateX(0);
  border-left: 3px solid #10B981;
  padding-left: 8px;
  margin-left: -8px;
}
.scan-line.scan-line--done {
  opacity: 0.45;
  color: #64748B;
  transform: none;
}
.scan-line-label {
  font-weight: 700;
  white-space: nowrap;
}
.scan-line-desc {
  color: #94A3B8;
}
.scan-line--active .scan-line-desc {
  color: #6EE7B7;
}
.scan-line--done .scan-line-desc {
  color: #475569;
}

/* Progress bar */
.scan-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.scan-progress-track {
  flex: 1;
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
}
.scan-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0066FF, #06B6D4);
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s ease;
}
.scan-progress-pct {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #0066FF;
  min-width: 38px;
  text-align: right;
}
.scan-wait-note {
  font-size: 13px;
  color: #9CA3AF;
}

/* ===== SCAN OVERLAY — Mobile ===== */
@media (max-width: 600px) {
  .scan-overlay-inner { max-width: 100%; }
  .scan-title { font-size: 20px; }
  .scan-lines { padding: 16px; font-size: 12px; min-height: 200px; }
  .scan-line { font-size: 11px; line-height: 1.6; }
}

/* Results page responsive */
@media (max-width: 768px) {
  .results-wrap { padding: 40px 24px; }
  .results-summary-row { grid-template-columns: 1fr; }
  .unlock-inner { grid-template-columns: 1fr; gap: 28px; }
  .unlock-right { text-align: center; }
  .unlock-price-now { font-size: 40px; }
}