:root {
  color-scheme: dark;
  --bg: #10120f;
  --panel: #191d17;
  --panel-strong: #222819;
  --text: #f6f7ef;
  --muted: #b9c0aa;
  --line: rgba(246, 247, 239, 0.16);
  --brand: #b6e13d;
  --brand-2: #f5c542;
  --danger: #ff6b4a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 15, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.hero-actions,
.hero-stats,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #111;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav {
  gap: clamp(12px, 2vw, 28px);
}

.nav a,
.ghost-link,
.feature-grid a,
.inline-cta,
.footer a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions {
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(182, 225, 61, 0.3);
  border-radius: 8px;
  background: var(--brand);
  color: #10120f;
  box-shadow: 0 12px 28px rgba(182, 225, 61, 0.2);
  font-weight: 900;
  text-decoration: none;
  padding: 12px 20px;
}

.button:hover,
.inline-cta:hover,
.feature-grid a:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: 110px clamp(16px, 5vw, 70px) 38px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.96), rgba(16, 18, 15, 0.72) 42%, rgba(16, 18, 15, 0.32)),
    linear-gradient(0deg, rgba(16, 18, 15, 0.98), rgba(16, 18, 15, 0) 34%),
    url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.hero-content {
  position: relative;
  max-width: 780px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stats span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  color: var(--muted);
}

.hero-stats strong {
  color: var(--text);
}

.notice,
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.notice {
  margin-top: 22px;
  border-left: 4px solid var(--danger);
  background: rgba(255, 107, 74, 0.1);
  padding: 16px 18px;
  color: #ffe6df;
}

.section {
  padding: 72px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.phone-panel,
.bonus-card,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.phone-panel {
  padding: 18px;
}

.phone-top {
  width: 88px;
  height: 7px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--line);
}

.match-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) repeat(3, 58px);
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.match-row span,
.match-row strong {
  min-height: 48px;
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 12px;
}

.match-row strong {
  display: grid;
  place-items: center;
  color: var(--brand);
}

.inline-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
}

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

.feature-grid article {
  min-height: 250px;
  padding: 24px;
}

.feature-grid p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(245, 197, 66, 0.14);
  color: var(--brand-2);
  font-weight: 900;
}

.split-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 72px clamp(16px, 5vw, 70px);
  background: #202616;
}

.split-band > div {
  max-width: 720px;
}

.bonus-card {
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 197, 66, 0.28), transparent 32%),
    var(--panel);
  text-align: center;
}

.bonus-card p {
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.bonus-card strong {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: var(--brand-2);
}

.bonus-card span {
  max-width: 280px;
  color: var(--muted);
}

.content-section {
  max-width: 850px;
  color: var(--muted);
}

.content-section h2,
.faq h2 {
  color: var(--text);
}

.faq {
  padding-top: 30px;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px clamp(16px, 5vw, 70px) 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 29, 23, 0.94);
  box-shadow: var(--shadow);
  padding: 10px;
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
    padding-top: 86px;
  }

  .two-column,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .split-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .header-actions {
    width: 100%;
  }

  .header-actions .ghost-link,
  .header-actions .button {
    flex: 1;
  }

  .hero-actions .button,
  .sticky-cta .button {
    width: 100%;
  }

  .sticky-cta {
    display: grid;
  }

  .match-row {
    grid-template-columns: 1fr;
  }
}
