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

:root {
  --black: #080810;
  --surface: #0f0f1a;
  --card: #13131f;
  --pink: #e879a0;
  --pink-d: #c45c80;
  --violet: #a78bda;
  --mint: #6fd4be;
  --text: #e8e6f0;
  --muted: rgba(232, 230, 240, .54);
  --muted-2: rgba(232, 230, 240, .72);
  --border: rgba(232, 230, 240, .08);
  --border-2: rgba(232, 230, 240, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Syne", system-ui, sans-serif;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
}

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

#cursor {
  width: 10px;
  height: 10px;
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  border-radius: 50%;
  background: var(--pink);
  transform: translate(-50%, -50%);
  transition: width .18s ease, height .18s ease, background .18s ease;
  mix-blend-mode: screen;
}

#cursor.big {
  width: 34px;
  height: 34px;
  background: var(--violet);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 74% 16%, rgba(232, 121, 160, .12), transparent 35%),
    radial-gradient(ellipse at 12% 48%, rgba(111, 212, 190, .09), transparent 32%),
    linear-gradient(180deg, var(--black), #090914 48%, var(--black));
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 72% 82% at 50% 12%, #000 28%, transparent 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem clamp(1rem, 4vw, 5rem);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 16, .84);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(232, 121, 160, .8);
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

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

.nav .nav-cta {
  padding: .55rem 1.15rem;
  border-radius: 999px;
  color: var(--black);
  background: var(--pink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem clamp(1rem, 4vw, 5rem) 4rem;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.2rem;
  font-family: "DM Mono", monospace;
  color: var(--mint);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .95;
  margin-bottom: 1.5rem;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 230, 240, .34);
}

.hero-lead,
.section-head p,
.split-copy p,
.cta-section p {
  max-width: 620px;
  color: var(--muted-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.35rem;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

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

.btn-primary {
  color: var(--black);
  background: var(--pink);
  box-shadow: 0 10px 34px rgba(232, 121, 160, .24);
}

.btn-primary:hover {
  background: var(--pink-d);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border-2);
  background: rgba(19, 19, 31, .6);
}

.btn-secondary:hover {
  color: var(--violet);
  border-color: var(--violet);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.2rem;
  border: 1px solid var(--border);
  background: var(--border);
}

.hero-stats div {
  padding: 1.2rem;
  background: rgba(15, 15, 26, .82);
}

.hero-stats dt {
  color: var(--text);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stats dd {
  margin-top: .45rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section {
  padding: 6.5rem clamp(1rem, 4vw, 5rem);
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.6rem;
}

h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.feature-grid,
.plans-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.plan-card,
.step,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(19, 19, 31, .78);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.feature-card:hover,
.plan-card:hover,
.step:hover,
.faq-item:hover,
.donate-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  background: var(--card);
}

.feature-card {
  min-height: 245px;
  padding: 1.7rem;
}

.feature-mark,
.plan-kicker,
.step span {
  font-family: "DM Mono", monospace;
  color: var(--mint);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.feature-card h3,
.plan-card h3,
.step h3,
.faq-item h3 {
  margin: 1rem 0 .65rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p,
.plan-card li,
.step p,
.faq-item p {
  color: var(--muted-2);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.plan-card.featured {
  border-color: rgba(232, 121, 160, .52);
  background: linear-gradient(160deg, rgba(232, 121, 160, .08), rgba(19, 19, 31, .94) 56%);
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  color: var(--black);
  background: var(--pink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-badge.muted {
  color: var(--text);
  border: 1px solid var(--border-2);
  background: rgba(232, 230, 240, .08);
}

.plan-card.soon {
  border-style: dashed;
}

.plan-price {
  margin: .9rem 0 1.3rem;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: .58rem;
  margin-bottom: 1.2rem;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.1rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.price-options {
  display: grid;
  gap: .42rem;
  margin: auto 0 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price-options span {
  color: var(--muted-2);
  font-family: "DM Mono", monospace;
  font-size: .78rem;
  line-height: 1.45;
}

.plan-link {
  display: flex;
  justify-content: center;
  padding: .78rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.plan-link:hover {
  color: var(--violet);
  border-color: var(--violet);
}

.plan-link.primary {
  color: var(--black);
  border-color: var(--pink);
  background: var(--pink);
}

.plan-link.primary:hover {
  color: var(--black);
  background: var(--pink-d);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 7rem;
}

.split-copy .btn {
  margin-top: 1.6rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  min-height: 185px;
  padding: 1.55rem;
}

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

.faq-item {
  padding: 1.55rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 clamp(1rem, 4vw, 5rem) 5rem;
  padding: 2rem;
  border: 1px solid rgba(232, 121, 160, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 121, 160, .1), rgba(167, 139, 218, .06) 44%, rgba(19, 19, 31, .9));
}

.cta-section h2 {
  margin-bottom: .7rem;
}

.donate-page {
  padding-top: 5.6rem;
}

.donate-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(1rem, 4vw, 5rem) 4rem;
}

.donate-section {
  padding-top: 5rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.donate-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(19, 19, 31, .78);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.donate-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.donate-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.wallet-tag {
  padding: .34rem .65rem;
  border: 1px solid rgba(111, 212, 190, .28);
  border-radius: 999px;
  color: var(--mint);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .14em;
}

.wallet-address {
  display: block;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted-2);
  background: rgba(8, 8, 16, .52);
  font-family: "DM Mono", monospace;
  font-size: .78rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.copy-btn {
  margin-top: auto;
  min-height: 42px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  font-family: "Syne", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.copy-btn:hover,
.copy-btn.copied {
  color: var(--black);
  border-color: var(--pink);
  background: var(--pink);
}

.donate-note {
  margin-top: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1rem, 4vw, 5rem);
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 16, .72);
}

.footer p {
  max-width: 360px;
  margin-top: .8rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pink);
}

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

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

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(8, 8, 16, .96);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: .85rem 0;
  }

  .nav .nav-cta {
    justify-content: center;
    text-align: center;
    margin-top: .35rem;
  }

  .hero {
    min-height: auto;
    padding-top: 6.4rem;
  }

  .plans-grid,
  .donate-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .cta-section,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: .9rem 1rem;
  }

  .logo {
    font-size: .9rem;
  }

  h1 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }

  .outline {
    color: var(--text);
    -webkit-text-stroke: 0;
  }

  h1 br {
    display: none;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-stats,
  .feature-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .donate-page {
    padding-top: 4.8rem;
  }

  .donate-hero {
    min-height: auto;
    padding: 4rem 1rem 3rem;
  }

  .cta-section {
    margin-bottom: 3.5rem;
    padding: 1.4rem;
  }
}
