:root {
  --bg: #070711;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b8b8c8;
  --line: rgba(255, 255, 255, 0.12);
  --hot: #ffce3a;
  --pink: #ff3df2;
  --cyan: #33e7ff;
  --green: #6dff8d;
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 61, 242, 0.22), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(51, 231, 255, 0.18), transparent 32%),
    radial-gradient(circle at 50% 95%, rgba(255, 206, 58, 0.13), transparent 38%),
    linear-gradient(135deg, #070711 0%, #111126 50%, #070711 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img, svg {
  max-width: 100%;
}

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

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 20px;
  backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  height: 66px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 17, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hot), var(--pink));
  color: #141414;
  box-shadow: 0 10px 30px rgba(255, 61, 242, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: #080812 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--hot);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.hero-copy p,
.section-heading p,
.split-card p,
.contact-card p,
.disclaimer p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #111;
  background: linear-gradient(135deg, var(--hot), var(--pink));
  box-shadow: 0 18px 44px rgba(255, 61, 242, 0.2);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.06);
  color: white;
}

.hero-note {
  max-width: 650px;
  color: var(--muted);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}

.hero-note strong {
  color: white;
}

.hero-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
    radial-gradient(circle at 50% 30%, rgba(255,206,58,0.22), transparent 34%);
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.34);
}

.coin-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.coin {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,206,58,0.85));
  box-shadow: 0 30px 90px rgba(255,206,58,0.18);
}

.main-coin {
  width: 210px;
  height: 210px;
  font-size: 5rem;
  animation: float 4s ease-in-out infinite;
}

.small {
  position: absolute;
  width: 82px;
  height: 82px;
  font-size: 2rem;
}

.coin-a { top: 96px; left: 82px; animation: float 5s ease-in-out infinite; }
.coin-b { right: 70px; top: 150px; animation: float 5.5s ease-in-out infinite reverse; }
.coin-c { right: 120px; bottom: 110px; animation: float 4.5s ease-in-out infinite; }

.metric-card {
  position: absolute;
  width: min(280px, calc(100% - 48px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(7,7,17,0.72);
  backdrop-filter: blur(16px);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.metric-card strong {
  display: block;
  font-size: 1.05rem;
}

.top-card { top: 30px; right: 30px; }
.bottom-card { left: 30px; bottom: 30px; }

.trust-strip {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.service-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.price-card,
details,
.split-card,
.dashboard,
.disclaimer,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(0,0,0,0.2);
}

.service-card {
  padding: 26px;
}

.service-card p,
.price-card p,
details p,
.timeline-item p {
  color: var(--muted);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  font-size: 1.65rem;
  margin-bottom: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.split-card,
.dashboard,
.disclaimer,
.contact-card {
  padding: 34px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: white;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  margin-right: 10px;
}

.dashboard {
  background: rgba(5,5,14,0.72);
}

.dash-header {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.dash-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.dash-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  margin-top: 12px;
}

.dash-row.hot {
  background: linear-gradient(135deg, rgba(255,206,58,0.2), rgba(255,61,242,0.13));
}

.dash-row small {
  color: var(--muted);
  display: block;
  font-weight: 800;
}

.dash-row b {
  color: var(--hot);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #111;
  background: var(--hot);
  font-weight: 900;
  margin-bottom: 24px;
}

.packages {
  max-width: 1240px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(255,206,58,0.14), rgba(255,61,242,0.13));
  transform: translateY(-16px);
}

.popular {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--hot);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 2.25rem;
  letter-spacing: -0.06em;
  margin: 18px 0;
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
  margin-bottom: 26px;
}

.price-card li {
  margin: 9px 0;
}

.disclaimer {
  text-align: center;
  background: linear-gradient(135deg, rgba(51,231,255,0.10), rgba(255,206,58,0.08));
}

.disclaimer p {
  margin-left: auto;
  margin-right: auto;
}

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

details {
  padding: 24px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

summary::marker {
  color: var(--hot);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: white;
  padding: 16px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255,206,58,0.75);
}

.contact-form small,
.fine-print {
  color: var(--muted);
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer .brand {
  color: white;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@media (max-width: 950px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 92px 20px auto 20px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(7,7,17,0.96);
    box-shadow: 0 26px 80px rgba(0,0,0,0.42);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .split-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 470px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 72px 18px;
  }

  .site-header {
    padding: 12px;
  }

  .nav {
    height: 60px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 390px;
    border-radius: 30px;
  }

  .main-coin {
    width: 150px;
    height: 150px;
    font-size: 3.5rem;
  }

  .small {
    width: 62px;
    height: 62px;
    font-size: 1.55rem;
  }

  .coin-a { top: 70px; left: 36px; }
  .coin-b { right: 34px; top: 110px; }
  .coin-c { right: 70px; bottom: 82px; }

  .metric-card {
    position: relative;
    inset: auto;
    margin: 18px;
  }

  .top-card {
    margin-left: auto;
  }

  .bottom-card {
    margin-top: 260px;
  }
}
