:root {
  --bg: #05060b;
  --card: #0f111a;
  --accent: #7cf8d2;
  --accent-2: #80a7ff;
  --text: #e8ecf2;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 20%, rgba(124, 248, 210, 0.08), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(128, 167, 255, 0.12), transparent 30%),
              var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 22px 64px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 17, 26, 0.7);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand--logo img {
  height: 110px;
  max-height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 248, 210, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin: 48px 0 32px;
}

.hero__text h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 20px 0 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041017;
  box-shadow: 0 10px 30px rgba(124, 248, 210, 0.2);
}

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

.inline-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

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

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.hero__card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 17, 26, 0.85), rgba(15, 17, 26, 0.65));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card__header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.card__body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.label {
  color: var(--muted);
  font-size: 0.9rem;
}

.value {
  font-weight: 600;
}

.badge {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(128, 167, 255, 0.2);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.85rem;
}

.panel {
  margin: 40px 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 17, 26, 0.7);
  box-shadow: var(--shadow);
}

.panel__header h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
}

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

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

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

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.notice {
  color: var(--accent-2);
  font-size: 0.9rem;
  margin-top: 10px;
}

.steps {
  padding-left: 20px;
  margin: 18px 0;
  color: var(--text);
  line-height: 1.7;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
