:root {
  color-scheme: dark;
  --ink: #04141d;
  --navy: #031c27;
  --navy-2: #062b38;
  --teal: #064c52;
  --teal-bright: #0b7375;
  --paper: #f6f2eb;
  --paper-2: #ece5da;
  --white: #fffdf9;
  --gold: #e2a83f;
  --gold-light: #f1c66b;
  --orange: #c77c2f;
  --muted: #a7b7bc;
  --paper-text: #203039;
  --line: rgba(226, 168, 63, 0.34);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100vw - 40px));
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

p {
  margin-bottom: 18px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.notice-bar {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #00131c;
  color: #dce5e7;
  font-size: 0.83rem;
}

.notice-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notice-bar p {
  margin: 0;
}

.notice-bar a {
  color: var(--gold-light);
  font-weight: 800;
  white-space: nowrap;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 28, 39, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #dae4e6;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(226, 168, 63, 0.2);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(226, 168, 63, 0.28);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(226, 168, 63, 0.08);
  box-shadow: none;
}

.button--dark {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: none;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #8d581e;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  background:
    radial-gradient(circle at 35% 10%, rgba(13, 87, 93, 0.32), transparent 35%),
    linear-gradient(150deg, #031a24 0%, #052b36 52%, #03151e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero__glow--one {
  top: 8%;
  right: -8%;
  width: 360px;
  height: 360px;
  background: rgba(226, 168, 63, 0.08);
}

.hero__glow--two {
  bottom: 15%;
  left: -10%;
  width: 420px;
  height: 420px;
  background: rgba(11, 115, 117, 0.16);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(38px, 6vw, 84px);
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #c9d5d8;
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.hero__assurances li {
  position: relative;
  padding-left: 17px;
}

.hero__assurances li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.hero__visual {
  margin: 0;
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 168, 63, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(0.8deg);
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  border: 8px solid rgba(3, 28, 39, 0.35);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero__visual figcaption {
  padding: 16px 6px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.format-strip {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 78px;
  border-top: 1px solid rgba(226, 168, 63, 0.28);
  grid-template-columns: repeat(4, 1fr);
}

.format-strip > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.format-strip > div:last-child {
  border-right: 0;
}

.format-strip strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.format-strip span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 140px) 0;
}

.section--paper {
  color: var(--paper-text);
  background:
    linear-gradient(rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(3, 28, 39, 0.025) 3px 4px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 710px;
  color: inherit;
  opacity: 0.78;
  font-size: 1.06rem;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.intro {
  padding-block: clamp(74px, 8vw, 110px);
}

.intro__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(42px, 8vw, 110px);
}

.intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.intro__body {
  padding-top: 38px;
  border-top: 1px solid rgba(32, 48, 57, 0.22);
  font-size: 1.08rem;
}

.intro__body p:last-child {
  margin-bottom: 0;
}

.section--check {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(11, 115, 117, 0.18), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(226, 168, 63, 0.12), transparent 30%),
    #041c26;
}

.check-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 34px;
}

.checklist {
  display: grid;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.checklist fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.checklist legend {
  width: 100%;
  padding: 0 0 16px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(226, 168, 63, 0.25);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-item {
  display: grid;
  align-items: start;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #dce5e7;
  cursor: pointer;
  font-size: 0.93rem;
  grid-template-columns: 24px 1fr;
  gap: 12px;
}

.check-item:hover {
  color: white;
}

.check-item input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.text-button {
  justify-self: start;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  grid-column: 1 / -1;
}

.check-result {
  position: sticky;
  top: 126px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(226, 168, 63, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #082d37, #03161f);
  box-shadow: var(--shadow);
}

.check-result__dial {
  display: flex;
  width: 142px;
  height: 142px;
  align-items: baseline;
  justify-content: center;
  padding-top: 34px;
  margin-bottom: 30px;
  border: 1px solid rgba(226, 168, 63, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 168, 63, 0.16), transparent 67%);
  box-shadow: inset 0 0 0 8px rgba(226, 168, 63, 0.06);
}

.check-result__dial span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.7rem;
  line-height: 1;
}

.check-result__dial small {
  color: var(--muted);
  font-size: 0.82rem;
}

.check-result h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.check-result > p:not(.eyebrow, .fine-print) {
  color: #c1ced1;
}

.check-result__next {
  display: grid;
  padding: 18px;
  margin: 24px 0;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  gap: 5px;
}

.check-result__next strong {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-result__next span {
  color: #dce5e7;
  font-size: 0.9rem;
}

.fine-print {
  margin: 0;
  color: inherit;
  font-size: 0.76rem;
  line-height: 1.55;
  opacity: 0.72;
}

.proof-steps {
  display: grid;
  padding: 0;
  margin: 0 0 46px;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-steps li {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(32, 48, 57, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 46px rgba(3, 28, 39, 0.06);
}

.proof-steps > li > span {
  display: block;
  margin-bottom: 44px;
  color: #a56d2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.proof-steps h3 {
  color: var(--navy);
}

.proof-steps p {
  margin: 0;
  color: #536066;
  font-size: 0.92rem;
}

.caution {
  display: grid;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(160, 87, 29, 0.27);
  border-radius: var(--radius);
  background: #efe1cf;
  grid-template-columns: auto 1fr;
  gap: 22px;
}

.caution__mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 2px solid #a05b26;
  border-radius: 50%;
  color: #8d4d1d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.caution h3 {
  margin-bottom: 7px;
  color: #6b391a;
}

.caution p {
  margin: 0;
  color: #6a5548;
}

.section--toolkit {
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 115, 117, 0.26), transparent 28%),
    #031923;
}

.journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.journey-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.journey-card:hover {
  border-color: rgba(226, 168, 63, 0.45);
  transform: translateY(-5px);
}

.journey-card img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: calc(var(--radius) - 8px);
  background: var(--paper);
}

.journey-card__number {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(3, 28, 39, 0.92);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.journey-card__type {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journey-card h3,
.journey-card > p:not(.journey-card__type),
.journey-card ul {
  margin-right: 12px;
  margin-left: 12px;
}

.journey-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.journey-card > p:not(.journey-card__type) {
  color: #b8c8cc;
  font-size: 0.9rem;
}

.journey-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: #b8c8cc;
  font-size: 0.86rem;
}

.journey-card--plain {
  min-height: 100%;
  padding: 132px 28px 34px;
  background:
    linear-gradient(145deg, rgba(226, 168, 63, 0.08), rgba(11, 115, 117, 0.1)),
    rgba(255, 255, 255, 0.045);
}

.journey-card--plain .journey-card__number {
  top: 28px;
  left: 28px;
}

.journey-card__icon {
  position: absolute;
  top: 38px;
  right: 31px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(226, 168, 63, 0.36);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 900;
}

.journey-card__icon--calculator {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.kit-feature {
  display: grid;
  align-items: center;
  padding: clamp(24px, 4vw, 50px);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(226, 168, 63, 0.48);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 50%, rgba(11, 115, 117, 0.28), transparent 34%),
    linear-gradient(135deg, #072b36, #02141d);
  box-shadow: var(--shadow);
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 7vw, 84px);
}

.kit-feature__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.33);
}

.kit-feature__copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.kit-feature__copy > p:not(.eyebrow, .fine-print) {
  color: #c2d0d3;
  font-size: 1.02rem;
}

.kit-formats {
  display: grid;
  margin: 28px 0 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kit-formats span {
  position: relative;
  padding: 12px 12px 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8e2e4;
  font-size: 0.84rem;
  font-weight: 700;
}

.kit-formats span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  color: var(--gold);
  content: "✓";
  transform: translateY(-50%);
}

.kit-feature .button {
  margin-bottom: 13px;
}

.section--calculator {
  background:
    linear-gradient(115deg, rgba(3, 28, 39, 0.96), rgba(6, 76, 82, 0.92)),
    var(--navy);
}

.calculator-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 8vw, 100px);
}

