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

:root {
  --brand: #4ade80;
  --brand-dim: #166534;
  --bg-base: #122318;
  --bg-surface: #1a2820;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1.5rem 2.5rem;
  overflow: hidden;
}

.glow {
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.glow-primary {
  top: 8%;
  width: min(920px, 140vw);
  height: min(920px, 140vw);
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.38) 0%,
    rgba(74, 222, 128, 0.16) 28%,
    rgba(74, 222, 128, 0.05) 52%,
    transparent 72%
  );
  filter: blur(2px);
}

.glow-secondary {
  top: 22%;
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  background: radial-gradient(
    circle,
    rgba(134, 239, 172, 0.55) 0%,
    rgba(74, 222, 128, 0.2) 40%,
    transparent 68%
  );
  filter: blur(28px);
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(32rem, 100%);
  text-align: center;
}

.mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(134, 239, 172, 0.55);
  background: rgba(74, 222, 128, 0.12);
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 48px rgba(74, 222, 128, 0.35),
    0 0 96px rgba(74, 222, 128, 0.18),
    inset 0 0 24px rgba(134, 239, 172, 0.12);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(187, 247, 208, 0.92);
  text-shadow: 0 0 24px rgba(74, 222, 128, 0.45);
}

.footer {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer p {
  margin: 0.35rem 0;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.legal {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
