:root {
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #22c55e;
  --accent-press: #16a34a;
  --accent-2: #38bdf8;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(34, 197, 94, 0.18), transparent 60%),
    var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo {
  width: auto;
  height: 64px;
  max-width: 60%;
  object-fit: contain;
}

.title {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: clamp(1rem, 4.2vw, 1.2rem);
  color: var(--muted);
  font-weight: 400;
  max-width: 440px;
}

.terms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.term {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.term-age {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.term-bonus {
  font-size: 1.15rem;
  font-weight: 500;
}

.multiplier {
  display: inline-block;
  font-weight: 800;
  font-size: 1.35em;
  color: var(--accent);
  padding: 0 4px;
  transform: translateY(1px);
}

.term:nth-child(2) .multiplier {
  color: var(--accent-2);
}

.cta {
  margin-top: 8px;
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.25rem;
  color: #06210f;
  background: var(--accent);
  padding: 18px 48px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 360px;
}

.cta:hover {
  background: var(--accent-press);
  transform: translateY(-2px);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.cta:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .page {
    gap: 28px;
  }
}
