/* ── TOKENS ── */
:root {
  --blue: #0085cd;
  --blue-mid: #006fad;
  --blue-dark: #00517f;
  --blue-deep: #003657;
  --blue-ink: #01223a;
  --blue-pale: #e6f4fb;
  --blue-soft: #c8e8f7;
  --green: #71bf44;
  --green-mid: #5aa334;
  --green-dark: #3e7524;
  --green-pale: #eef9e6;
  --green-soft: #d5efbe;
  --amber: #f59e0b;
  --amber-pale: #fef3c7;
  --red: #dc2626;
  --red-pale: #fef2f2;
  --white: #ffffff;
  --off: #f4f8fb;
  --light: #e8eff5;
  --slate: #7b9bae;
  --muted: #4e7187;
  --ink: #01223a;

  --fh: "CooperBTMedium", serif;
  --fb: "MilligramText-Regular", Arial, sans-serif;

  --radius: 14px;
  --shadow: 0 4px 24px rgba(1, 34, 58, 0.08);
  --shadow-lg: 0 12px 48px rgba(1, 34, 58, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── FONTS ── */
@font-face {
  font-family: "CooperBTMedium";
  src:
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff2") format("woff2"),
    url("/assets/fonts/webFonts/CooperBTMedium/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MilligramText-Regular";
  src: url("/assets/fonts/MilligramText-Regular.ttf") format("trueType");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--fb);
  background: var(--off);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.app {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  margin-bottom: 28px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-ink);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--fh);
  font-size: 16px;
  color: var(--blue-ink);
}

.logo-main span {
  color: var(--green);
}

.logo-sub {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.topbar-right {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--slate);
  text-align: right;
}

/* ── PROGRESS BAR ── */
.progress-wrap {
  margin-bottom: 32px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.progress-step {
  font-size: 11px;
  color: var(--slate);
}

.progress-track {
  height: 4px;
  background: var(--light);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ── SCREENS ── */
.screen {
  display: none;
  animation: fadeUp 0.35s ease;
}

.screen.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 36px 40px;
}

.card-body-sm {
  padding: 28px 36px;
}

/* ── COVER SCREEN ── */
.cover-hero {
  background: var(--blue-ink);
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.cover-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
      rgba(0, 133, 205, 0.25),
      transparent 65%);
  pointer-events: none;
}

.cover-glow-b {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle,
      rgba(113, 191, 68, 0.15),
      transparent 65%);
  pointer-events: none;
}

.cover-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(113, 191, 68, 0.12);
  border: 1px solid rgba(113, 191, 68, 0.3);
  border-radius: 5px;
  padding: 5px 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.cover-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.cover-tag-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.cover-title {
  font-family: var(--fh);
  font-size: 38px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cover-title em {
  color: var(--green);
  font-style: normal;
}

.cover-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.cover-body {
  padding: 25px;
}

.cover-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.cover-meta-item {
  background: var(--off);
  border-radius: 10px;
  padding: 16px 14px;
  border: 1px solid var(--light);
  text-align: center;
}

.cover-meta-val {
  font-family: var(--fh);
  font-size: 22px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.cover-meta-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  padding: 14px 28px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-primary .arrow {
  font-size: 16px;
  transition: transform 0.2s;
}

.btn-primary:hover .arrow {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--slate);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--light);
  border-radius: 9px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--blue-soft);
  color: var(--blue) !important;
  background: var(--blue-pale);
}

/* ── INTRO SCREEN ── */
.intro-pull {
  border-left: 4px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-family: var(--fh);
  font-size: 16px;
  color: var(--green-dark);
  line-height: 1.5;
}

.intro-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.intro-body strong {
  color: var(--ink);
  font-weight: 600;
}
.how-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.form-title{
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.how-sub {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}

.how-arrow { display: none; }
.signup-desc{
  letter-spacing: 0.5px;
  padding-top: 10px;
color: rgb(2 152 245);
font-size: 12px;
font-weight: 600;
text-align: center;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 3px;
}

.field label span {
  color: var(--red);
  font-size: 13px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--fb);
  border: 1.5px solid var(--light);
  border-radius: 9px;
  background: var(--off);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field input::placeholder {
  color: var(--slate);
}

.field input:focus {
  border-color: var(--blue);
  background: var(--white);
}

/* jQuery toggleClass("error") */
.field input.error {
  border-color: var(--red);
  background: var(--red-pale);
}

/* jQuery toggleClass("success") */
.field input.success {
  border-color: var(--green);
  background: var(--white);
}

/* matches your .next(".validation") in JS */
.validation {
  font-size: 11px;
  color: var(--red);
  min-height: 16px;
  display: block;
}
input.success {
  border: 1px solid green;
}

input.error {
  border: 1px solid red;
}

#submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: gray;
}
#form-error-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red-pale);
  border: 1px solid #fecaca;
  border-radius: 9px;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.form-error-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-error-text {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
}
@media (max-width: 600px) {
  .how-row { grid-template-columns: 1fr; }
}


