:root {
  --navy: #002B68;
  --navy-deep: #001a40;
  --blue: #2F5BA9;
  --ltblue: #0171CF;
  --gold: #FBB03B;
  --gold-deep: #e09d25;
  --white: #ffffff;
  --offwhite: #F4F6FA;
  --paper: #FAFBFD;
  --grey: #6b7280;
  --grey-light: #d8dde6;
  --dark: #111827;
  --red: #C0392B;
  --red-soft: #FDECEA;
  --green: #1f8a4c;

  --font-head: "Roboto Slab", Georgia, serif;
  --font-body: "Roboto Slab", Georgia, serif;
  --font-hand: "Rock Salt", cursive;

  --max: 1180px;
  --rad: 10px;
  --rad-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 26, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 26, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 26, 64, 0.18);
}

* { box-sizing: border-box; }
*[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }
a:hover { color: var(--navy); }
strong { font-weight: 700; }
em { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 26px;
  border-radius: var(--rad);
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease;
  font-size: 15px;
  line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 20px 38px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: .03em;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}
.brand-text { font-family: var(--font-head); font-weight: 700; letter-spacing: .02em; font-size: 16px; }
.topbar-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}
.topbar-cta:hover { background: var(--gold-deep); color: var(--navy); }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(251,176,59,0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(47,91,169,0.35), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(251,176,59,.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-h1 { color: var(--white); margin: 0 auto 18px; max-width: 22ch; }
.hero-h1 .hl { color: var(--gold); }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.86); max-width: 60ch; margin: 0 auto 30px; }
.hero-sub strong { color: var(--white); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 40px; justify-content: center; }

.hero-marks {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}
.hero-marks li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rad);
  padding: 16px 18px;
}
.hero-marks strong { display: block; font-family: var(--font-head); font-weight: 800; color: var(--gold); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-marks span { color: rgba(255,255,255,.7); font-size: 13px; }

@media (max-width: 720px) {
  .hero-marks { grid-template-columns: 1fr; }
}

/* Trust strip */
.strip { background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; justify-content: center; }
.strip-label { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: rgba(255,255,255,.5); }
.strip-logo { font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.92); font-size: 15px; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }
@media (max-width: 600px) { .strip-dot { display: none; } }

/* Section heads */
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ltblue);
  margin-bottom: 12px;
}
.section-head h2 { margin: 0 0 12px; }
.section-head .lede { color: #475569; font-size: 1.05rem; }
.section-head .lede em { color: var(--navy); font-style: normal; font-weight: 700; }
.section-head-light h2 { color: var(--white); }
.section-head-light .lede { color: rgba(255,255,255,.78); }
.eyebrow-light { color: var(--gold); }

/* Calculator */
.calc { padding: 70px 0; background: var(--paper); border-top: 1px solid var(--grey-light); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-form {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--rad-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; display: block; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 14px; letter-spacing: .02em; }
.field small { display: block; color: var(--grey); font-size: 12px; margin-top: 4px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ltblue);
  box-shadow: 0 0 0 3px rgba(1,113,207,0.18);
}
.calc-form .btn { margin-top: 8px; }

.calc-results {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--rad-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.16); gap: 12px; }
.calc-row:last-of-type { border-bottom: none; }
.calc-row-label { color: rgba(255,255,255,.78); font-size: 14px; }
.calc-row-val { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--white); }
.calc-row-loss .calc-row-label { color: var(--gold); font-weight: 700; }
.calc-row-loss .calc-row-val { color: var(--gold); font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

.calc-cadence {
  list-style: none;
  padding: 0;
  margin: 16px 0 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255,255,255,.05);
  border-radius: var(--rad);
  padding: 14px;
}
.calc-cadence li { text-align: center; }
.cad-label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.cad-val { display: block; font-family: var(--font-head); font-weight: 800; color: var(--gold); font-size: clamp(1rem, 1.6vw, 1.15rem); }

.calc-fineprint { color: rgba(255,255,255,.7); font-size: 13px; margin: 14px 0 18px; line-height: 1.5; }
.calc-fineprint strong { color: var(--gold); }

