:root {
  --bg: #0c1021;
  --card: #10162b;
  --accent: #48e6b2;
  --accent-2: #9c7bff;
  --text: #f7f9ff;
  --muted: #b6bdd6;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(circle at 25% 20%, rgba(72, 230, 178, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(156, 123, 255, 0.12), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

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

.hero {
  padding: 32px 7vw 80px;
  background: linear-gradient(135deg, #0e142b 0%, #0d0f1b 45%, #131a33 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(72, 230, 178, 0.15), transparent 35%),
    radial-gradient(circle at 20% 10%, rgba(156, 123, 255, 0.2), transparent 30%);
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(72, 230, 178, 0.1);
  color: #c0ffe7;
  font-family: var(--mono);
  border: 1px solid rgba(72, 230, 178, 0.3);
}

.hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 12px;
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.lede {
  color: var(--muted);
  max-width: 600px;
}

.timer {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: var(--mono);
}

.timer-label {
  color: var(--muted);
  font-size: 12px;
}

.timer-value {
  font-size: 18px;
  font-weight: 700;
}

.timer-unit {
  color: var(--muted);
}

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

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #52f0c0, #5f9cff);
  color: #021227;
  border: none;
  box-shadow: 0 10px 30px rgba(72, 230, 178, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.hero-card {
  background: rgba(13, 18, 37, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 18px;
}

.stat {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-top: 6px;
}

.stat-note {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px 7vw;
  position: relative;
}

.section h2 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
}

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

.two-col {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
}

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

.reasons li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.progress {
  margin-top: 20px;
}

.progress-label {
  color: var(--muted);
  font-size: 13px;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  height: 10px;
  margin: 8px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #52f0c0, #5f9cff);
}

.progress-note {
  color: var(--muted);
  font-size: 12px;
}

.grid {
  text-align: left;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(72, 230, 178, 0.12);
  color: #c0ffe7;
  font-size: 12px;
  font-family: var(--mono);
}

.timeline {
  background: linear-gradient(145deg, rgba(82, 240, 192, 0.05), transparent 40%),
    linear-gradient(45deg, rgba(95, 156, 255, 0.05), transparent 50%),
    #0f1327;
}

.timeline-items {
  display: grid;
  gap: 18px;
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.tl-date {
  font-family: var(--mono);
  color: #c0ffe7;
  font-weight: 700;
  font-size: 18px;
}

.faq {
  background: #0c1021;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.faq-item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.easter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.egg {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(72, 230, 178, 0.05);
}

.footer {
  padding: 30px 7vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0d1b;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-text {
  max-width: 560px;
  color: var(--muted);
}

.footer-text .logo {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

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

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(12, 16, 33, 0.95);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 260px;
  font-size: 14px;
  z-index: 10;
}

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

@media (max-width: 960px) {
  .hero-body,
  .two-col {
    grid-template-columns: 1fr;
  }

  .top-nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-body {
    grid-template-rows: auto auto;
  }
}
