/* ===========================================================================
   Revenuity AI Audit — design system
   Brand tokens extracted from ../revenuity-landingpage
   green #16a34a · bright #22c55e · dark #15803d · gray #1f2937 · light #f3f4f6
   fonts: Montserrat (body) · Nunito Sans (display)
   ========================================================================= */

:root {
  --green: #16a34a;
  --green-bright: #22c55e;
  --green-dark: #15803d;
  --green-tint: #ecfdf3;
  --gray: #1f2937;
  --gray-2: #374151;
  --gray-mid: #6b7280;
  --gray-soft: #9ca3af;
  --gray-light: #f3f4f6;
  --gray-50: #f9fafb;
  --border: #e5e7eb;
  --white: #ffffff;

  --amber: #f59e0b;
  --amber-tint: #fffbeb;
  --red: #ef4444;
  --red-tint: #fef2f2;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 4px 16px rgba(16, 24, 40, .08);
  --shadow-lg: 0 24px 48px -12px rgba(16, 24, 40, .18);
  --maxw: 1180px;

  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Nunito Sans", "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--gray);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

.muted { color: var(--gray-mid); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--green); background: var(--green-tint);
  padding: 6px 12px; border-radius: 999px;
}

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
}
.nav .logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--gray-2); font-weight: 600; font-size: 15px; }
.nav-links a:not(.btn):hover { color: var(--green); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: all .2s ease; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: #fff; color: var(--gray); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.hero-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(to right, rgba(31,41,55,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,41,55,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(60% 50% at 50% 0%, #000, transparent);
}
.hero-blob {
  position: absolute; top: -160px; right: -160px; z-index: -1;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.20), rgba(34,197,94,0) 70%);
  filter: blur(20px);
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px); font-weight: 900; letter-spacing: -.02em; margin-top: 18px;
}
.hero h1 .accent { color: var(--green); }
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: var(--gray-2); max-width: 680px; margin: 18px auto 0; }
.hero-cta { margin-top: 30px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.trust-row { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; color: var(--gray-mid); font-size: 14px; }
.avatars { display: flex; }
.avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }

/* ---- Sections ---- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { font-size: 17px; color: var(--gray-mid); }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.step .num { width: 38px; height: 38px; border-radius: 10px; background: var(--green-tint); color: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display); margin-bottom: 14px; }
.step h3 { font-size: 19px; }
.step p { color: var(--gray-mid); margin: 0; font-size: 15px; }

/* ---- Personas explainer chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.chip { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--gray-2); }
.chip .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; }

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all .2s; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-tint), var(--shadow); }
.price-card .tier-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.price-card .tier-tag { color: var(--gray-mid); font-size: 13.5px; min-height: 38px; }
.price-card .price { font-family: var(--font-display); font-weight: 900; font-size: 40px; margin: 10px 0 2px; }
.price-card .price small { font-size: 15px; font-weight: 600; color: var(--gray-mid); }
.price-card .estimate { font-size: 13px; color: var(--green-dark); background: var(--green-tint); border-radius: 8px; padding: 4px 10px; display: inline-block; margin-bottom: 14px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--gray-2); padding: 5px 0; }
.price-card li svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }
.badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price-card { position: relative; }

/* ---- Form ---- */
.form-wrap { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 7px; color: var(--gray); }
.field .hint { font-weight: 500; color: var(--gray-mid); font-size: 13px; }
.field input[type=text], .field input[type=url], .field input[type=email], .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--gray); background: #fff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.field textarea { resize: vertical; min-height: 92px; }
.field .err { color: var(--red); font-size: 13px; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .err { display: block; }
.entry-url-row { display: flex; gap: 8px; margin-top: 8px; }
.entry-url-row .btn-remove { background: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 0 12px; cursor: pointer; color: var(--gray-mid); }
.add-url { background: none; border: 1px dashed var(--border); color: var(--green); border-radius: var(--radius); padding: 9px 14px; cursor: pointer; font-weight: 600; font-size: 14px; }

.tier-select { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tier-option { position: relative; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: all .15s; }
.tier-option:hover { border-color: var(--green-bright); }
.tier-option.selected { border-color: var(--green); background: var(--green-tint); box-shadow: 0 0 0 1px var(--green); }
.tier-option input { position: absolute; opacity: 0; }
.tier-option .to-name { font-weight: 800; font-family: var(--font-display); }
.tier-option .to-price { float: right; font-weight: 800; color: var(--green-dark); }
.tier-option .to-desc { font-size: 13px; color: var(--gray-mid); }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-2); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green); }

