:root {
  color-scheme: light dark;
  --bg: #fbf1c7;
  --surface: rgba(242, 229, 188, 0.82);
  --surface-strong: #ebdbb2;
  --text: #3c3836;
  --muted: #665c54;
  --border: rgba(60, 56, 54, 0.18);
  --accent: #689d6a;
  --accent-strong: #427b58;
  --shadow: 0 24px 70px rgba(60, 56, 54, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1d2021;
    --surface: rgba(40, 40, 40, 0.86);
    --surface-strong: #3c3836;
    --text: #ebdbb2;
    --muted: #bdae93;
    --border: rgba(235, 219, 178, 0.14);
    --accent: #8ec07c;
    --accent-strong: #b8bb26;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(104, 157, 106, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(214, 93, 14, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.site-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

main {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

p {
  margin: 0.85rem 0 0;
}

ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

a {
  color: var(--accent-strong);
}

.meta {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
