:root {
  --navy-950: #050821;
  --navy-900: #080c2e;
  --navy-850: #0b103a;
  --navy-800: #101649;
  --gold-300: #f7d889;
  --gold-400: #edc265;
  --gold-500: #dca946;
  --cream: #fff8e9;
  --white: #fffdf8;
  --muted: #bfc3d5;
  --line: rgba(239, 202, 111, 0.18);
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(50, 61, 152, 0.2), transparent 22rem),
    var(--navy-950);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--cream);
  color: var(--navy-950);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 46, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.metric-grid,
.section,
.quote-inner,
.final-cta-inner,
.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: block;
  border: 1px solid rgba(247, 216, 137, 0.5);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  content: "";
}

.brand-mark span {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--navy-900);
}

.header-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  border-color: var(--gold-300);
  background: rgba(247, 216, 137, 0.08);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(25, 32, 99, 0.6), transparent 47%),
    linear-gradient(180deg, var(--navy-900), #070b2a 80%, var(--navy-950));
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -2;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(247, 216, 137, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::before {
  right: -480px;
  bottom: -580px;
}

.hero::after {
  right: -270px;
  bottom: -720px;
}

.orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  top: 5%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(55, 64, 160, 0.28), transparent 70%);
}

.orb-two {
  right: -8%;
  bottom: 4%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(220, 169, 70, 0.09), transparent 70%);
}

.hero-inner {
  padding-block: 92px 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 18px rgba(237, 194, 101, 0.72);
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 930px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(3.7rem, 7.4vw, 6.9rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 em,
h2 em {
  display: block;
  color: var(--gold-300);
  font-weight: 400;
}

.hero-copy {
  max-width: 760px;
  margin: 38px 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.78;
}

.hero-copy strong {
  color: var(--white);
}

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 31px;
  border: 1px solid #ffe6a5;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8dc92 0%, #e8b954 100%);
  color: #151527;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 18px 44px rgba(221, 169, 67, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 22px 52px rgba(221, 169, 67, 0.34);
}

.button:focus-visible,
.header-cta:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.button-wide {
  min-width: min(100%, 380px);
}

.arrow {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.affiliate-note {
  margin: 13px 0 0;
  color: #969bb4;
  font-size: 0.76rem;
}

.trust-strip {
  margin-top: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #b2b6ca;
  font-size: 0.82rem;
}

.stars {
  color: var(--gold-300);
  letter-spacing: 0.08em;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-400);
}

.metric-band {
  border-block: 1px solid var(--line);
  background: #070a27;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid div {
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 26px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.metric-grid div:last-child {
  border-right: 1px solid var(--line);
}

.metric-grid strong {
  color: var(--gold-300);
  font-family: var(--display);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding-block: 116px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 128px);
  align-items: start;
}

.section-heading h2,
.section-title h2,
.final-cta-section h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.rules-section .section-heading h2 {
  font-size: clamp(2.75rem, 4.4vw, 4.1rem);
}

.serif-lead {
  margin: 22px 0 0;
  color: var(--gold-300);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-style: italic;
  line-height: 1.2;
}

.section-copy {
  padding-top: 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy > p {
  margin-top: 0;
}

.gold-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.gold-list li {
  position: relative;
  padding-left: 30px;
}

.gold-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px rgba(237, 194, 101, 0.5);
  content: "";
}

.gold-list strong {
  color: var(--cream);
  text-transform: uppercase;
}

.unlock-section,
.context-section,
.faq-section {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, rgba(24, 31, 91, 0.42), transparent 45%),
    var(--navy-900);
}

.section-title {
  max-width: 790px;
  margin-inline: auto;
}

.centered {
  text-align: center;
}

.centered-eyebrow {
  justify-content: center;
}

.section-title > p:last-child {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
}

.feature-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 285px;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent);
}

.feature-number,
.steps-grid > li > span {
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.feature-card h3,
.steps-grid h3,
.promise-grid h3 {
  margin: 22px 0 10px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
}

.feature-card p,
.steps-grid p,
.promise-grid p {
  margin: 0;
  color: var(--muted);
}

.cta-block {
  margin-top: 52px;
}

.steps-section {
  background: var(--navy-950);
}

.steps-grid {
  margin: 68px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-height: 270px;
  padding: 35px 30px 30px;
  border-right: 1px solid var(--line);
}

.steps-grid li:first-child {
  border-left: 1px solid var(--line);
}

.quote-section {
  position: relative;
  padding-block: 116px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 15%, rgba(49, 59, 149, 0.36), transparent 50%),
    var(--navy-850);
}

.quote-inner {
  max-width: 900px;
  text-align: center;
}

.quote-mark {
  display: block;
  height: 54px;
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
}

blockquote {
  margin: 22px 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.14;
}

blockquote em {
  color: var(--gold-300);
}

.quote-inner > p {
  color: var(--gold-300);
  font-weight: 700;
}

.quote-inner small {
  display: block;
  max-width: 650px;
  margin: 16px auto 0;
  color: #999eb6;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.promise-grid article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-grid h3 {
  margin-top: 0;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background:
    linear-gradient(115deg, rgba(24, 32, 99, 0.85), rgba(8, 12, 46, 0.9)),
    var(--navy-900);
}

.final-cta-section::after {
  position: absolute;
  right: -260px;
  bottom: -560px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(247, 216, 137, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 80px;
}

.final-cta-inner > div:first-child > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
}

.final-action {
  padding-bottom: 8px;
}

.faq-list {
  max-width: 860px;
  margin: 58px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 56px 26px 0;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--gold-300);
  font-family: var(--body);
  font-size: 1.5rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 56px 28px 0;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
  background: #040619;
}

.footer-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 50px;
  color: #8f94ad;
  font-size: 0.75rem;
}

.footer-inner > p:last-child {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .steps-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 42px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .metric-grid,
  .section,
  .quote-inner,
  .final-cta-inner,
  .footer-inner {
    width: min(100% - 40px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 8px;
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-mark::before {
    inset: 6px;
  }

  .brand-mark span {
    top: 3px;
    right: 2px;
    width: 19px;
    height: 19px;
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: calc(100svh - 72px);
    align-items: start;
  }

  .hero-inner {
    padding-block: 84px 72px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.94;
  }

  .hero-copy {
    margin-block: 32px 30px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .button {
    width: 100%;
    min-height: 60px;
    padding-inline: 23px;
    gap: 18px;
  }

  .trust-strip {
    margin-top: 42px;
  }

  .trust-dot {
    display: none;
  }

  .trust-strip > span:not(.stars) {
    width: 100%;
  }

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

  .metric-grid div {
    min-height: 128px;
    padding: 20px 12px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 84px;
  }

  .unlock-section,
  .context-section,
  .faq-section {
    padding-inline: 20px;
  }

  .section-heading h2,
  .section-title h2,
  .final-cta-section h2 {
    font-size: clamp(2.75rem, 13vw, 3.9rem);
  }

  .feature-grid,
  .promise-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .promise-grid article,
  .steps-grid li {
    min-height: 0;
    padding: 31px 25px;
    border-left: 1px solid var(--line);
  }

  .steps-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .quote-section {
    padding-block: 84px;
  }

  blockquote {
    font-size: 2.15rem;
  }

  .final-cta-section {
    padding-block: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
