:root {
  color-scheme: dark;
  --night: #07142c;
  --night-2: #0c2145;
  --night-3: #102b56;
  --paper: #f2ecdf;
  --paper-light: #faf6ed;
  --ink: #162039;
  --body: #4f5360;
  --muted: #929bad;
  --gold: #ddb85d;
  --gold-soft: #f1d99c;
  --coral: #ff7048;
  --coral-dark: #e45330;
  --line-dark: rgba(224, 190, 105, .24);
  --line-light: #d8cfbe;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, Montserrat, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: #eae7de;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
body::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 1150px;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 24%, rgba(221, 184, 93, .12) 0 1px, transparent 2px),
    radial-gradient(circle at 13% 19%, rgba(255, 255, 255, .11) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 10%, rgba(16, 43, 86, .8), transparent 52%);
  background-size: 71px 71px, 113px 113px, 100% 100%;
}
a { color: inherit; text-underline-offset: 3px; }
a:focus-visible, summary:focus-visible {
  outline: 3px solid #79a9ff;
  outline-offset: 4px;
  border-radius: 3px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--gold-soft);
  color: var(--night);
}
.skip-link:focus { transform: none; }

header {
  width: min(1240px, calc(100% - 64px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.brand {
  display: grid;
  grid-template-columns: 32px auto;
  grid-template-rows: auto;
  min-height: 48px;
  align-items: center;
  column-gap: 11px;
  color: white;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  grid-row: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
}
.brand-with-tagline { grid-template-rows: auto auto; }
.brand-with-tagline .brand-mark { grid-row: 1 / 3; }
.brand small {
  color: #8793a8;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}
.brand-name { color: #a94e36; font-weight: 600; }
.hero .brand-name, .hero-note .brand-name { color: var(--gold); }
header nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 24px;
}
header nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  position: relative;
  color: #c9cfda;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
header nav a:hover { color: var(--gold-soft); }
header nav a[aria-current="page"] { color: #fff; }
header nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
}

main { width: 100%; margin: 0; }
.breadcrumbs, .hero, .hero-note, .trust-strip {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.breadcrumbs {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  color: #7f899d;
  font-size: 11px;
}
.breadcrumbs a { color: #aab2c1; }

.hero {
  min-width: 0;
  min-height: 660px;
  padding: 34px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}
.hero-copy { min-width: 0; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, .support-hero h1 {
  max-width: 670px;
  margin: 0 0 26px;
  color: #fffdf8;
  font-family: var(--serif);
  font-size: clamp(52px, 4.9vw, 72px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero .lead {
  max-width: 570px;
  margin: 0;
  color: #c1c8d5;
  font-size: 17px;
  line-height: 1.68;
}
.cta {
  display: inline-flex;
  min-height: 56px;
  margin-top: 30px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 13px 32px rgba(255, 112, 72, .2), inset 0 1px rgba(255, 255, 255, .2);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.cta::after {
  content: "↗";
  width: 24px;
  height: 24px;
  margin-left: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-size: 13px;
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
  box-shadow: 0 21px 42px rgba(255, 112, 72, .25);
}
.cta-note { margin: 12px 0 0; color: #8d98ab; font-size: 12px; }

.hero-art {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  width: min(100%, 660px);
  justify-self: end;
  border-radius: 50%;
  filter: drop-shadow(0 34px 45px rgba(0, 0, 0, .36));
}
.hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8%;
  border-radius: 50%;
  background: rgba(221, 184, 93, .13);
  filter: blur(46px);
}
.hero-art > img { width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; }
.zodiac-ring { position: absolute; inset: 0; }
.zodiac-ring span {
  position: absolute;
  width: 8.9%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--gold-soft);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  font-size: clamp(20px, 2.25vw, 35px);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(221, 184, 93, .36);
}
.zodiac-ring .zodiac-1 { left: 50%; top: 13.85%; }
.zodiac-ring .zodiac-2 { left: 68.45%; top: 18.35%; }
.zodiac-ring .zodiac-3 { left: 80.6%; top: 30.8%; }
.zodiac-ring .zodiac-4 { left: 85%; top: 48.75%; }
.zodiac-ring .zodiac-5 { left: 80.6%; top: 66.85%; }
.zodiac-ring .zodiac-6 { left: 68.45%; top: 79.75%; }
.zodiac-ring .zodiac-7 { left: 50%; top: 84.05%; }
.zodiac-ring .zodiac-8 { left: 31.55%; top: 79.75%; }
.zodiac-ring .zodiac-9 { left: 19.4%; top: 66.85%; }
.zodiac-ring .zodiac-10 { left: 15%; top: 48.75%; }
.zodiac-ring .zodiac-11 { left: 19.4%; top: 30.8%; }
.zodiac-ring .zodiac-12 { left: 31.55%; top: 18.35%; }
.hero-art figcaption {
  position: absolute;
  right: 4%;
  bottom: 4%;
  display: flex;
  min-height: 48px;
  padding: 8px 16px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(221, 184, 93, .35);
  border-radius: 999px;
  background: rgba(7, 20, 44, .82);
  backdrop-filter: blur(10px);
  color: #c8cfdb;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-art figcaption span { color: var(--gold); font-family: var(--serif); font-size: 22px; }

.hero-note {
  max-width: 1040px;
  margin-top: 0;
  margin-bottom: 64px;
  padding: 23px 28px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
  border-block: 1px solid var(--line-dark);
}
.hero-note span { color: var(--gold); }
.hero-note p { max-width: 920px; margin: 0; color: #a6afbf; font-size: 14px; line-height: 1.65; }

.trust-strip {
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-dark);
}
.trust-strip article {
  min-width: 0;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
}
.trust-strip article + article { border-left: 1px solid var(--line-dark); }
.trust-strip article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}
.trust-strip h2 { margin: 0 0 5px; color: white; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.trust-strip p { margin: 0; color: #a0a9ba; font-size: 13px; line-height: 1.55; }

.content-flow {
  position: relative;
  z-index: 0;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 76px 72px 104px;
  background: var(--paper);
  border-radius: 52px 52px 0 0;
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax -100vmax);
  color: var(--body);
}
.content-section {
  position: relative;
  min-width: 0;
  padding: 74px 0;
  display: grid;
  grid-template-columns: minmax(245px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line-light);
}
.content-section::before {
  content: attr(data-chapter);
  position: absolute;
  top: 48px;
  right: 0;
  color: rgba(22, 32, 57, .055);
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1;
  pointer-events: none;
}
.section-head, .section-copy { min-width: 0; position: relative; z-index: 1; }
.section-kicker { color: #b26046; }
.content-section h2, .final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(35px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.section-copy > :first-child { margin-top: 0; }
.section-copy > :last-child { margin-bottom: 0; }
.content-section p, .content-section li { max-width: 650px; overflow-wrap: anywhere; }
.content-section p, .content-section li { color: #4a4f5b; font-size: 17px; line-height: 1.72; }
.content-section p { margin: 0 0 20px; }
.content-section h3 {
  margin: 36px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.section-featured {
  margin: 0 -8px 18px;
  padding: 64px 60px;
  border: 0;
  border: 1px solid rgba(94, 77, 43, .12);
  border-radius: 72px 20px 72px 20px;
  background: #e7dcc8;
}
.section-featured::before { content: "01"; right: 40px; }
#example .section-copy { position: relative; }
#example .section-copy > p:first-child { color: #74757b; font-size: 15px; }
#example .section-copy > p:nth-child(2) {
  position: relative;
  margin: 24px 0;
  padding: 30px 32px 30px 58px;
  border-left: 3px solid #c9a64c;
  border-radius: 0 18px 18px 0;
  background: rgba(221, 184, 93, .13);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}
#example .section-copy > p:nth-child(2)::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 18px;
  color: #b26046;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}
.content-section ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.content-section ol li {
  position: relative;
  min-height: 68px;
  padding: 15px 0 15px 68px;
  border-bottom: 1px solid var(--line-light);
  counter-increment: step;
}
.content-section ol li:first-child { border-top: 1px solid var(--line-light); }
.content-section ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 9px;
  left: 0;
  color: #b26046;
  font-family: var(--serif);
  font-size: 27px;
}
.price-card {
  margin: 22px -8px;
  padding: 64px 60px;
  border: 0;
  border-radius: 20px 72px 20px 72px;
  background: var(--night-2);
  color: #c2c9d5;
}
.price-card h2 { color: white; }
.price-card p, .price-card li { color: #c9d0dc; }
.price-card .section-kicker { color: var(--gold); }
.price-card::before { color: rgba(255, 255, 255, .045); right: 40px; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #a94e36;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link span { margin-left: 8px; }
.faq details { padding: 14px 0; border-top: 1px solid var(--line-light); }
.faq details:last-child { border-bottom: 1px solid var(--line-light); }
.faq summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  list-style: none;
}
.faq::before { display: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; margin-left: auto; color: #b26046; font-size: 20px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-right: 36px; color: #696b72; font-size: 14px; }

.final-cta {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 64px));
  margin: -64px auto 72px;
  padding: 70px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
  border-radius: 0 0 72px 72px;
  background: var(--night-2);
  color: #aeb7c7;
}
.final-cta h2 { color: white; }
.final-cta p { max-width: 720px; }
.final-cta .section-kicker { color: var(--gold); }
.final-cta .cta { min-width: 245px; }

.support-hero {
  width: min(920px, calc(100% - 48px));
  min-height: 65vh;
  margin: 0 auto;
  padding: 100px 0;
}
.support-copy {
  margin-top: 50px;
  padding: 60px;
  border-radius: 64px 18px;
  background: var(--paper);
  color: var(--body);
}
.support-copy h2 { margin: 52px 0 16px; color: var(--ink); font-family: var(--serif); font-size: 30px; font-weight: 500; }
.support-copy h2:first-of-type { margin-top: 42px; }
.support-copy p { max-width: 720px; font-size: 17px; line-height: 1.75; }
.support-cta { margin-top: 30px; }

footer { position: relative; z-index: 2; background: #040d1e; color: #7f899c; }
.footer-inner {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1fr auto minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}
.footer-brand {
  width: max-content;
  grid-template-rows: auto;
  align-items: center;
}
.footer-brand .brand-mark { grid-row: 1; }
.footer-brand, footer a { color: white; }
.footer-inner nav { display: flex; flex-direction: column; }
.footer-inner nav a { display: flex; min-height: 44px; align-items: center; text-decoration: none; }
.footer-inner p { max-width: 420px; margin: 10px 0 0; font-size: 12px; }
.disclaimer { justify-self: end; }
.disclaimer a { display: inline-flex; min-height: 44px; align-items: center; color: #d9bd72; text-underline-offset: 4px; }

@media (max-width: 1040px) {
  header { align-items: flex-start; padding: 14px 0; }
  header nav { gap: 0 16px; flex-wrap: wrap; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: 34px; }
  .hero h1 { font-size: clamp(49px, 6.2vw, 66px); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article + article { border-left: 0; border-top: 1px solid var(--line-dark); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .disclaimer { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 760px) {
  header, .breadcrumbs, .hero, .hero-note, .trust-strip, .final-cta, .footer-inner {
    width: min(100% - 32px, 1320px);
  }
  header { display: block; padding: 14px 0 16px; }
  .brand small { display: none; }
  header nav {
    max-width: 100%;
    margin: 12px 0 0;
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 10px;
    overflow: visible;
    border-top: 1px solid var(--line-dark);
  }
  header nav a {
    min-width: 0;
    min-height: 40px;
    padding: 2px 0;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 10.5px;
    line-height: 1.25;
  }
  header nav a[aria-current="page"]::after { right: auto; width: 28px; }
  .breadcrumbs { overflow: hidden; white-space: nowrap; }
  .hero { min-height: auto; padding: 38px 0 54px; grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero h1, .support-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 10.3vw, 45px);
    line-height: 1.03;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero .lead { color: #c5ccd8; font-size: 16px; line-height: 1.66; }
  .hero .cta { width: 100%; }
  .hero-art { width: 100%; margin: 0; justify-self: center; }
  .zodiac-ring span { font-size: clamp(18px, 7vw, 29px); }
  .hero-art figcaption { right: 4%; bottom: 1%; padding-inline: 12px; font-size: 8px; }
  .hero-note { margin-top: 0; margin-bottom: 54px; padding: 22px 0; grid-template-columns: 22px 1fr; gap: 12px; }
  .hero-note p { font-size: 13px; }
  .trust-strip { margin-bottom: 64px; }
  .trust-strip article { padding: 24px 8px; }
  .content-flow {
    width: 100%;
    padding: 54px 20px 80px;
    border-radius: 32px 32px 0 0;
  }
  .content-section { padding: 56px 0; grid-template-columns: minmax(0, 1fr); gap: 25px; }
  .content-section::before { top: 38px; font-size: 60px; }
  .content-section h2, .final-cta h2 { font-size: 34px; }
  .content-section p, .content-section li { font-size: 16px; line-height: 1.68; }
  .section-featured, .price-card {
    margin-inline: 0;
    padding: 46px 22px;
    border-radius: 36px 12px 36px 12px;
  }
  #example .section-copy > p:nth-child(2) { padding: 24px 20px 24px 42px; font-size: 19px; }
  #example .section-copy > p:nth-child(2)::before { left: 12px; }
  .final-cta {
    margin-top: -48px;
    margin-bottom: 48px;
    padding: 50px 24px 58px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    border-radius: 0 0 40px 40px;
  }
  .final-cta .cta { width: 100%; }
  .support-hero { padding: 70px 0; }
  .support-copy { margin-top: 35px; padding: 30px 22px; border-radius: 36px 12px; }
  .support-copy h2 { margin-top: 42px; font-size: 27px; }
  .support-copy p { font-size: 16px; }
  .support-cta { width: 100%; }
  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .disclaimer { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, header nav a { transition: none; }
}
