:root {
  color-scheme: light;
  --ink: #172238;
  --muted: #5f6d82;
  --line: #dce5f0;
  --paper: #ffffff;
  --wash: #f5f8fc;
  --blue: #4169e1;
  --blue-dark: #2548b8;
  --yellow: #f5c84b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Hiragino Sans", "Yu Gothic", "Noto Sans", Arial, sans-serif;
  line-height: 1.75;
}

a { color: var(--blue-dark); }
a:hover { color: var(--blue); }

.site-header {
  background: linear-gradient(135deg, #eaf1ff 0%, #fffaf0 100%);
  border-bottom: 1px solid var(--line);
}

.header-inner, main, footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner { padding: 28px 0 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #765300;
  font-size: 1.05rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
}

nav a { font-size: .95rem; font-weight: 650; }

main { padding: 42px 0 64px; }

.hero, .card, section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(45, 71, 111, .06);
}

.hero { padding: clamp(28px, 6vw, 54px); }
.card, section { padding: 28px clamp(22px, 5vw, 40px); }

.hero + .card, .hero + section, section + section, .card + .card { margin-top: 18px; }

h1, h2, h3 { line-height: 1.25; letter-spacing: -.02em; }
h1 { margin: 0 0 16px; font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { margin: 0 0 14px; font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { margin: 24px 0 8px; font-size: 1.1rem; }

p, ul, ol { margin: 0 0 16px; }
ul, ol { padding-left: 1.35rem; }
li + li { margin-top: 7px; }

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.muted { color: var(--muted); }
.updated { color: var(--muted); font-size: .92rem; }

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

.button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button:hover { background: var(--blue-dark); color: #fff; }
.button.secondary { background: #edf2fa; color: var(--ink); }

.language-label {
  display: inline-block;
  margin: 18px 0 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
}

.contact {
  display: inline-block;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcff;
  font-weight: 750;
}

footer {
  padding: 0 0 36px;
  color: var(--muted);
  font-size: .9rem;
}

footer nav { margin-top: 5px; }

@media (max-width: 560px) {
  .header-inner, main, footer { width: min(100% - 22px, 920px); }
  main { padding-top: 22px; }
  .hero, .card, section { border-radius: 16px; }
  .hero { padding: 28px 22px; }
}
