* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --panel: rgba(18, 18, 18, 0.9);
  --panel-border: rgba(212, 175, 55, 0.20);
  --gold: #d4af37;
  --gold-soft: #f5dd87;
  --gold-deep: #9f7310;
  --text: #ffffff;
  --muted: #d0d0d0;
  --green: #00c853;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03), transparent 14%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 44px;
}

.hero {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
  padding: 0;
  overflow: hidden;
}

.wordmark-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 8px;
}

.wordmark {
  display: inline-block;
  padding: 8px 20px 10px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);

  background: linear-gradient(
    120deg,
    #f5dd87 0%,
    #d4af37 30%,
    #fff4c2 50%,
    #d4af37 70%,
    #a37310 100%
  );

  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  animation: goldShimmer 10s linear infinite;
}

.wordmark::before {
  content: "STONEZ GOLD";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: inherit;
  border-radius: inherit;
  background: linear-gradient(180deg, #fff2b2 0%, #f5dd87 22%, #d4af37 58%, #a37310 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.03;
  max-width: 920px;
  margin: 2px auto 12px;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-wrap: balance;
}

.hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5dd87);
  margin: 16px auto 0;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
}

.hero-text {
  max-width: 780px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.urgency {
  color: var(--gold-soft);
  font-weight: 800;
  margin-top: 12px;
  font-size: 1.02rem;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 40px;
}

.reason-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    var(--panel);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.95;
}

.reason-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.reason-card h2 {
  font-size: 1.12rem;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.reason-card p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  text-align: center;
  margin: 16px auto 34px;
  padding: 30px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: var(--shadow);
  max-width: 760px;
}

.social-proof {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #15db6c 0%, var(--green) 100%);
  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 12px 28px rgba(0, 200, 83, 0.26),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.join-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(0, 200, 83, 0.34),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  filter: brightness(1.04);
}

.telegram-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 4px;
}

.telegram-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.microcopy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 22px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer p {
  color: #b8b8b8;
  line-height: 1.75;
  font-size: 0.94rem;
}

.footer p + p {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .page {
    width: min(100% - 24px, 720px);
    padding-top: 8px;
  }

  .wordmark {
    font-size: 1.05rem;
    padding: 8px 16px 10px;
  }

  .reasons {
    grid-template-columns: 1fr;
  }

  .reason-card {
    padding: 20px;
  }

  .cta-section {
    padding: 22px 14px;
  }

  .join-btn {
    width: 100%;
    max-width: 360px;
  }

  .hero-text {
    font-size: 1rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 60%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* Hero headline animation */

.hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease-out forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes goldShimmer {
  to {
    background-position: 200% center;
  }
}

/* ---------- PARTICLE BACKGROUND ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.particles {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 500px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #d4af37;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatParticles linear infinite;
}

@keyframes floatParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-400px);
  }
}

/* Make hero content appear above particles */

.hero > *:not(.particles) {
  position: relative;
  z-index: 2;
}


/* ---------- HEADLINE ANIMATION ---------- */

.hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease-out forwards;
}

.hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------- GOLD SHIMMER WORDMARK ---------- */

.wordmark {
  animation: goldShimmer 10s linear infinite;
}

@keyframes goldShimmer {
  to {
    background-position: 200% center;
  }
}