/* ── SECTION HEADER ── */
.section-header {
  background: linear-gradient(135deg, var(--blue-ink), var(--blue-deep));
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-left {}

.sh-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}

.sh-title {
  font-family: var(--fh);
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
}

.sh-title em {
  color: var(--green);
  font-style: normal;
}

.sh-right {
  text-align: right;
}

.sh-pts {
  font-family: var(--fh);
  font-size: 28px;
  color: var(--green);
  line-height: 1;
}

.sh-pts-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ── QUESTIONS ── */
.questions-wrap {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-block {}

.q-num-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

.q-num-label span {
  color: var(--blue);
}

.q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
}

.q-hint {
  font-size: 11px;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.4;
  font-style: italic;
}

/* Rating scale */
.rating-scale {
  display: flex;
  gap: 8px;
}

.r-opt {
  flex: 1;
}

.r-opt input[type="radio"] {
  display: none;
}

.r-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.r-bubble {
  width: 100%;
  height: 48px;
  border: 2px solid var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 18px;
  color: var(--slate);
  transition: all 0.2s;
  background: var(--off);
}

.r-bubble:hover {
  border-color: var(--blue-soft);
  background: var(--blue-pale);
  color: var(--blue);
}

.r-opt input:checked+label .r-bubble {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 133, 205, 0.3);
}

.r-anchor {
  font-size: 10px;
  color: var(--slate);
  text-align: center;
  line-height: 1.3;
  max-width: 70px;
}

.q-divider {
  height: 1px;
  background: var(--light);
  margin-top: 4px;
}

/* Section footer tally */
.section-tally {
  margin: 0 ;
  background: var(--blue-ink);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.st-label strong {
  color: var(--white);
}

.st-val {
  font-family: var(--fh);
  font-size: 20px;
  color: var(--green);
  min-width: 80px;
  text-align: right;
}

/* Section nav */
.section-nav {
  padding: 0 0px 0px;
  display: flex;
  gap: 10px;
}

/* ── RESULTS SCREEN ── */
.results-hero {
  background: var(--blue-ink);
  padding: 36px 40px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.results-hero-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse,
      rgba(113, 191, 68, 0.2),
      transparent 60%);
}

.results-score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
}

.results-score-val {
  font-family: var(--fh);
  font-size: 42px;
  color: var(--green);
  line-height: 1;
}

.results-score-max {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.results-tier-name {
  font-family: var(--fh);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.results-tier-name.strong {
  color: var(--green);
}

.results-tier-name.leakage {
  color: var(--amber);
}

.results-tier-name.critical {
  color: #fca5a5;
}

.results-tier-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.results-body {
  padding: 32px 40px;
}

/* Tier cards */
.tier-card {
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1.5px solid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
}

.tier-strong {
  background: var(--green-pale);
  border-color: var(--green-soft);
}

.tier-strong::before {
  background: var(--green);
}

.tier-leakage {
  background: var(--amber-pale);
  border-color: #fde68a;
}

.tier-leakage::before {
  background: var(--amber);
}

.tier-critical {
  background: var(--red-pale);
  border-color: #fecaca;
}

.tier-critical::before {
  background: var(--red);
}

.tier-card.active {
  box-shadow: var(--shadow-lg);
}

.tier-card.inactive {
  opacity: 0.38;
}

.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tc-range {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
}

.tc-range.strong {
  color: var(--green-dark);
}

.tc-range.leakage {
  color: #92400e;
}

.tc-range.critical {
  color: var(--red);
}

.tc-name {
  font-family: var(--fh);
  font-size: 16px;
}

.tc-name.strong {
  color: var(--green-dark);
}

.tc-name.leakage {
  color: #92400e;
}

.tc-name.critical {
  color: var(--red);
}

.tc-active-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.tc-active-badge.strong {
  background: var(--green-soft);
  color: var(--green-dark);
}

.tc-active-badge.leakage {
  background: #fde68a;
  color: #92400e;
}

.tc-active-badge.critical {
  background: #fecaca;
  color: var(--red);
}

.tc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}

.tc-tag.strong {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-soft);
}

.tc-tag.leakage {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.tc-tag.critical {
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid #fecaca;
}

/* Weak area flags */
.weak-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin: 24px 0 12px;
}

.weak-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weak-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--light);
}

.weak-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.weak-dot.low {
  background: var(--red);
}

