:root {
  --olive: #4e6b2a;
  --olive-bright: #6a9238;
  --gold: #b8922a;
  --ink: #080a06;
  --panel: #11170c;
  --panel-soft: #171f10;
  --line: rgba(106, 146, 56, 0.22);
  --text: #f2f5ee;
  --muted: #b3c0a8;
  --wpp: #25d366;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(78, 107, 42, 0.14), transparent 34rem),
    var(--ink);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 10; background: white; color: black; padding: 10px 14px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 6, 0.93);
  backdrop-filter: blur(12px);
}
.header-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { text-decoration: none; display: grid; gap: 2px; }
.brand strong { font-family: "Bebas Neue", Impact, sans-serif; font-size: 25px; letter-spacing: 1.8px; line-height: 1; }
.brand span { color: var(--olive-bright); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.back { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px; }
.back:hover, .back:focus-visible { color: var(--text); }
.hero { padding: clamp(72px, 10vw, 132px) 0 70px; }
.eyebrow { margin: 0 0 14px; color: var(--olive-bright); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1, h2 { font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: 1px; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(48px, 8vw, 88px); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 22px; }
.lead { max-width: 770px; margin: 0; color: var(--muted); font-size: clamp(19px, 2.5vw, 24px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.actions-center { justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 24px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.button-primary { background: var(--wpp); color: #07170b; }
.button-secondary { border: 1px solid var(--line); color: var(--text); }
.proof { border-block: 1px solid var(--line); background: rgba(17, 23, 12, 0.65); }
.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 22px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: 18px; }
.proof-item span { color: var(--muted); font-size: 14px; }
.section { padding: 76px 0; }
.section + .section { border-top: 1px solid var(--line); }
.intro { max-width: 760px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, var(--panel), var(--panel-soft)); }
.card p { margin-bottom: 0; color: var(--muted); }
.card a { display: inline-block; margin-top: 18px; color: #a8cf77; font-weight: 700; text-underline-offset: 4px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; counter-reset: step; }
.step { padding: 22px; border-left: 2px solid var(--olive); background: rgba(17, 23, 12, 0.7); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 16px; color: var(--olive-bright); font-weight: 800; }
.step strong { display: block; }
.step span { color: var(--muted); font-size: 15px; }
.notice { margin-top: 28px; padding: 20px 22px; border: 1px solid rgba(184, 146, 42, 0.28); border-radius: 12px; color: #d9d0b0; background: rgba(184, 146, 42, 0.07); }
.faq { max-width: 860px; }
details { border-top: 1px solid var(--line); padding: 20px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); }
.official { color: #a8cf77; text-underline-offset: 4px; }
.cta { padding: 64px 0; text-align: center; background: linear-gradient(135deg, rgba(46, 64, 22, .38), rgba(8, 10, 6, .9)); }
.cta p { max-width: 650px; margin: 0 auto; color: var(--muted); }
footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .wrap { width: min(100% - 28px, 1120px); }
  .header-row { min-height: 68px; }
  .brand strong { font-size: 22px; }
  .back { font-size: 14px; }
  .hero { padding: 58px 0 52px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .proof-row, .cards, .steps { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 56px 0; }
  .card { padding: 22px; }
}

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