:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist", "Segoe UI", Arial, sans-serif;
  color: #111111;
  background: #ffffff;
}

h1,
h2,
h3 {
  font-family: "Geist Mono", "Courier New", monospace;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

a {
  color: inherit;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.logo {
  height: 30px;
  width: auto;
}

.back-link {
  font-size: 13px;
  color: #52525b;
  text-decoration: none;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  padding: 6px 12px;
  transition: 120ms ease;
}

.back-link:hover {
  color: #111111;
  border-color: #a1a1aa;
}

.card {
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  padding: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #71717a;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.meta {
  margin: 0;
  color: #52525b;
  font-size: 14px;
}

.section {
  margin-top: 24px;
}

.section h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.section p,
.section li {
  color: #27272a;
  font-size: 15px;
  line-height: 1.58;
}

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

.footer-note {
  margin-top: 28px;
  border-top: 1px solid #e4e4e7;
  padding-top: 14px;
  color: #71717a;
  font-size: 12px;
}

@media (max-width: 640px) {
  .card {
    padding: 18px;
  }

  .logo {
    height: 26px;
  }
}