.weak-dot.mid {
  background: var(--amber);
}

.weak-dot.ok {
  background: var(--green);
}

.weak-text {}

.weak-q {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.weak-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* Score breakdown */
.score-breakdown {
  background: var(--off);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  border: 1px solid var(--light);
}

.tier-card,
.weak-item,
.score-breakdown {
  page-break-inside: avoid;
  break-inside: avoid;
}

.sb-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}

.sb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sb-row:last-child {
  margin-bottom: 0;
}

.sb-label {
  font-size: 12px;
  color: var(--muted);
  width: 200px;
  flex-shrink: 0;
}

.sb-track {
  flex: 1;
  height: 8px;
  background: var(--light);
  border-radius: 4px;
  overflow: hidden;
}

.sb-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--blue);
  transition: width 1s ease;
}

.sb-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

/* CTA section */
.cta-section {
  background: var(--blue-ink);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 24px;
  text-align: center;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.cta-title {
  font-family: var(--fh);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cta-title em {
  color: var(--green);
  font-style: normal;
}

.cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 20px;
}

.cta-review-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  text-align: left;
}

.cri-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cri-ico {
  font-size: 14px;
  flex-shrink: 0;
  /* margin-top: 1px; */
}

.cri-txt {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.cri-txt strong {
  color: var(--white);
  font-weight: 600;
}

.cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact {
  font-size: 11px;
  color: rgb(238 238 238);
  margin-top: 16px;
}

.cta-contact a {
  color: rgba(0, 133, 205, 0.7);
  text-decoration: none;
}

/* Download bar */
.download-bar {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.db-left {}

.db-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.db-sub {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--blue-mid);
}

/* ── PRINT STYLES ── */
@media print {
  body {
    background: white;
  }

  .app {
    max-width: none;
    padding: 0;
  }

  .topbar,
  .progress-wrap {
    display: none !important;
  }

  .screen {
    display: block !important;
  }

  .cover-screen,
  .intro-screen {
    page-break-after: always;
  }

  .section-screen {
    page-break-after: always;
  }

  .results-screen .download-bar,
  .results-screen .cta-btns .btn-secondary {
    display: none;
  }

  .btn-primary,
  .btn-secondary,
  .section-nav {
    display: none !important;
  }

  .section-tally {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .tier-card.inactive {
    opacity: 0.25;
  }

  .card {
    box-shadow: none;
    border: 1px solid #e8eff5;
  }

  .section-header,
  .cover-hero,
  .results-hero,
  .cta-section,
  .section-tally,
  .how-num {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    size: letter;
    margin: 16px;
  }
}

/* ── MISC ── */
.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.gap-fill {
  flex: 1;
}

.score-label-row {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: 4px;
}

.score-label-item {
  font-size: 9px;
  color: var(--slate);
  flex: 1;
  text-align: center;
}

.score-label-item:first-child {
  text-align: left;
}

.score-label-item:last-child {
  text-align: right;
}


button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.progress-tabs {
  display: flex;
  border-bottom: 1px solid var(--light);
  gap: 0;
  margin-bottom: 32px;
}

.progress-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: not-allowed;
  transition: border-color 0.2s, color 0.2s;
}

.tab-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--light);
  color: var(--slate);
  font-family: var(--fh);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.tab-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  transition: color 0.2s;
}

/* active tab */
.progress-tab.active {
  border-bottom: 2px solid var(--blue);
  cursor: pointer;
}

.progress-tab.active .tab-num {
  background: var(--blue);
  color: var(--white);
}

.progress-tab.active .tab-label {
  color: var(--blue);
}

/* done tab */
.progress-tab.done {
  cursor: pointer;
}

.progress-tab.done .tab-num {
  background: var(--blue-soft);
  color: var(--blue);
}

.progress-tab.done .tab-label {
  color: var(--ink);
}

.progress-tab.done:hover .tab-label {
  color: var(--blue);
}

.progress-tab.done:hover .tab-num {
  background: var(--blue-soft);
  color: var(--blue);
}

/* mobile */
@media (max-width: 600px) {
  .progress-tab {
    padding: 10px 10px;
    flex: 1;
    justify-content: center;
  }

  .tab-label {
    display: none;
  }

  .tab-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}
.progress-tab.visited {
  cursor: pointer;
}

.progress-tab.visited .tab-label {
  color: var(--muted);
}

.progress-tab.visited .tab-num {
  background: var(--light);
  color: var(--muted);
}

.progress-tab.visited:hover .tab-label {
  color: var(--blue);
}

.progress-tab.visited:hover .tab-num {
  background: var(--blue-soft);
  color: var(--blue);
}