:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-soft: #161616;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #00e68a;
  --accent-dim: rgba(0, 230, 138, 0.12);
  --coral: #ff6b4a;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font: "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 550;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-chip:hover {
  border-color: rgba(88, 101, 242, 0.55);
  color: #aab0ff;
  background: rgba(88, 101, 242, 0.12);
}

.social-chip-lg {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.socials-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 0.7rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(88, 101, 242, 0.06);
}

.socials-bar-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-brand img {
  border-radius: 7px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #04140e;
  font-weight: 650;
  font-size: 0.95rem;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 30px rgba(0, 230, 138, 0.25);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1.05rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(0, 230, 138, 0.4);
  box-shadow: none;
  filter: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 3rem;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(0, 230, 138, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(48, 128, 255, 0.08), transparent 55%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem 0.35rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.pill img {
  border-radius: 5px;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-logo {
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 230, 138, 0.2);
  animation: logoIn 0.8s ease both;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.hero-sub {
  display: block;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 16ch;
}

.lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-visual {
  animation: fadeUp 0.9s ease 0.15s both;
}

.fee-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #141414, #0f0f0f);
  padding: 1.25rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.fee-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.fee-card-top img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.fee-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: end;
}

.fee-compare .label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.fee-compare .was {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 1.15rem;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.fee-compare .now {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 1.35rem;
}

.fee-compare .arrow {
  color: var(--muted);
  padding-bottom: 0.2rem;
}

.fee-saved {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 2rem;
}

.strip-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.platform-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--bg-elev);
}

.platform-pills img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.platform-pills .muted {
  color: var(--muted);
  border-style: dashed;
  padding-left: 0.85rem;
}

.stats {
  max-width: var(--max);
  margin: 0 auto 1rem;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 1.25rem 1.15rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.fee-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
}

.fee-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--line);
  align-items: center;
  font-size: 0.95rem;
}

.fee-row:first-child {
  border-top: 0;
}

.fee-head {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.02);
}

.plat {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.plat img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
}

.accent,
.save {
  color: var(--accent);
  font-weight: 600;
  font-family: var(--mono);
  font-size: 0.9rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.step {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.in {
  opacity: 1;
  transform: none;
}

.step-num {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.step-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.step-icons img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.step p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.reclaim {
  padding-top: 2rem;
}

.reclaim-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 230, 138, 0.1), transparent 55%),
    var(--bg-elev);
  padding: 2rem 1.5rem;
}

.reclaim-panel .section-head {
  margin-bottom: 1.75rem;
}

.reclaim-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.reclaim-points li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.reclaim-points strong {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.reclaim-points span {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.referrals .ref-tiers {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ref-tier {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 1.35rem 1.25rem;
}

.ref-tier.featured {
  border-color: rgba(0, 230, 138, 0.35);
  background:
    radial-gradient(ellipse 80% 100% at 0% 0%, rgba(0, 230, 138, 0.12), transparent 60%),
    var(--bg-elev);
}

.ref-level {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.ref-pct {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.ref-tier p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ref-payout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: rgba(0, 230, 138, 0.05);
}

.ref-payout strong {
  display: block;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}

.ref-payout p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.platform-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.platform-list .soon {
  opacity: 0.55;
}

.badge {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.badge.live {
  color: #04140e;
  background: var(--accent);
  border-color: transparent;
}

.rate {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88rem;
  font-family: var(--mono);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.cta-final {
  text-align: center;
  padding-bottom: 6rem;
}

.cta-logo {
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 230, 138, 0.2);
}

.cta-final h2 {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 800;
}

.cta-final > p {
  margin: 1rem auto 1.5rem;
  max-width: 34rem;
  color: var(--muted);
}

.fee-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 42rem;
}

.fee-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-platforms img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.fine {
  margin-top: 1rem !important;
  font-size: 0.85rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 550;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  border-color: rgba(0, 230, 138, 0.45);
  color: var(--accent);
}

.cta-final-actions {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0.25rem;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.04);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  .fee-row {
    grid-template-columns: 1.3fr 1fr 1fr;
    font-size: 0.85rem;
  }

  .fee-row span:last-child {
    display: none;
  }

  .platform-list li {
    grid-template-columns: 1fr auto;
  }

  .platform-list .rate {
    display: none;
  }

  .hero-sub {
    max-width: none;
  }
}

@media (min-width: 800px) {
  .nav-links {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .step {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.4rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .feature {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.4rem;
  }

  .reclaim-panel {
    padding: 2.5rem;
  }

  .reclaim-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .reclaim-points li {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.25rem;
  }

  .referrals .ref-tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}
