/* TUS funnel v2 — designed on the real TUS brand:
   navy #0B243F / #143052, cyan #1FA5C9 / #0B6E88,
   Fraunces (display) + Figtree (body). */

@font-face { font-family: Fraunces; font-weight: 600; font-display: swap; src: url(/fonts/fraunces-600.woff2) format("woff2"); }
@font-face { font-family: Fraunces; font-weight: 700; font-display: swap; src: url(/fonts/fraunces-700.woff2) format("woff2"); }
@font-face { font-family: Figtree; font-weight: 400; font-display: swap; src: url(/fonts/figtree-400.woff2) format("woff2"); }
@font-face { font-family: Figtree; font-weight: 500; font-display: swap; src: url(/fonts/figtree-500.woff2) format("woff2"); }
@font-face { font-family: Figtree; font-weight: 600; font-display: swap; src: url(/fonts/figtree-600.woff2) format("woff2"); }
@font-face { font-family: Figtree; font-weight: 700; font-display: swap; src: url(/fonts/figtree-700.woff2) format("woff2"); }

:root {
  --navy: #0B243F;
  --navy-2: #143052;
  --cyan: #1FA5C9;
  --cyan-deep: #0B6E88;
  --ink: #1c2b3a;
  --muted: #5b6b7b;
  --line: #e3e9ef;
  --bg-alt: #f2f6f9;
  --gold: #f6b73c;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(11, 36, 63, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: Figtree, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2 { font-family: Fraunces, Georgia, serif; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: 34px; line-height: 1.12; }
h2 { font-size: 28px; line-height: 1.18; margin-bottom: 18px; }
h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
@media (min-width: 700px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
}

/* Header */
.site-header { background: var(--navy); padding: 0; position: sticky; top: 0; z-index: 20; }
.logo-link { display: flex; justify-content: center; padding: 16px 20px 13px; }
.logo-img { height: 26px; }
.progress-track { height: 3px; background: rgba(255,255,255,.15); }
.progress-fill { height: 100%; background: var(--cyan); transition: width .3s; }

/* Buttons */
.btn {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 12px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  font: 700 16px/1.3 Figtree, sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
}
.btn-primary { background: var(--cyan); color: #fff; box-shadow: 0 4px 16px rgba(31,165,201,.35); }
.btn-primary:hover { background: var(--cyan-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: inherit; font-weight: 600; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; box-shadow: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  text-align: center;
  padding: 52px 22px 56px;
}
.hero h1 { color: #fff; max-width: 640px; margin: 18px auto; }
.hero h1 em { font-style: italic; color: var(--cyan); }
.hero-sub { max-width: 520px; margin: 0 auto 28px; color: rgba(255,255,255,.82); font-size: 17px; }
.hero .btn-ghost { color: rgba(255,255,255,.75); }
.chip {
  display: inline-block;
  background: rgba(31,165,201,.16);
  border: 1px solid rgba(31,165,201,.45);
  color: #7fd0e8;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 34px auto 0;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 18px 8px;
  text-decoration: none;
  color: #fff;
  transition: background .15s, border-color .15s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-card:hover { background: rgba(255,255,255,.11); border-color: rgba(31,165,201,.6); }
.stat-num { font-family: Fraunces, serif; font-size: 30px; font-weight: 700; color: var(--cyan); }
.stat-desc { font-size: 12.5px; color: rgba(255,255,255,.75); }

/* Logo strips */
.strip { padding: 30px 22px; text-align: center; border-bottom: 1px solid var(--line); }
.strip-title { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 34px; }
.logo-row img { height: 24px; max-width: 110px; object-fit: contain; }

/* Sections */
.section { max-width: 820px; margin: 0 auto; padding: 56px 22px; text-align: center; }
.section.alt { max-width: none; background: var(--bg-alt); }
.section.alt > * { max-width: 776px; margin-left: auto; margin-right: auto; }
.kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 10px;
}
.kicker.light { color: #7fd0e8; }
.q-eyebrow { color: var(--cyan-deep); font-weight: 600; font-size: 14.5px; max-width: 460px; margin: 0 auto 12px; }

/* Journey */
.journey { list-style: none; max-width: 620px; margin: 26px auto; text-align: left; }
.journey-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.journey-step:last-child { border-bottom: 0; }
.step-num {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font: 700 16px/38px Fraunces, serif;
  text-align: center;
}
.journey-step p { color: var(--muted); font-size: 14.5px; }
.journey-plus { color: var(--cyan-deep); font-weight: 600; font-size: 14.5px; margin: 4px 0 22px; }

/* Navy problems card */
.navy-card-section { padding-top: 8px; }
.navy-card {
  background: var(--navy);
  border-radius: 22px;
  color: #fff;
  padding: 40px 26px;
}
.navy-card h2 { color: #fff; }
.navy-lede { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 24px; font-size: 15px; }
.problem-list { list-style: none; max-width: 520px; margin: 0 auto 28px; text-align: left; }
.problem-list li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  font-size: 15px;
}
.problem-list li:last-child { border-bottom: 0; }
.problem-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--cyan);
  font-weight: 700;
}
.problem-list b { display: block; }
.problem-list span { color: rgba(255,255,255,.65); font-size: 13.5px; }

/* Reviews */
.review-grid { display: grid; gap: 16px; margin-top: 26px; text-align: left; }
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; margin-bottom: 12px; }
.review-card blockquote { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font: 700 17px/40px Fraunces, serif;
  text-align: center;
  flex: none;
}
.review-card small { color: var(--muted); }

/* Split */
.split { display: grid; gap: 24px; text-align: left; margin-top: 10px; }
@media (min-width: 700px) { .split { grid-template-columns: 1fr 1.1fr; align-items: center; } }
.split-img { width: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-text p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.tick-list { list-style: none; margin-top: 6px; }
.tick-list li { padding: 6px 0 6px 28px; position: relative; font-size: 15px; color: var(--muted); }
.tick-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--cyan-deep); font-weight: 700; }
.tick-list b { color: var(--ink); }

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 22px;
}
.final-cta h2 { color: #fff; max-width: 620px; margin: 0 auto 28px; }
.final-cta .btn-ghost { color: rgba(255,255,255,.75); }

/* Question pages */
.q-wrap { max-width: 620px; margin: 0 auto; padding: 54px 22px 70px; text-align: center; }
.q-title { margin-bottom: 26px; }
.q-hint { color: var(--muted); font-size: 14px; margin: -14px 0 22px; }
.answer-list { display: grid; gap: 12px; margin-bottom: 22px; }
.answer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: 600 16px Figtree, sans-serif;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.answer-row:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-1px); }
.answer-emoji { font-size: 20px; }
.answer-arrow { margin-left: auto; color: var(--cyan); font-weight: 700; opacity: 0; transition: opacity .15s; }
.answer-row:hover .answer-arrow { opacity: 1; }
.radio-dot {
  margin-left: auto;
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex: none;
  position: relative;
  transition: border-color .15s;
}
.answer-row.selected { border-color: var(--cyan); background: #f4fbfd; }
.answer-row.selected .radio-dot { border-color: var(--cyan); }
.answer-row.selected .radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--cyan);
}
.answer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.answer-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 14px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.answer-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-2px); }
.answer-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.answer-card-icon svg { width: 40px; height: 40px; }
.answer-card-icon.mono svg { fill: var(--navy); }
.answer-card-label { font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.3; }
.q-note { color: var(--muted); font-size: 14.5px; }
.q-note.big { font-size: 16.5px; margin-bottom: 26px; }
.q-note b, .q-note.big b { color: var(--ink); }
.q-next { margin-top: 10px; }

