@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* =====================================================================
   LinQ Media — Social Media Audit tool
   Theme-switchable (dark default / light). Tokens come from
   colors_and_type.css; this file maps them into semantic surface vars
   that flip with [data-theme].
   ===================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #000208; }

.audit {
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- THEME: DARK (default) ---------- */
.audit[data-theme="dark"] {
  --surface:        #070a16;     /* page canvas */
  --surface-card:   rgba(255,255,255,0.035);
  --surface-card-2: rgba(255,255,255,0.06);
  --surface-solid:  #0c1124;
  --text:           #ffffff;
  --text-dim:       rgba(255,255,255,0.74);
  --text-faint:     rgba(255,255,255,0.46);
  --border:         rgba(255,255,255,0.10);
  --border-strong:  rgba(255,255,255,0.18);
  --field-bg:       rgba(255,255,255,0.04);
  --field-bg-focus: rgba(255,255,255,0.07);
  --track:          rgba(255,255,255,0.10);
  --logo: url("assets/logo-light-on-dark.png");
  background:
    radial-gradient(125% 80% at 50% 120%, rgba(254,81,0,0.50) 0%, rgba(254,81,0,0.16) 26%, rgba(254,81,0,0.02) 48%, transparent 64%),
    linear-gradient(180deg, #04060f 0%, #070a16 46%, #05070f 100%);
  color: var(--text);
}
.audit[data-theme="dark"]::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 3px 3px;
  opacity: 0.6;
}

/* ---------- THEME: LIGHT ---------- */
.audit[data-theme="light"] {
  --surface:        #ffffff;
  --surface-card:   #ffffff;
  --surface-card-2: var(--neutral-50);
  --surface-solid:  #ffffff;
  --text:           var(--linq-navy);
  --text-dim:       var(--neutral-600);
  --text-faint:     var(--neutral-500);
  --border:         var(--neutral-200);
  --border-strong:  var(--neutral-300);
  --field-bg:       #ffffff;
  --field-bg-focus: #ffffff;
  --track:          var(--neutral-200);
  --logo: url("assets/logo-primary.png");
  background:
    radial-gradient(120% 60% at 50% -10%, var(--orange-50) 0%, transparent 50%),
    var(--neutral-50);
  color: var(--text);
}

.audit-inner {
  position: relative; z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px var(--container-pad) 80px;
}

/* ---------- top bar ---------- */
.audit-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 8px;
}
.audit-logo {
  width: 116px; height: 30px;
  background: var(--logo) left center / contain no-repeat;
}
.audit-top .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 7px 14px; white-space: nowrap;
}
.audit-top .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--linq-orange); box-shadow: 0 0 0 4px rgba(254,81,0,0.18); }

/* ---------- shared type ---------- */
.eyebrow-a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--linq-orange);
}
.display-a {
  font-family: var(--font-display); font-weight: 900;
  letter-spacing: -0.03em; line-height: 0.98; margin: 0;
  color: var(--text);
}
.display-a em { font-style: normal; color: var(--linq-orange); }
.lead-a { color: var(--text-dim); font-size: 18px; line-height: 1.55; }

/* ---------- buttons ---------- */
.btn-a {
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--radius-pill); border: 0; cursor: pointer;
  padding: 15px 28px; font-size: 14.5px; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn-a.primary { background: var(--linq-orange); color: #fff; box-shadow: var(--shadow-orange-sm); }
.btn-a.primary:hover { background: var(--orange-500); box-shadow: var(--shadow-orange-md); transform: translateY(-1px); }
.btn-a.primary:active { transform: translateY(1px); box-shadow: var(--shadow-orange-sm); }
.btn-a.primary:disabled { background: var(--track); color: var(--text-faint); box-shadow: none; cursor: not-allowed; transform: none; }
.btn-a.ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-a.ghost:hover { border-color: var(--linq-orange); color: var(--linq-orange); }
.btn-a.link { background: transparent; color: var(--text-dim); padding: 15px 12px; }
.btn-a.link:hover { color: var(--linq-orange); }
.btn-a.sm { padding: 11px 20px; font-size: 13px; }

/* ===================================================================
   LANDING
   =================================================================== */
.landing { padding-top: 26px; }
.landing-hero { text-align: center; max-width: 760px; margin: 0 auto; }
.landing-hero .eyebrow-a { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.landing-hero .display-a { font-size: clamp(40px, 7vw, 76px); margin-bottom: 22px; }
.landing-hero .lead-a { max-width: 560px; margin: 0 auto 34px; }
.landing-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-meta {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 26px; color: var(--text-faint); font-size: 13.5px;
}
.landing-meta span { display: inline-flex; align-items: center; gap: 8px; }

.platform-orbit {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 40px auto 0; max-width: 560px;
}

.steps-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 64px;
}
.step-card {
  background: var(--surface-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
  backdrop-filter: blur(6px);
}
.step-card .n {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254,81,0,0.14); color: var(--linq-orange);
  margin-bottom: 16px;
}
.step-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 8px; color: var(--text); letter-spacing: -0.01em; }
.step-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* ===================================================================
   FORM
   =================================================================== */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-progress { margin: 8px 0 36px; }
