:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #182230;
  --muted: #5f6b7a;
  --line: #e3e8ef;
  --brand: #173b73;
  --brand-2: #285d9f;
  --soft: #eef4fb;
  --max: 1080px;
}
* { 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: var(--bg);
  line-height: 1.65;
}
a { color: var(--brand-2); }
a:hover { text-decoration-thickness: 2px; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  text-decoration: none;
}
nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: 14px; }
.hero {
  padding: 84px 0 62px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
}
h1 {
  margin: 18px 0 18px;
  max-width: 820px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}
.actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 12px 17px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: white;
}
.button.secondary {
  background: white;
  color: var(--brand);
  border-color: var(--line);
}
section { padding: 58px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 14px;
}
.section-intro { max-width: 760px; color: var(--muted); margin: 0 0 30px; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.calendar {
  background: var(--soft);
  border-top: 1px solid #dce7f5;
  border-bottom: 1px solid #dce7f5;
}
.notice {
  border-left: 4px solid var(--brand);
  background: white;
  padding: 18px 20px;
  border-radius: 0 12px 12px 0;
}
.legal {
  padding: 54px 0 80px;
}
.legal article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 48px);
}
.legal h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-top: 0;
}
.legal h2 {
  margin-top: 34px;
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -.02em;
}
.legal p, .legal li { color: #39485a; }
.legal ul { padding-left: 22px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
footer {
  border-top: 1px solid var(--line);
  background: white;
  padding: 28px 0 36px;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
@media (max-width: 720px) {
  .nav { padding: 12px 0; align-items: flex-start; flex-direction: column; }
  nav { gap: 14px; }
  .hero { padding-top: 56px; }
  .grid { grid-template-columns: 1fr; }
}