/* Proof */
.proof {
  background:
    linear-gradient(180deg, var(--navy) 0%, #001230 100%);
  color: var(--white);
  padding: 80px 0;
}
.case-feature {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(251,176,59,.35);
  border-radius: var(--rad-lg);
  padding: 32px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 760px) { .case-feature { grid-template-columns: 1fr; } }

.case-stat-name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-size: 13px; margin-bottom: 8px; }
.case-stat-headline { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; }

.case-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.case-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.m-label { color: rgba(255,255,255,.7); font-size: 14px; }
.m-val { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 18px; }

.case-quote {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-style: italic;
  color: rgba(255,255,255,.92);
  font-size: 17px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .case-grid { grid-template-columns: 1fr; } }
.case-grid .case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 22px;
  border-radius: var(--rad);
}
.case-grid h3 { color: var(--gold); margin-bottom: 8px; }
.case-grid p { color: rgba(255,255,255,.85); margin: 0; font-size: 15px; }

/* Program / pillars */
.program { padding: 80px 0; background: var(--white); }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  background: var(--offwhite);
  border: 1px solid var(--grey-light);
  border-radius: var(--rad-lg);
  padding: 28px 26px 26px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pillar-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar h3 { color: var(--navy); margin-bottom: 8px; }
.pillar p { color: #334155; margin: 0; font-size: 15.5px; }

/* Fit */
.fit { padding: 70px 0; background: var(--offwhite); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col { background: var(--white); border-radius: var(--rad-lg); padding: 26px 24px; border: 1px solid var(--grey-light); }
.fit-col h3 { font-size: 1.15rem; margin-bottom: 14px; }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid #eef1f6; color: #334155; font-size: 15.5px; }
.fit-col li:last-child { border-bottom: none; }
.fit-yes h3 { color: var(--green); }
.fit-yes li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}
.fit-no h3 { color: var(--red); }
.fit-no li::before {
  content: "\00d7";
  position: absolute;
  left: 6px;
  top: 8px;
  color: var(--red);
  font-weight: 900;
  font-size: 22px;
}

/* Quote */
.quote {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.quote .wrap { max-width: 800px; }
.quote-mark { font-family: var(--font-head); font-weight: 900; color: var(--gold); font-size: 80px; line-height: 1; margin: 0 0 -10px; }
.quote-body { font-size: clamp(1.2rem, 2vw, 1.6rem); font-family: var(--font-head); font-style: italic; color: var(--white); margin: 0 0 18px; line-height: 1.4; }
.quote-attrib { color: var(--gold); font-family: var(--font-head); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; }

/* Qualifier */
.qualify { padding: 80px 0; background: var(--paper); }
.quiz-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--rad-lg);
  padding: 34px 32px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.quiz-progress { height: 6px; background: var(--offwhite); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress-bar { height: 100%; width: 12.5%; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transition: width .25s ease; }
.quiz-progress-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); font-family: var(--font-head); font-weight: 700; }
.quiz-back { background: none; border: none; color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; padding: 4px 8px; }
.quiz-back:hover { color: var(--navy); text-decoration: underline; }

.quiz { border: 0; padding: 0; margin: 0; }
.quiz-step { border: 0; padding: 0; margin: 0; display: none; }
.quiz-step.active { display: block; }
.quiz-q {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  margin-bottom: 18px;
  padding: 0;
}

