:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --border: #d9e0ea;
  --border-strong: #c5cfdd;
  --text: #233044;
  --muted: #5f6e85;
  --heading: #101827;
  --accent: #0f5bd8;
  --accent-soft: #eef4ff;
  --max-width: 980px;
  --radius: 18px;
  --shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(15, 91, 216, 0.06), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f4f6f9 100%);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  padding: 1.2rem 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  color: var(--heading);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--heading);
  text-decoration: none;
}

.hero,
.page-hero {
  padding: 3.5rem 0 1.8rem;
}

.hero-card,
.page-hero-card,
.section-card,
.notice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.page-hero-card,
.section-card,
.notice-card {
  padding: 1.45rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: var(--heading);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 0.98rem;
}

p,
li {
  color: var(--muted);
  font-size: 0.95rem;
}

.lead {
  max-width: 44rem;
  font-size: 1rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.85fr);
  gap: 1.1rem;
  align-items: stretch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: var(--heading);
  color: #ffffff;
}

.button-primary:hover {
  background: #1f2937;
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--heading);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
  padding: 0.8rem 0 1.15rem;
}

.kicker {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.list li + li {
  margin-top: 0.42rem;
}

.meta-list {
  display: grid;
  gap: 0.85rem;
}

.meta-row {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.meta-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.meta-label {
  display: block;
  margin-bottom: 0.24rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.small {
  font-size: 0.87rem;
}

.policy-block + .policy-block {
  margin-top: 1rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-card {
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.footer-card p {
  font-size: 0.89rem;
}

@media (max-width: 860px) {
  .hero-layout,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }
}