.form-progress .bar { height: 5px; border-radius: 999px; background: var(--track); overflow: hidden; }
.form-progress .bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--orange-300), var(--linq-orange)); border-radius: 999px; transition: width var(--dur-slow) var(--ease-out); }
.form-progress .meta { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12.5px; color: var(--text-faint); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; }
.form-progress .meta .cur { color: var(--linq-orange); }

.q-head { margin-bottom: 28px; }
.q-head .eyebrow-a { margin-bottom: 12px; display: block; }
.q-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 4.5vw, 40px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 10px; color: var(--text); }
.q-head h2 em { font-style: normal; color: var(--linq-orange); }
.q-head p { margin: 0; color: var(--text-dim); font-size: 15.5px; line-height: 1.55; max-width: 540px; }

.q-step { animation: qfade var(--dur-slow) var(--ease-out); }
@keyframes qfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* choice grid (platforms / single-select cards) */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid.cols-1 { grid-template-columns: 1fr; }

.choice {
  position: relative; text-align: left; cursor: pointer;
  background: var(--surface-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 18px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--dur-base) var(--ease-out);
  color: var(--text);
}
.choice:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.choice.sel { border-color: var(--linq-orange); background: rgba(254,81,0,0.08); }
.choice.sel.dark-fix { background: rgba(254,81,0,0.10); }
.choice .ico { flex: none; width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.choice .txt { min-width: 0; }
.choice .txt .t { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.005em; }
.choice .txt .s { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.choice .check {
  position: absolute; top: 12px; right: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
}
.choice.sel .check { background: var(--linq-orange); border-color: var(--linq-orange); }
.choice .check svg { opacity: 0; transition: opacity var(--dur-fast); }
.choice.sel .check svg { opacity: 1; }

/* per-platform snapshot rows */
.snap-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; align-items: center;
  background: var(--surface-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 10px;
}
.snap-row .pf { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.snap-row .ico-sm { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex: none; }

/* selects + inputs */
.fld { display: block; }
.fld .lab { display: block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.02em; color: var(--text-dim); margin-bottom: 8px; }
.sel-a, .inp-a {
  width: 100%; font-family: var(--font-body); font-size: 14.5px;
  color: var(--text); background: var(--field-bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: all var(--dur-base) var(--ease-out);
  appearance: none; -webkit-appearance: none;
}
.sel-a {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FE5100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 38px; cursor: pointer;
}
.sel-a:focus, .inp-a:focus { outline: none; border-color: var(--linq-orange); background: var(--field-bg-focus); box-shadow: var(--focus-ring); }
.inp-a::placeholder { color: var(--text-faint); }
.sel-a option { color: #111; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid .full { grid-column: 1 / -1; }

.inp-prefix { position: relative; }
.inp-prefix .pfx { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-faint); font-size: 14.5px; pointer-events: none; }
.inp-prefix .inp-a { padding-left: 34px; }

.form-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; gap: 14px; }
.consent { font-size: 12px; color: var(--text-faint); line-height: 1.5; max-width: 360px; }
.consent a { color: var(--linq-orange); }

.field-err { color: var(--accent-error); font-size: 12.5px; margin-top: 6px; }
.audit[data-theme="dark"] .field-err { color: #ff8a8a; }

/* ===================================================================
   ANALYZING
   =================================================================== */
.analyzing { max-width: 640px; margin: 0 auto; text-align: center; padding-top: 30px; }
.scan-ring { position: relative; width: 220px; height: 220px; margin: 10px auto 36px; }
.scan-ring svg { transform: rotate(-90deg); }
.scan-ring .pct {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.scan-ring .pct .num { font-family: var(--font-display); font-weight: 900; font-size: 52px; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.scan-ring .pct .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; font-family: var(--font-display); font-weight: 700; }
.scan-ring .glow { position: absolute; inset: 22px; border-radius: 50%; background: radial-gradient(circle, rgba(254,81,0,0.28), transparent 70%); filter: blur(8px); animation: pulse 2.4s var(--ease-in-out) infinite; }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.scan-log { text-align: left; margin: 0 auto; max-width: 460px; }
.scan-line {
  display: flex; align-items: center; gap: 13px; padding: 11px 0;
  border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--text-dim);
  font-family: var(--font-display); font-weight: 500;
  animation: qfade var(--dur-base) var(--ease-out);
}
.scan-line:last-child { border-bottom: 0; }
.scan-line .st { flex: none; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.scan-line.done { color: var(--text); }
.scan-line .spin { width: 16px; height: 16px; border: 2px solid var(--track); border-top-color: var(--linq-orange); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.scan-line .ico-sm { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* ===================================================================
   REPORT
   =================================================================== */
.report { animation: qfade var(--dur-page) var(--ease-out); }
.report-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; }
.report-head .eyebrow-a { display: block; margin-bottom: 10px; }
.report-head h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 5vw, 46px); line-height: 1.02; letter-spacing: -0.025em; margin: 0; color: var(--text); }
.report-head h1 em { font-style: normal; color: var(--linq-orange); }
.report-head .sub { color: var(--text-dim); font-size: 15px; margin-top: 10px; max-width: 520px; line-height: 1.55; }

.email-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(91,181,74,0.10); border: 1px solid rgba(91,181,74,0.32);
  border-radius: var(--radius-md); padding: 14px 18px; margin: 22px 0 30px;
  font-size: 14px; color: var(--text);
}
.email-banner .ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(91,181,74,0.18); color: var(--accent-green); display: flex; align-items: center; justify-content: center; flex: none; }
.email-banner b { font-family: var(--font-display); }
.email-banner .act { margin-left: auto; }

/* score hero */
.score-hero {
  display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 34px; align-items: center;
  background: var(--surface-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; margin-bottom: 22px;
  position: relative; overflow: hidden;
}
.audit[data-theme="dark"] .score-hero { background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); }
.score-hero .viz-col { display: flex; align-items: center; justify-content: center; }
.score-hero .grade-word { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; color: var(--linq-orange); margin-bottom: 6px; }
.score-hero h3 { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: -0.015em; margin: 0 0 12px; color: var(--text); line-height: 1.1; }
.score-hero p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }
.score-hero .summary-loading { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-size: 14px; }

/* score visuals */
.gauge-wrap, .radial-wrap { position: relative; width: 240px; height: 240px; }
.gauge-wrap svg, .radial-wrap svg { transform: rotate(-90deg); }
.score-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-center .num { font-family: var(--font-display); font-weight: 900; font-size: 64px; line-height: 0.9; letter-spacing: -0.04em; color: var(--text); }
.score-center .den { font-size: 14px; color: var(--text-faint); font-family: var(--font-display); font-weight: 700; margin-top: 4px; }
.score-center .num small { font-size: 24px; color: var(--text-faint); }

.grade-badge { width: 200px; height: 200px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: conic-gradient(var(--linq-orange) var(--deg, 250deg), var(--track) 0); position: relative; }
.grade-badge::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: var(--surface-solid); }
.audit[data-theme="dark"] .grade-badge::before { background: #10162b; }
.grade-badge .inner { position: relative; text-align: center; }
.grade-badge .g { font-family: var(--font-display); font-weight: 900; font-size: 76px; line-height: 0.85; letter-spacing: -0.04em; color: var(--text); }
.grade-badge .gs { font-size: 13px; color: var(--text-faint); font-family: var(--font-display); font-weight: 700; }

.bars-viz { width: 100%; }
.bars-viz .brow { margin-bottom: 16px; }
.bars-viz .brow:last-child { margin-bottom: 0; }
.bars-viz .blab { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: 13px; margin-bottom: 7px; color: var(--text); }
.bars-viz .blab .v { color: var(--linq-orange); }
.bars-viz .btrack { height: 9px; border-radius: 999px; background: var(--track); overflow: hidden; }
.bars-viz .bfill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--orange-300), var(--linq-orange)); transition: width 900ms var(--ease-out); }

