/* ============================================================
   MyLynda — marketing site
   Built on the Lynda Design System (v2 · warm) tokens.
   Conversion-optimized structure; DS visual language.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--bone); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:root {
  --wrap: 1200px;
  --gutter: 40px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- Shared type helpers ---------- */
.eyebrow { font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.kicker-serif { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  padding: 13px 22px; border-radius: var(--r-1); cursor: pointer; border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); white-space: nowrap; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-2); border-color: var(--sage-2); }
.btn-secondary { background: var(--cream); color: var(--ink); border-color: var(--hairline-strong); }
.btn-secondary:hover { background: var(--paper); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-ghost:hover { background: rgba(31,27,20,0.04); border-color: var(--ink); }
.btn-cream { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-cream:hover { background: #fff; }
.btn-onink { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-onink:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* risk-reversal microcopy under CTAs */
.risk { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); margin-top: 12px; }
.risk .dot { color: var(--sage); }
.inverted .risk { color: var(--on-ink-fg-2); }
.inverted .risk .dot { color: #fff; }

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead { background: var(--ink); color: var(--on-ink-fg); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--on-ink-line); }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand-lock { display: inline-flex; align-items: center; gap: 11px; }
.brand-lock .mono { width: 26px; height: 26px; }
.brand-lock .wordmark { font-family: var(--font-sans); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--on-ink-fg); }
.brand-lock .wordmark .tld { color: var(--on-ink-fg-2); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.link { font-size: 14px; color: var(--on-ink-fg-2); }
.nav a.link:hover { color: var(--on-ink-fg); }
.nav .sep { width: 1px; height: 22px; background: var(--on-ink-line); }
.nav a.signin { font-size: 14px; color: var(--on-ink-fg-2); }
.nav a.signin:hover { color: var(--on-ink-fg); }
.menu-btn { display: none; background: none; border: 0; color: var(--on-ink-fg); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(120% 100% at 80% -10%, var(--sage-50) 0%, rgba(236,241,229,0) 55%), var(--bone); }
.hero-inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 64px; align-items: center; padding: 84px 0 52px; }
.hero-trust { border-top: 1px solid var(--hairline); padding: 34px 0 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero h1 { font-family: var(--font-sans); font-weight: 600; font-size: 60px; line-height: 1.0; letter-spacing: -0.03em; }
.hero h1 .serif { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--sage); }
.hero-deck { font-family: var(--font-sans); font-weight: 600; font-size: 26px; line-height: 1.2; letter-spacing: -0.015em; color: var(--ink); margin: 0; }
.hero-deck .serif { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--sage); }
.hero-sub { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 50ch; }
.hero-sub b { font-weight: 600; color: var(--ink); }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.hero-cta .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-credit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.hero-credit .badge { width: 14px; height: 14px; color: var(--sage); }

.hero-pill { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; padding: 6px 13px 6px 11px; border: 1px solid var(--hairline-strong); border-radius: var(--r-pill); background: var(--cream);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.hero-pill .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(45,95,70,0.5); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(45,95,70,0.45); } 70% { box-shadow: 0 0 0 7px rgba(45,95,70,0); } 100% { box-shadow: 0 0 0 0 rgba(45,95,70,0); } }

/* ---------- Hero report card (the product as proof) ---------- */
.hero-right { position: relative; }
.report { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-3); box-shadow: var(--shadow-sheet); overflow: hidden; position: relative; z-index: 2; }
.report-bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--ink); color: var(--on-ink-fg-2); }
.report-bar .dots { display: flex; gap: 6px; }
.report-bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(246,241,225,0.28); }
.report-bar .url { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em; }
.report-bar .ref { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-ink-fg-2); }
.report-body { padding: 22px 22px 20px; }
.report-top { display: flex; flex-direction: column; gap: 3px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); }
.report-top .eyebrow { margin-bottom: 4px; }
.report-name { font-family: var(--font-sans); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; }
.report-role { font-size: 13px; color: var(--steel); }

