:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --ink: #1c1b18;
  --muted: #6e6c63;
  --rule: #d9d7cd;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  width: min(72rem, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) 0 2.5rem;
}

a {
  color: inherit;
  text-decoration-color: var(--rule);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover { text-decoration-color: var(--ink); }

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(5rem, 11vh, 8rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.brand img { display: block; width: 36px; height: 36px; }

.lang {
  color: var(--muted);
  font-size: 0.88rem;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.15rem, 5.4vw, 4.9rem);
  font-weight: 680;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(30rem, 1.1fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.copy { max-width: 39rem; padding-top: 0.35rem; }
.copy p { margin: 0 0 1.55rem; }
.copy p:first-child { color: #34332f; font-size: 1.08rem; }

.cta { margin-top: 2.75rem !important; }

.cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 620;
  text-decoration: none;
}

.cta a:hover { background: #34332f; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(5rem, 12vh, 8rem);
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .page { width: min(44rem, calc(100% - 48px)); }
  .masthead { margin-bottom: 4.5rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  h1 { max-width: 12ch; }
  .copy { max-width: 42rem; padding-top: 0; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .page { width: calc(100% - 32px); padding-top: 1.5rem; }
  .masthead { margin-bottom: 3.8rem; }
  .brand img { width: 32px; height: 32px; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.45rem); }
  .content-grid { gap: 2.2rem; }
  .copy p { margin-bottom: 1.35rem; }
  .cta a { width: 100%; justify-content: center; }
  footer { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 4.5rem; }
}