/* category cards */
.section-label { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: -0.01em; color: var(--text); margin: 34px 0 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cat-card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.cat-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cat-card .top .name { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); }
.cat-card .top .name .ci { width: 30px; height: 30px; border-radius: 8px; background: rgba(254,81,0,0.12); color: var(--linq-orange); display: flex; align-items: center; justify-content: center; flex: none; }
.cat-card .sc { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
.cat-card .btrack { height: 7px; border-radius: 999px; background: var(--track); overflow: hidden; margin-bottom: 14px; }
.cat-card .bfill { height: 100%; border-radius: 999px; transition: width 900ms var(--ease-out); }
.cat-card .tip { font-size: 13.5px; line-height: 1.55; color: var(--text-dim); margin: 0; }
.cat-card .tip-load { display: flex; align-items: center; gap: 8px; color: var(--text-faint); font-size: 13px; }
.cat-card .tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-bottom: 10px; }

.score-good { color: var(--accent-green) !important; }
.score-mid  { color: var(--accent-warn) !important; }
.score-low  { color: var(--linq-orange) !important; }
.fill-good { background: var(--accent-green); }
.fill-mid  { background: var(--accent-warn); }
.fill-low  { background: var(--linq-orange); }
.tag-good { background: rgba(91,181,74,0.16); color: var(--accent-green); }
.tag-mid  { background: rgba(242,177,0,0.16); color: var(--accent-warn); }
.tag-low  { background: rgba(254,81,0,0.16); color: var(--linq-orange); }