.report-verdict { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin: 16px 0; padding: 16px; border-radius: var(--r-2); background: var(--proceed-tint); border: 1px solid rgba(45,112,72,0.28); }
.rv-badge { width: 38px; height: 38px; border-radius: 50%; background: var(--proceed); color: #fff; display: grid; place-items: center; }
.rv-badge svg { width: 20px; height: 20px; }
.rv-text { display: flex; flex-direction: column; }
.rv-word { font-family: var(--font-sans); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--proceed-ink); line-height: 1; }
.rv-action { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--proceed); margin-top: 4px; }
.rv-score { text-align: right; font-variant-numeric: tabular-nums; }
.rv-score .n { font-family: var(--font-sans); font-weight: 600; font-size: 34px; letter-spacing: -0.02em; color: var(--proceed-ink); line-height: 1; }
.rv-score .d { font-family: var(--font-mono); font-size: 11px; color: var(--proceed); }

.report-signals { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--r-1); overflow: hidden; }
.report-signals li { background: var(--cream); display: flex; align-items: center; gap: 9px; padding: 11px 13px; }
.report-signals .sig-check { width: 16px; height: 16px; border-radius: 50%; background: var(--proceed-tint); color: var(--proceed); display: grid; place-items: center; flex: none; }
.report-signals .sig-check svg { width: 10px; height: 10px; }
.report-signals .sig-k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); flex: 1; }
.report-signals .sig-v { font-family: var(--font-sans); font-weight: 500; font-size: 13px; color: var(--ink); }

