@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #090d14;
  --bg-soft: #0e1420;
  --panel: #111927;
  --panel-2: #151f30;
  --border: #263246;
  --text: #f6f8fc;
  --muted: #9aa7bb;
  --accent: #69e6a6;
  --accent-strong: #36cb82;
  --accent-soft: rgba(105, 230, 166, 0.11);
  --danger: #ff7070;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(105, 230, 166, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #07110c;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button):hover {
  color: var(--text);
}

.button {
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #07110c;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,.035);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: #45536a;
  background: rgba(255,255,255,.055);
}

.button.small {
  padding: 9px 13px;
  font-size: 13px;
}

.full {
  width: 100%;
}

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0 100px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 76px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 25px;
  max-width: 900px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 670px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.microcopy {
  color: #7f8ca0;
  font-size: 13px;
  margin-top: 18px;
}

.status-card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.status-header,
.status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-header {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent);
}

.status-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.status-line:last-of-type {
  border-bottom: none;
}

.status-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 16px 0 0;
}

.available {
  color: var(--accent);
}

.sold-out {
  color: var(--danger);
}

.section {
  padding: 92px max(20px, calc((100vw - 1160px) / 2));
}

.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.cta h2,
.modal h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 13px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

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

.plan-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 505px;
}

.plan-card.featured {
  border-color: rgba(105,230,166,.6);
  box-shadow: 0 0 0 1px rgba(105,230,166,.09), var(--shadow);
}

.featured-label {
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--accent);
  color: #07110c;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  padding: 6px 11px;
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 24px;
}

.slot {
  color: var(--muted);
}

.plan-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  margin: 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 7px 0 15px;
}

.price span {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.price small {
  color: var(--muted);
}

.plan-summary {
  color: var(--muted);
  font-size: 14px;
  min-height: 66px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 28px;
  flex: 1;
}

.plan-card li {
  padding: 10px 0 10px 25px;
  position: relative;
  color: #d6deeb;
  border-bottom: 1px solid rgba(255,255,255,.045);
  font-size: 14px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255,255,255,.018);
}

.feature-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 15px;
}

.feature-grid h3,
.step h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.feature-grid p,
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

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

.step {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.step > span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.faq-list {
  max-width: 900px;
}

details {
  border-top: 1px solid var(--border);
  padding: 17px 0;
}

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

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  max-width: 760px;
  margin: 12px 0 3px;
  font-size: 14px;
}

.terms-box {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  background: rgba(255,255,255,.02);
}

.terms-box p {
  margin: 0;
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 14px;
}

.terms-box p:last-child {
  border-bottom: none;
}

.terms-box strong {
  color: var(--text);
}

.cta {
  width: min(1160px, calc(100% - 40px));
  margin: 70px auto;
  border: 1px solid rgba(105,230,166,.28);
  background: linear-gradient(120deg, var(--accent-soft), rgba(255,255,255,.02));
  border-radius: 20px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  margin: 0;
  color: var(--muted);
}

footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 50px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.link-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

footer a:hover,
.link-button:hover {
  color: var(--text);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  display: none;
  place-items: center;
  padding: 20px;
  z-index: 100;
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(520px, 100%);
  background: #0f1724;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow);
}

.modal h2 {
  font-size: 32px;
}

.modal > p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 21px;
}

.discord-box {
  margin: 22px 0 15px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discord-box span {
  color: var(--muted);
  font-size: 12px;
}

.discord-box strong {
  font-size: 18px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-note {
  font-size: 12px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .nav-links > a:not(.button),
  .nav-links .button-secondary {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
    gap: 42px;
  }

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

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

  .plan-card {
    min-height: 0;
  }
}

@media (max-width: 580px) {
  .nav {
    width: min(100% - 28px, 1160px);
  }

  .nav-links {
    gap: 7px;
  }

  .nav-links .button {
    padding: 9px 10px;
  }

  .hero,
  .cta,
  footer {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 60px 0 70px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .section {
    padding: 68px 14px;
  }

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

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

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