/* per-platform breakdown (detailed layout) */
.pf-list { display: flex; flex-direction: column; gap: 12px; }
.pf-card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; }
.pf-card .head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.pf-card .head .ico { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.pf-card .head .nm { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); }
.pf-card .head .meta { font-size: 12.5px; color: var(--text-faint); margin-top: 1px; }
.pf-card .head .sc { margin-left: auto; font-family: var(--font-display); font-weight: 900; font-size: 24px; letter-spacing: -0.02em; }
.pf-card .wins { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pf-card .wins li { display: flex; gap: 11px; font-size: 13.5px; line-height: 1.5; color: var(--text-dim); }
.pf-card .wins li .b { flex: none; width: 18px; height: 18px; border-radius: 50%; background: rgba(254,81,0,0.14); color: var(--linq-orange); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* priorities list (scorecard layout) */
.prio-list { display: flex; flex-direction: column; gap: 12px; }
.prio { display: flex; gap: 16px; background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; align-items: flex-start; }
.prio .rank { flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--linq-orange); color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.prio .body h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 5px; color: var(--text); letter-spacing: -0.01em; }
.prio .body p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* final CTA */
.report-cta {
  margin-top: 34px; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--linq-orange) 0%, #B83800 100%);
  color: #fff; padding: 40px; position: relative;
}
.report-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 90% 120%, rgba(255,255,255,0.20), transparent 60%); pointer-events: none; }
.report-cta .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.report-cta h3 { font-family: var(--font-display); font-weight: 900; font-size: 30px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 10px; }
.report-cta p { margin: 0; color: rgba(255,255,255,0.9); font-size: 15px; max-width: 440px; line-height: 1.55; }
.report-cta .btn-a.primary { background: #fff; color: var(--linq-orange); box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
.report-cta .btn-a.primary:hover { background: #fff; transform: translateY(-1px); }
.report-cta .ctacol { display: flex; flex-direction: column; gap: 10px; }
.report-cta .ctacol .btn-a.ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.report-cta .ctacol .btn-a.ghost:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.7); }

.report-foot { text-align: center; margin-top: 40px; }
.report-foot .btn-a { margin: 0 4px; }

/* email preview modal */
.modal-scrim { position: fixed; inset: 0; z-index: 200; background: rgba(2,4,12,0.66); backdrop-filter: blur(4px); display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; animation: qfade var(--dur-base) var(--ease-out); }
.modal-card { background: #fff; color: var(--linq-navy); border-radius: var(--radius-lg); max-width: 600px; width: 100%; overflow: hidden; box-shadow: var(--shadow-xl); }
.modal-card .mbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--neutral-200); font-size: 13px; color: var(--neutral-500); }
.modal-card .mbar .x { cursor: pointer; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--neutral-200); background: #fff; }
.modal-card .mbar .x:hover { background: var(--neutral-100); }

/* email body */
.email-doc { font-family: var(--font-body); }
.email-doc .ehead { background: var(--grad-hero); padding: 32px; text-align: center; }
.email-doc .ehead .elogo { width: 120px; height: 32px; background: url("assets/logo-light-on-dark.png") center/contain no-repeat; margin: 0 auto 18px; }
.email-doc .ehead .escore { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.email-doc .ehead .escore small { font-size: 22px; color: rgba(255,255,255,0.6); }
.email-doc .ehead .esub { color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 6px; }
.email-doc .ebody { padding: 28px 32px; }
.email-doc .ebody h3 { font-family: var(--font-display); font-weight: 900; font-size: 20px; margin: 0 0 10px; color: var(--linq-navy); }
.email-doc .ebody p { font-size: 14px; line-height: 1.6; color: var(--neutral-600); margin: 0 0 16px; }
.email-doc .ebody .erow { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--neutral-200); font-size: 14px; }
.email-doc .ebody .erow b { font-family: var(--font-display); }
.email-doc .ebtn { display: inline-block; background: var(--linq-orange); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 999px; margin-top: 12px; }
.email-doc .efoot { background: var(--neutral-50); padding: 20px 32px; font-size: 12px; color: var(--neutral-500); text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .steps-strip { grid-template-columns: 1fr; }
  .choice-grid, .choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .score-hero { grid-template-columns: 1fr; text-align: center; }
  .score-hero .viz-col { order: -1; }
  .cat-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .snap-row { grid-template-columns: 1fr; gap: 8px; }
  .report-cta .inner { grid-template-columns: 1fr; }
  .report-cta .ctacol { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 460px) {
  .choice-grid, .choice-grid.cols-2 { grid-template-columns: 1fr; }
}
