:root {
  --bg: #070908;
  --surface: #101511;
  --surface-2: #171e19;
  --text: #f7f9f5;
  --muted: #b7c1b7;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #b8ff3b;
  --gold: #f7c948;
  --red: #ff4d3d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 6%, rgba(184, 255, 59, 0.18), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(247, 201, 72, 0.14), transparent 30%),
    linear-gradient(180deg, #070908 0%, #0d120f 42%, #050605 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #071006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(184, 255, 59, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.topbar nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta {
  color: #071006;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 104px) clamp(18px, 5vw, 72px) 54px;
}

.hero-copy,
.section-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
  max-width: 920px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lede,
.section-copy > p,
.offer-card > p,
.faq p,
.footer p {
  color: var(--muted);
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 950;
}

.button.primary {
  color: #071006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 18px 48px rgba(184, 255, 59, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.wide {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-media,
.panel-image,
.offer-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  min-height: 560px;
  border-radius: 28px;
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.split,
.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.benefit-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.benefit-grid article,
.impact-grid article,
.offer-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.benefit-grid article,
.impact-grid article {
  padding: 22px;
}

.benefit-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.benefit-grid p,
.impact-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-image {
  height: 520px;
  border-radius: 24px;
}

.offer {
  background: linear-gradient(135deg, rgba(184, 255, 59, 0.08), rgba(255, 77, 61, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-card {
  padding: clamp(26px, 4vw, 46px);
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-weight: 800;
}

.offer-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(184, 255, 59, 0.7);
}

.offer-image {
  height: 560px;
  border-radius: 24px;
}

.impact {
  text-align: center;
}

.impact h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.impact-grid {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.cta-band {
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 78px);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(184, 255, 59, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(184, 255, 59, 0.18), rgba(247, 201, 72, 0.12));
}

.cta-band p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  line-height: 1.05;
  font-weight: 950;
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px) 42px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .offer,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .panel-image,
  .offer-image {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .benefit-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .topbar {
    padding: 14px 14px 12px;
  }

  .topbar nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero,
  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2.65rem, 18vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.82rem, 10vw, 3rem);
  }

  .hero-actions,
  .button,
  .cta-band {
    width: 100%;
  }

  .cta-band {
    margin-right: 14px;
    margin-left: 14px;
  }
}