:root {
  --bg: #070706;
  --panel: #13110d;
  --ink: #fff7e7;
  --muted: #c8baa1;
  --line: rgba(255, 247, 231, 0.16);
  --orange: #f7931a;
  --gold: #ffd36a;
  --red: #ff4545;
  --green: #42f59b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 147, 26, 0.26), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(255, 211, 106, 0.16), transparent 24rem),
    linear-gradient(180deg, #070706 0%, #11100d 52%, #070706 100%);
  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(7, 7, 6, 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: 44px;
  height: 44px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #100b04;
  font-size: 12px;
  font-weight: 950;
}

.header-link {
  border-radius: 7px;
  background: #fff7e7;
  color: #100b04;
  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: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  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(48px, 10vw, 118px);
  line-height: 0.88;
  font-weight: 950;
}

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

.lead {
  max-width: 690px;
  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(540px, 100%);
  min-height: 112px;
  margin-top: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--gold) 62%, #fff1b3);
  color: #100b04;
  box-shadow: 0 24px 60px rgba(247, 147, 26, 0.36);
  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(247, 147, 26, 0.48);
  transform: translateY(-2px);
}

.mega-button span {
  font-size: clamp(26px, 5.4vw, 50px);
  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,
.go-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 17, 13, 0.86);
  box-shadow: var(--shadow);
}

.bonus-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.coin-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 0 20px auto;
}

.coin {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #100b04;
  font-size: 58px;
  font-weight: 950;
  box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.18);
}

.coin-orbit i {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 211, 106, 0.48);
  border-radius: 50%;
}

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

.bonus-number {
  margin: 22px 0 8px;
  font-size: clamp(64px, 8vw, 98px);
  line-height: 0.84;
  font-weight: 950;
  color: var(--gold);
}

.bonus-panel p,
.features p,
.footer p,
.go-shell 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(--orange);
  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%);
  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: 48px;
  }

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