:root {
  --gold: #f5c24a;
  --gold-deep: #d18c21;
  --gold-light: #ffe399;
  --canvas-top: #1a140f;
  --canvas-bottom: #0d0a08;
  --ink: #f7f1e6;
  --muted: rgba(247, 241, 230, 0.58);
  --line: rgba(245, 194, 74, 0.22);
  --card: rgba(255, 255, 255, 0.05);
  --radius: 22px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Nunito, ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(245, 194, 74, 0.16), transparent 55%),
    linear-gradient(180deg, var(--canvas-top), var(--canvas-bottom));
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--canvas-bottom);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13, 10, 8, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

h1 span {
  display: block;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 38rem;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button.gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 40%, var(--gold-deep));
  color: var(--canvas-bottom);
}

.button.gold:hover {
  color: var(--canvas-bottom);
  filter: brightness(1.06);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--gold);
}

.stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 194, 74, 0.45), transparent 68%);
  filter: blur(12px);
}

.coin {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section {
  padding: 72px 0;
}

.section header {
  max-width: 36rem;
  margin-bottom: 32px;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

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

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card p,
.step p,
.premium-box p,
.premium-box ul {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--card);
}

.step b {
  color: var(--gold);
  font-size: 1.4rem;
}

.premium-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 194, 74, 0.08), rgba(255, 255, 255, 0.03));
}

.plans {
  display: grid;
  gap: 12px;
}

.plan {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(13, 10, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.plan em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.fine {
  font-size: 0.82rem;
  color: rgba(247, 241, 230, 0.45);
}

.legal-page {
  padding: 56px 0 88px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 10px;
}

.legal-page h2 {
  margin: 36px 0 10px;
  font-size: 1.25rem;
  color: var(--gold);
}

.legal-page ul {
  color: var(--muted);
  padding-left: 1.15rem;
}

.legal-page li {
  margin: 8px 0;
}

.updated {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold);
}

.notice {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 241, 230, 0.5);
  font-size: 0.92rem;
}

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

  .hero {
    padding-top: 40px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
}

/* App Store badge under existing CTA buttons */
.btn-app-store {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-basis: 100%;
}

.btn-app-store:hover {
  opacity: 0.92;
}

.app-store-badge {
  display: block;
  height: 48px;
  width: auto;
}
