:root {
  color-scheme: light;
  --background: #f6f2ea;
  --surface: #fffaf2;
  --text: #23201d;
  --muted: #71685f;
  --accent: #a45b36;
  --border: #eadfce;
  --shadow: 0 22px 70px rgba(82, 56, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(164, 91, 54, 0.16), transparent 32rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 12px;
}

a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.updated {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 650;
}

.card,
.api {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card p,
.api p {
  color: var(--muted);
}

.api {
  background: var(--surface);
}

.api p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 24px, 920px);
    padding: 34px 0;
  }

  .card,
  .api {
    padding: 20px;
    border-radius: 20px;
  }
}
