:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #070807;
  color: #f4f6f4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  line-height: 1.7;
  background: radial-gradient(circle at 50% -20%, #183627 0, #070807 40rem);
}

a { color: #7ee2a8; }

header {
  position: sticky;
  top: 0;
  background: rgba(7, 8, 7, 0.94);
  border-bottom: 1px solid #253129;
}

nav,
main,
footer {
  width: min(920px, calc(100% - 32px));
  margin: auto;
}

nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: white;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.home {
  text-decoration: none;
  padding: 8px 13px;
  border: 1px solid #334239;
  border-radius: 10px;
}

main { padding: 72px 0 80px; }

.eyebrow {
  color: #7ee2a8;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 12px 0;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 760px;
  color: #b5bdb7;
  font-size: 1.08rem;
}

.date { color: #818a83; font-size: 0.85rem; }

section {
  margin-top: 22px;
  padding: clamp(22px, 5vw, 34px);
  background: rgba(18, 22, 19, 0.86);
  border: 1px solid #27342b;
  border-radius: 18px;
}

h2 {
  margin: 0 0 10px;
  line-height: 1.25;
  font-size: 1.35rem;
}

p,
li { color: #c2c9c4; }

strong { color: #eef2ef; }

footer {
  padding: 28px 0 45px;
  border-top: 1px solid #253129;
  color: #8d968f;
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

footer p { margin: 0; color: inherit; }
footer a { margin-left: 16px; }

@media (max-width: 560px) {
  main { padding-top: 48px; }
  footer a { margin: 0 14px 0 0; }
}
