:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #121826;
  --muted: #4a5568;
  --primary: #2f6fed;
  --primary-dark: #1b4fd6;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(18, 24, 38, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  background: radial-gradient(1200px 400px at 20% -10%, #dbe7ff 0%, transparent 60%),
              linear-gradient(135deg, #ffffff 0%, #eef3ff 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 48px;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7efff;
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 16px 0 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
}

.content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}

.section {
  margin-bottom: 36px;
}

.section h2 {
  margin: 0 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  border-color: #c7d7ff;
  box-shadow: 0 16px 40px rgba(18, 24, 38, 0.12);
  outline: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef3ff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card-body h3 {
  margin: 0 0 6px;
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 20px 24px 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  display: block;
  margin-top: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  line-height: 1.5;
}
