:root {
  color-scheme: light;
  --bg: #f7fbf8;
  --panel: #ffffff;
  --ink: #172422;
  --muted: #5c6f69;
  --line: #d8e7e1;
  --brand: #0f8f84;
  --brand-strong: #0b625b;
  --accent: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand-strong);
}

.contact-link {
  font-weight: 650;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 32px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgb(15 143 132 / 18%);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.links a,
.lang button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 6px 12px;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  text-decoration: none;
}

.lang button[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--brand) 42%, white);
  color: var(--brand-strong);
  background: #e9f7f4;
}

.hero,
.content {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.hero {
  padding: clamp(28px, 6vw, 56px);
  margin-bottom: 18px;
}

.content {
  padding: clamp(24px, 4vw, 40px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-strong);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: #fff7ed;
  color: #704214;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfefd;
}

.card strong {
  display: block;
  margin-bottom: 4px;
}

.footer {
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
