:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef3fb;
  --ink: #172233;
  --muted: #526174;
  --primary: #0e5aa7;
  --primary-dark: #0a427a;
  --accent: #d62839;
  --border: #d7e0ec;
  --success: #0f766e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fbfd 0%, #eff4fb 100%);
  line-height: 1.6;
}
a { color: var(--primary); }
.topbar {
  background: #10233b;
  color: #eff6ff;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar strong { color: #fff; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
}
.nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--primary); }
.hero {
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(214,40,57,0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(14,90,167,0.14), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf3fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}
h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--primary-dark);
}
h2 {
  color: var(--primary-dark);
  margin: 0 0 14px;
}
h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
}
.lead {
  color: var(--muted);
  max-width: 64ch;
}
.btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}
.btn:hover { background: var(--primary-dark); }
.hero-card,
.panel,
.content,
.card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 37, 68, 0.05);
}
.hero-card,
.panel,
.content,
.card {
  padding: 18px;
}
.section { padding: 42px 0; }
.muted {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
}
.notice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.notice,
.mini-card,
.review-card {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 37, 68, 0.05);
}
.mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.small {
  font-size: 0.94rem;
  color: var(--muted);
}
.checklist {
  padding-left: 20px;
}
.checklist li + li { margin-top: 6px; }
.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--primary-dark);
  font-size: 0.83rem;
  font-weight: 700;
}
.operator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.subtle-link {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
}
.warning-box {
  border-left: 4px solid var(--accent);
  background: #fff6f7;
  padding: 14px 16px;
  border-radius: 10px;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
}
.cookie-banner__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(16, 35, 59, 0.96);
  color: #eef6ff;
  box-shadow: 0 12px 30px rgba(6, 18, 33, 0.28);
}
.cookie-banner__text p {
  margin: 6px 0 8px;
  color: #d8e7f8;
}
.cookie-banner__text a {
  color: #ffffff;
  font-weight: 700;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-banner__btn--primary {
  background: #ffffff;
  color: #10233b;
}
.cookie-banner__btn--secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}
.split {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
}
.page { padding: 44px 0; }
.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.list { padding-left: 20px; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}
th, td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 12px 10px;
  vertical-align: top;
}
th { color: var(--primary-dark); background: #f8fbff; }
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #e7f7f5;
  color: var(--success);
}
.faq-item { padding: 16px 18px; margin-bottom: 12px; }
.site-footer {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  background: #f8fbff;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.footer-links a {
  margin-left: 12px;
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover { color: var(--primary); }
@media (max-width: 920px) {
  .hero-grid, .cards, .split, .notice-grid, .mini-grid, .review-grid { grid-template-columns: 1fr; }
  .topbar-inner { display: block; }
  .nav { display: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links a { margin: 0 12px 0 0; }
  .cookie-banner__inner,
  .cookie-banner__actions { display: block; }
  .cookie-banner__btn { width: 100%; margin-top: 8px; }
}
