:root {
  --bg: #0a0806;
  --bg-card: rgba(18, 14, 10, 0.72);
  --gold: #f5b942;
  --gold-bright: #ffd36a;
  --gold-dim: #c98b1f;
  --text: #f4efe6;
  --muted: rgba(244, 239, 230, 0.62);
  --border: rgba(245, 185, 66, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #2a1c0d 0%, var(--bg) 55%);
  overflow-x: hidden;
}

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

.bg-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.bg-glow--left { top: 10%; left: -120px; background: #f5b942; }
.bg-glow--right { bottom: 5%; right: -100px; background: #ff8c1a; }

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0.35;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from { transform: translateY(20px); opacity: 0; }
  20% { opacity: 0.5; }
  to { transform: translateY(-120vh); opacity: 0; }
}

.header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}

.header__brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}
.header__brand span { color: #fff; }

.header__cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 185, 66, 0.08);
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
}
.header__cta:hover {
  background: rgba(245, 185, 66, 0.18);
  box-shadow: 0 0 24px rgba(245, 185, 66, 0.2);
}

.hero {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 48px) 64px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding: 12px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.18), rgba(245, 185, 66, 0.04));
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.hero__badge-free {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}
.hero__badge-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  width: min(92vw, 520px);
  margin: 0 auto 24px;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
  animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 185, 66, 0.15);
  pointer-events: none;
}
.hero__ring--outer {
  inset: -18px;
  animation: spin 18s linear infinite;
}
.hero__ring--inner {
  inset: -8px;
  border-color: rgba(245, 185, 66, 0.08);
  animation: spin 24s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.coin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #1a1208;
  background: linear-gradient(145deg, #ffe08a, #d89a1f);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: coinFloat 5s ease-in-out infinite;
}
.coin--1 { top: 8%; left: -4%; animation-delay: 0s; }
.coin--2 { top: 18%; right: -2%; animation-delay: 1.2s; font-size: 16px; }
.coin--3 { bottom: 12%; left: 8%; animation-delay: 2.4s; width: 36px; height: 36px; font-size: 15px; }

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.hero__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-bottom: 14px;
  line-height: 0.95;
}
.hero__title-lost,
.hero__title-crypto {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 12vw, 92px);
  letter-spacing: 0.04em;
}
.hero__title-lost {
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(245, 185, 66, 0.35);
}
.hero__title-crypto { color: #fff; }

.hero__tagline {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  color: #1a1208;
  background: linear-gradient(135deg, #ffd36a 0%, #f5b942 45%, #d89a1f 100%);
  box-shadow: 0 12px 40px rgba(245, 185, 66, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 16px 48px rgba(245, 185, 66, 0.45);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover {
  background: rgba(245, 185, 66, 0.08);
}

.hero__footer-note {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
}

.features {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) 72px;
}

.feature {
  padding: 22px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.feature__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 24px 20px 40px;
  font-size: 13px;
  color: var(--muted);
}
.footer a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .coin { display: none; }
}