.quiz-opts { display: grid; gap: 10px; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease;
  background: var(--white);
}
.opt:hover { border-color: var(--ltblue); background: #f8fbff; }
.opt input { margin-top: 4px; accent-color: var(--navy); flex: 0 0 auto; }
.opt span { color: var(--dark); font-size: 15.5px; }
.opt input:checked + span { color: var(--navy); font-weight: 700; }
.opt:has(input:checked) { border-color: var(--navy); background: #f0f5ff; }
.opt-consent { font-size: 14px; }
.opt-consent span { color: #475569; font-size: 14px; }

.quiz-fields { display: grid; gap: 14px; }
.quiz-fields .field { margin-bottom: 0; }
.quiz-fields .field span { display: block; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 6px; letter-spacing: .02em; }
.quiz-fields textarea { resize: vertical; }

.quiz-nav { margin-top: 26px; display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.quiz-nav .btn { align-self: stretch; }
.quiz-trust { color: var(--grey); font-size: 13px; text-align: center; margin: 6px 0 0; }

/* Outcome */
.outcome { padding: 14px 4px; }
.outcome-eyebrow { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--green); font-size: 12px; margin-bottom: 8px; }
.outcome h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 10px; }
.outcome p { color: #334155; }
.outcome .btn { margin-top: 10px; }
.outcome-fineprint { color: var(--grey); font-size: 13px; margin-top: 18px; text-align: center; }

/* Path grid (purchase vs call) */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 640px) { .path-grid { grid-template-columns: 1fr; } }
.path { background: var(--offwhite); border: 1.5px solid var(--grey-light); border-radius: var(--rad-lg); padding: 22px 20px; display: flex; flex-direction: column; transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease; }
.path:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.path-primary { border-color: var(--gold); background: #fff8ec; box-shadow: var(--shadow-sm); }
.path-tag { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--gold-deep); margin-bottom: 8px; }
.path-primary .path-tag { color: var(--navy); background: var(--gold); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
.path h4 { font-family: var(--font-head); font-weight: 800; color: var(--navy); margin: 0 0 8px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.path p { color: #334155; font-size: 14.5px; flex: 1 1 auto; margin-bottom: 14px; }
.path .btn { margin-top: 0; }

.path-price { display: flex; align-items: baseline; gap: 4px; margin: 4px 0 4px; }
.path-price-amount { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1; letter-spacing: -.02em; }
.path-price-cadence { font-family: var(--font-head); font-weight: 700; color: var(--grey); font-size: 16px; }
.path-price-note { font-size: 13px; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; font-family: var(--font-head); }
.path-bullets { list-style: none; padding: 0; margin: 0 0 18px; flex: 1 1 auto; }
.path-bullets li { position: relative; padding: 6px 0 6px 24px; color: #334155; font-size: 14.5px; line-height: 1.45; border-bottom: 1px solid rgba(0,43,104,0.06); }
.path-bullets li:last-child { border-bottom: none; }
.path-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

/* FAQ */
.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--offwhite);
  border: 1px solid var(--grey-light);
  border-radius: var(--rad);
  padding: 14px 20px;
  margin-bottom: 10px;
  transition: border-color .12s ease;
}
.faq-item[open] { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  cursor: pointer;
  padding: 8px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: #334155; margin: 8px 0 4px; font-size: 15.5px; }

/* Final */
.final {
  background: linear-gradient(135deg, var(--gold) 0%, #f5a022 100%);
  padding: 76px 0;
  text-align: center;
}
.final-inner { max-width: 720px; margin: 0 auto; }
.final h2 { color: var(--navy); margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.final p { color: #1a2940; font-size: 1.1rem; margin-bottom: 26px; }
.final .btn { background: var(--navy); color: var(--white); border-color: var(--navy); }
.final .btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.final-fineprint { color: rgba(0,43,104,.75); font-size: 13px; margin-top: 18px; }

/* Footer */
.footer { background: #030810; color: rgba(255,255,255,.7); padding: 40px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; text-align: center; } }
.footer-logo { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 18px; }
.footer-tag { color: rgba(255,255,255,.6); font-size: 14px; margin: 4px 0 0; }
.footer-tag .hand { font-family: var(--font-hand); color: var(--gold); margin-left: 4px; font-size: 13px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-meta { text-align: right; font-size: 13px; color: rgba(255,255,255,.55); }
@media (max-width: 720px) { .footer-meta { text-align: center; } }
.footer-meta p { margin: 0 0 4px; }

/* Shake on invalid step */
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.quiz-step.shake { animation: shakeX .28s ease; }

/* A11y */
:focus-visible { outline: 3px solid var(--ltblue); outline-offset: 2px; border-radius: 4px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
