:root {
  --bg: #08090d;
  --panel: #12141d;
  --ink: #fff8ef;
  --muted: #b8b0a7;
  --line: rgba(255, 248, 239, 0.16);
  --gold: #ffd166;
  --pink: #ff3d81;
  --red: #ff4b3e;
  --green: #32f29a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 61, 129, 0.22), transparent 28rem),
    linear-gradient(250deg, rgba(255, 209, 102, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(50, 242, 154, 0.12), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.78);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #09080b;
  font-weight: 950;
}

.header-link {
  border-radius: 7px;
  background: #fff8ef;
  color: #09080b;
  padding: 12px 16px;
  font-weight: 950;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.56fr);
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 54px 0 34px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 11vw, 126px);
  line-height: 0.86;
  font-weight: 950;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 940;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.mega-button {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  min-height: 112px;
  margin-top: 28px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--pink) 55%, var(--red));
  color: #09080b;
  box-shadow: 0 24px 60px rgba(255, 61, 129, 0.34);
  text-align: center;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mega-button:hover {
  box-shadow: 0 30px 72px rgba(255, 61, 129, 0.46);
  transform: translateY(-2px);
}

.mega-button span {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 950;
  line-height: 1;
}

.mega-button b {
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: 0;
}

.notice {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.bonus-panel,
.features article,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 20, 29, 0.84);
  box-shadow: var(--shadow);
}

.bonus-panel {
  padding: 22px;
}

.bonus-label {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(50, 242, 154, 0.12);
  color: var(--green);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-number {
  margin: 26px 0 8px;
  font-size: clamp(70px, 10vw, 118px);
  line-height: 0.84;
  font-weight: 950;
  color: var(--gold);
}

.bonus-panel p,
.features p,
.footer p {
  color: var(--muted);
  line-height: 1.62;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.features article {
  padding: 20px;
}

.features span {
  color: var(--pink);
  font-weight: 950;
}

.features h2 {
  margin-top: 12px;
  font-size: 26px;
}

.cta-band {
  width: min(1120px, calc(100% - 32px));
  margin: 68px auto 0;
  padding: 28px;
  text-align: center;
}

.compact {
  min-height: 94px;
  margin-top: 18px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 54px auto 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.go-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.go-shell {
  width: min(620px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 20, 29, 0.88);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.go-shell h1 {
  font-size: clamp(34px, 8vw, 62px);
}

@media (max-width: 860px) {
  .hero,
  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .features,
  .cta-band,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 54px;
  }

  .mega-button {
    min-height: 104px;
  }
}
