:root {
  --accent: #2563a8;
  --accent-ink: #ffffff;
  --ink: #15181d;
  --muted: #5a636e;
  --line: #e7e9ee;
  --bg: #ffffff;
  --soft: #f6f8fb;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.06);
  --maxw: 760px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 30px 0; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; font-size: 16px;
  background: color-mix(in srgb, var(--accent) 14%, white);
}
.nav .navcta {
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  color: var(--accent); padding: 8px 14px; border-radius: 9px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, white);
}
.nav .navcta:hover { background: color-mix(in srgb, var(--accent) 8%, white); }

/* ---- Hero ---- */
.hero {
  padding: 60px 0 44px;
  background:
    radial-gradient(1100px 460px at 78% -8%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, white), var(--bg));
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, white);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 18px; font-weight: 800;
}
.sub { font-size: 1.18rem; line-height: 1.55; color: var(--muted); margin: 0 0 26px; max-width: 38em; }

/* ---- Capture form ---- */
.capture { display: flex; gap: 9px; flex-wrap: wrap; max-width: 480px; }
.capture input[type="email"] {
  flex: 1 1 230px; padding: 14px 15px; font-size: 1rem; color: var(--ink);
  border: 1px solid #cfd5de; border-radius: 11px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.capture input[type="email"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, white);
}
.capture button {
  padding: 14px 22px; font-size: 1rem; font-weight: 650; font-family: inherit;
  color: var(--accent-ink); background: var(--accent); border: 0; border-radius: 11px;
  cursor: pointer; white-space: nowrap; transition: transform .04s, filter .15s;
}
.capture button:hover { filter: brightness(1.07); }
.capture button:active { transform: translateY(1px); }
.capture button:disabled { opacity: .6; cursor: default; }
.trial-cta {
  display: inline-block; padding: 15px 28px; font-size: 1.05rem; font-weight: 650;
  font-family: inherit; color: var(--accent-ink); background: var(--accent);
  border: 0; border-radius: 11px; cursor: pointer; transition: transform .04s, filter .15s;
}
.trial-cta:hover { filter: brightness(1.07); }
.trial-cta:active { transform: translateY(1px); }
.trial-cta:disabled { opacity: .6; cursor: default; }
.micro { font-size: 0.9rem; color: var(--muted); margin: 11px 0 0; }
.msg { font-size: 0.96rem; margin: 10px 0 0; min-height: 1.2em; font-weight: 550; }
.msg.ok { color: #157347; }
.msg.err { color: #c0392b; }

/* ---- Stat band ---- */
.stats {
  background: color-mix(in srgb, var(--accent) 7%, white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats .row { display: flex; flex-wrap: wrap; gap: 12px; padding: 26px 0; }
.stat { flex: 1 1 140px; }
.stat .big { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); }
.stat .label { font-size: 0.92rem; color: var(--muted); margin-top: 2px; }

/* ---- Problem ---- */
.problem p {
  font-size: 1.12rem; color: #2c333c; margin: 0;
  border-left: 3px solid var(--accent); padding-left: 18px;
}

/* ---- Steps ---- */
.how h2, .faq h2 { font-size: 1.45rem; letter-spacing: -0.015em; margin: 0 0 20px; font-weight: 750; }
.steps { display: grid; gap: 14px; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
}
.step .n {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem;
  color: var(--accent-ink); background: var(--accent);
}
.step p { margin: 3px 0 0; }

/* ---- FAQ ---- */
.faq details {
  border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px;
  background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 13px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 14px; color: var(--muted); }

/* ---- Final CTA ---- */
.final {
  background: color-mix(in srgb, var(--accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, white);
  border-radius: 18px; padding: 34px 28px; text-align: center; margin: 16px 0 8px;
}
.final h2 { margin: 0 0 8px; font-size: 1.5rem; letter-spacing: -0.015em; }
.final .sub { margin: 0 auto 20px; }
.final .capture { margin: 0 auto; justify-content: center; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--line); margin-top: 16px; }
footer .wrap { padding: 26px 22px 50px; }
.trust { font-size: 0.85rem; color: var(--muted); margin: 0 0 6px; }
.legal { font-size: 0.85rem; margin: 0 0 6px; }
.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--accent); text-decoration: underline; }
.copyright { font-size: 0.82rem; color: #9aa2ad; }
.about h2 { font-size: 1.25rem; margin: 0 0 10px; }
.about p { color: var(--muted); margin: 0; }
.legaldoc { padding: 40px 22px 70px; }
.legaldoc h1 { font-size: 1.9rem; margin: 0 0 16px; }
.legaldoc h2 { font-size: 1.15rem; margin: 26px 0 8px; }
.legaldoc p, .legaldoc li { color: #3a424d; }
.legaldoc a { color: var(--accent); }

/* ---- Index ---- */
.grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 22px 0; }
@media (min-width: 620px) { .grid { grid-template-columns: 1fr 1fr; } }
.card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; text-decoration: none; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.card strong { display: block; margin: 6px 0 4px; }
.card em { color: var(--muted); font-style: normal; font-size: 0.9rem; }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, white); padding: 2px 9px; border-radius: 999px;
}

/* ---- Skip link / hidden ---- */
.hidden { display: none; }
.skip { color: var(--muted); text-decoration: none; }
.skip:hover { color: var(--accent); text-decoration: underline; }

