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

:root {
  /* Brand */
  --blue:    #0052FF;
  --blue-lt: #edf0ff;
  --blue-dk: #2340cc;
  /* Neutrals (zinc ramp) */
  --text:    #18181b;
  --sub:     #52525b;
  --muted:   #71717a;
  --placeholder: #a1a1aa;
  --border:  #e4e4e7;
  --surface: #fafafa;
  --bg:      #f4f4f5;
  /* Semantic */
  --green:   #16a34a;
  /* Radius */
  --r-btn:   8px;
  --r-card:  12px;
  /* Section vertical rhythm */
  --section: 64px;
}

html { scroll-behavior: smooth; }

/* ── Animations ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(0.8);} }

.anim-hidden {
  opacity:0; transform:translateY(20px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.anim-hidden.anim-visible { opacity:1; transform:translateY(0); }
.anim-scale {
  opacity:0; transform:scale(0.96);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.anim-scale.anim-visible { opacity:1; transform:scale(1); }
.anim-d1 { transition-delay:.08s !important; }
.anim-d2 { transition-delay:.16s !important; }
.anim-d3 { transition-delay:.24s !important; }
.anim-d4 { transition-delay:.32s !important; }
.anim-d5 { transition-delay:.42s !important; }
.anim { opacity:0; animation:fadeUp .55s ease forwards; }
.d1{animation-delay:.05s}.d2{animation-delay:.14s}.d3{animation-delay:.23s}.d4{animation-delay:.32s}.d5{animation-delay:.44s}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff; color: var(--text); overflow-x: hidden;
  font-size: 14px; line-height: 1.5;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
a { text-decoration: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 20px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-btn); border: none; cursor: pointer;
  transition: background 150ms ease;
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--blue-dk); }
.btn-primary:active { background: #2340cc; }
.btn-primary:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.btn-primary-lg { height: 48px; padding: 0 26px; font-size: 15px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 20px;
  background: #fff; color: var(--text);
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-btn); border: 1px solid var(--border); cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.btn-outline:hover  { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.btn-outline:active { background: #dbeafe; }
.btn-outline:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 48px; height: 56px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-links { justify-content: center; }
.nav-right { justify-content: flex-end; }
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--sub); font-size: 13px; font-weight: 500;
  transition: color 150ms; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--text); border-bottom-color: var(--border); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right .btn-outline { height: 36px; font-size: 13px; }
.nav-right .btn-primary { height: 36px; font-size: 13px; }

/* ── Section shared ── */
.sec-lbl {
  text-align: center;
  font-size: 11px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.sec-lbl-muted { color: #52525b; }
.sec-title {
  text-align: center; font-size: 36px; font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 12px;
  color: var(--text);
}
.sec-sub {
  text-align: center; font-size: 15px; color: var(--sub);
  max-width: 560px; margin: 0 auto 48px; line-height: 1.7;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* Centered single-column layout */
.hero-centered {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}

/* Funnel container: fades to point at base */
.hero-funnel {
  position: relative;
  width: 262px;
  height: 360px;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Funnel base logo: 48px */
.hero-funnel-logo {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0052FF 0%, #2340cc 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,82,255,0.38);
  z-index: 10;
}

/* Floating item cards: 140px wide */
.hfc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 140px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transform: translateX(-50%);
}
.hfc-thumb {
  width: 34px; height: 34px;
  border-radius: 6px; object-fit: cover; flex-shrink: 0;
  background: #f4f4f5;
}
.hfc-body { flex: 1; min-width: 0; }
.hfc-name {
  font-size: 11px; font-weight: 700; color: #18181b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.hfc-price-lbl { font-size: 9px; color: #71717a; margin-bottom: 2px; }
.hfc-val-row { display: flex; align-items: center; gap: 4px; }
.hfc-val { font-size: 12px; font-weight: 700; color: #0052FF; line-height: 1; }
.hfc-badge {
  font-size: 9px; font-weight: 700; color: #16a34a;
  background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: 99px; padding: 1px 5px; white-space: nowrap;
}

/* 5 card positions within 262px funnel */
.hfc-1 { left: 27%; top: 18px; }
.hfc-2 { left: 73%; top: 18px; }
.hfc-3 { left: 27%; top: 150px; }
.hfc-4 { left: 73%; top: 150px; }
.hfc-5 { left: 50%; top: 274px; }

/* Arrow connector between funnel and AI panel */
.hero-connector {
  flex-shrink: 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AI Output preview panel ── */
.hero-ai-panel {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 20px;
}
.hap-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 12px;
}
.hap-img {
  width: 100%; height: 120px;
  object-fit: cover; border-radius: 8px;
  display: block; margin-bottom: 12px;
}
.hap-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.35; margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hap-price-section { margin-bottom: 10px; }
.hap-price-eyebrow {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 2px;
}
.hap-price {
  font-size: 22px; font-weight: 700; color: var(--text);
  letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 3px;
}
.hap-price-note { font-size: 11px; color: var(--muted); }
.hap-desc {
  font-size: 12px; color: var(--sub); line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hap-stats {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px; padding: 8px 0;
}
.hap-stat { flex: 1; text-align: center; padding: 0 6px; }
.hap-stat + .hap-stat { border-left: 1px solid var(--border); }
.hap-stat-lbl {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 4px;
}
.hap-stat-val { font-size: 14px; font-weight: 700; color: var(--text); }
.hap-stat-demand { color: var(--blue); }
.hap-denom { font-size: 10px; font-weight: 500; color: var(--muted); }
.hap-stat-trend { color: #16a34a; }
.hap-best-on {
  display: inline-block;
  font-size: 11px; font-weight: 500; color: var(--sub);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 3px 10px;
}

/* Visual footer captions */
.hero-visual-footer {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-funnel-caption { font-size: 12px; color: var(--sub); font-weight: 500; }
.hero-panel-note { font-size: 11px; color: var(--muted); }

/* Centered copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 660px;
}
/* keep stray references alive */
.hero-inner { display: block; }
.hero-left { max-width: 660px; }
.hero-right { display: none; }
.hero-mob-preview { display: none; }

.hero-accent { color: var(--blue); }

.hero-badge {
  display: inline-flex; align-items: center;
  background: var(--blue-lt); color: var(--blue);
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 99px; border: 1px solid #dbeafe;
  margin-bottom: 22px; letter-spacing: 0.2px;
}
.hero-title {
  font-size: 52px; font-weight: 800; line-height: 1.08;
  letter-spacing: -2.5px; color: var(--text); margin-bottom: 20px;
  text-align: center;
}
.hero-sub {
  font-size: 17px; color: var(--sub); line-height: 1.7;
  max-width: 480px; margin: 0 auto 28px;
  text-align: center;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px;
}
.hero-note { font-size: 12px; color: var(--muted); }
.hero-disclaimer {
  font-size: 11px; color: var(--muted); line-height: 1.5;
}

/* ── Blue teardrop wave ── */
.hero-wave {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 200px;
  display: block;
}

/* ── PLATFORMS BAR ── */
.plat-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.plat-bar-lbl {
  text-align: center; font-size: 11px; color: var(--muted);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.plat-bar-disc { text-align: center; font-size: 11px; color: var(--placeholder); margin-bottom: 16px; }
.plat-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.plat-name {
  font-size: 13px; font-weight: 600; color: var(--placeholder);
  letter-spacing: -0.2px; transition: color 150ms;
}
.plat-name:hover { color: var(--muted); }
.plat-name-more { color: var(--border); font-weight: 500; }

/* ── HOW IT WORKS ── */
.how-wrap { padding: var(--section) 0; background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px;
  display: flex; flex-direction: column;
  transition: border-color 150ms, box-shadow 150ms;
}
.step:hover { border-color: #b3bcfa; box-shadow: 0 2px 12px rgba(0,82,255,0.07); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  margin-bottom: 16px;
}
.step-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.step-desc { font-size: 14px; color: var(--sub); line-height: 1.65; }
.how-bridge {
  display: flex; align-items: center; gap: 16px;
  margin: 40px 0 28px;
}
.how-bridge-line {
  flex: 1; height: 1px; background: var(--border);
}
.how-bridge-lbl {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px;
  white-space: nowrap;
}

/* ── TOOLS GRID ── */
.tools-wrap {
  padding: var(--section) 0; background: var(--surface);
  border-top: 1px solid var(--border);
}
.tools-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
}
.tool {
  background: #fff; padding: 24px;
  cursor: pointer; transition: background 150ms;
  display: flex; flex-direction: column;
}
.tool:hover { background: var(--surface); }
.tool:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }

.tool-preview {
  height: 120px; background: #fafafa; border: 1px solid #e4e4e7;
  border-radius: 8px; margin-bottom: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  transition: border-color 150ms;
}
.tool:hover .tool-preview { border-color: #b3bcfa; }

.tool-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.tool-desc { font-size: 13px; color: var(--sub); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.tool-lnk {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  transition: gap 150ms, color 150ms;
}
.tool-lnk:hover { gap: 6px; color: var(--blue-dk); }
.tool-lnk:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* Tool preview mini UIs */
.tp-price { text-align: center; }
.tp-price-val { font-size: 28px; font-weight: 700; color: var(--text); }
.tp-price-range { font-size: 10px; color: var(--muted); margin-top: 2px; }
.tp-gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tp-gauge-num { font-size: 32px; font-weight: 700; color: var(--green); }
.tp-gauge-lbl { font-size: 10px; color: var(--muted); }
.tp-tags-wrap { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px; }
.tp-tag {
  font-size: 11px; background: #f4f4f5; color: #52525b;
  border: 1px solid #e4e4e7; padding: 4px 10px; border-radius: 999px; font-weight: 500;
}

/* ── CALCULATORS STRIP ── */
.calc-strip {
  margin-top: 16px;
  border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
  background: #fff;
}
.calc-strip-head {
  padding: 18px 24px 16px; border-bottom: 1px solid var(--border);
  background: #fff; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.calc-strip-title { font-size: 15px; font-weight: 600; color: var(--text); }
.calc-strip-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.calc-strip-cta {
  font-size: 13px; font-weight: 500; color: var(--blue); white-space: nowrap;
  transition: color 150ms;
}
.calc-strip-cta:hover { color: var(--blue-dk); }
.calc-chips { display: flex; flex-wrap: nowrap; gap: 8px; padding: 16px 24px; background: #fafafa; overflow-x: auto; }
.calc-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid #e4e4e7;
  border-radius: 8px; padding: 12px 14px;
  font-size: 13px; font-weight: 500; color: #18181b;
  flex: 1; min-width: 0;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.calc-chip:hover { border-color: #0052FF; background: #edf0ff; color: #0052FF; }
.calc-chip:focus-visible { outline: 2px solid #0052FF; outline-offset: 2px; }
.calc-chip-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.calc-chip-desc { font-size: 11px; color: #71717a; }
.calc-chip:hover .calc-chip-desc { color: #0052FF; opacity: 0.8; }
.calc-chip-arr { flex-shrink: 0; color: #a1a1aa; }
.calc-chip:hover .calc-chip-arr { color: #0052FF; }

/* ── PRICING ── */
.pricing-section {
  padding: var(--section) 0 80px;
  background: #fff; border-top: 1px solid var(--border);
}
.lp-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; max-width: 1000px; margin: 0 auto; align-items: start;
}
.lp-plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 24px 24px;
  position: relative;
  transition: box-shadow 150ms;
}
.lp-plan:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.lp-plan-featured { border-color: var(--border); }
.lp-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 14px;
  border-radius: 99px; white-space: nowrap; letter-spacing: 0.3px;
}
.lp-plan-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.lp-plan-starter { color: var(--green); }
.lp-plan-pro { color: var(--blue); }
.lp-plan-elite { color: #7c3aed; }
.lp-plan-price {
  font-size: 32px; font-weight: 700; letter-spacing: -1.5px;
  line-height: 1; color: var(--text); margin-bottom: 3px;
}
.lp-plan-price span {
  font-size: 16px; font-weight: 500; letter-spacing: 0;
  vertical-align: top; margin-top: 7px; display: inline-block; color: var(--sub);
}
.lp-plan-period { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.lp-plan-for { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 6px; }
.lp-plan-desc { font-size: 13px; color: var(--sub); line-height: 1.6; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.lp-plan-includes {
  font-size: 11px; font-weight: 600; color: var(--muted);
  padding: 5px 8px; background: var(--surface); border-radius: 4px;
  margin-bottom: 4px; list-style: none !important;
}
.lp-plan-includes::before { content: none !important; }
.lp-plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 24px; padding: 0;
}
.lp-plan-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); line-height: 1.4;
}
.lp-plan-features li::before { content: none; }
.chk-ico { flex-shrink: 0; }
.lp-plan-cta {
  display: block; width: 100%; margin-top: 18px; padding: 12px;
  border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center;
  cursor: pointer; border: 1.5px solid rgba(0,82,255,0.22); transition: opacity .15s;
  background: rgba(0,82,255,0.08); color: var(--blue);
}
.lp-plan-cta:hover { opacity: 0.8; }
.lp-plan-cta-pro { background: var(--blue); color: #fff; border-color: var(--blue); }
.lp-plan-soon {
  font-size: 12px; color: var(--placeholder); text-align: center;
  padding: 10px 0 0; font-weight: 400;
}

/* ── FAQ ── */
.faq-section { padding: var(--section) 0; background: #fff; border-top: 1px solid var(--border); }
.faq-list { max-width: 680px; margin: 48px auto 0; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4;
  transition: color 120ms;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform 250ms ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0; padding: 0 0 20px;
  font-size: 14px; color: var(--sub); line-height: 1.7;
}

/* ── FOOTER ── */
footer { padding: 56px 0 28px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 220px 1fr; gap: 56px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--sub); line-height: 1.6; margin-bottom: 16px; max-width: 200px; }
.footer-cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: var(--sub); margin-bottom: 8px; transition: color 150ms; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--muted); transition: color 150ms; }
.footer-legal a:hover { color: var(--blue); }

/* ── FEATURE MODAL ── */
.feat-modal-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-card);
  width: 92%; max-width: 520px; max-height: 88vh; overflow-y: auto;
  padding: 28px 24px 24px; position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(12px) scale(0.97);
  transition: transform .22s cubic-bezier(0.34,1.56,0.64,1);
}
.auth-overlay.open .feat-modal-box { transform: translateY(0) scale(1); }
.feat-modal-eyebrow { font-size: 11px; font-weight: 600; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.feat-modal-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.feat-modal-preview { margin-bottom: 16px; }
.feat-modal-desc { font-size: 14px; color: var(--sub); line-height: 1.7; margin-bottom: 20px; }

/* ── AUTH OVERLAY — shared open/close base ── */
.auth-overlay {
  position: fixed; inset: 0; z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.22s;
  display: flex; align-items: center; justify-content: center;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }

/* ── #auth-overlay — full-page split layout ── */
#auth-overlay {
  width: 100vw; height: 100vh; overflow: hidden;
  align-items: stretch; justify-content: flex-start;
}

/* ── Left panel (form) ── */
/* flex-start + margin:auto on the inner: centers when the form is short,
   scrolls correctly when tall (align-items:center clips overflow at the top) */
.auth-left {
  flex: 1; background: #fff;
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; overflow-y: auto; min-width: 0;
}
.auth-left-inner {
  width: 100%; max-width: 340px; padding: 28px 24px 32px;
  margin: auto;
}
.auth-close {
  position: absolute; top: 20px; left: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #E8EBF0; background: #F8F9FB; color: #9AA0AB;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 150ms, border-color 150ms; z-index: 2;
}
.auth-close:hover { background: #EFF0F3; border-color: #d0d5dd; }
.auth-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #0A0B0D; margin-bottom: 16px; }
.auth-heading    { font-size: 22px; font-weight: 800; color: #0A0B0D; margin-bottom: 3px; letter-spacing: -0.025em; }
.auth-subheading { font-size: 13.5px; font-weight: 500; color: #9AA0AB; margin-bottom: 16px; }
.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #F4F5F7; border-radius: 12px; padding: 3px;
  margin-bottom: 16px; gap: 0;
}
.auth-tab {
  padding: 6px 9px; border: none; border-radius: 9px; font-size: 12.5px; font-weight: 600;
  cursor: pointer; background: transparent; color: #9AA0AB; font-family: inherit;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
}
.auth-tab.active { background: #fff; color: #0A0B0D; box-shadow: 0 1px 6px rgba(0,0,0,0.10); }
.auth-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.auth-field  { display: flex; flex-direction: column; }
.auth-input {
  padding: 11px 14px; border: 1.5px solid #E8EBF0; border-radius: 12px;
  font-size: 15px; font-weight: 600; background: #fff; color: #0A0B0D;
  transition: border-color 150ms, box-shadow 150ms, background 150ms; outline: none;
  font-family: inherit; width: 100%; box-sizing: border-box;
}
.auth-input:focus { border-color: #0052FF; box-shadow: 0 0 0 3px rgba(0,82,255,0.10); }
.auth-input--valid   { border-color: #0A8054 !important; background: #F0FDF8 !important; }
.auth-input--invalid { border-color: #EF4444 !important; background: #FEF2F2 !important; }
.auth-input--strong  { border-color: #0A8054 !important; }
.auth-error   { margin-top: 10px; padding: 10px 13px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; font-size: 12.5px; color: #EF4444; line-height: 1.45; }
.auth-success { margin-top: 12px; padding: 16px; background: #F0FDF8; border: 1px solid #6ee7b7; border-radius: 12px; font-size: 13px; color: #0A8054; line-height: 1.6; text-align: center; }
.auth-submit  { width: 100%; margin-top: 12px; padding: 12px; border-radius: 100px; background: #0052FF; color: #fff; font-size: 15px; font-weight: 800; border: none; cursor: pointer; font-family: inherit; box-shadow: 0 4px 14px rgba(0,82,255,0.28); transition: background 150ms, box-shadow 150ms; }
.auth-submit:hover:not(:disabled) { background: #0047E0; box-shadow: 0 6px 20px rgba(0,82,255,0.32); }
.auth-submit:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.auth-footer-note { text-align: center; font-size: 12.5px; color: #9AA0AB; margin-top: 12px; }
.auth-switch-btn  { background: none; border: none; color: #0052FF; font-weight: 700; font-size: 12.5px; cursor: pointer; padding: 0; font-family: inherit; }
.auth-switch-btn:hover { text-decoration: underline; }

/* ── Password requirements box ── */
.auth-pw-req-box { border: 1.5px solid #EFF0F3; border-radius: 12px; padding: 12px 14px; background: #FAFBFF; margin-top: 6px; }
.auth-pw-req-title { font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; color: #9AA0AB; text-transform: uppercase; margin-bottom: 10px; }
.auth-pw-req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; margin-bottom: 10px; }
.pw-req-item { display: flex; align-items: center; gap: 7px; }
.pw-req-circle {
  width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid #DEE1E7; background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.pw-req-circle--met { background: #0A8054; border-color: #0A8054; animation: checkPop 0.25s ease; }
.pw-req-circle--met::after { content: ''; display: block; width: 4px; height: 7px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translate(-1px,-1px); }
@keyframes checkPop { 0% { transform:scale(0.7); } 60% { transform:scale(1.15); } 100% { transform:scale(1); } }
.pw-req-label { font-size: 12px; font-weight: 600; color: #5B616E; }
.pw-strength-track { height: 3px; background: #EFF0F3; border-radius: 2px; overflow: hidden; }
.pw-strength-fill  { height: 100%; width: 0; border-radius: 2px; transition: width 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s ease; }
.pw-strength-label { font-size: 11px; font-weight: 600; color: #9AA0AB; margin-top: 5px; }

/* ── Age checkbox ── */
.auth-age-checkbox {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; min-width: 18px; border-radius: 5px;
  border: 1.5px solid #DEE1E7; background: #fff; cursor: pointer;
  transition: all 0.15s ease; position: relative; margin-top: 1px;
}
.auth-age-checkbox:checked { background: #0052FF; border-color: #0052FF; }
.auth-age-checkbox:checked::after {
  content: ''; display: block; position: absolute;
  left: 5px; top: 1px; width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ── Right panel (dark slider) ── */
.auth-right {
  flex: 1; background: #06070A; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-width: 0;
}
.auth-right::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,82,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,82,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.auth-right::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,255,0.18) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}

/* ── Inner centered column ── */
.auth-right-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: 100%; max-width: 480px;
  padding: 48px;
}

/* ── Slides container ── */
.auth-slides {
  position: relative;
  width: 100%;
  height: 320px;
  margin-bottom: 32px;
}
.auth-slide {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
  animation: authSlideIn 0.45s cubic-bezier(0.16,1,0.3,1);
}
.auth-slide--active { display: flex; }
@keyframes authSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.auth-slide-ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(0,82,255,0.20);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
}
.auth-slide-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  color: #0052FF; text-transform: uppercase; margin-bottom: 12px;
}
.auth-slide-h2 {
  font-size: 30px; font-weight: 800; color: #fff;
  letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 14px;
}
.auth-slide-body {
  font-size: 15px; font-weight: 500; line-height: 1.65;
  color: rgba(255,255,255,0.52); margin-bottom: 24px;
}
.auth-slide-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.auth-slide-pills span {
  border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.7);
}

/* ── Slider nav (dots left, arrows right) ── */
.auth-slider-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.auth-slider-dots { display: flex; align-items: center; gap: 6px; }
.auth-slider-dot {
  height: 8px; border-radius: 100px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.25); width: 8px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.auth-slider-dot--active { background: #0052FF; width: 26px; }
.auth-slider-arrows { display: flex; gap: 8px; }
.auth-slider-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, color 150ms;
}
.auth-slider-arrow:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ── Social proof strip ── */
.auth-social-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
}
.auth-avatar-stack { display: flex; }
.auth-avatar {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid #06070A;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff;
  margin-left: -6px; flex-shrink: 0;
}
.auth-avatar:first-child { margin-left: 0; }

/* ── Mobile: hide right panel ── */
@media (max-width: 768px) {
  .auth-right { display: none; }
  .auth-left { flex: unset; width: 100%; }
}

/* ── Listing preview section ── */
.listing-preview-section {
  padding: var(--section) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.lp-preview-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.lp-preview-left { display: flex; flex-direction: column; gap: 10px; }
.lp-preview-img-wrap { position: relative; }
.lp-preview-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; display: block;
  border: 1px solid var(--border);
}
.lp-preview-score-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
}
.lp-preview-score-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 6px; text-align: center;
}
.lp-preview-score-val { font-size: 14px; font-weight: 700; line-height: 1; }
.lp-preview-score-lbl { font-size: 9px; color: var(--muted); margin-top: 3px; font-weight: 500; }

.lp-preview-right { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.lp-preview-eyebrow {
  font-size: 10px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.lp-preview-title {
  font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3;
  margin: 0;
}
.lp-preview-price-row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.lp-preview-price { font-size: 22px; font-weight: 700; color: var(--blue); letter-spacing: -0.5px; }
.lp-preview-range { font-size: 12px; color: var(--sub); font-weight: 500; }
.lp-preview-conf  { font-size: 11px; color: var(--muted); margin-left: auto; }

.lp-preview-block { display: flex; flex-direction: column; gap: 5px; }
.lp-preview-block-label {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.lp-preview-desc {
  font-size: 12px; color: var(--sub); line-height: 1.6; margin: 0;
}
.lp-preview-tip {
  font-size: 12px; color: var(--sub); line-height: 1.6; margin: 0;
  padding: 8px 10px; background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 8px;
}
.lp-preview-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-preview-tag {
  font-size: 11px; font-weight: 500; color: var(--sub);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 3px 10px;
}
.lp-preview-disclaimer {
  font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: 0;
}
.hero-disclaimer {
  font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.5;
}

/* ── Preview info marks ── */
.lp-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--border); color: var(--sub);
  border-radius: 50%; font-size: 10px; font-weight: 800;
  cursor: default; position: relative; vertical-align: middle;
  line-height: 1;
}
.lp-info::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%; transform: translateX(-50%);
  background: #18181b; color: #fff;
  font-size: 11px; font-weight: 400; line-height: 1.5;
  padding: 7px 10px; border-radius: 7px;
  width: 200px; white-space: normal; text-align: left;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms; z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.lp-info::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #18181b;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms; z-index: 200;
}
.lp-info:hover::after,
.lp-info:hover::before { opacity: 1; }
/* flip tooltip to the right when near left edge */
.lp-info.lp-info--right::after { left: 0; transform: none; }
.lp-info.lp-info--right::before { left: 7px; transform: none; }
/* flip tooltip to the left when near right edge */
.lp-info.lp-info--left::after { left: auto; right: 0; transform: none; }
.lp-info.lp-info--left::before { left: auto; right: 7px; transform: none; }

@media(max-width:768px) {
  .lp-preview-card { grid-template-columns: 1fr; padding: 18px; gap: 20px; }
  .lp-preview-img { aspect-ratio: 4/3; }
  .lp-preview-price { font-size: 22px; }
  .lp-preview-title { font-size: 16px; }
}

/* ── Ticker strip ── */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-wrap {
  overflow: hidden;
  background: #0052FF;
  padding: 11px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 55s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  padding: 0 28px;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '·';
  margin-left: 28px;
  opacity: 0.4;
}

/* ── What you also get strip ── */
.also-get {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e4e4e7;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.also-get-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #52525b;
  line-height: 1.4;
}
.also-get-item svg { flex-shrink: 0; color: #0052FF; }

/* ── MOBILE ── */
@media(max-width:768px){
  .container { padding: 0 16px; }

  /* Nav */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(14px + env(safe-area-inset-top)) 16px 14px;
    height: auto;
    min-height: calc(60px + env(safe-area-inset-top));
  }
  .nav-links { display: none; }
  .nav-right { gap: 8px; }
  .nav-right .btn-outline { display: inline-flex; height: 36px; font-size: 13px; padding: 0 12px; }
  .nav-right .btn-primary { height: 36px; font-size: 13px; padding: 0 12px; }

  /* ── HERO — mobile ── */
  .hero { padding: calc(104px + env(safe-area-inset-top)) 0 0; }
  .hero-centered { padding-bottom: 32px; }
  .hero-badge { font-size: 11px; padding: 4px 12px; margin-top: 0; margin-bottom: 12px; }
  .hero-title { font-size: 46px; letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; }
  .hero-sub { max-width: 320px; font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 16px; }
  .hero-ctas .btn-primary-lg, .hero-ctas .btn-outline { width: 100%; justify-content: center; height: 48px; font-size: 16px; }
  .hero-disclaimer { text-align: center; }
  .hero-note { margin-top: 6px; font-size: 10px; }
  .how-bridge { display: none; }

  /* ── SECTIONS ── */
  .how-wrap { padding: 56px 0 32px; }
  .tools-wrap, .pricing-section, .listing-preview-section { padding: 32px 0; }
  .sec-title { font-size: 20px; letter-spacing: -0.3px; margin-bottom: 8px; }
  .sec-sub { font-size: 12px; margin-bottom: 20px; line-height: 1.6; }
  .sec-lbl { margin-bottom: 6px; }

  /* ── STEPS ── */
  .how-wrap .sec-title { font-size: 24px; font-weight: 700; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { padding: 12px 14px; flex-direction: row; align-items: flex-start; gap: 8px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; margin-top: 2px; width: 28px; height: 28px; font-size: 12px; }
  .step-title { font-size: 13px; margin-bottom: 2px; }
  .step-desc { font-size: 12px; line-height: 1.5; }

  /* ── TOOLS GRID ── */
  .tools-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .tool { padding: 14px 16px; }
  .tool-preview { height: 88px; margin-bottom: 10px; }
  .tool-name { font-size: 14px; margin-bottom: 3px; }
  .tool-desc { font-size: 13px; margin-bottom: 8px; line-height: 1.5; }
  .tool-lnk { font-size: 13px; min-height: 36px; align-items: center; }

  /* ── CALCULATORS ── */
  .calc-strip { margin-top: 12px; }
  .calc-strip-head { padding: 12px 14px 10px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .calc-strip-title { font-size: 14px; }
  .calc-strip-sub { font-size: 12px; }
  .calc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 14px; overflow-x: unset; flex-wrap: unset; }
  .calc-chip { min-width: unset; flex: unset; font-size: 11px; padding: 8px 10px; min-height: 44px; }
  .calc-chip-desc { font-size: 10px; }

  /* ── ALSO-GET ── */
  .also-get { grid-template-columns: 1fr; margin-top: 12px; }
  .also-get-item { padding: 10px 14px; font-size: 12px; min-height: 40px; gap: 8px; }

  /* ── PRICING ── */
  .pricing-section { padding: 32px 0; }
  .lp-pricing-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .lp-plan { padding: 20px 16px 16px; }
  .lp-plan-featured { order: -1; }
  .lp-plan-elite-card { order: 1; }
  .lp-plan-price { font-size: 30px; letter-spacing: -1px; }
  .lp-plan-price span { font-size: 14px; margin-top: 6px; }
  .lp-plan-desc { font-size: 13px; margin-bottom: 14px; padding-bottom: 14px; }
  .lp-plan-features { gap: 7px; margin-bottom: 16px; }
  .lp-plan-features li { font-size: 13px; }
  .lp-plan-soon { padding: 8px 0 0; }

  /* ── LISTING PREVIEW ── */
  .lp-preview-card { grid-template-columns: 1fr; padding: 14px; gap: 14px; }
  .lp-preview-img { height: 180px; width: 100%; object-fit: cover; aspect-ratio: unset; }
  .lp-preview-price { font-size: 20px; }
  .lp-preview-title { font-size: 14px; }
  .lp-preview-conf { margin-left: 0; font-size: 11px; }
  .lp-preview-desc { font-size: 12px; line-height: 1.55; }
  .lp-preview-score-val { font-size: 14px; }

  /* ── FOOTER ── */
  footer { padding: 28px 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { font-size: 14px; }
  .footer-tagline { max-width: 100%; font-size: 12px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
  .footer-col-title { font-size: 10px; margin-bottom: 10px; }
  .footer-col a { font-size: 12px; margin-bottom: 7px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 14px; }
  .footer-copy, .footer-legal a { font-size: 11px; }

  /* ── AUTH ── */
  .auth-modal { padding: 24px 20px 22px; border-radius: 18px; width: 96%; }
  .auth-heading { font-size: 20px; }
  .auth-input { font-size: 16px !important; }
  .auth-submit { font-size: 15px; }
}

@media (max-width: 640px) {
  input, input[type="text"], input[type="email"], input[type="password"],
  input[type="number"], input[type="search"], input[type="tel"],
  input[type="url"], input[type="file"], textarea, select,
  .input, .select-input, .desc-area, .search-input, .auth-input,
  .tool-input { font-size: 16px !important; }
}

/* ── Results Preview Modal ── */
.prev-modal {
  background: #fff;
  border-radius: 16px;
  width: min(900px, 96vw);
  height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.prev-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #e4e4e7;
  flex-shrink: 0;
}
.prev-modal-label {
  font-size: 11px;
  font-weight: 700;
  color: #71717a;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.prev-iframe {
  flex: 1;
  border: none;
  width: 100%;
  display: block;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .prev-modal { border-radius: 12px; height: 92vh; width: 100vw; }
  .prev-modal-bar { padding: 10px 14px; }
}
