:root {
  color-scheme: dark;
  --bg: #061226;
  --panel: #0d203b;
  --panel-2: #102947;
  --text: #eef6ff;
  --muted: #aac0dc;
  --line: rgba(137, 170, 213, 0.24);
  --accent: #34eac5;
  --accent-2: #47a8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(52, 234, 197, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(71, 168, 255, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(13, 32, 59, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

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

h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 800;
}

.intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d7e5f7;
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  color: #061226;
}

.button.secondary {
  background: var(--panel-2);
  color: var(--text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card,
.contact-card,
.legal section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 32, 59, 0.78);
  padding: 20px;
}

.card p,
.contact-card p,
.legal p,
.legal li {
  color: #d7e5f7;
  line-height: 1.65;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  margin-top: 18px;
  font-size: clamp(38px, 7vw, 62px);
}

.legal section {
  margin-top: 18px;
}

.legal ul {
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 960px);
    padding: 24px 0;
  }

  .hero {
    padding: 28px;
    border-radius: 22px;
  }

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

  .actions {
    flex-direction: column;
  }
}