/* ---- Logo mark ---- */
.mark-logo { background: none !important; color: var(--accent); width: auto; height: auto; }
.mark-logo svg { width: 26px; height: 21px; display: block; }

/* ---- Dark theme (nav + hero) ---- */
body.dark .nav { background: rgba(10, 20, 15, 0.82); border-bottom-color: rgba(255, 255, 255, 0.08); }
body.dark .nav .brand { color: #fff; }
body.dark .mark-logo { color: #4ade80; }
body.dark .nav .navcta { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
body.dark .nav .navcta:hover { background: rgba(255, 255, 255, 0.08); }
body.dark .hero {
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(34, 197, 94, 0.22), transparent 62%),
    linear-gradient(180deg, #0a1a12 0%, #0c211636 100%), #0a160f;
}
body.dark .hero h1 { color: #fff; }
body.dark .hero .sub { color: rgba(255, 255, 255, 0.72); }
body.dark .hero .micro { color: rgba(255, 255, 255, 0.58); }
body.dark .hero .micro a, body.dark .hero .skip { color: rgba(255, 255, 255, 0.75); }
body.dark .phone { box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 60px -10px rgba(34, 197, 94, 0.25); }

/* ---- Integrations logo cloud ---- */
.integ-sec { background: var(--soft); }
.sec-head.center { max-width: 42em; margin-left: auto; margin-right: auto; text-align: center; }
.integ-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 26px; }
@media (max-width: 780px) { .integ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .integ-grid { grid-template-columns: repeat(2, 1fr); } }
.integ-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  text-align: center; padding: 20px 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: -0.015em; color: #5b6672;
  min-height: 92px; transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.integ-cell:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.integ-ico { color: #97a1ad; transition: color .15s ease; }
.integ-ico svg { width: 28px; height: 28px; display: block; }
.integ-cell:hover .integ-ico { color: var(--accent); }
.integ-name { line-height: 1.15; }

/* ---- Logo in mockup header + founder avatar ---- */
.scr-brand { display: inline-flex; align-items: center; gap: 6px; }
.scr-logo { color: var(--accent); display: inline-flex; }
.scr-logo svg { width: 17px; height: 14px; display: block; }
.founder-avatar-logo { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, white) !important; }
.founder-avatar-logo svg { width: 26px; height: 21px; }

/* ---- Pull quote ---- */
.quote-sec { background: #0a160f; }
.pullquote { max-width: 40em; margin: 0 auto; text-align: center; }
.pullquote blockquote {
  font-size: clamp(1.35rem, 3vw, 1.95rem); line-height: 1.32; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 16px;
}
.pullquote figcaption { color: #6ee7a0; font-weight: 600; font-size: 0.95rem; }

/* ---- Split hero + device ---- */
.hero-split { padding-top: 40px; }
.hero-split .wrap { max-width: 1120px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy { min-width: 0; }
.hero-visual { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .hero-split .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: 2; }
}

/* ---- Device mockup ---- */
.phone {
  width: 300px; max-width: 84vw; background: #0d1116; border-radius: 38px; padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(16,24,40,.35), 0 0 0 1px rgba(0,0,0,.06); position: relative;
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: #0d1116; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { background: linear-gradient(180deg, #f7faf8 0%, #fff 40%); border-radius: 28px; padding: 30px 18px 20px; }
.scr-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.scr-day { color: var(--muted); font-weight: 600; }
.ring { position: relative; width: 128px; height: 128px; margin: 4px auto 18px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #e6ebe8; stroke-width: 9; }
.ring-fg { fill: none; stroke: var(--accent); stroke-width: 9; stroke-linecap: round; }
.ring-num { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; line-height: 1; }
.ring-num b { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.02em; }
.ring-num span { display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.scr-rows { display: grid; gap: 2px; }
.scr-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #eef1ef; }
.scr-row:last-of-type { border-bottom: 0; }
.scr-t { font-weight: 650; font-size: 0.88rem; }
.scr-s { color: var(--muted); font-size: 0.76rem; margin-top: 1px; }
.pill { font-size: 0.95rem; line-height: 1; padding: 5px 8px; border-radius: 999px; white-space: nowrap; }
.pill-good { background: #e7f6ee; }
.pill-bad { background: #fdeaea; }
.pill-warn { background: #fdf3e0; }
.pill-accent { background: color-mix(in srgb, var(--accent) 12%, white); }
.scr-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid #eef1ef; color: var(--muted); font-size: 0.78rem; text-align: center; }

/* ---- "Ask your data" chips ---- */
.sec-head { max-width: 40em; margin: 0 0 22px; }
.sec-head h2 { font-size: 1.6rem; letter-spacing: -0.02em; margin: 0 0 8px; }
.sec-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips-label { text-align: center; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 28px 0 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; font-size: 0.95rem; color: #2c333c; box-shadow: var(--shadow); }
.chip::before { content: "?"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-weight: 800; font-size: 0.8rem; }

/* ---- Hero checklist ---- */
.hero-points { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 7px; }
.hero-points li { padding-left: 24px; position: relative; color: var(--muted); font-size: 1rem; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
body.dark .hero-points li { color: rgba(255, 255, 255, 0.74); }
body.dark .hero-points li::before { color: #4ade80; }

/* ---- Ask chat panel ---- */
.ask-sec { background: var(--soft); }
.chat { max-width: 660px; margin: 0 auto; display: grid; gap: 12px; }
.chat-q { justify-self: end; max-width: 85%; background: var(--accent); color: #fff; padding: 12px 16px; border-radius: 16px 16px 4px 16px; font-weight: 600; font-size: 0.95rem; }
.chat-a { justify-self: start; max-width: 92%; display: flex; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 14px 16px; border-radius: 16px 16px 16px 4px; box-shadow: var(--shadow); }
.chat-a .chat-mark { color: var(--accent); flex: 0 0 auto; display: inline-flex; }
.chat-a .chat-mark svg { width: 20px; height: 16px; }
.chat-a p { margin: 0; color: #2c333c; font-size: 0.95rem; line-height: 1.5; }

/* ---- "Biggest opportunity" card ---- */
.opp-sec { background: var(--soft); }
.opp-card { margin: 0 auto; }
.opp-impact { display: inline-block; background: #fdeaea; color: #b3261e; font-weight: 700; font-size: 0.85rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.opp-cta { text-align: center; margin-top: 26px; }
.opp-cta .micro { color: var(--muted); margin-top: 10px; }
.q-anchor { color: var(--muted); font-size: 0.85rem; margin-top: 12px; }
.opp-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); max-width: 640px; }
.opp-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.opp-focus { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.opp-row { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid #eef1ef; }
.opp-row span { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.opp-row p { margin: 0; color: #2c333c; }
.opp-avoid p { color: #b3261e; }
@media (max-width: 560px) { .opp-row { grid-template-columns: 1fr; gap: 4px; } }

/* ---- Founder note ---- */
.founder-card { display: flex; gap: 16px; align-items: flex-start; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.founder-avatar { font-size: 1.7rem; width: 54px; height: 54px; border-radius: 50%; background: #fff; display: grid; place-items: center; border: 1px solid var(--line); flex: 0 0 auto; }
.founder-note { margin: 0 0 6px; color: #2c333c; }
.founder-sign { margin: 0; color: var(--muted); font-size: 0.9rem; }
.founder-sign a { color: var(--muted); }

/* ---- Quiz ---- */
.quiz-modal { position: fixed; inset: 0; z-index: 200; background: rgba(8, 15, 11, 0.62); display: grid; place-items: center; padding: 20px; overflow-y: auto; }
.quiz-modal.hidden { display: none; }
body.quiz-lock { overflow: hidden; }
.quiz-card { position: relative; width: 100%; max-width: 560px; background: #fff; border-radius: 18px; padding: 34px 26px 28px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5); max-height: 92vh; overflow-y: auto; }
/* Mobile: full-screen sheet — reclaim the wasted margins and give the results + offer the whole screen. */
@media (max-width: 560px) {
  .quiz-modal { padding: 0; align-items: stretch; }
  .quiz-card { max-width: none; border-radius: 0; min-height: 100dvh; max-height: none; padding: 20px 18px 44px; box-shadow: none; }
  .quiz-close { top: 14px; right: 14px; }
  .score-num { font-size: 3.4rem; }
  .report { padding: 16px; }
  .report-offer { padding: 18px 16px; }
}
.quiz-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; background: #f1f3f5; color: #5b6672; border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background 0.12s; z-index: 2; }
.quiz-close:hover { background: #e4e7eb; }

/* ---- Signal Report (assessment payoff) ---- */
.report { text-align: left; background: linear-gradient(180deg, #f6faf8, #fff); border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-bottom: 18px; }
.report-top { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.report-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 11px; border-radius: 999px; }
.report-preview { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.report-title { font-size: 1.2rem; margin: 0 0 3px; letter-spacing: -0.01em; }
.report-profile { color: var(--muted); font-size: 0.85rem; margin: 0 0 14px; }
.report-opp { background: var(--accent); color: #fff; border-radius: 12px; padding: 15px 16px; margin-bottom: 6px; }
.report-klabel { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; opacity: 0.88; margin-bottom: 4px; }
.report-focus { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.report-impact { font-size: 0.88rem; opacity: 0.92; margin-top: 3px; }
.report-aha { background: color-mix(in srgb, var(--accent) 7%, white); border-radius: 8px; padding-left: 12px; padding-right: 12px; }
.report-aha span { color: var(--accent); }
.report-ask { margin-top: 14px; padding: 13px 15px; background: #0a160f; border-radius: 10px; }
.report-ask span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: #6ee7a0; font-weight: 700; margin-bottom: 5px; }
.report-ask p { margin: 0; color: #fff; font-size: 0.95rem; font-style: italic; line-height: 1.4; }
.report-row { display: grid; grid-template-columns: 104px 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid #eef1ef; }
.report-row span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.report-row p { margin: 0; font-size: 0.9rem; color: #2c333c; line-height: 1.45; }
.report-plan { padding: 12px 0; border-top: 1px solid #eef1ef; }
.report-plan > span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.report-plan ul { list-style: none; padding: 0; margin: 11px 0 0; display: grid; gap: 9px; }
.report-plan li { display: flex; gap: 10px; font-size: 0.9rem; color: #2c333c; line-height: 1.4; }
.report-plan li span { flex: 0 0 22px; height: 22px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-weight: 800; border-radius: 50%; font-size: 0.78rem; }
.report-proj { margin-top: 13px; padding: 12px 14px; background: color-mix(in srgb, var(--accent) 8%, white); border-radius: 10px; font-size: 0.9rem; color: #2c333c; line-height: 1.4; }
.report-proj b { color: var(--accent); }
.report-note { font-size: 0.77rem; color: var(--muted); margin: 14px 0 0; line-height: 1.45; }
.report-capture { text-align: center; }
.report-cap-h { font-weight: 700; margin: 0 0 8px; font-size: 0.98rem; }
.report-cap-sub { font-size: 0.86rem; color: var(--muted); margin: 0 0 14px; line-height: 1.5; }
.report-capture .capture { justify-content: center; }

/* ---- ASVAB diagnostic ---- */
.asvab-intro { text-align: center; padding: 6px 4px; }
.asvab-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.asvab-introsub { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin: 8px 0 20px; }
.asvab-fineprint { font-size: 0.76rem; color: var(--muted); margin-top: 12px; }
.asvab-passage { background: color-mix(in srgb, var(--accent) 7%, transparent); border-left: 3px solid var(--accent); border-radius: 8px; padding: 12px 14px; font-size: 0.95rem; line-height: 1.55; margin: 4px 0 14px; }
.score-hero { text-align: center; padding: 18px 0 6px; }
.score-num { font-size: 4.2rem; font-weight: 800; line-height: 1; color: var(--accent); }
.score-cat { font-weight: 700; font-size: 1.05rem; margin-top: 6px; }
.score-pct { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }
.report-blurb { font-size: 0.92rem; line-height: 1.55; margin: 12px 0 4px; }
.branch-list { display: grid; gap: 7px; margin: 8px 0 4px; }
.branch-row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 9px; border: 1px solid var(--line, #2a2f3a); font-size: 0.9rem; }
.branch-row.ok { background: color-mix(in srgb, var(--accent) 9%, transparent); border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.branch-ic { font-weight: 800; text-align: center; }
.branch-row.ok .branch-ic { color: var(--accent); }
.branch-row.no .branch-ic { color: var(--muted); }
.branch-name { font-weight: 600; }
.branch-req { color: var(--muted); font-size: 0.8rem; text-align: right; }
.jobs-wrap { margin: 14px 0 4px; }
.jobs-h { font-weight: 700; font-size: 0.9rem; margin: 0 0 8px; }
.jobs-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.job-chip { font-size: 0.82rem; padding: 6px 11px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); font-weight: 600; }
.jobs-note { font-size: 0.78rem; color: var(--muted); margin: 10px 0 0; line-height: 1.45; }
.offer-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin: 6px 0 10px; }
.offer-bul { text-align: left; max-width: 320px; margin: 0 auto 16px; padding: 0; list-style: none; display: grid; gap: 7px; }
.offer-bul li { position: relative; padding-left: 24px; font-size: 0.9rem; line-height: 1.4; }
.offer-bul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.q-result.offer { text-align: center; }

/* ---- Quiz priming / encouragement line (fights mid-quiz abandonment) ---- */
.q-priming { text-align: center; font-size: 0.8rem; color: var(--muted); margin: 16px 0 0; padding-top: 12px; border-top: 1px solid rgba(128,128,128,0.15); }
.q-priming.q-push { color: var(--accent); font-weight: 600; }

/* ---- Checkout-trust row under the offer CTA ---- */
.offer-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 12px 0 4px; font-size: 0.78rem; color: var(--muted); }
.offer-trust span { white-space: nowrap; }

/* ---- Above-the-fold hero offer card ---- */
.hero-offer { background: #fff; color: #15181d; border-radius: 18px; padding: 24px 22px; box-shadow: 0 24px 60px -24px rgba(0,0,0,0.55); border: 1px solid rgba(0,0,0,0.06); max-width: 380px; }
.hero-offer-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, white); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.hero-offer-price { font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.hero-offer-list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.hero-offer-list li { font-size: 0.9rem; line-height: 1.35; }
.hero-offer-bonuses { background: color-mix(in srgb, var(--accent) 6%, white); border: 1px dashed color-mix(in srgb, var(--accent) 40%, white); border-radius: 10px; padding: 10px 12px; margin: 0 0 14px; }
.hero-offer-bonus-h { font-size: 0.8rem; font-weight: 800; color: var(--accent); margin: 0 0 6px; }
.hero-offer-blist { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.hero-offer-blist li { font-size: 0.82rem; line-height: 1.3; padding-left: 14px; position: relative; }
.hero-offer-blist li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.hero-offer-guar { font-size: 0.8rem; line-height: 1.45; color: #3a4149; background: color-mix(in srgb, var(--accent) 7%, white); border-radius: 9px; padding: 9px 11px; margin: 0 0 14px; }
.hero-offer .trial-cta { width: 100%; box-sizing: border-box; }
.hero-offer-fine { font-size: 0.76rem; color: #6b7480; text-align: center; margin: 10px 0 0; }

/* ---- Grand Slam offer: value stack, bonuses, guarantee, urgency, down-sell ---- */
.offer-urgency { font-size: 0.86rem; font-weight: 600; color: var(--accent); text-align: center; margin: 6px 0 12px; }
.offer-stack-h { font-weight: 700; font-size: 0.92rem; margin: 8px 0 8px; text-align: left; }
.offer-stack { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 7px; text-align: left; }
.offer-stack li { font-size: 0.9rem; line-height: 1.4; }
.offer-stack .stack-core { color: inherit; }
.offer-stack .stack-bonus { color: inherit; }
.stack-tag { display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.03em; color: #fff; background: var(--accent); border-radius: 4px; padding: 1px 5px; margin-right: 4px; vertical-align: middle; }
.offer-anchor-val { font-size: 0.84rem; color: var(--muted); font-style: italic; text-align: center; margin: 0 0 6px; }
.offer-reason { font-size: 0.82rem; color: inherit; text-align: center; margin: 0 0 10px; }
.offer-guarantee { font-size: 0.82rem; line-height: 1.45; background: color-mix(in srgb, var(--accent) 8%, transparent); border-radius: 10px; padding: 10px 12px; margin: 12px 0 4px; text-align: left; }
.offer-downsell { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(128,128,128,0.2); text-align: center; }
.offer-downsell a { font-size: 0.84rem; color: var(--muted); text-decoration: none; }
.offer-downsell a:hover { color: var(--accent); text-decoration: underline; }

/* ---- Accelerator bonuses (content pages) ---- */
.accel-card.accel-bonus { border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.accel-content { line-height: 1.6; font-size: 0.95rem; }
.accel-content p { margin: 0 0 12px; }
.accel-content ul.bonus-ul { padding-left: 20px; margin: 0 0 14px; display: grid; gap: 5px; }
.accel-content .bonus-note { font-size: 0.82rem; color: var(--muted); }
.bonus-table { width: 100%; border-collapse: collapse; margin: 4px 0 14px; font-size: 0.9rem; }
.bonus-table th, .bonus-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid rgba(128,128,128,0.2); vertical-align: top; }
.bonus-table th { font-weight: 700; }

/* ---- Product-visibility pitch section (landing page) ---- */
.pitch-sec .wrap { max-width: 720px; }
.pitch-card { border: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent); background: color-mix(in srgb, var(--accent) 8%, transparent); border-radius: 18px; padding: 32px 28px; text-align: center; }
.pitch-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.pitch-card h2 { font-size: 1.6rem; margin: 0 0 10px; }
.pitch-sub { color: var(--muted); font-size: 1rem; line-height: 1.55; margin: 0 auto 18px; max-width: 560px; }
.pitch-list { list-style: none; padding: 0; margin: 0 auto 20px; max-width: 420px; text-align: left; display: grid; gap: 9px; }
.pitch-list li { position: relative; padding-left: 26px; font-size: 0.95rem; line-height: 1.45; }
.pitch-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.pitch-foot { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 18px; }
.pitch-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.pitch-note { font-size: 0.82rem; color: var(--muted); }
.pitch-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 0 0 10px; }
.pitch-buy { display: inline-block; text-decoration: none; }
.pitch-free { background: none; border: 0; color: var(--muted); font: inherit; font-size: 0.9rem; cursor: pointer; text-decoration: underline; padding: 4px; }
/* Restructured results: offer sits between the score card and the detail card. */
.report-detail { margin-top: 18px; }

/* ---- Locked study-plan teaser ---- */
.plan-locked { margin-top: 18px; border: 1px solid rgba(128,128,128,0.25); border-radius: 14px; padding: 16px 16px 12px; }
.plan-locked-h { font-weight: 800; font-size: 1rem; margin: 0 0 10px; }
.plan-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 12px; border-radius: 10px; background: rgba(128,128,128,0.08); margin-bottom: 7px; text-decoration: none; color: inherit; font-size: 0.9rem; transition: background 0.12s; }
.plan-row:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.plan-row-t { filter: blur(0px); font-weight: 600; }
.plan-lock { opacity: 0.8; }
.plan-locked-sub { font-size: 0.78rem; color: var(--muted); margin: 8px 0 0; text-align: center; }

/* ---- Inline paid offer (primary CTA on the report screen) ---- */
.report-offer { margin-top: 18px; padding: 20px 18px; border-radius: 14px; text-align: center; border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.report-offer-h { font-weight: 800; font-size: 1.1rem; margin: 0 0 6px; }
.report-offer-sub { font-size: 0.9rem; line-height: 1.5; color: var(--muted); margin: 0 0 12px; }
.report-offer .offer-price { margin: 4px 0 10px; }
.report-offer .trial-cta { width: 100%; box-sizing: border-box; }
/* Demote the email capture to a quiet secondary option below the offer. */
.report-capture.secondary { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(128,128,128,0.22); opacity: 0.92; }
.report-capture.secondary .report-cap-h { font-weight: 600; font-size: 0.86rem; color: var(--muted); }
.report-capture.secondary .capture input { font-size: 0.9rem; }

/* ---- Accelerator (paid product) ---- */
.accel-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 5px; padding: 2px 6px; margin-left: 6px; vertical-align: middle; }
.accel-wrap { max-width: 720px; margin: 0 auto; padding: 28px 18px 60px; }
.accel-loading { text-align: center; color: var(--muted); padding: 60px 0; }
.accel-locked { max-width: 480px; margin: 40px auto; text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 34px 26px; }
.accel-lock-ic { font-size: 2.4rem; margin-bottom: 8px; }
.accel-locked h1 { font-size: 1.5rem; margin: 0 0 12px; }
.accel-locked p { color: var(--muted); line-height: 1.55; font-size: 0.94rem; }
.accel-locked .trial-cta { margin-top: 8px; }
.accel-fine { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }
.accel-head h1 { font-size: 1.7rem; margin: 0 0 8px; }
.accel-head p { color: var(--muted); line-height: 1.55; font-size: 0.94rem; }
.accel-sec { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin: 28px 0 10px; }
.accel-list { display: grid; gap: 10px; }
.accel-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 15px 18px; cursor: pointer; color: inherit; font: inherit; transition: border-color 0.12s, background 0.12s; }
.accel-card:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, rgba(255,255,255,0.04)); }
.accel-card-name { font-weight: 700; display: block; }
.accel-card-sub { font-size: 0.82rem; color: var(--muted); }
.accel-card-go { color: var(--accent); font-weight: 700; white-space: nowrap; }
.accel-run-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.accel-exit { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 0.9rem; padding: 4px 0; }
.accel-run-count { font-size: 0.82rem; color: var(--muted); }
.accel-opts { display: grid; gap: 9px; margin-top: 4px; }
.accel-opts .q-opt.opt-correct { border-color: #2ec77a; background: rgba(46,199,122,0.14); }
.accel-opts .q-opt.opt-wrong { border-color: #e5484d; background: rgba(229,72,77,0.12); }
.accel-exp { margin-top: 14px; background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px 14px; }
.accel-exp-tag { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; display: block; margin-bottom: 4px; }
.accel-exp-tag.ok { color: #2ec77a; }
.accel-exp-tag.no { color: #e5484d; }
.accel-exp p { margin: 0; font-size: 0.9rem; line-height: 1.5; }
.accel-next-wrap { margin-top: 16px; }
.accel-summary { text-align: center; padding: 20px 0; }
.accel-summary h1 { font-size: 3.4rem; margin: 0; color: var(--accent); }
.accel-sum-pct { font-weight: 700; margin-top: 4px; }
.accel-sum-msg { color: var(--muted); margin: 12px auto 18px; max-width: 420px; line-height: 1.5; }
.accel-secbreak { max-width: 340px; margin: 0 auto 20px; display: grid; gap: 6px; }
.accel-secrow { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 6px 2px; }
.accel-sum-btns { display: grid; gap: 8px; max-width: 320px; margin: 0 auto; }
.accel-menu-btn { background: none; border: 1px solid rgba(255,255,255,0.18); color: inherit; border-radius: 10px; padding: 11px; cursor: pointer; font: inherit; }

/* ---- Open-ended (free text) question ---- */
.q-text { width: 100%; box-sizing: border-box; border: 1.5px solid #cfd5de; border-radius: 12px; padding: 13px 14px; font: inherit; font-size: 1rem; line-height: 1.5; resize: vertical; min-height: 96px; margin-top: 4px; background: var(--card, #fff); color: inherit; transition: border-color 0.12s; }
.q-text:focus { outline: none; border-color: var(--accent); }
.q-text.q-text-err { border-color: #b3261e; }

/* ---- Assessment upload + loading ---- */
.q-upload { display: block; border: 1.5px dashed #cfd5de; border-radius: 12px; padding: 22px; text-align: center; color: var(--muted); cursor: pointer; margin: 8px 0 4px; transition: border-color 0.12s, background 0.12s; }
.q-upload:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 4%, white); }
.q-file-note { font-size: 0.82rem; margin: 6px 0 0; text-align: center; }
.q-file-note.ok { color: var(--accent); font-weight: 600; }
.q-file-note.err { color: #b3261e; }
.q-upload-actions { display: grid; gap: 6px; margin-top: 16px; }
.q-skip-btn { background: none; border: 0; color: var(--muted); font-size: 0.9rem; cursor: pointer; padding: 8px; text-decoration: underline; }
.q-loading { text-align: center; padding: 34px 10px; }
.q-spinner { width: 40px; height: 40px; border: 3px solid #e6ebe8; border-top-color: var(--accent); border-radius: 50%; margin: 0 auto 16px; animation: q-spin 0.8s linear infinite; }
@keyframes q-spin { to { transform: rotate(360deg); } }
.q-loading p { margin: 4px 0; font-weight: 700; }
.q-loading-sub { color: var(--muted); font-weight: 400 !important; font-size: 0.9rem; }
.q-prog { height: 6px; background: #e4e7eb; border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.q-prog-bar { height: 100%; background: var(--accent); transition: width 0.3s; }
.q-count { color: var(--muted); font-size: 0.85rem; margin: 0 0 6px; }
.q-q { font-size: 1.4rem; margin: 0 0 18px; letter-spacing: -0.01em; }
.q-opts { display: grid; gap: 10px; }
.q-opt { text-align: left; padding: 15px 18px; font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff; border: 1px solid #cfd5de; border-radius: 11px; cursor: pointer; transition: border-color 0.12s, background 0.12s; }
.q-opt:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 6%, white); }
.q-result { text-align: center; padding: 8px 0; }
.q-badge { display: inline-block; font-weight: 700; color: #157347; background: #e7f6ee; padding: 6px 14px; border-radius: 99px; margin-bottom: 14px; }
.q-res-text { font-size: 1.1rem; color: #333; max-width: 36em; margin: 0 auto 18px; }
.q-result .capture { justify-content: center; }

/* ===== PrevailPay — WH-347 generator ===== */
.wh-body{background:#f4f6f5;color:#1a2420;}
.wh-top{background:#fff;border-bottom:1px solid #e2e8e5;}
.wh-top .wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;}
.wh-brand{font-weight:800;color:var(--accent);font-size:1.15rem;letter-spacing:-.02em;}
.wh-top-tag{color:#5b6b64;font-size:.85rem;}
.wh-hero{background:linear-gradient(160deg,#1f513f,#2f8f6f);color:#fff;padding:56px 0 48px;}
.wh-hero h1{font-size:2.4rem;line-height:1.1;margin:0 0 14px;letter-spacing:-.02em;}
.wh-sub{font-size:1.15rem;max-width:640px;opacity:.95;margin:0 0 20px;}
.wh-hero-pts{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:26px;font-size:.95rem;opacity:.95;}
.wh-hero-cta{display:inline-block;background:#ffd24a;color:#1f2b26;font-weight:800;padding:15px 30px;border-radius:10px;text-decoration:none;font-size:1.05rem;}
.wh-main{max-width:860px;padding:32px 20px 10px;}
.wh-card{background:#fff;border:1px solid #e2e8e5;border-radius:12px;padding:20px;margin-bottom:18px;box-shadow:0 1px 3px rgba(0,0,0,.04);}
.wh-card h3{margin:0 0 14px;font-size:1.1rem;color:var(--accent);}
.wh-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;}
.wh-f{display:flex;flex-direction:column;gap:5px;font-size:.85rem;color:#41524b;}
.wh-f input,.wh-f select{padding:10px;border:1px solid #cdd8d3;border-radius:8px;font-size:.95rem;background:#fff;}
.wh-f input:focus,.wh-f select:focus{outline:2px solid var(--accent2);border-color:var(--accent2);}
.wh-emp-head{display:flex;align-items:center;justify-content:space-between;}
.wh-rm{background:none;border:1px solid #d9b3b3;color:#b04545;border-radius:7px;padding:5px 12px;cursor:pointer;font-size:.8rem;}
.wh-hours{width:100%;border-collapse:collapse;margin:14px 0;}
.wh-hours th{font-size:.72rem;color:#6a7a73;font-weight:600;padding:4px;text-align:center;}
.wh-hours td{padding:2px;text-align:center;}
.wh-h-lab{font-size:.75rem;color:#41524b;text-align:right!important;padding-right:8px!important;white-space:nowrap;}
.wh-hr{width:44px;padding:7px 2px;text-align:center;border:1px solid #cdd8d3;border-radius:6px;font-size:.9rem;}
.wh-h-tot{font-weight:700;color:var(--accent);font-size:.9rem;}
.wh-sum{display:flex;flex-wrap:wrap;gap:14px;margin-top:12px;padding-top:12px;border-top:1px dashed #d7e0dc;font-size:.85rem;color:#41524b;}
.wh-sum b{color:#1a2420;}
.wh-add{width:100%;background:#eaf3ef;border:1px dashed var(--accent2);color:var(--accent);font-weight:700;padding:13px;border-radius:10px;cursor:pointer;margin-bottom:18px;font-size:.95rem;}
.wh-fringe{display:flex;flex-direction:column;gap:8px;margin-bottom:14px;font-size:.9rem;}
.wh-fringe label{display:flex;gap:8px;align-items:center;cursor:pointer;}
.wh-gen-wrap{text-align:center;margin:8px 0 40px;}
.wh-gen{background:var(--accent);color:#fff;font-weight:800;font-size:1.15rem;padding:16px 40px;border:none;border-radius:11px;cursor:pointer;box-shadow:0 3px 10px rgba(31,81,63,.25);}
.wh-errs{background:#fbeaea;color:#a23b3b;border:1px solid #e6bcbc;border-radius:8px;padding:11px 14px;margin-bottom:14px;font-size:.9rem;}
/* generated document */
.wh-doc{background:#fff;border:1px solid #d7e0dc;border-radius:12px;padding:22px;box-shadow:0 2px 8px rgba(0,0,0,.06);}
.wh-doc-top{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;margin-bottom:16px;font-size:.85rem;color:#41524b;}
.wh-print{background:var(--accent);color:#fff;border:none;font-weight:700;padding:11px 20px;border-radius:9px;cursor:pointer;}
.wh-edit{background:#eef2f0;border:1px solid #cdd8d3;color:#41524b;padding:11px 16px;border-radius:9px;cursor:pointer;}
.wh-meta{width:100%;border-collapse:collapse;margin-bottom:12px;font-size:.85rem;}
.wh-meta td{border:1px solid #d7e0dc;padding:7px 9px;vertical-align:top;}
.wh-meta span{display:block;font-size:.68rem;color:#7a8a83;text-transform:uppercase;letter-spacing:.03em;margin-bottom:2px;}
.wh-pay{width:100%;border-collapse:collapse;font-size:.72rem;}
.wh-pay th{background:#f0f4f2;border:1px solid #cdd8d3;padding:5px 3px;font-size:.66rem;color:#41524b;}
.wh-pay td{border:1px solid #d7e0dc;padding:5px 4px;text-align:center;}
.wh-pay td.l{text-align:left;}
.wh-pay small{color:#7a8a83;font-size:.9em;}
.wh-pay sup{color:#b06a1f;font-weight:700;}
.wh-note{font-size:.72rem;color:#7a8a83;margin:8px 0 0;}
.wh-soc{margin-top:18px;border-top:2px solid #1f513f;padding-top:14px;}
.wh-soc h4{margin:0 0 8px;color:var(--accent);}
.wh-soc p{font-size:.82rem;line-height:1.5;color:#2b352f;}
.wh-sig{display:flex;flex-wrap:wrap;gap:24px;margin-top:16px;font-size:.85rem;color:#41524b;}
/* upgrade */
.wh-up{background:linear-gradient(160deg,#fff8e6,#fdeecb);border:1px solid #f0d896;border-radius:14px;padding:26px;margin:26px 0 40px;}
.wh-up h3{margin:0 0 8px;font-size:1.35rem;color:#7a5a12;}
.wh-up p{font-size:1rem;line-height:1.55;color:#4d4326;margin:0 0 16px;}
.wh-price{font-weight:700;color:#5c4a16;margin-bottom:10px;}
.wh-price span{font-weight:400;color:#8a7a4a;}
.wh-price-btns{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px;}
.wh-price-btns button{background:#fff;border:2px solid #e6cd82;color:#6a561c;font-weight:700;padding:12px 20px;border-radius:10px;cursor:pointer;font-size:1rem;}
.wh-price-btns button.sel{background:var(--accent);border-color:var(--accent);color:#fff;}
.wh-up-form{display:flex;gap:8px;flex-wrap:wrap;}
.wh-up-form input{flex:1;min-width:200px;padding:13px;border:1px solid #d8c68a;border-radius:9px;font-size:1rem;}
.wh-up-form button{background:var(--accent);color:#fff;border:none;font-weight:700;padding:13px 22px;border-radius:9px;cursor:pointer;}
.wh-up-done{background:#e7f3ec;border:1px solid #b6d9c2;color:#25683f;padding:14px;border-radius:9px;font-weight:600;}
.wh-info{background:#fff;border-top:1px solid #e2e8e5;padding:44px 0;}
.wh-info h2{color:var(--accent);font-size:1.5rem;margin:0 0 14px;}
.wh-info-h2{margin-top:30px;}
.wh-info p{max-width:680px;line-height:1.6;color:#3a4842;margin:0 0 14px;}
.wh-info details{max-width:680px;border-bottom:1px solid #e2e8e5;padding:12px 0;}
.wh-info summary{cursor:pointer;font-weight:600;color:#1a2420;}
.wh-info details p{margin-top:10px;font-size:.92rem;}
.wh-foot{background:#1f2b26;color:#c7d3ce;padding:28px 0;}
.wh-foot p{margin:0 0 8px;}
.wh-fine{font-size:.75rem;color:#8ba098;max-width:680px;}
@media (max-width:600px){.wh-hero h1{font-size:1.8rem;}.wh-hr{width:38px;}}
/* print: only the generated WH-347 */
@media print{
  body *{visibility:hidden;}
  #wh347-out,#wh347-out *{visibility:visible;}
  #wh347-out{position:absolute;left:0;top:0;width:100%;}
  .wh-doc-top,.wh-print,.wh-edit{display:none!important;}
  .wh-doc{border:none;box-shadow:none;padding:0;}
  @page{size:landscape;margin:.4in;}
}

/* PrevailPay — Hormozi dream-offer upgrade block */
.wh-up-tag{display:inline-block;background:var(--accent);color:#fff;font-weight:700;font-size:.72rem;letter-spacing:.05em;padding:5px 12px;border-radius:20px;margin-bottom:12px;}
.wh-up-lead{font-size:1.05rem;line-height:1.55;color:#4d4326;margin:0 0 18px;}
.wh-up-stackwrap{background:#fff;border:1px solid #f0d896;border-radius:12px;padding:16px 18px;margin-bottom:16px;}
.wh-up-h{font-weight:800;color:#5c4a16;margin:0 0 10px;}
.wh-up-stack{list-style:none;margin:0;padding:0;}
.wh-up-stack li{padding:6px 0;font-size:.95rem;color:#3a3320;border-bottom:1px solid #f6ecd0;line-height:1.4;}
.wh-up-stack li:last-child{border-bottom:none;}
.wh-up-bonus span{display:inline-block;background:#e8b84b;color:#5c4a16;font-weight:800;font-size:.62rem;letter-spacing:.05em;padding:2px 7px;border-radius:5px;margin-right:6px;vertical-align:middle;}
.wh-up-anchor{background:#fff6e0;border-left:4px solid #e8b84b;padding:12px 14px;font-size:.95rem;line-height:1.5;color:#4d4326;margin:0 0 14px;border-radius:0 8px 8px 0;}
.wh-up-guar{font-size:.95rem;color:#2b5a3a;font-weight:600;margin:0 0 10px;}
.wh-up-urgency{font-size:.95rem;color:#8a3b1a;font-weight:600;margin:0 0 18px;}

/* PrevailPay — paid design-partner offer */
.wh-up-partner{font-size:.95rem;line-height:1.55;color:#4d4326;margin:0 0 14px;background:#fffdf6;border:1px dashed #e0cd8a;border-radius:10px;padding:13px 15px;}
.wh-up-cta-wrap{text-align:center;margin-top:20px;padding-top:18px;border-top:1px solid #f0d896;}
.wh-up-price{font-size:1.1rem;color:#5c4a16;margin-bottom:12px;}
.wh-up-price b{font-size:2.2rem;color:var(--accent);}
.wh-up-price span{color:#8a7a4a;font-size:.95rem;}
.wh-up-cta{display:inline-block;background:var(--accent);color:#fff;font-weight:800;font-size:1.2rem;padding:16px 40px;border-radius:11px;text-decoration:none;box-shadow:0 3px 10px rgba(31,81,63,.25);}
.wh-up-fine{font-size:.82rem;color:#8a7a4a;margin:12px 0 0;}
.wh-up-talk{display:inline-block;margin-top:10px;color:var(--accent);font-size:.9rem;font-weight:600;text-decoration:underline;}