.report-q { margin-top: 16px; }
.report-q .q-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.report-q .q-head .eyebrow { color: var(--clay); }
.report-q ol { list-style: none; counter-reset: q; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.report-q li { counter-increment: q; display: flex; gap: 10px; font-size: 13.5px; line-height: 1.4; color: var(--ink-2); }
.report-q li::before { content: counter(q) "."; font-family: var(--font-display); font-style: italic; color: var(--clay); font-size: 16px; line-height: 1.2; flex: none; }

.report-foot { display: flex; align-items: stretch; gap: 0; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.report-foot .stat { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.report-foot .stat + .stat { padding-left: 18px; border-left: 1px solid var(--hairline); margin-left: 18px; }
.report-foot .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.report-foot .v { font-family: var(--font-sans); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.report-foot .v .u { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--steel); }
.report-foot .sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); }

.report-cap { position: absolute; right: 18px; bottom: -14px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--on-ink-fg); padding: 8px 13px; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: var(--shadow-card); }
.report-cap .ok { color: #8FCBA3; }
/* dot-grid behind card */
.hero-dotgrid { position: absolute; inset: -10% -8% -16% 8%; z-index: 1; background-image: radial-gradient(var(--hairline) 1px, transparent 1px); background-size: 9px 9px; opacity: 0.6; pointer-events: none; }

/* ============================================================
   PROOF BAR (under hero)
   ============================================================ */
.proofbar { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--cream); }
.proofbar-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.proofbar .cell { padding: 22px var(--gutter); display: flex; flex-direction: column; gap: 6px; }
.proofbar .cell + .cell { border-left: 1px solid var(--hairline); }
.proofbar .v { font-family: var(--font-sans); font-weight: 600; font-size: 30px; letter-spacing: -0.02em; line-height: 1; }
.proofbar .v .ph { color: var(--clay); }
.proofbar .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats { padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--hairline-strong); border-radius: var(--r-2); overflow: hidden; background: var(--cream); }
.stat-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.stat-card + .stat-card { border-left: 1px solid var(--hairline); }
.stat-card .big { font-family: var(--font-sans); font-weight: 600; font-size: 32px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.stat-card .big.brand { color: var(--sage); }
.stat-card .desc { font-size: 13px; line-height: 1.5; color: var(--steel); }
.stat-card .src { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-2); margin-top: auto; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 88px 0; }
.section-dark { background: var(--ink); color: var(--on-ink-fg); }
.section-paper { background: var(--paper); border-top: 1px solid var(--hairline); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { font-family: var(--font-sans); font-weight: 600; font-size: 38px; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 14px; }
.section-head h2 .serif { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--sage); }
.section-head .lead { font-size: 17px; line-height: 1.55; color: var(--steel); max-width: 62ch; }
.section-dark .section-head .lead { color: var(--on-ink-fg-2); }
.section-dark .section-head .eyebrow { color: var(--on-ink-fg-2); }
.section-dark .section-head h2 .serif { color: #9ED1AF; }

/* ---------- Problem / Method lists ---------- */
.col2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.section-dark .feature { background: #2A251D; border-color: var(--on-ink-line); }
.feature .ic { width: 34px; height: 34px; border-radius: var(--r-1); background: var(--sage-tint); color: var(--sage); display: grid; place-items: center; margin-bottom: 4px; }
.section-dark .feature .ic { background: rgba(158,209,175,0.14); color: #9ED1AF; }
.feature h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.section-dark .feature p { color: var(--on-ink-fg-2); }
.feature .cost { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--clay); margin-top: auto; padding-top: 8px; }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how-step { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.how-step .top { display: flex; align-items: center; gap: 12px; }
.how-step .n { font-family: var(--font-mono); font-weight: 500; font-size: 26px; letter-spacing: -0.02em; color: var(--sage); }
.how-step .tick { flex: 1; height: 8px; background-image: linear-gradient(to right, var(--hairline-strong) 1px, transparent 1px); background-size: 8px 100%; background-repeat: repeat-x; background-position: 0 100%; border-bottom: 1px solid var(--hairline-strong); }
.how-step h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.how-step p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* How-it-works screening mockup (the triage / ranked-applicants view) */
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.how-layout .how-grid { grid-template-columns: 1fr; gap: 16px; }
.triage-mock { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-3); box-shadow: var(--shadow-sheet); overflow: hidden; }
.triage-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.triage-body .eyebrow { display: block; margin-bottom: 4px; }
.triage-mock .mini-row { gap: 12px; }
.triage-mock .mk.grade { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; color: var(--sage); background: var(--sage-50); border: 1px solid var(--sage-soft); border-radius: var(--r-1); min-width: 30px; height: 26px; display: grid; place-items: center; flex: none; }
.triage-mock .nm { flex: 1; }
.tfact { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.02em; color: var(--steel); white-space: nowrap; }
.tri-seal { width: 24px; height: 24px; border: 1.7px solid currentColor; border-radius: 50%; display: grid; place-items: center; flex: none; }
.tri-seal svg { width: 13px; height: 13px; }
.tri-green { color: var(--proceed); }
.tri-amber { color: var(--caution); }
.tri-red { color: var(--pass); }
@media (max-width: 980px) {
  .how-layout { grid-template-columns: 1fr; gap: 32px; }
  .how-visual { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 560px) { .tfact { display: none; } }

/* Trusted-by logo strip (testimonials) */
.logos { margin: 0 0 26px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.logos-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.logos-row { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; justify-items: center; gap: 22px 28px; width: 100%; }
.logo { display: flex; align-items: center; justify-content: center; }
.logo img { max-height: 34px; max-width: 150px; width: auto; height: auto; filter: grayscale(1); opacity: 0.75; transition: filter 0.3s var(--ease), opacity 0.3s var(--ease); }
@media (hover: hover) { .logo:hover img { filter: grayscale(0); opacity: 1; } }
@media (max-width: 760px) { .logos-row { grid-template-columns: repeat(3, 1fr); row-gap: 30px; } }
@media (max-width: 440px) { .logos-row { grid-template-columns: repeat(2, 1fr); } }
.logo-word { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-size: 19px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.logo.placeholder { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-2); border: 1px dashed var(--hairline-strong); border-radius: var(--r-1); padding: 11px 20px; }

/* cost + time stats folded into The Problem — same card system as the reason cards below */
.problem-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.problem-stats .stat-card { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 24px; }
@media (max-width: 560px) { .problem-stats { grid-template-columns: 1fr; } }

/* ---------- Verdicts (stamps) ---------- */
.verdicts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.verdict-block { display: flex; flex-direction: column; gap: 14px; }
.verdict-frame { border: 2px solid currentColor; border-radius: 4px; padding: 20px; position: relative; min-height: 188px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; }
.verdict-frame::before, .verdict-frame::after { content:""; position:absolute; left: 14px; right: 14px; height: 6px; background-image: linear-gradient(to right, currentColor 1px, transparent 1px); background-size: 8px 100%; background-repeat: repeat-x; }
.verdict-frame::before { top: 7px; } .verdict-frame::after { bottom: 7px; }
.vf-green { color: #7FBE95; } .vf-amber { color: #E6B45C; } .vf-red { color: #DD8A7E; }
.verdict-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.verdict-word { font-family: var(--font-sans); font-weight: 700; font-size: 52px; letter-spacing: -2px; line-height: 1; margin: 6px 0; }
.verdict-action { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.verdict-body { font-size: 14px; line-height: 1.55; color: var(--on-ink-fg-2); margin: 0; }

/* ---------- Verdict section background video ---------- */
.verdicts { position: relative; overflow: hidden; }
.verdict-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; border: 0; pointer-events: none; opacity: 0; transition: opacity 0.8s var(--ease); }
.verdict-video.is-playing { opacity: 1; }
.verdict-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,17,12,0.86) 0%, rgba(20,17,12,0.72) 50%, rgba(20,17,12,0.9) 100%); }
.verdicts > .wrap { position: relative; z-index: 2; }
@media (max-width: 700px) { .verdict-video, .verdict-veil { display: none; } }
@media (prefers-reduced-motion: reduce) { .verdict-video { display: none; } }

/* ---------- LinkedIn verification badge (green / amber / red) ---------- */
.li-verify { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  border: 1px solid currentColor; white-space: nowrap; }
.li-verify .li-logo { width: 15px; height: 15px; flex: none; border-radius: 3px; }
.li-verify .st { width: 13px; height: 13px; flex: none; }
.li-verify .liv-label { color: var(--ink); }            /* the word "Verified" etc. sits in ink on light bg */
.li-green { color: var(--proceed); background: var(--proceed-tint); }
.li-amber { color: var(--caution); background: var(--caution-tint); }
.li-red   { color: var(--pass);    background: var(--pass-tint); }
.li-green .liv-label { color: var(--proceed-ink); }
.li-amber .liv-label { color: var(--caution-ink); }
.li-red   .liv-label { color: var(--pass-ink); }
/* on the dark verdict section: lighter, transparent fill */
.section-dark .li-verify { background: rgba(246,241,225,0.06); }
.section-dark .li-green { color: #7FBE95; }
.section-dark .li-amber { color: #E6B45C; }
.section-dark .li-red   { color: #DD8A7E; }
.section-dark .li-verify .liv-label { color: var(--on-ink-fg); }
/* hero report card chip row */
.report-liverify { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.report-liverify .liv-note { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
/* verdict-block chip spacing */
.verdict-block .li-verify { align-self: flex-start; }
/* checkmark seal inside each verdict stamp */
.verdict-seal { width: 46px; height: 46px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; }
.verdict-seal svg { width: 24px; height: 24px; display: block; }
/* LinkedIn cross-check explainer card (how it works) */
.verify-card { margin-top: 28px; display: flex; align-items: center; gap: 22px; background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 24px 28px; }
.verify-card-mark { flex: none; }
.verify-card-mark .li-logo { width: 44px; height: 44px; border-radius: 9px; display: block; }
.verify-card-body .eyebrow { display: block; margin-bottom: 8px; color: var(--sage); }
.verify-card-body h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 8px; }
.verify-card-body p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
@media (max-width: 640px) { .verify-card { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* ---------- What you get (product screens) ---------- */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.screen { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); overflow: hidden; display: flex; flex-direction: column; }
.screen .scr-head { padding: 10px 14px; background: var(--bone-2); border-bottom: 1px solid var(--hairline); display: flex; align-items: center; gap: 8px; }
.screen .scr-head .eyebrow { color: var(--ink-2); }
.screen .scr-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.screen .cap { padding: 14px 18px; border-top: 1px solid var(--hairline); }
.screen .cap h3 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; }
.screen .cap p { font-size: 13px; color: var(--steel); margin: 4px 0 0; line-height: 1.5; }

.mini-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-1); }
.mini-row .mk { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.mini-row .nm { font-family: var(--font-sans); font-weight: 500; font-size: 13px; flex: 1; }
.mini-pill { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); }
.mini-pill.green { background: var(--proceed-tint); color: var(--proceed-ink); }
.mini-pill.amber { background: var(--caution-tint); color: var(--caution-ink); }
.mini-pill.red { background: var(--pass-tint); color: var(--pass-ink); }
.mini-pill.flight { background: var(--sage-tint); color: var(--sage-2); }
.progress { height: 5px; border-radius: var(--r-pill); background: var(--bone-2); overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--sage); border-radius: var(--r-pill); }

/* ---------- Why us (comparison table) ---------- */
.compare { border: 1px solid var(--hairline-strong); border-radius: var(--r-2); overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--cream); }
.compare table { width: 100%; min-width: 540px; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--hairline); font-size: 14px; vertical-align: middle; }
.compare thead th { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); font-weight: 500; background: var(--bone-2); }
.compare thead th.us { color: var(--sage); }
.compare tbody th { font-weight: 500; color: var(--ink); }
.compare col.c-us, .compare th.us, .compare td.us { background: var(--sage-50); }
.compare td.us { color: var(--ink); font-weight: 500; }
.compare td .yes { color: var(--sage); font-weight: 600; }
.compare td .muted { color: var(--steel); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.quote { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.quote .mark { font-family: var(--font-display); font-style: italic; font-size: 40px; line-height: 0.4; color: var(--sage); height: 18px; }
.quote p { font-size: 16px; line-height: 1.5; color: var(--ink); letter-spacing: -0.005em; margin: 0; flex: 1; }
.quote footer { display: flex; flex-direction: column; gap: 3px; padding-top: 6px; border-top: 1px solid var(--hairline); }
.quote .who { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.quote .role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.quote.placeholder { background: repeating-linear-gradient(135deg, var(--bone) 0 10px, var(--cream) 10px 20px); border-style: dashed; align-items: flex-start; justify-content: center; gap: 10px; }
.quote.placeholder .ph-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.quote.placeholder p { color: var(--steel); font-size: 14px; font-style: italic; font-family: var(--font-sans); }
.quotes-support { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.quotes-support b { color: var(--ink); font-weight: 600; }
.quotes.quotes-solo { display: block; max-width: 680px; margin: 0 auto 28px; }
.quotes.quotes-solo .quote { gap: 20px; }
.quotes.quotes-solo .quote p { font-size: 19px; line-height: 1.5; }

/* ---------- Trust ---------- */
.trust-note { margin-top: 24px; padding: 16px 20px; border: 1px solid var(--hairline); border-radius: var(--r-1); background: var(--paper); font-size: 13px; line-height: 1.55; color: var(--steel); display: flex; gap: 12px; }
.trust-note svg { width: 18px; height: 18px; color: var(--steel); flex: none; margin-top: 1px; }

/* ---------- Pricing ---------- */
.price-unit { max-width: 760px; font-size: 18px; line-height: 1.55; color: var(--ink-2); margin-bottom: 36px; }
.price-unit b { color: var(--ink); font-weight: 600; }
.price-unit .free { color: var(--sage); font-weight: 600; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.tier-primary { background: var(--ink); color: var(--on-ink-fg); border-color: var(--ink); position: relative; }
.tier-primary .tier-name, .tier-primary .tier-sla { color: var(--on-ink-fg-2); }
.tier.tier-primary li { color: #DAD4C6; }
.tier.tier-primary li::before { background: #9ED1AF; }
.tier-flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; padding: 5px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-card); }
.tier-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.tier-primary .tier-head { border-color: var(--on-ink-line); }
.tier-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); font-weight: 500; }
.tier-sla { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.tier-price { display: flex; align-items: baseline; gap: 8px; }
.tier-price .p { font-family: var(--font-sans); font-weight: 600; font-size: 44px; letter-spacing: -0.02em; line-height: 1; }
.tier-price .u { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tier li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.tier li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 2px; background: var(--sage); }
.tier .btn { width: 100%; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
.faq-item { padding: 22px 0; border-top: 1px solid var(--hairline); }
.faq-item:first-child, .faq-item:nth-child(2) { border-top: 0; }
.faq-item h3 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; letter-spacing: -0.005em; margin-bottom: 8px; }
.faq-item p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--sage); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1.3fr auto; gap: 36px; align-items: center; padding: 72px 0; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.7); display: block; margin-bottom: 16px; }
.cta-inner h2 { font-family: var(--font-sans); font-weight: 600; font-size: 40px; line-height: 1.08; letter-spacing: -0.02em; max-width: 18ch; }
.cta-inner h2 .serif { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.cta-inner .body { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.82); margin-top: 14px; max-width: 46ch; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.cta-strip .btn-cta { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-strip .btn-cta:hover { background: #fff; }
.cta-strip .risk { color: rgba(255,255,255,0.78); }
.cta-strip .risk .dot { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: var(--on-ink-fg-2); border-top: 1px solid var(--on-ink-line); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 28px; }
.foot-brand { display: flex; flex-direction: column; gap: 14px; max-width: 30ch; }
.foot-brand .wordmark { font-family: var(--font-sans); font-weight: 600; font-size: 22px; color: var(--on-ink-fg); letter-spacing: -0.01em; }
.foot-brand .wordmark .tld { color: var(--on-ink-fg-2); }
.foot-lock { display: inline-flex; align-items: center; gap: 10px; }
.foot-lock .mono { width: 24px; height: 24px; flex: none; }
.foot-tag { font-size: 13px; line-height: 1.55; color: var(--on-ink-fg-2); }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-ink-fg); font-weight: 500; margin-bottom: 4px; }
.foot-col a { font-size: 14px; color: var(--on-ink-fg-2); }
.foot-col a:hover { color: var(--on-ink-fg); }
.foot-rule { height: 1px; background: var(--on-ink-line); margin: 40px 0 18px; }
.foot-fine { display: flex; justify-content: space-between; gap: 24px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-ink-fg-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --gutter: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 48px; }
  .col2, .how-grid, .verdicts-grid, .screens, .quotes, .tier-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(3) { border-left: 0; }
  .stat-card:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .proofbar-inner { grid-template-columns: 1fr; }
  .proofbar .cell + .cell { border-left: 0; border-top: 1px solid var(--hairline); }
  .cta-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: 1px solid var(--hairline); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  /* mobile menu: hamburger toggles a dropdown nav */
  .menu-btn { display: inline-flex; align-items: center; }
  .masthead-inner { position: relative; }
  .nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink); border-bottom: 1px solid var(--on-ink-line);
    padding: 10px var(--gutter) 18px; box-shadow: var(--shadow-sheet); }
  .masthead.open .nav { display: flex; }
  .nav .link, .nav .signin { display: block; padding: 11px 2px; font-size: 16px; }
  .nav .sep { display: none; }
  .nav .btn { width: 100%; margin-top: 10px; justify-content: center; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
  .hero-pill { white-space: normal; line-height: 1.4; }
  .hero-deck { font-size: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-left: 0 !important; }
  .stat-card + .stat-card { border-top: 1px solid var(--hairline); }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-fine { flex-direction: column; gap: 8px; }
  .report-signals { grid-template-columns: 1fr; }
}

