:root {
  --background: #fbfbf7;
  --foreground: #18181b;
  --muted: #5f625f;
  --line: #d8ddd5;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --warm: #f2b84b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 38%),
    linear-gradient(315deg, rgba(242, 184, 75, 0.14), transparent 42%),
    var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-color: rgba(15, 118, 110, 0.28);
  text-underline-offset: 0.2em;
}

.site-shell,
.content-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: 28px;
  padding: 56px 0;
}

.hero {
  max-width: 760px;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.actions a {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 13px 18px;
  box-shadow: 0 12px 30px rgba(24, 24, 27, 0.07);
  text-decoration: none;
}

.actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.info-card {
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.info-card span {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--warm);
}

.info-card p {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

.content-shell {
  min-height: 100svh;
  padding: 34px 0 72px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 32px;
}

.top-nav a {
  text-decoration: none;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: 0 18px 50px rgba(24, 24, 27, 0.07);
}

.content-panel h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.content-panel h2 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.content-panel section {
  margin-top: 28px;
}

.updated {
  color: var(--muted);
  font-weight: 700;
}

ul {
  padding-left: 1.2rem;
}

@media (max-width: 760px) {
  .site-shell {
    align-content: start;
    padding-top: 38px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    flex-direction: column;
  }
}
