/* Vector Group — Operational Intelligence for the Trades */

:root {
  --navy: #0A1628;
  --navy-deep: #060F1C;
  --white: #FFFFFF;
  --off-white: #F6F5F2;
  --gold: #C9963F;
  --gold-hover: #E8B660;
  --gold-soft: rgba(201, 150, 63, 0.25);
  --body: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  font-feature-settings: 'ss01', 'cv01';
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-wrap: balance;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

h1.display { font-size: clamp(40px, 5.6vw, 68px); }
h2.display { font-size: clamp(32px, 4.2vw, 48px); }
h3.display { font-size: clamp(22px, 2.4vw, 28px); }

.gold-word { color: var(--gold); }
.muted { color: var(--muted); }

/* ============ LAYOUT ============ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
section {
  padding: 96px 0;
  position: relative;
}
@media (min-width: 768px) {
  section { padding: 128px 0; }
}

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 20px; font-size: 18px; color: var(--muted); max-width: 640px; }

.gold-rule {
  border: 0;
  border-top: 1px solid rgba(201, 150, 63, 0.25);
  margin: 0;
  max-width: 1100px;
  margin-inline: auto;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 22, 40, 0);
  transition: background 280ms ease, backdrop-filter 280ms ease, border-color 280ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  line-height: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.nav-links {
  display: none;
  gap: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: #fff; }
@media (min-width: 880px) { .nav-links { display: flex; } }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: var(--gold-hover); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.btn .arrow {
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-hover); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
.btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 20px 32px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle architectural grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  background-position: center;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { margin-top: 22px; max-width: 900px; }
.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.6;
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-reassure {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}
.stats-bar {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: rgba(255,255,255,0.015);
  padding: 28px 32px;
  backdrop-filter: blur(4px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============ PROBLEM SECTION ============ */
.problem { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 880px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.problem-copy p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--body);
  line-height: 1.7;
}
.problem-copy p:first-child { margin-top: 0; }
.pain-list {
  display: grid;
  gap: 14px;
}
.pain-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 24px;
  background: #fff;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
}
.pain-card:hover {
  background: var(--off-white);
  border-color: #D6D3CB;
}
.pain-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.pain-title {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.pain-desc {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.how { background: var(--off-white); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease;
}
.step:hover { border-color: var(--gold-soft); }
.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.step-title {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step-desc {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.6;
}
.step-bullets {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}
.step-bullet {
  font-size: 14px;
  color: var(--muted);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.5;
}
.step-bullet::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* ============ AUDIT DIMENSIONS ============ */
.audit { background: #fff; }
.dim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .dim-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .dim-grid { grid-template-columns: repeat(3, 1fr); } }
.dim {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 28px 32px;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}
.dim:hover { background: var(--off-white); border-color: #D6D3CB; }
.dim-index {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
}
.dim-title {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.dim-desc {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ ABOUT ============ */
.about {
  background: var(--navy);
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 360px 1fr; gap: 80px; }
}
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
}
.about-copy h2 { margin-top: 16px; color: #fff; }
.about-copy p {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.credentials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 12px;
}
.cred {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}
.cred::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  margin-top: 9px;
}
.about-cta { margin-top: 40px; }

/* ============ PRICING ============ */
.pricing { background: var(--off-white); }
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 880px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}
.price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 180ms ease, transform 220ms ease;
}
.price.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.price-tag {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 4px 4px;
}
.price-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.price.featured .price-label { color: var(--gold-hover); }
.price-name {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.price.featured .price-name { color: #fff; }
.price-amount {
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price.featured .price-amount { color: #fff; }
.price-period {
  display: inline-block;
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0;
}
.price.featured .price-period { color: rgba(255,255,255,0.55); }
.price-cycle {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.price.featured .price-cycle { color: rgba(255,255,255,0.55); }
.price-desc {
  margin-top: 20px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}
.price.featured .price-desc { color: rgba(255,255,255,0.78); }
.price-includes {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
  flex-grow: 1;
}
.price.featured .price-includes { border-top-color: rgba(255,255,255,0.1); }
.price-feat {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.price.featured .price-feat { color: rgba(255,255,255,0.85); }
.price-feat svg { margin-top: 4px; color: var(--gold); flex-shrink: 0; }
.price-cta { margin-top: 28px; }
.price-cta .btn { width: 100%; justify-content: center; }
.price-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
  margin-inline: auto;
}

/* ============ FINAL CTA ============ */
.final {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 128px 0;
}
.final h2 { margin-top: 22px; max-width: 880px; margin-inline: auto; }
.final p { margin-top: 24px; font-size: 18px; color: rgba(255,255,255,0.72); max-width: 640px; margin-inline: auto; line-height: 1.6; }
.final .btn { margin-top: 40px; }
.final-micro {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
  .footer-center { text-align: center; }
  .footer-right { text-align: right; }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer a:hover { color: #fff; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ============ AUDIT MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.99);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 30px 80px -20px rgba(10, 22, 40, 0.5);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.modal-progress-wrap {
  flex: 1;
  margin: 0 24px;
}
.modal-progress-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.modal-progress-bar {
  margin-top: 8px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.modal-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.modal-close {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 4px;
  transition: background 160ms ease, color 160ms ease;
}
.modal-close:hover { background: var(--off-white); color: var(--navy); }
.modal-body {
  padding: 36px 32px 28px;
  overflow-y: auto;
  flex: 1;
}
.modal-step-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.modal-question {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
}
.modal-help {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.modal-options {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.opt {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  text-align: left;
  font-size: 15px;
  color: var(--body);
  transition: border-color 160ms ease, background 160ms ease;
}
.opt:hover { border-color: var(--gold); background: #FFFBF3; }
.opt.selected { border-color: var(--gold); background: #FFFBF3; }
.opt-bullet {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease;
}
.opt.selected .opt-bullet { border-color: var(--gold); }
.opt.selected .opt-bullet::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.modal-input {
  margin-top: 24px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--body);
  background: #fff;
  transition: border-color 160ms ease;
}
.modal-input:focus { outline: none; border-color: var(--gold); }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  gap: 12px;
}
.modal-back {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 4px;
  transition: color 160ms ease, background 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal-back:hover { color: var(--navy); background: #fff; }
.modal-back:disabled { opacity: 0; pointer-events: none; }
.modal-next {
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 160ms ease;
}
.modal-next:hover { background: #142339; }
.modal-next.primary { background: var(--gold); color: var(--navy); }
.modal-next.primary:hover { background: var(--gold-hover); }
.modal-next:disabled { opacity: 0.4; pointer-events: none; }

/* completion screen */
.complete {
  text-align: center;
  padding: 24px 8px 12px;
}
.complete-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 150, 63, 0.1);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.complete h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.complete p {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
  margin-inline: auto;
}
.complete-cards {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.complete-card {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 14px;
  color: var(--body);
}
.complete-card strong { color: var(--navy); font-weight: 600; }
.complete-card .check { color: var(--gold); }

/* ============ SCORECARD INTRO ============ */
.scorecard-intro { text-align: center; padding: 32px 8px 12px; }
.scorecard-intro-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 16px;
}
.scorecard-intro-sub {
  margin-top: 16px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin-inline: auto;
}
.opt-bullet.opt-square { border-radius: 4px; }
.opt.selected .opt-bullet.opt-square::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

/* ============ key animations ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 500ms cubic-bezier(.2,.7,.2,1); }
