:root {
  color-scheme: dark;
  --bg: #0c111c;
  --panel: #121a2a;
  --panel-2: #172235;
  --text: #edf3ff;
  --muted: #a8b4ca;
  --line: #263650;
  --accent: #65d38b;
  --accent-2: #74a7ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(116, 167, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 80% 0%, rgba(101, 211, 139, 0.16), transparent 26rem),
    var(--bg);
  color: var(--text);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 40px;
}

.hero {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 26, 42, 0.94), rgba(23, 34, 53, 0.72));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07101c;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.card, .notice {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 26, 42, 0.78);
  padding: 24px;
}

.card h2, .notice h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

.card p, .notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.notice {
  margin-top: 18px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

footer nav {
  display: flex;
  gap: 16px;
}

footer a {
  color: var(--muted);
}

.legal {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(36px, 6vw, 60px);
}

.legal section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .page { padding-top: 28px; }
  .hero { padding: 30px; }
  .cards { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
