:root {
  --bg: #f1f7ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #156fbe;
  --accent-hover: #0f5e9f;
  --border: rgba(15, 118, 110, 0.14);
  --shadow: 0 10px 30px rgba(21, 111, 190, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 217, 255, 0.55) 0%, transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.9) 0%, transparent 35%),
    var(--bg);
  min-height: 100vh;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(2, 132, 199, 0.16);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #114f87;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: #1d4ed8;
}

.hero {
  padding: 54px 0 26px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.2px;
}

.subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 64ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.button:hover {
  border-color: rgba(2, 132, 199, 0.34);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: rgba(21, 111, 190, 0.45);
}

.button.primary:hover {
  background: var(--accent-hover);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 56px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

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

.card a {
  color: #0f5e9f;
}

.site-footer {
  border-top: 1px solid rgba(2, 132, 199, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.footer-inner a {
  color: #0f5e9f;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}
