:root {
  --bg: #0b1021;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #c8cedc;
  --accent: #7de0ff;
  --accent-2: #7cffb6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(125, 224, 255, 0.12), transparent 35%),
              radial-gradient(circle at 80% 30%, rgba(124, 255, 182, 0.08), transparent 35%),
              var(--bg);
  overflow: hidden;
}

.bg-shape {
  position: fixed;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.22;
  filter: blur(60px);
}

.bg-1 {
  background: radial-gradient(circle at 15% 75%, #7de0ff, transparent 45%);
}

.bg-2 {
  background: radial-gradient(circle at 85% 20%, #7cffb6, transparent 45%);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px 72px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.1;
}

.lede {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.cta.primary {
  background: linear-gradient(135deg, #7de0ff, #7cffb6);
  color: #031123;
  border-color: transparent;
}

.cta.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.info-title {
  font-weight: 700;
}

.info-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(125, 224, 255, 0.12);
  color: #7de0ff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.pill.alt {
  background: rgba(124, 255, 182, 0.12);
  color: #7cffb6;
}

.hero-copy {
  max-width: 640px;
}

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

.choice-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.choice-title {
  font-size: 18px;
  font-weight: 700;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.choice-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}

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

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

@media (max-width: 640px) {
  .page {
    padding: 48px 20px 60px;
  }

  h1 {
    font-size: 28px;
  }

  .cta {
    width: 100%;
  }
}
