@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --ink: #0c111b;
  --muted: #5b6678;
  --card: #ffffffcc;
  --line: #e3e8f0;
  --accent: #1463ff;
  --accent-2: #00c2ff;
  --shadow: 0 24px 60px -40px rgba(12, 17, 27, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(20, 99, 255, 0.25), transparent 60%),
    radial-gradient(1000px 520px at 90% 0%, rgba(0, 194, 255, 0.18), transparent 60%),
    linear-gradient(120deg, #f8fbff 0%, #eef2f9 45%, #f6f7fb 100%);
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3.5rem 1.75rem 4rem;
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}
