:root {
  --bg: #030503;
  --bg-soft: #081108;
  --green: #72d63a;
  --green-strong: #99f552;
  --green-dark: #183d14;
  --gold: #d7b35c;
  --text: #f5f7ed;
  --muted: #b9c2ad;
  --line: rgba(153, 245, 82, 0.2);
  --shadow: rgba(114, 214, 58, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(3, 5, 3, 0.22), #030503 82%),
    radial-gradient(circle at 50% 14%, rgba(114, 214, 58, 0.22), transparent 35%),
    #030503;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(153, 245, 82, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 245, 82, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
}

.page-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: clamp(24px, 5vw, 64px);
  isolation: isolate;
  place-items: end center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 5, 3, 0.92) 48%, #030503);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  overflow: hidden;
  place-items: start center;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 5, 3, 0.86), rgba(3, 5, 3, 0.16) 42%, rgba(3, 5, 3, 0.88)),
    linear-gradient(180deg, rgba(3, 5, 3, 0.08), rgba(3, 5, 3, 0.22) 40%, #030503 96%);
}

.hero__logo {
  width: min(96vw, 850px);
  height: auto;
  margin-top: clamp(-88px, -6vw, -26px);
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.08) drop-shadow(0 0 40px rgba(114, 214, 58, 0.2));
}

.hero__content {
  width: min(100%, 760px);
  padding-bottom: clamp(24px, 5vh, 70px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

.max-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.14em;
  white-space: nowrap;
}

.max-inline img {
  width: 0.78em;
  height: 0.78em;
  border-radius: 0.2em;
  object-fit: contain;
  vertical-align: -0.08em;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.2));
}

.hero__lead {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
}

.hero__pointers {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.35rem, 5vw, 2.3rem);
  line-height: 1;
}

.cta-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 430px);
  min-height: 62px;
  margin-top: 30px;
  padding: 16px 24px;
  border: 1px solid rgba(245, 247, 237, 0.2);
  border-radius: 8px;
  color: #061006;
  overflow: hidden;
  font-size: clamp(0.92rem, 3.2vw, 1.04rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(135deg, var(--green-strong), var(--green) 55%, #3f9a23);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.44),
    0 0 36px var(--shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.cta-button::after {
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  animation: button-shine 3.8s ease-in-out infinite;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.52),
    0 0 46px rgba(153, 245, 82, 0.44);
  outline: none;
}

.cta-button:active {
  transform: translateY(0);
}

.microcopy {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(245, 247, 237, 0.68);
  font-size: 0.8rem;
  line-height: 1.45;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 32px, 1040px);
  margin: 0 auto 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.signal-strip__item {
  display: grid;
  min-height: 104px;
  padding: 20px;
  align-content: center;
  background: linear-gradient(180deg, rgba(8, 17, 8, 0.94), rgba(3, 5, 3, 0.96));
}

.signal-strip__value {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-strip__label {
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 750;
  line-height: 1.28;
}

.footer {
  padding: 0 24px 24px;
  color: rgba(245, 247, 237, 0.56);
  font-size: 0.78rem;
  text-align: center;
}

.footer a {
  text-decoration-color: rgba(245, 247, 237, 0.28);
  text-underline-offset: 4px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
  outline: none;
}

.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.policy-page h1 {
  max-width: none;
  margin: 0 0 24px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
  text-align: left;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.policy-page a {
  color: var(--green-strong);
}

@keyframes button-shine {
  0%,
  54% {
    transform: translateX(0) skewX(-18deg);
  }

  74%,
  100% {
    transform: translateX(560%) skewX(-18deg);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 90svh;
    padding: 22px 18px;
    place-items: end center;
  }

  .hero__media {
    place-items: start center;
  }

  .hero__media::before {
    background:
      linear-gradient(90deg, rgba(3, 5, 3, 0.76), rgba(3, 5, 3, 0.18), rgba(3, 5, 3, 0.78)),
      linear-gradient(180deg, rgba(3, 5, 3, 0.06), rgba(3, 5, 3, 0.18) 44%, #030503 92%);
  }

  .hero__logo {
    width: min(118vw, 640px);
    margin-top: -54px;
    opacity: 0.78;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.8vw, 4.3rem);
  }

  .hero__lead {
    margin-top: 16px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
  }

  .signal-strip__item {
    min-height: 78px;
    padding: 16px 18px;
  }
}

@media (max-width: 380px) {
  .cta-button {
    min-height: 58px;
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

@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;
  }
}