/* ============================================================
   MOTION & DEPTH (premium layer) — all gated on body.anim,
   which JS only adds when prefers-reduced-motion is not set.
   Without JS / with reduced motion, everything is fully visible.
   ============================================================ */

/* ---- Keyframes (entrances use animations, never declaration-toggle
       transitions, which can stick mid-flight) ---- */
@keyframes riseIn  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes cardIn  { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes floatInR { from { opacity: 0; transform: translateY(16px) rotate(6deg); }  to { opacity: 0.96; transform: rotate(6deg); } }
@keyframes floatInL { from { opacity: 0; transform: translateY(16px) rotate(-5deg); } to { opacity: 0.92; transform: rotate(-5deg); } }
@keyframes badgeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: none; } }
@keyframes sigIn   { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes growX   { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---- Scroll reveal (static hide via .pre; .in plays an animation) ---- */
body.anim .reveal.pre { opacity: 0; }
body.anim .reveal.in { animation: riseIn 0.62s var(--ease-out) both; }

/* ---- Hover lifts ---- */
.feature, .how-step, .screen, .quote, .tier { transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.22s var(--ease-out); }
@media (hover: hover) {
  .feature:hover, .how-step:hover, .screen:hover, .quote:hover:not(.placeholder) { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--hairline-strong); }
  .tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
  .tier-primary:hover { box-shadow: 0 8px 16px rgba(31,27,20,0.10), 0 40px 64px -16px rgba(31,27,20,0.34); }
  .btn .arr { transition: transform 0.18s var(--ease-out); display: inline-block; }
  .btn:hover .arr { transform: translateX(4px); }
}

/* ---- Hero 3D stage ---- */
.hero-stage { perspective: 1400px; position: relative; }
.report-3d { transform-style: preserve-3d; transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.3s var(--ease-out); position: relative; z-index: 2; }
.report { transform-style: preserve-3d; }
body.anim .hero-stage:not(.loaded) .report { opacity: 0; }
body.anim .hero-stage.loaded .report { animation: cardIn 0.7s var(--ease-out) both; }

/* floating dispatch slips behind the card */
.float-stamp { position: absolute; width: 184px; padding: 9px; background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: 4px; box-shadow: var(--shadow-card); z-index: 1; pointer-events: none; transition: transform 0.4s var(--ease-out); }
.float-stamp img { width: 100%; height: auto; display: block; }
.float-stamp.fs-1 { top: -42px; right: -28px; transform: rotate(6deg); opacity: 0.96; }
.float-stamp.fs-2 { bottom: -38px; left: -34px; transform: rotate(-5deg); opacity: 0.92; }
body.anim .hero-stage:not(.loaded) .float-stamp { opacity: 0; }
body.anim .hero-stage.loaded .float-stamp.fs-1 { animation: floatInR 0.7s var(--ease-out) 0.15s both; }
body.anim .hero-stage.loaded .float-stamp.fs-2 { animation: floatInL 0.7s var(--ease-out) 0.25s both; }

/* ---- Report card internals animate in on load ---- */
body.anim .hero-stage:not(.loaded) .rv-badge,
body.anim .hero-stage:not(.loaded) .report-signals li,
body.anim .hero-stage:not(.loaded) .report-q li { opacity: 0; }
body.anim .hero-stage.loaded .rv-badge { animation: badgeIn 0.5s var(--ease-out) 0.45s both; }
body.anim .hero-stage.loaded .report-signals li { animation: sigIn 0.4s var(--ease-out) both; }
body.anim .hero-stage.loaded .report-signals li:nth-child(1) { animation-delay: 0.55s; }
body.anim .hero-stage.loaded .report-signals li:nth-child(2) { animation-delay: 0.66s; }
body.anim .hero-stage.loaded .report-signals li:nth-child(3) { animation-delay: 0.77s; }
body.anim .hero-stage.loaded .report-signals li:nth-child(4) { animation-delay: 0.88s; }
body.anim .hero-stage.loaded .report-q li { animation: sigIn 0.45s var(--ease-out) 0.95s both; }

/* ---- Verdict stamps press in ---- */
@keyframes stampIn {
  0%   { opacity: 0; transform: translateY(12px) scale(1.07) rotate(-1.4deg); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}
body.anim .verdicts-grid:not(.in-stamps) .verdict-frame { opacity: 0; }
body.anim .verdicts-grid.in-stamps .verdict-block:nth-child(1) .verdict-frame { animation: stampIn 0.5s var(--ease) 0.05s forwards; }
body.anim .verdicts-grid.in-stamps .verdict-block:nth-child(2) .verdict-frame { animation: stampIn 0.5s var(--ease) 0.2s forwards; }
body.anim .verdicts-grid.in-stamps .verdict-block:nth-child(3) .verdict-frame { animation: stampIn 0.5s var(--ease) 0.35s forwards; }

/* ---- Shortlist progress bars grow when revealed ---- */
.progress > span { transform-origin: left center; }
body.anim .screens:not(.in) .progress > span { transform: scaleX(0); }
body.anim .screens.in .progress > span { animation: growX 0.9s var(--ease-out) both; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .report-3d, .float-stamp, .progress > span { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   SUB-PAGES (vertical, guide, legal) — shared shell
   ============================================================ */
.subhero { position: relative; overflow: hidden; padding: 64px 0 48px;
  background: radial-gradient(120% 120% at 85% -20%, var(--sage-50) 0%, rgba(236,241,229,0) 55%), var(--bone);
  border-bottom: 1px solid var(--hairline); }
.breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); margin-bottom: 18px; }
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb span { color: var(--hairline-strong); margin: 0 6px; }
.subhero .eyebrow { display: block; margin-bottom: 14px; }
.subhero h1 { font-family: var(--font-sans); font-weight: 600; font-size: 46px; line-height: 1.05; letter-spacing: -0.025em; max-width: 18ch; text-wrap: balance; }
.subhero h1 .serif { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--sage); }
.subhero .lead { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; margin-top: 16px; }
.subhero .sub-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* long-form prose for guides */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-family: var(--font-sans); font-weight: 600; font-size: 26px; letter-spacing: -0.015em; margin-top: 44px; line-height: 1.2; }
.prose h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin-top: 28px; }
.prose p, .prose li { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose li { padding-left: 4px; }
.prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .callout { background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 20px 22px; margin-top: 26px; }
.prose .callout p { margin: 0; font-size: 15px; }
.guide-grid { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 56px; align-items: start; }
.guide-toc { position: sticky; top: 88px; font-size: 13px; }
.guide-toc .foot-h { display: block; margin-bottom: 12px; }
.guide-toc a { display: block; color: var(--steel); padding: 5px 0; line-height: 1.4; }
.guide-toc a:hover { color: var(--sage); }
@media (max-width: 880px) { .guide-grid { grid-template-columns: 1fr; gap: 32px; } .guide-toc { display: none; } .subhero h1 { font-size: 38px; } }

/* related-pages cards (internal linking) */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: block; background: var(--cream); border: 1px solid var(--hairline-strong); border-radius: var(--r-2); padding: 22px; transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.related-card .eyebrow { display: block; margin-bottom: 8px; }
.related-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.related-card p { font-size: 14px; line-height: 1.5; color: var(--steel); margin-top: 6px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
