:root {
  --bg: #07110a;
  --bg-soft: #102116;
  --panel: rgba(12, 30, 17, 0.82);
  --panel-border: rgba(213, 179, 76, 0.24);
  --text: #edf4df;
  --muted: #b9c7aa;
  --gold: #d8b14c;
  --gold-soft: #f3d98a;
  --green: #63e189;
  --green-deep: #163822;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(69, 140, 74, 0.24), transparent 38%),
    radial-gradient(circle at 85% 15%, rgba(216, 177, 76, 0.16), transparent 22%),
    linear-gradient(180deg, #09150c 0%, #040805 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(99, 225, 137, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 225, 137, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  opacity: 0.28;
}

.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  background: rgba(6, 12, 8, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-shell::after {
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 177, 76, 0.26), transparent 68%);
  content: "";
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(216, 177, 76, 0.45);
  border-radius: 18px;
  font-family: "Syncopate", sans-serif;
  font-size: 0.95rem;
  color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(216, 177, 76, 0.18), rgba(24, 59, 32, 0.92));
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.05);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.nav a,
.social-pill,
.language-toggle,
.button,
.step-index,
.feature strong {
  font-family: "Syncopate", sans-serif;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.social-pill {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.language-toggle {
  min-width: 46px;
  padding: 12px 10px;
  border: 1px solid rgba(99, 225, 137, 0.34);
  border-radius: 999px;
  color: var(--green);
  background: rgba(99, 225, 137, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-pill {
  padding: 12px 16px;
  border: 1px solid rgba(216, 177, 76, 0.32);
  border-radius: 999px;
  background: rgba(216, 177, 76, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}

.eyebrow,
.panel-kicker,
.feature-label,
.claim-status {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h1 span,
.section-heading h2,
.claim-copy h2 {
  color: var(--gold-soft);
}

.lead,
.panel p,
.step-card p,
.claim-copy p,
.claim-note,
.hero-points li {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.social-pill:hover,
.social-pill:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible,
.nav a:hover,
.nav a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #051108;
  background: linear-gradient(135deg, #f7df96 0%, #d7af49 48%, #8be891 100%);
  box-shadow: 0 18px 44px rgba(138, 232, 145, 0.28);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(216, 177, 76, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.button-large {
  width: 100%;
  padding-block: 20px;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--green));
  box-shadow: 0 0 12px rgba(139, 232, 145, 0.6);
  content: "";
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.coin-frame {
  position: relative;
  width: min(100%, 540px);
  padding: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(139, 232, 145, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(216, 177, 76, 0.26), rgba(8, 16, 10, 0.06));
  box-shadow:
    0 0 0 1px rgba(216, 177, 76, 0.22),
    0 0 80px rgba(110, 219, 132, 0.16);
}

.coin-image {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  min-width: 180px;
  padding: 18px 20px;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background: rgba(8, 20, 12, 0.82);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.floating-card strong {
  font-family: "Syncopate", sans-serif;
  color: var(--gold-soft);
  font-size: 0.94rem;
}

.floating-card-top {
  top: 44px;
  right: 0;
}

.floating-card-bottom {
  bottom: 58px;
  left: 0;
}

.info-grid,
.step-grid {
  display: grid;
  gap: 20px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.step-card,
.claim-panel,
.feature,
.claim-box {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.panel,
.step-card,
.claim-box {
  border-radius: 24px;
  padding: 28px;
}

.panel h2,
.section-heading h2,
.claim-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 64px;
}

.feature {
  padding: 22px 24px;
  border-radius: 20px;
}

.feature strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.92rem;
}

.steps {
  margin-bottom: 64px;
}

.section-heading {
  margin-bottom: 24px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 177, 76, 0.18), transparent 70%);
  content: "";
}

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.claim-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  padding: 30px;
  border-radius: 28px;
}

.claim-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(99, 225, 137, 0.8);
}

.claim-note {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .info-grid,
  .feature-strip,
  .step-grid,
  .claim-panel {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    justify-content: stretch;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-art {
    min-height: auto;
    padding-top: 20px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding: 18px;
    border-radius: 22px;
  }

  h1 {
    max-width: none;
    font-size: 2.8rem;
  }

  .panel,
  .step-card,
  .claim-panel,
  .claim-box {
    padding: 22px;
  }

  .button,
  .social-pill {
    width: 100%;
  }
}
