:root {
  --navy-950: #070f1c;
  --navy-900: #0a1628;
  --navy-800: #132337;
  --navy-700: #1c334d;
  --ink: #152033;
  --muted: #5a6b7d;
  --paper: #f3f6f9;
  --white: #ffffff;
  --lime: #b8f000;
  --lime-deep: #9ad100;
  --lime-ink: #14200a;
  --line: rgba(19, 35, 55, 0.12);
  --font-sans: "Outfit", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1a6fb5;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-800);
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.center {
  text-align: center;
}

/* —— Site header —— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 4.75rem;
  padding-block: 0.75rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo {
  width: auto;
  height: 3.15rem;
  max-width: min(100%, 18rem);
}

/* —— Hero —— */
.hero {
  position: relative;
  /* Shorter hero so more page content shows above the fold */
  min-height: clamp(22rem, 52svh, 30rem);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("assets/hero-bg.png") center / cover no-repeat,
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 15, 28, 0.35) 0%,
      rgba(7, 15, 28, 0.55) 45%,
      rgba(7, 15, 28, 0.92) 100%
    ),
    radial-gradient(
      ellipse 80% 50% at 70% 20%,
      rgba(184, 240, 0, 0.12),
      transparent 55%
    );
}

.hero__content {
  width: min(760px, calc(100% - 2.5rem));
  margin: 2.5rem auto;
  padding-top: 0;
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 2rem;
  max-width: 28ch;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.center .cta-group {
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 0.35rem;
  background: var(--lime);
  color: var(--lime-ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(184, 240, 0, 0.45);
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn:hover {
  background: var(--lime-deep);
  color: var(--lime-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(184, 240, 0, 0.65);
}

.btn:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: none;
  cursor: pointer;
}

.btn--secondary:hover {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: none;
}

.btn:disabled,
.btn--secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.promo {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.promo strong {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.promo--dark {
  color: var(--muted);
}

.promo--dark strong {
  color: var(--navy-800);
}

/* —— Sections —— */
.section {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy-900);
}

.section__sub {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 40ch;
}

.center .section__sub {
  margin-inline: auto;
}

.section--intro {
  background: var(--white);
}

.section--intro p {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  color: var(--ink);
}

.section--intro p:last-child {
  margin-bottom: 0;
}

.section--steps {
  background:
    linear-gradient(180deg, #e8eef4 0%, var(--paper) 100%);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.step__num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lime-deep);
  background: var(--navy-900);
  align-self: start;
  padding: 0.45rem 0.55rem;
  border-radius: 0.25rem;
  line-height: 1;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.step h3 span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.92em;
}

.step p {
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.step p:last-child {
  margin-bottom: 0;
}

.step__callout {
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--lime-deep);
  background: rgba(255, 255, 255, 0.55);
}

.muted {
  color: var(--muted);
}

.section--support {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.86);
}

.support__label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.section--support h2 {
  color: var(--white);
}

.section--support > .wrap > p {
  margin: 0 0 0.75rem;
  max-width: 52ch;
  font-size: 1.1rem;
}

.support__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 40rem;
}

.support__list li {
  margin: 0;
  padding-left: 1.1rem;
  position: relative;
  font-size: 1.05rem;
}

.support__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
}

.support__list strong {
  color: var(--white);
  font-weight: 650;
}

.section--signup {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.signup {
  position: relative;
  display: grid;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.signup__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup__row {
  display: grid;
  gap: 0.4rem;
}

.signup label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
}

.signup .optional {
  font-weight: 500;
  color: var(--muted);
}

.signup input[type="text"],
.signup input[type="email"] {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(19, 35, 55, 0.22);
  border-radius: 0.35rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.signup input:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--navy-700);
}

.signup__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-weight: 500 !important;
  color: var(--ink) !important;
  line-height: 1.45;
}

.signup__consent input {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--navy-900);
}

.signup .btn {
  justify-self: start;
}

.signup__status {
  margin: 0;
  font-size: 0.95rem;
}

.signup__status.is-success {
  color: #1b6b2a;
}

.signup__status.is-error {
  color: #a11b1b;
}

.section--close {
  background: var(--white);
}

.footer {
  background: var(--white);
  color: #5a5a5a;
  font-size: 0.8125rem;
  line-height: 1.55;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

.footer__disclosures {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.footer__disclosures p {
  margin: 0;
}

.footer__disclosures strong {
  font-weight: 700;
  color: #444;
}

.footer__meta,
.footer__address {
  margin: 0;
  text-align: center;
}

.footer__meta {
  margin-top: 0.5rem;
}

.footer a {
  color: #1a6fb5;
}

.footer a:hover {
  color: var(--navy-800);
}

/* —— Motion —— */
@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progressive enhancement only — copy stays visible if JS/cache fails */
html.js.is-ready .hero__content > * {
  animation: rise 0.9s var(--ease) both;
}

html.js.is-ready .hero__content > *:nth-child(1) {
  animation-delay: 0.08s;
}
html.js.is-ready .hero__content > *:nth-child(2) {
  animation-delay: 0.2s;
}
html.js.is-ready .hero__content > *:nth-child(3) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    animation: none;
    transform: none;
  }

  html.js.is-ready .hero__content > * {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 4.25rem;
    padding-block: 0.6rem;
  }

  .site-header__logo {
    height: 2.65rem;
    max-width: min(100%, 15rem);
  }

  .hero {
    min-height: 0;
    align-items: start;
  }

  .hero__content {
    margin: 1.15rem auto 1.35rem;
    padding-top: 0;
  }

  .hero h1 {
    margin-bottom: 0.5rem;
    max-width: none;
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .lede {
    margin-bottom: 1.1rem;
    max-width: none;
    font-size: 1rem;
  }

  .cta-group {
    gap: 0.5rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.1rem;
    font-size: 0.88rem;
  }

  .signup .btn {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
