:root {
  color-scheme: light;
  --bg: #fbf8f1;
  --surface: #ffffff;
  --ink: #17231b;
  --muted: #5b6a60;
  --brand: #167443;
  --brand-dark: #0c4f2d;
  --accent: #f0bd4f;
  --line: #e8dfcf;
  --shadow: 0 24px 70px rgba(23, 35, 27, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 189, 79, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 58%, #f3ecdf 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.nav,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nav-links,
.language-switcher,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a,
.language-switcher a,
.site-footer a {
  color: var(--muted);
  font-weight: 700;
}

.language-switcher {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher a {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.language-switcher a[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}

.hero,
.section,
.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy,
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(22, 116, 67, 0.22);
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  text-decoration: none;
}

.launch-note,
.updated {
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

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

.card,
.panel,
.page section {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.card,
.panel {
  padding: 26px;
}

.card p,
.panel p,
.panel li,
.page p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 28px;
  padding-bottom: 88px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

.page {
  max-width: 860px;
  padding: 72px 0 88px;
}

.page h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 12px;
}

.page section {
  padding: 26px;
  margin-top: 20px;
}

.page section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .cards,
  .split {
    grid-template-columns: 1fr;
  }
}