.form-alert { background: var(--red-tint); border: 1px solid #fecaca; color: #b91c1c; padding: 12px 14px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; display: none; }
.form-alert.show { display: block; }

/* ---- Example results preview (landing) ---- */
.demo-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-card .demo-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.demo-personas { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; padding: 24px; }

/* ===========================================================================
   Results pages
   ========================================================================= */
.results-hero { background: var(--gray); color: #fff; padding: 40px 0 36px; }
.results-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 36px); }
.results-hero .sub { color: #cbd5e1; }
.results-hero a { color: var(--green-bright); }

.scorewrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.score-ring { --val: 0; --col: var(--green-bright);
  width: 130px; height: 130px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--col) calc(var(--val) * 1%), rgba(255,255,255,.16) 0);
  display: flex; align-items: center; justify-content: center;
}
.score-ring .inner { width: 104px; height: 104px; border-radius: 50%; background: var(--gray); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring .num { font-family: var(--font-display); font-weight: 900; font-size: 38px; color: #fff; line-height: 1; }
.score-ring .lbl { font-size: 11px; color: #cbd5e1; text-transform: uppercase; letter-spacing: .05em; }

.results-body { padding: 40px 0 80px; }
.res-section { margin-bottom: 48px; }
.res-section > h2 { font-size: 24px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-light); margin-bottom: 22px; }

.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; text-transform: capitalize; }
.tag-green { background: var(--green-tint); color: var(--green-dark); }
.tag-gray { background: var(--gray-light); color: var(--gray-2); }
.tag-amber { background: var(--amber-tint); color: #b45309; }
.tag-red { background: var(--red-tint); color: #b91c1c; }

/* severity / effort badges */
.sev { font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px; text-transform: uppercase; letter-spacing: .03em; }
.sev-critical { background: var(--red); color: #fff; }
.sev-high { background: #f97316; color: #fff; }
.sev-medium { background: var(--amber); color: #fff; }
.sev-low { background: var(--gray-soft); color: #fff; }
.effort { font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: var(--gray-light); color: var(--gray-2); }

/* verdict badge */
.verdict { font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.verdict-converted { background: var(--green-tint); color: var(--green-dark); }
.verdict-on_fence { background: var(--amber-tint); color: #b45309; }
.verdict-bounced { background: var(--red-tint); color: #b91c1c; }

/* persona cards */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.persona-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; cursor: pointer; transition: all .15s; box-shadow: var(--shadow-sm); }
.persona-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gray-soft); }
.persona-card .pc-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.persona-card .pc-title { font-size: 13px; color: var(--gray-mid); min-height: 34px; }
.persona-card .pc-sum { font-size: 14px; color: var(--gray-2); margin: 10px 0; }
.persona-card .pc-meta { font-size: 12.5px; color: var(--gray-soft); }

/* analysis report prose */
.report-prose { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.report-prose h3 { font-size: 19px; margin-top: 24px; }
.report-prose h3:first-child { margin-top: 0; }
.report-prose p { color: var(--gray-2); }

/* friction / recommendation list */
.rec { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.rec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.rec-head .pri { width: 28px; height: 28px; border-radius: 8px; background: var(--gray); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display); flex: none; }
.rec-head h4 { margin: 0; font-size: 17px; }
.rec .cs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.rec .cs .box { padding: 12px; border-radius: 8px; font-size: 13.5px; }
.rec .cs .cur { background: var(--red-tint); border: 1px solid #fecaca; }
.rec .cs .sug { background: var(--green-tint); border: 1px solid #bbf7d0; }
.rec .cs .box .k { font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: .04em; color: var(--gray-mid); display: block; margin-bottom: 4px; }
.rec .helps { font-size: 13px; color: var(--gray-mid); margin-top: 10px; }

/* what's working */
.working-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.working { background: var(--green-tint); border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 18px; }
.working .el { font-weight: 800; font-family: var(--font-display); color: var(--green-dark); display: flex; gap: 8px; align-items: center; }
.working .el svg { width: 20px; height: 20px; flex: none; }
.working .ev { font-size: 14px; color: var(--gray-2); margin-top: 6px; }

/* ---- Static-audit page card ---- */
.page-audit { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.page-audit .pa-head { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.page-audit .pa-url { font-weight: 700; word-break: break-all; }
.page-audit .pa-body { padding: 22px; }
.shots { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-bottom: 22px; }
.shots figure { margin: 0; }
.shots img { width: 100%; border: 1px solid var(--border); border-radius: 8px; display: block; }
.shots figcaption { font-size: 12px; color: var(--gray-mid); text-align: center; margin-top: 6px; }
.findings h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .03em; margin: 18px 0 10px; color: var(--gray-mid); }
.finding { border-left: 3px solid var(--border); padding: 8px 0 8px 14px; margin-bottom: 10px; }
.finding.f-fail { border-left-color: var(--red); }
.finding.f-partial { border-left-color: var(--amber); }
.finding.f-pass { border-left-color: var(--green); }
.finding .fc { font-weight: 700; font-size: 14.5px; }
.finding .fo { font-size: 14px; color: var(--gray-2); }
.finding .fr { font-size: 14px; color: var(--green-dark); margin-top: 3px; }
.scorepill { font-family: var(--font-display); font-weight: 900; font-size: 22px; padding: 4px 14px; border-radius: 10px; }

/* ===========================================================================
   Journey viewer (§9.2 §3 / §17.13)
   ========================================================================= */
.jv-top { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; background: var(--gray-50); }
.jv-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.jv-tab { padding: 7px 13px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--gray-2); }
.jv-tab.active { background: var(--gray); color: #fff; border-color: var(--gray); }
.jv-subtabs { display: flex; gap: 6px; flex-wrap: wrap; }
.jv-subtab { padding: 5px 11px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 12px; color: var(--gray-2); }
.jv-subtab.active { border-color: var(--green); color: var(--green-dark); background: var(--green-tint); }

.timeline { display: flex; align-items: center; gap: 7px; padding: 16px 20px; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.tl-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; box-shadow: 0 0 0 1px var(--border); transition: transform .12s; }
.tl-dot:hover { transform: scale(1.18); }
.tl-dot.active { box-shadow: 0 0 0 2px var(--gray); transform: scale(1.18); }
.tl-up { background: var(--green); }
.tl-neutral { background: var(--amber); }
.tl-down { background: var(--red); }
.tl-bounce { background: var(--red); }
.tl-convert { background: var(--green-dark); }

.jv-panels { display: grid; grid-template-columns: 60% 40%; }
.jv-shot { background: #0f172a; display: flex; align-items: flex-start; justify-content: center; padding: 18px; min-height: 360px; }
.jv-shot img { max-width: 100%; border-radius: 6px; box-shadow: var(--shadow-lg); }
.jv-shot .noimg { color: #64748b; align-self: center; font-size: 14px; }
.jv-info { padding: 22px; border-left: 1px solid var(--border); }
.jv-info .step-lbl { font-size: 13px; color: var(--gray-mid); }
.jv-info .step-url { font-size: 12.5px; color: var(--gray-soft); word-break: break-all; margin-bottom: 14px; }
.monologue { background: var(--gray-50); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 14px 16px; font-style: italic; color: var(--gray-2); margin-bottom: 16px; }
.meters { margin-bottom: 16px; }
.meter { margin-bottom: 9px; }
.meter .mlabel { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; margin-bottom: 3px; }
.meter .track { height: 8px; background: var(--gray-light); border-radius: 999px; overflow: hidden; }
.meter .fill { height: 100%; border-radius: 999px; transition: width .25s; }
.jv-list { margin: 0 0 14px; padding-left: 18px; }
.jv-list li { font-size: 13.5px; margin-bottom: 4px; }
.jv-list.q li { color: #b45309; }
.jv-list.o li { color: #b91c1c; }
.jv-block-label { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; color: var(--gray-mid); margin-bottom: 5px; }
.decision { background: var(--green-tint); border: 1px solid #bbf7d0; border-radius: 8px; padding: 12px 14px; font-size: 14px; }
.decision.act-bounce { background: var(--red-tint); border-color: #fecaca; }
.decision.act-scroll, .decision.act-click { background: var(--gray-50); border-color: var(--border); }
.jv-nav { display: flex; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--border); }

/* ---- confirmation / status ---- */
.status-card { max-width: 620px; margin: 60px auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; text-align: center; }
.status-card .pulse { width: 64px; height: 64px; border-radius: 50%; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.status-card .pulse svg { width: 30px; height: 30px; color: var(--green); }
.spinner { width: 46px; height: 46px; border: 4px solid var(--green-tint); border-top-color: var(--green); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- footer ---- */
.site-footer { background: var(--gray); color: #cbd5e1; padding: 40px 0 28px; margin-top: 40px; }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.site-footer a { color: #cbd5e1; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.disclaimer { font-size: 12.5px; color: var(--gray-soft); max-width: 720px; margin: 14px auto 0; }
.results-disclaimer { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; font-size: 13px; color: var(--gray-mid); margin-top: 30px; }

/* ---- toast ---- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--gray); color: #fff; padding: 12px 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; transition: all .25s; z-index: 100; font-size: 14px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .jv-panels { grid-template-columns: 1fr; }
  .jv-info { border-left: none; border-top: 1px solid var(--border); }
  .tier-select { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .rec .cs { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 520px) {
  .pricing { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* ===========================================================================
   LANDING v2 + WIZARD  (redesign — distinctive, reference-aligned)
   ========================================================================= */
:root {
  --ink: #0c1322;          /* deep charcoal-navy for dark sections */
  --ink-2: #131c2e;
  --ink-soft: #94a3b8;
  --ink-line: rgba(255,255,255,.09);
}

/* transparent header that sits over the hero, solidifies on scroll */
.site-header.over { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.site-header.over.stuck { background: rgba(255,255,255,.9); border-bottom-color: var(--border); backdrop-filter: saturate(150%) blur(10px); }
body.has-fixed-header { padding-top: 0; }

/* ---------- scroll reveal (JS-gated: visible by default for no-JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- HERO v2 (asymmetric) ---------- */
.lp-hero { position: relative; padding: 132px 0 72px; overflow: hidden; background: #fff; }
.lp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 80% at 78% 12%, #000 30%, transparent 72%);
          mask-image: radial-gradient(120% 80% at 78% 12%, #000 30%, transparent 72%);
}
.lp-hero::after {
  content: ""; position: absolute; top: -180px; right: -120px; width: 620px; height: 620px; z-index: 0;
  background: radial-gradient(circle, rgba(34,197,94,.18), transparent 65%);
  filter: blur(8px); pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lp-hero-copy { max-width: 560px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--green-dark); background: var(--green-tint); border: 1px solid #bbf7d0; padding: 6px 13px; border-radius: 999px; }
.kicker .live { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: ping 1.8s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.55)} 70%{box-shadow:0 0 0 8px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }
.lp-hero h1 { font-size: clamp(38px, 5.2vw, 62px); font-weight: 900; letter-spacing: -.025em; line-height: 1.04; margin: 22px 0 0; }
.lp-hero h1 .u { position: relative; color: var(--green); white-space: nowrap; }
.lp-hero h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em; background: var(--green-bright); opacity: .32; border-radius: 4px; }
.lp-hero p.lead { font-size: clamp(16.5px, 1.5vw, 19px); color: var(--gray-2); margin-top: 20px; line-height: 1.65; }
.lp-hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lp-hero-meta { margin-top: 26px; display: flex; align-items: center; gap: 14px; color: var(--gray-mid); font-size: 13.5px; }
.lp-hero-meta .avatars img { width: 36px; height: 36px; }

/* signature hero visual — buyer's-eye browser mock */
.mock { position: relative; }
.mock .browser { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1400px) rotateY(-8deg) rotateX(2deg); transition: transform .5s ease; }
.mock:hover .browser { transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); }
.mock .bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: var(--gray-50); border-bottom: 1px solid var(--border); }
.mock .bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock .bar .url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 7px; padding: 5px 12px; font-size: 12px; color: var(--gray-mid); font-family: var(--font-body); }
.mock .viewport { position: relative; height: 300px; background: linear-gradient(180deg,#fff, #f7faf8); overflow: hidden; }
/* faux site content behind */
.mock .faux { padding: 22px; }
.mock .faux .fh { height: 16px; width: 55%; background: var(--gray-light); border-radius: 5px; }
.mock .faux .fsub { height: 10px; width: 72%; background: #eef0f3; border-radius: 5px; margin-top: 12px; }
.mock .faux .fsub.s2 { width: 60%; }
.mock .faux .fbtn { height: 30px; width: 130px; background: var(--green); opacity: .25; border-radius: 7px; margin-top: 18px; }
.mock .faux .fimg { height: 96px; background: #eceef1; border-radius: 10px; margin-top: 18px; }
.mock .scanline { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--green-bright), transparent); box-shadow: 0 0 14px 2px rgba(34,197,94,.45); animation: scan 3.4s cubic-bezier(.6,0,.4,1) infinite; }
@keyframes scan { 0%{top:6%;opacity:0} 12%{opacity:1} 88%{opacity:1} 100%{top:94%;opacity:0} }
/* persona thought card floating on top */
.lp-hero-visual { padding-right: 0; }
/* Thought card pokes past the browser mock's right edge on wide screens; a media
   query below pulls it inside the mock on narrower windows so it never clips. */
.mock .think { position: absolute; right: -28px; bottom: 16px; width: 300px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px; }
.mock .think .who { display: flex; align-items: center; gap: 11px; }
.mock .think .who .mono { width: 38px; height: 38px; font-size: 16px; }
.mock .think .who .n { font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 1.15; color: var(--gray); }
.mock .think .who .t { font-size: 12px; color: var(--gray-mid); line-height: 1.25; }
.mock .think .quote { font-size: 14px; font-style: italic; color: var(--gray); margin: 13px 0 15px; line-height: 1.5; }
.mock .think .m { margin-bottom: 9px; }
.mock .think .m .lab { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-2); margin-bottom: 4px; }
.mock .think .m .tr { height: 6px; background: var(--gray-light); border-radius: 999px; overflow: hidden; }
.mock .think .m .fl { height: 100%; border-radius: 999px; width: 0; transition: width 1.1s cubic-bezier(.16,1,.3,1); }
.mock .pin { position: absolute; left: 30px; top: 26px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 6px; }
.mock .pin .c { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }

/* ---------- section scaffolding v2 ---------- */
.sec { padding: 84px 0; }
.sec.tight { padding: 64px 0; }
.section-dark { background: var(--ink); color: #cbd5e1; }
.section-dark h2, .section-dark h3 { color: #fff; }
.lp-head { max-width: 680px; margin-bottom: 52px; }
.lp-head.ctr { margin-left: auto; margin-right: auto; text-align: center; }
.lp-head .eyebrow2 { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.section-dark .lp-head .eyebrow2 { color: var(--green-bright); }
.lp-head h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.02em; margin: 12px 0 0; }
.lp-head p { font-size: 18px; color: var(--gray-mid); margin-top: 14px; }
.section-dark .lp-head p { color: var(--ink-soft); }

/* ---------- problem strip ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.problem-cell { padding: 30px 28px; border-right: 1px solid var(--border); }
.problem-cell:last-child { border-right: none; }
.problem-cell .big { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--gray); letter-spacing: -.02em; }
.problem-cell .big .unit { font-size: 20px; color: var(--green); }
.problem-cell p { color: var(--gray-mid); font-size: 15px; margin: 6px 0 0; }

/* ---------- how it works — connected steps ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.flow::before { content: ""; position: absolute; top: 27px; left: 14%; right: 14%; height: 2px; background: repeating-linear-gradient(90deg, var(--green) 0 8px, transparent 8px 16px); opacity: .4; }
.flow-step { position: relative; text-align: center; }
.flow-step .ring { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--green); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 22px; margin: 0 auto 18px; box-shadow: 0 0 0 6px #fff; position: relative; z-index: 1; }
.flow-step h3 { font-size: 20px; }
.flow-step p { color: var(--gray-mid); font-size: 15px; }

/* ---------- personas band (the cast) ---------- */
.cast { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cast-card { background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); padding: 22px; transition: transform .25s, border-color .25s; }
.cast-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,.5); }
.cast-card .tier-dot { width: 12px; height: 12px; border-radius: 50%; margin-bottom: 14px; }
.cast-card h3 { font-size: 18px; margin: 0 0 4px; }
.cast-card .role { font-size: 13px; color: var(--ink-soft); }
.cast-card .pat { margin-top: 14px; font-size: 12.5px; color: var(--green-bright); font-weight: 700; }
.cast-card p { font-size: 14px; color: #b6c2d4; margin-top: 8px; }

/* ---------- example deliverable showcase ---------- */
.deliverable { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.deliverable .copy h2 { font-size: clamp(23px, 2.5vw, 31px); }
.deliverable .copy ul { list-style: none; padding: 0; margin: 22px 0 28px; }
.deliverable .copy li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15.5px; color: var(--gray-2); }
.deliverable .copy li svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 1px; }
.report-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.report-mock .rm-top { background: var(--ink); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.report-mock .rm-top .t { color: #fff; font-family: var(--font-display); font-weight: 800; }
.report-mock .rm-top .s { color: var(--ink-soft); font-size: 13px; }
.report-mock .rm-score { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 22px; color: #fff; background: conic-gradient(var(--amber) 52%, rgba(255,255,255,.15) 0); }
.report-mock .rm-score span { width: 50px; height: 50px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.report-mock .rm-body { padding: 22px; display: grid; gap: 12px; }
.rm-persona { display: flex; align-items: center; gap: 14px; padding: 13px 15px; border: 1px solid var(--border); border-radius: 10px; }
.rm-persona .mono { width: 38px; height: 38px; font-size: 15px; }
.rm-persona .nm { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.rm-persona .sm { font-size: 12.5px; color: var(--gray-mid); }
.rm-persona .vb { margin-left: auto; }

/* ---------- pricing dark ---------- */
.price-dark { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.pd-card { position: relative; background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.pd-card:hover { transform: translateY(-5px); }
.pd-card.feat { border-color: var(--green); background: linear-gradient(180deg, rgba(34,197,94,.10), var(--ink-2) 40%); box-shadow: 0 0 0 1px var(--green), 0 30px 60px -20px rgba(34,197,94,.3); }
.pd-card .pop { position: absolute; top: -12px; left: 26px; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.pd-card .nm { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #fff; }
.pd-card .tg { color: var(--ink-soft); font-size: 13.5px; min-height: 40px; }
.pd-card .pr { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: #fff; margin: 8px 0 0; letter-spacing: -.02em; }
.pd-card .pr small { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.pd-card .est { display: inline-block; font-size: 12px; color: var(--green-bright); border: 1px solid rgba(34,197,94,.3); background: rgba(34,197,94,.08); border-radius: 7px; padding: 4px 10px; margin: 12px 0 18px; }
.pd-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.pd-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: #c4cedd; padding: 5px 0; }
.pd-card li svg { flex: none; width: 17px; height: 17px; color: var(--green-bright); margin-top: 2px; }
.btn-on-dark { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn-on-dark:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- feature grid (what you get) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feat-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; margin-bottom: 16px; }
.feat-item .ic svg { width: 24px; height: 24px; }
.feat-item h3 { font-size: 17px; }
.feat-item p { font-size: 14.5px; color: var(--gray-mid); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--gray); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); display: grid; place-items: center; transition: transform .25s, background .2s, color .2s; font-size: 18px; line-height: 1; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--green); color: #fff; border-color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--gray-mid); font-size: 15.5px; padding-bottom: 22px; margin: 0; }

/* ---------- final CTA ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: 0; padding: 88px 0; text-align: center; }
.cta-band::after { content: ""; position: absolute; left: 50%; top: -40%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(34,197,94,.16), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 900; letter-spacing: -.02em; }
.cta-band p { color: var(--ink-soft); font-size: 19px; max-width: 600px; margin: 14px auto 30px; }

/* ===========================================================================
   WIZARD (start.php)
   ========================================================================= */
.wiz-shell { min-height: 100vh; display: grid; grid-template-columns: 380px 1fr; }
.wiz-aside { background: var(--ink); color: #cbd5e1; padding: 48px 40px; position: relative; overflow: hidden; }
.wiz-aside::after { content:""; position:absolute; bottom:-150px; left:-100px; width:420px; height:420px; background:radial-gradient(circle,rgba(34,197,94,.18),transparent 65%); }
.wiz-aside .logo img { height: 32px; }
.wiz-aside h2 { color: #fff; font-size: 24px; margin-top: 40px; }
.wiz-aside .tagline { color: var(--ink-soft); }
.wiz-steps { list-style: none; padding: 0; margin: 40px 0 0; position: relative; z-index: 1; }
.wiz-steps li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; color: var(--ink-soft); transition: color .2s; }
.wiz-steps li .sn { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); display: grid; place-items: center; font-weight: 800; font-size: 13px; font-family: var(--font-display); transition: all .25s; }
.wiz-steps li .st { font-weight: 700; font-size: 15px; line-height: 1.9; }
.wiz-steps li.active { color: #fff; }
.wiz-steps li.active .sn { background: var(--green); border-color: var(--green); color: #fff; }
.wiz-steps li.done .sn { background: rgba(34,197,94,.18); border-color: var(--green); color: var(--green-bright); }
.wiz-steps li.done .sn::after { content: "✓"; }
.wiz-steps li.done .sn .num { display: none; }

.wiz-main { display: flex; flex-direction: column; padding: 0; }
.wiz-progress { height: 4px; background: var(--gray-light); }
.wiz-progress .bar { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-bright)); width: 20%; transition: width .4s cubic-bezier(.16,1,.3,1); }
.wiz-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 32px; }
.wiz-pane { width: 100%; max-width: 560px; display: none; }
.wiz-pane.active { display: block; animation: paneIn .45s cubic-bezier(.16,1,.3,1); }
@keyframes paneIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
.wiz-pane .step-no { font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.wiz-pane h1 { font-size: clamp(26px, 3.2vw, 34px); margin: 8px 0 6px; letter-spacing: -.02em; }
.wiz-pane .sub { color: var(--gray-mid); font-size: 16px; margin-bottom: 28px; }
.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.wiz-nav .btn-back { background: none; border: none; color: var(--gray-mid); font-weight: 700; cursor: pointer; padding: 12px 4px; }
.wiz-nav .btn-back:hover { color: var(--gray); }
.wiz-nav .btn-back[disabled] { visibility: hidden; }

/* tier picker (wizard) */
.tier-cards { display: grid; gap: 12px; }
.tier-pick { position: relative; border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 20px; cursor: pointer; transition: all .18s; display: flex; align-items: center; gap: 16px; }
.tier-pick:hover { border-color: var(--green-bright); }
.tier-pick.sel { border-color: var(--green); background: var(--green-tint); box-shadow: 0 0 0 1px var(--green); }
.tier-pick .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; }
.tier-pick.sel .tick { background: var(--green); border-color: var(--green); }
.tier-pick.sel .tick::after { content: "✓"; color: #fff; font-size: 13px; font-weight: 800; }
.tier-pick .info { flex: 1; }
.tier-pick .info .nm { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.tier-pick .info .dt { font-size: 13px; color: var(--gray-mid); }
.tier-pick .pr { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--green-dark); }
.tier-pick .pop2 { position: absolute; top: -10px; right: 16px; background: var(--green); color: #fff; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; }

.wiz-review { background: var(--gray-50); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-bottom: 22px; }
.wiz-review .row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding: 6px 0; }
.wiz-review .row span:first-child { color: var(--gray-mid); }
.wiz-review .row strong { text-align: right; max-width: 62%; word-break: break-word; }
.wiz-review .total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; font-size: 20px; }

@media (max-width: 900px) {
  .lp-hero .container { grid-template-columns: 1fr; gap: 40px; }
  .mock .browser { transform: none; }
  .mock .think { right: 8px; }
  .deliverable, .price-dark, .feat-grid, .problem-grid, .cast, .flow { grid-template-columns: 1fr; }
  .flow::before { display: none; }
  .problem-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .price-dark { grid-template-columns: 1fr; }
  .wiz-shell { grid-template-columns: 1fr; }
  .wiz-aside { display: none; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .price-dark, .feat-grid, .cast { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================================
   POLISH PASS — accessibility, motion, tactility
   ========================================================================= */
/* Visible keyboard focus everywhere (never rely on the removed default only) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.persona-card:focus-visible, .tier-option:focus-visible, .tier-pick:focus-visible,
.jv-tab:focus-visible, .jv-subtab:focus-visible, .tl-dot:focus-visible, .faq-q:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}
/* Inputs already have a ring; keep their offset tight */
input:focus-visible, select:focus-visible, textarea:focus-visible { outline-offset: 0; }

/* Tactile press feedback */
.btn:active { transform: translateY(0) scale(.985); }

/* Honor reduced-motion globally (decorative loops: scanline, ping, spinner, pane slide) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .mock .scanline { display: none; }
}

/* Delight: animate the results score ring sweeping to its value on load */
@property --val { syntax: '<number>'; inherits: false; initial-value: 0; }
.score-ring { animation: ringfill 1.15s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes ringfill { from { --val: 0; } }
@media (prefers-reduced-motion: reduce) { .score-ring { animation: none; } }

/* ===========================================================================
   FEEDBACK ROUND 2 — monograms, proof strip, pricing type labels, cast note
   ========================================================================= */
/* Monogram circle — replaces fake buyer photos (honest, clearly not a person) */
.mono { display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 36px; height: 36px; border-radius: 50%; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 1; }

/* Hero social-proof strip (replaces the fake-avatar trust row) */
.proof-strip { margin-top: 28px; display: flex; align-items: center; gap: 13px;
  max-width: 540px; padding: 13px 16px; background: var(--gray-50);
  border: 1px solid var(--border); border-radius: 12px; font-size: 14px; color: var(--gray-2); line-height: 1.45; }
.proof-strip strong { color: var(--gray); font-weight: 800; }
.proof-mark { flex: none; width: 32px; height: 32px; border-radius: 9px; background: var(--gray);
  color: var(--green-bright); font-family: var(--font-display); font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center; }

/* Cast (spectrum) note + remove leftover dot reliance */
.cast-note { margin-top: 26px; text-align: center; color: var(--ink-soft); font-size: 14.5px; }
.cast-card h3 { margin-top: 0; }

/* Pricing type label + visually distinct Quick (snapshot) card */
.pd-type { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 6px; margin-bottom: 12px; }
.pd-type-quick { background: rgba(148,163,184,.16); color: #cbd5e1; }
.pd-type-simulation { background: rgba(34,197,94,.14); color: var(--green-bright); }
.pd-card.snapshot { background: var(--ink); border-style: dashed; }

@media (max-width: 760px) {
  .mock .think { position: static; width: auto; right: auto; bottom: auto; margin: -28px 12px 0; box-shadow: var(--shadow); }
}

/* Keep the hero thought card inside the mock on narrower windows (avoid viewport clip) */
@media (max-width: 1280px) {
  .mock .think { right: 10px; width: 286px; }
}

/* ===========================================================================
   FEEDBACK ROUND 3 — two-product split: pricing(3), feature layers
   ========================================================================= */
.price-dark.price-3 { grid-template-columns: repeat(3, 1fr); max-width: 940px; margin: 0 auto; }

.layer-head { text-align: center; max-width: 640px; margin: 46px auto 26px; }
.layer-head .layer-tag { font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.layer-head h3 { font-size: clamp(22px, 2.6vw, 30px); margin: 8px 0 6px; letter-spacing: -.01em; }
.layer-head p { color: var(--gray-mid); font-size: 16px; margin: 0; }
.feat-grid-4 { grid-template-columns: repeat(4, 1fr); }
.feat-item h4 { font-family: var(--font-display); font-weight: 800; font-size: 16px; margin: 0 0 6px; }

@media (max-width: 1100px) {
  .price-dark.price-3 { grid-template-columns: repeat(3, 1fr); }
  .feat-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .price-dark.price-3 { grid-template-columns: 1fr; }
  .feat-grid-4 { grid-template-columns: 1fr; }
}

/* ===========================================================================
   /aiaudit landing — scorecard mock + quick pricing
   ========================================================================= */
.scorecard { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 22px; max-width: 420px; margin-left: auto; }
.sc-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.sc-url { font-size: 13px; color: var(--gray-mid); word-break: break-all; }
.sc-ring { --val: 0; flex: none; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(var(--amber) calc(var(--val)*1%), var(--gray-light) 0); }
.sc-ring span { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--gray); }
.sc-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-2); padding: 7px 0; line-height: 1.4; }
.sc-row .sc-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; margin-top: 5px; }
.sc-pass .sc-dot { background: var(--green); }
.sc-partial .sc-dot { background: var(--amber); }
.sc-fail .sc-dot { background: var(--red); }
.sc-foot { font-size: 12px; color: var(--gray-soft); padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border); }

.quick-pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; align-items: stretch; }
.qp-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.qp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.qp-card.feat { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-tint), var(--shadow); }
.qp-card .pop { position: absolute; top: -12px; left: 28px; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.qp-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.qp-tag { color: var(--gray-mid); font-size: 14px; min-height: 40px; }
.qp-price { font-family: var(--font-display); font-weight: 900; font-size: 42px; margin: 8px 0 0; letter-spacing: -.02em; }
.qp-est { display: inline-block; font-size: 12.5px; color: var(--green-dark); background: var(--green-tint); border-radius: 7px; padding: 4px 10px; margin: 10px 0 18px; }
.qp-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.qp-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--gray-2); padding: 5px 0; }
.qp-card li svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }

@media (max-width: 760px) {
  .scorecard { margin: 0 auto; }
  .quick-pricing { grid-template-columns: 1fr; }
}

/* ===========================================================================
   Wizard fixes — tooltip, tier subtext on its own line
   ========================================================================= */
.tier-pick .info { display: flex; flex-direction: column; gap: 3px; }
.tier-pick .info .nm { display: block; }
.tier-pick .info .dt { display: block; }

/* Inline info tooltip ("i") on field labels */
.tip { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px;
  border-radius: 50%; background: var(--gray-light); color: var(--gray-mid); font-size: 11px; font-weight: 800;
  font-style: normal; cursor: help; position: relative; margin-left: 6px; vertical-align: middle; }
.tip:hover, .tip:focus { background: var(--green); color: #fff; outline: none; }
.tip .tip-pop { position: absolute; bottom: 140%; left: 50%; transform: translateX(-50%) translateY(4px);
  width: 260px; background: var(--gray); color: #fff; font-size: 12.5px; font-weight: 500; line-height: 1.45;
  padding: 10px 12px; border-radius: 10px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: opacity .15s, transform .15s; z-index: 30; text-transform: none; letter-spacing: 0; }
.tip:hover .tip-pop, .tip:focus .tip-pop { opacity: 1; transform: translateX(-50%) translateY(0); }
.tip .tip-pop::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--gray); }
@media (max-width: 520px) { .tip .tip-pop { width: 200px; left: auto; right: -8px; transform: none; } .tip:hover .tip-pop,.tip:focus .tip-pop{transform:none} .tip .tip-pop::after{left:auto;right:12px} }

/* Quiet verdict marks — dot + small caps, replaces the tinted pill everywhere */
.verdict { background: none !important; padding: 0 !important; border-radius: 0;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-mid) !important; }
.verdict::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none; }
.verdict-converted::before { background: #16a34a; }
.verdict-on_fence::before { background: #d97706; }
.verdict-bounced::before { background: #dc2626; }

/* ---- persona teaser (wizard) ---- */
.teaser-block { margin-bottom: 22px; }
.teaser-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.teaser-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; background: var(--gray-50); }
.teaser-card strong { font-family: var(--font-display); font-size: 14.5px; color: var(--gray); }
.teaser-card ul { margin: 8px 0; padding-left: 18px; }
.teaser-card li { font-size: 13px; color: var(--gray-2); margin-bottom: 3px; }
.teaser-arrival { font-size: 12.5px; color: var(--gray-mid); border-top: 1px solid var(--border); padding-top: 8px; }
@media (max-width: 700px) { .teaser-cards { grid-template-columns: 1fr; } }
