:root {
  color-scheme: light;
  --sky: #129de2;
  --sky-deep: #0877bd;
  --ink: #12304a;
  --muted: #5a7185;
  --card: rgba(255, 255, 255, 0.95);
  --line: rgba(18, 48, 74, 0.12);
  --accent: #ffb624;
  --success: #12845f;
  --shadow: 0 24px 70px rgba(4, 72, 120, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 255, 255, 0.85), transparent 20rem),
    radial-gradient(circle at 88% 15%, rgba(255, 238, 155, 0.8), transparent 18rem),
    linear-gradient(155deg, #5bd7ff 0%, var(--sky) 47%, var(--sky-deep) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  filter: blur(2px);
}

body::before {
  top: 18vh;
  left: -8rem;
  width: 26rem;
  height: 8rem;
}

body::after {
  right: -10rem;
  bottom: 12vh;
  width: 34rem;
  height: 10rem;
}

a {
  color: #056fae;
  font-weight: 800;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe681, var(--accent));
  color: #8b4c00;
  box-shadow: 0 10px 24px rgba(0, 80, 140, 0.24);
  font-size: 24px;
  font-weight: 950;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(0, 87, 146, 0.22);
  font-size: 13px;
  text-decoration: none;
}

.hero,
.content-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(28px, 6vw, 54px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: #076fa2;
  background: #e2f7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 16px auto 10px;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 650;
}

.content-card {
  margin-top: 18px;
  padding: clamp(22px, 5vw, 42px);
}

.content-card h2 {
  margin-bottom: 8px;
  font-size: clamp(23px, 4vw, 30px);
  letter-spacing: -0.025em;
}

.content-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.content-card p,
.content-card li {
  color: #425d73;
}

.content-card ul,
.content-card ol {
  margin: 8px 0 0;
  padding-left: 22px;
}

.content-card li + li {
  margin-top: 6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #f7fcff;
}

.contact-card {
  text-align: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  box-shadow: 0 10px 24px rgba(6, 118, 184, 0.24);
  text-decoration: none;
}

.notice {
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff9e9;
  color: #694817;
}

.status-ok {
  color: var(--success);
  font-weight: 900;
}

.language-divider {
  height: 1px;
  margin: 36px 0;
  border: 0;
  background: var(--line);
}

.meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer {
  padding: 26px 16px 0;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