.confirm-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e5f6ee;
  color: #1e9e63;
  font: 700 30px/64px Figtree, sans-serif;
}

/* Opt-in variants: health-check copy is the default; body.variant-call flips
   to the discovery-call copy (set by funnel.js from the clicked landing CTA). */
[data-variant="call"] { display: none !important; }
body.variant-call [data-variant="call"] { display: revert !important; }
body.variant-call section[data-variant="call"] { display: block !important; }
body.variant-call [data-variant="hc"] { display: none !important; }
.variant-switch { font-size: 13.5px; color: var(--muted); text-align: center; }
.variant-switch a { color: var(--cyan-deep); }

/* Bill upload */
.upload-head { text-align: center; margin-bottom: 6px; }
.upload-title { font-size: 22px; margin-bottom: 8px; }
.upload-lede { color: var(--muted); font-size: 14.5px; }
.confirm-icon.small { display: inline-block; width: 44px; height: 44px; font-size: 22px; line-height: 44px; margin-bottom: 10px; }
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 26px 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.drag { border-color: var(--cyan); background: #f4fbfd; }
.dz-icon { font-size: 26px; color: var(--cyan-deep); }
.dz-text { font-size: 14px; color: var(--muted); }
.dz-text b { color: var(--navy); }
.file-list { list-style: none; display: grid; gap: 6px; }
.file-list:empty { display: none; }
.file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13.5px;
}
.file-list .rm { color: #c0392b; cursor: pointer; border: 0; background: none; font-size: 16px; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* Opt-in */
.optin-card[hidden] { display: none !important; }
.optin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 22px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.field input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  font: 500 16px Figtree, sans-serif;
  outline: 0;
  transition: border-color .15s;
}
.field input:focus { border-color: var(--cyan); }
.field.invalid input { border-color: #c0392b; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--cyan); }
.consent a { color: var(--muted); }
.form-error { color: #c0392b; font-size: 14px; text-align: center; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 620px; margin: 22px auto 30px; text-align: left; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 18px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--cyan-deep); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 16px; color: var(--muted); font-size: 14.5px; }
.rating-line p { margin-top: 2px; color: var(--muted); }
.rating-line b { color: var(--ink); }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); text-align: center; padding: 36px 20px; font-size: 13.5px; }
.footer-logo { height: 20px; opacity: .9; margin-bottom: 12px; }
.footer-line { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer .dot { margin: 0 10px; opacity: .5; }

/* Cookie modal (same IDs as v1; restyled) */
.cookie-overlay[hidden] { display: none; }
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,36,63,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  width: 100%;
  padding: 26px 24px;
  text-align: left;
  box-shadow: 0 16px 50px rgba(11,36,63,.35);
}
.cookie-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cookie-head h2 { font-size: 20px; margin: 0; }
.cookie-modal p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.cookie-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 15px; }
.toggle {
  width: 44px; height: 24px;
  border-radius: 12px;
  background: #cfd8e0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
}
.toggle.on { background: var(--cyan); }
.toggle.on::after { left: 22px; }
.toggle.locked { cursor: default; }
.btn-cookie {
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  font: 600 15px Figtree, sans-serif;
  cursor: pointer;
  margin-top: 10px;
}
.btn-cookie.primary { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.cookie-btn-row { display: flex; gap: 10px; }