.calculator-copy {
  position: sticky;
  top: 128px;
}

.calculator-copy > p:not(.eyebrow) {
  color: #c5d1d4;
  font-size: 1.04rem;
}

.calculator-warning {
  padding: 20px;
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  background: rgba(0, 0, 0, 0.16);
  color: #c6d4d7;
  font-size: 0.86rem;
}

.calculator-warning strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
}

.calculator {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow);
}

.calculator__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.calculator label {
  display: grid;
  color: #c7d4d6;
  font-size: 0.79rem;
  font-weight: 800;
  gap: 7px;
}

.money-input,
.percent-input {
  display: flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-light);
}

.money-input > span,
.percent-input > span {
  padding: 0 0 0 14px;
  font-weight: 900;
}

.percent-input > span {
  padding: 0 14px 0 0;
}

.calculator input {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.calculator input:focus {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.calculator__results {
  display: grid;
  margin: 30px 0 15px;
  border-top: 1px solid rgba(226, 168, 63, 0.34);
}

.calculator__results > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #b9c8cb;
  font-size: 0.87rem;
}

.calculator__results strong {
  color: white;
}

.calculator__results .calculator__total {
  align-items: end;
  padding: 24px 0 18px;
  color: white;
  font-weight: 900;
}

.calculator__total strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.resource-card {
  display: block;
  padding: 30px;
  border: 1px solid rgba(32, 48, 57, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(3, 28, 39, 0.06);
  color: var(--paper-text);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.resource-card:hover {
  box-shadow: 0 24px 60px rgba(3, 28, 39, 0.1);
  transform: translateY(-4px);
}

.resource-card__source {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 26px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.resource-card p {
  color: #5b676c;
}

.resource-card__link {
  color: #8d581e;
  font-size: 0.86rem;
  font-weight: 900;
}

.help-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  margin-top: 22px;
  border-radius: var(--radius);
  background: #e8dfd2;
}

.help-line .eyebrow {
  margin-bottom: 8px;
}

.help-line h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.help-line p {
  margin-bottom: 0;
  color: #59656a;
}

.help-line p a {
  color: var(--navy);
  font-weight: 900;
}

.section--faq {
  background:
    radial-gradient(circle at 82% 20%, rgba(226, 168, 63, 0.09), transparent 28%),
    #031923;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 9vw, 116px);
}

.faq-intro {
  position: sticky;
  top: 128px;
}

.faq-intro > p:last-child {
  color: #b7c6c9;
}

.faq-list {
  border-top: 1px solid rgba(226, 168, 63, 0.26);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: #eef3f4;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(226, 168, 63, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  content: "+";
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 44px 26px 0;
  margin: 0;
  color: #aebfc3;
}

.final-cta {
  padding-block: clamp(70px, 8vw, 110px);
  overflow: hidden;
  background: linear-gradient(145deg, #07525a, #031d28);
}

.final-cta__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 250px 1fr;
  gap: clamp(38px, 7vw, 86px);
}

.final-cta img {
  width: 250px;
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  color: #c8d5d7;
  font-size: 1.06rem;
}

.site-disclaimer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #00131c;
  color: #9fb0b4;
  font-size: 0.75rem;
}

.site-disclaimer strong {
  color: var(--gold-light);
}

.site-disclaimer p {
  display: inline;
  margin: 0 0 0 4px;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000d13;
}

.site-footer__grid {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.footer-brand span {
  color: #83989d;
  font-size: 0.74rem;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 11px 22px;
}

.site-footer nav a {
  color: #b0c0c4;
  font-size: 0.79rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--gold-light);
}

.site-footer__copyright {
  margin: 0;
  color: #70868c;
  font-size: 0.74rem;
  grid-column: 1 / -1;
}








.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--paper-text);
}

