:root {
  --bg: #040705;
  --bg-soft: rgba(8, 16, 11, 0.88);
  --panel: rgba(8, 12, 9, 0.9);
  --panel-strong: rgba(10, 14, 11, 0.98);
  --text: #f5f8f3;
  --muted: #b7c1b4;
  --line: rgba(116, 255, 110, 0.18);
  --line-strong: rgba(116, 255, 110, 0.42);
  --accent: #78ff57;
  --accent-deep: #1a4717;
  --shadow: 0 0 0 1px rgba(116, 255, 110, 0.1), 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 48px rgba(74, 255, 105, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(52, 125, 56, 0.18), transparent 26%),
    linear-gradient(180deg, #071108 0%, #040705 38%, #040705 100%);
  background-color: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}


.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,7,5,0.92), rgba(4,7,5,0.55));
  border-bottom: 1px solid rgba(116,255,110,0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.03rem;
  color: #dce4d8;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #061006;
  border: 1px solid transparent;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 38px rgba(116,255,110,0.24), 0 0 34px rgba(116,255,110,0.14);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 3.2rem;
  padding: 5.5rem 0 3rem;
}

.hero-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
  padding-top: 6.25rem;
}

.hero-centered .hero-copy {
  max-width: 54rem;
}

.hero-centered h1,
.hero-centered .hero-text,
.hero-centered .hero-note {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .support-line,
.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered h1 {
  max-width: 10ch;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.content-panel h2,
.membership-banner h2,
.final-cta h2 {
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  max-width: 14ch;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--accent);
  text-shadow: 0 0 26px rgba(116,255,110,0.28);
}

.hero-text,
.section-heading p,
.content-panel p,
.membership-banner p,
.final-cta p,
.faq-list p,
.feature-card p,
.proof-strip p {
  color: var(--muted);
}

.hero-text {
  margin: 1.5rem 0 1rem;
  max-width: 40rem;
  font-size: 1.18rem;
}

.support-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.support-line span {
  color: var(--accent);
  margin: 0 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: #90ff75;
}

.button-primary {
  background: var(--accent);
  color: #061006;
  box-shadow: 0 14px 38px rgba(116,255,110,0.24), 0 0 34px rgba(116,255,110,0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #90ff75;
}

.button-secondary {
  border: 1px solid rgba(116,255,110,0.28);
  background: rgba(8, 18, 11, 0.8);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(116,255,110,0.52);
  box-shadow: 0 0 30px rgba(116,255,110,0.12);
}

.hero-note {
  margin: 0;
  font-size: 1rem;
  color: #d9e1d6;
}

.card-glow {
  position: relative;
  border: 1px solid rgba(116,255,110,0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10,14,11,0.94), rgba(8,10,8,0.98));
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 1rem;
}

.hero-visual img,
.image-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 5.5rem;
}

.proof-strip article,
.feature-card,
.faq-list details,
.audience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 11, 0.72);
}

.proof-strip article {
  padding: 1.7rem;
}

.proof-strip h2,
.feature-card h3 {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.proof-strip p,
.feature-card p {
  font-size: 1rem;
}

.section {
  margin-top: 5.5rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.content-panel h2,
.membership-banner h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.section-heading p,
.content-panel p,
.membership-banner p,
.final-cta p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.section-grid {
  display: grid;
  gap: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.7rem;
}

.icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(116,255,110,0.22);
  background: rgba(18, 35, 16, 0.78);
  box-shadow: inset 0 0 24px rgba(116,255,110,0.08), 0 0 22px rgba(116,255,110,0.08);
}

.audience-section .narrow {
  max-width: 46rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.audience-card {
  padding: 1.7rem;
}

.audience-card-negative {
  border-color: rgba(255, 92, 92, 0.2);
  background: linear-gradient(180deg, rgba(16, 10, 10, 0.84), rgba(10, 8, 8, 0.94));
}

.audience-label {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-card-negative .audience-label {
  color: #ff9f9f;
}

.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.audience-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--accent);
  font-weight: 800;
}

.audience-list-negative li::before {
  content: "✗";
  color: #ff7f7f;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: center;
}

.image-panel {
  padding: 1rem;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent) 0 35%, transparent 36%), rgba(116,255,110,0.2);
  box-shadow: 0 0 16px rgba(116,255,110,0.25);
}

.membership-banner,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}


.expectations .narrow,
.faq-section .narrow {
  max-width: 44rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.faq-list details[open] {
  background: rgba(14, 22, 15, 0.92);
  border-color: rgba(116, 255, 110, 0.32);
  box-shadow: 0 0 0 1px rgba(116,255,110,0.08), 0 0 30px rgba(116,255,110,0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-list p {
  margin: 0.8rem 0 0;
  font-size: 1rem;
}

.final-cta {
  margin: 5.5rem auto 5rem;
  flex-direction: column;
  text-align: center;
  padding: 3rem 2rem;
}

.final-cta p {
  max-width: 42rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header-inner,
  .hero,
  .split-layout,
  .membership-banner,
  .proof-strip,
  .feature-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header-inner {
    align-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero,
  .hero-centered {
    padding-top: 4rem;
  }

  .hero-visual {
    order: -1;
  }

  .membership-banner {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .site-nav {
    display: none;
  }

  .hero {
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section {
    margin-top: 4.5rem;
  }

  .proof-strip article,
  .feature-card,
  .faq-list details,
  .membership-banner,
  .final-cta {
    padding: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
