:root {
  color-scheme: light;
  --background: #fbfbfb;
  --foreground: #1e1e1e;
  --muted: #5f6368;
  --border: #dedede;
  --surface: #ffffff;
  --brand: #f5be18;
  --brand-soft: #fff7d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(251, 251, 251, 0.94);
}

.header-inner,
.content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #171717;
  font-weight: 900;
}

.pill {
  border-radius: 999px;
  background: var(--brand-soft);
  padding: 6px 12px;
  color: #423800;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.content {
  padding: 42px 0 64px;
}

.hero {
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.policy-section {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

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

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

  .content {
    padding-top: 30px;
  }
}