.legal-page .site-header {
  position: static;
}

.legal-hero {
  padding: 80px 0 60px;
  background: linear-gradient(150deg, #052d38, #02141d);
  color: white;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: #bdcbce;
}

.legal-content {
  width: min(820px, calc(100vw - 40px));
  padding: 72px 0 110px;
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 15px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 30px;
  color: var(--navy);
}

.legal-content p,
.legal-content li {
  color: #4f5d62;
}

.legal-content a {
  color: #7b4b19;
  font-weight: 800;
}

.legal-content .legal-note {
  padding: 22px;
  margin: 30px 0;
  border-left: 4px solid var(--gold);
  background: #eee5d8;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 36px;
  color: #744719;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.83rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
  }

  .check-layout {
    grid-template-columns: 1fr;
  }

  .check-result {
    position: static;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 0 28px;
  }

  .check-result__dial {
    margin: 0;
    grid-row: 1 / 5;
  }

  .check-result .eyebrow {
    margin: 0 0 7px;
  }

  .check-result h3 {
    margin-bottom: 8px;
  }

  .check-result > p {
    margin-bottom: 8px;
  }

  .check-result__next {
    margin: 10px 0;
  }

  .proof-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculator-copy,
  .faq-intro {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .notice-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .notice-bar a {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #031a24;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 2px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 12px;
    font-size: 0.93rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__grid,
  .intro__grid,
  .kit-feature,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__visual {
    margin-top: 20px;
  }

  .format-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-strip > div:nth-child(2) {
    border-right: 0;
  }

  .format-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .intro__body {
    padding-top: 0;
    border-top: 0;
  }

  .kit-feature__image {
    max-width: 560px;
    margin-inline: auto;
  }

  .faq-intro {
    max-width: 680px;
  }

  .final-cta__inner {
    grid-template-columns: 170px 1fr;
  }

  .final-cta img {
    width: 170px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
  }

  .hero__lead {
    font-size: 1.03rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__image-frame {
    border-radius: 18px;
    transform: none;
  }

  .hero__visual figcaption {
    text-align: left;
  }

  .format-strip {
    margin-top: 56px;
  }

  .format-strip > div {
    min-height: 92px;
    padding: 16px;
  }

  .format-strip strong {
    font-size: 1.45rem;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .check-result {
    display: block;
  }

  .check-result__dial {
    margin-bottom: 25px;
  }

  .check-result .eyebrow {
    margin-bottom: 12px;
  }

  .check-result__next {
    margin: 22px 0;
  }

  .proof-steps,
  .journey,
  .calculator__fields,
  .resource-grid,
  .kit-formats {
    grid-template-columns: 1fr;
  }

  .proof-steps li {
    min-height: auto;
  }

  .proof-steps > li > span {
    margin-bottom: 24px;
  }

  .caution {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .journey-card--plain {
    min-height: 420px;
  }

  .kit-feature {
    padding: 18px 18px 34px;
  }

  .kit-feature__copy {
    padding-inline: 8px;
  }

  .calculator__results > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .calculator__results .calculator__total {
    align-items: flex-start;
  }

  .help-line {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .final-cta img {
    width: 140px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer__copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Download links on toolkit cards */
.journey-card__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.journey-card__downloads a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.journey-card__downloads a:hover,
.journey-card__downloads a:focus-visible {
  border-color: var(--gold);
  background: rgba(226, 168, 63, 0.12);
}

/* Calculator shortfall state */
.calculator__total.is-shortfall strong {
  color: var(--orange);
}

.calculator__total.is-shortfall span::after {
  content: " (shortfall)";
  color: var(--orange);
  font-weight: 600;
}

/* Spacing utility (replaces inline style on 404) */
.hero__actions--spaced {
  margin-top: 28px;
}


/* Creator / YouTube band */
.watch-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-2) 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.watch-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.watch-band__inner > div {
  max-width: 720px;
}

.watch-band h2 {
  margin-bottom: 12px;
}

.watch-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.watch-band .button {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .watch-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
