:root {
  color-scheme: light;
  --background: #f5f2ed;
  --surface: #fcfbfa;
  --surface-muted: #f0ebe4;
  --text: #121a2c;
  --muted: #78746f;
  --border: #d8d5d0;
  --primary: #d4714d;
  --primary-deep: #a85436;
  --teal: #1a8eaa;
  --shadow: 0 20px 60px rgba(18, 26, 44, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 113, 77, 0.16), transparent 34rem),
    linear-gradient(180deg, #fcfbfa 0%, var(--background) 38rem);
}

a {
  color: inherit;
}

.site-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 26px rgba(212, 113, 77, 0.28);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a,
.button,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a,
.button-secondary {
  border: 1px solid rgba(216, 213, 208, 0.9);
  background: rgba(252, 251, 250, 0.72);
}

.button {
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 14px 32px rgba(212, 113, 77, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 56px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.panel {
  border: 1px solid rgba(216, 213, 208, 0.78);
  border-radius: 8px;
  background: rgba(252, 251, 250, 0.84);
  box-shadow: var(--shadow);
}

.status-panel {
  padding: 26px;
}

.status-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.check-list strong {
  display: block;
  color: var(--text);
}

.check-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(42, 186, 173, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.page {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 72px;
}

.page-header {
  padding: 28px 0 8px;
}

.page-header h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.last-updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.content-card {
  padding: clamp(24px, 5vw, 44px);
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.content-card section + section {
  margin-top: 34px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content-card p {
  margin: 0;
}

.content-card p + p {
  margin-top: 14px;
}

.content-card ul,
.content-card ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.notice {
  border-left: 4px solid var(--primary);
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(212, 113, 77, 0.08);
  color: var(--text);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 28px 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

code {
  border-radius: 6px;
  background: var(--surface-muted);
  padding: 2px 6px;
  color: var(--text);
  font-size: 0.92em;
}

@media (max-width: 820px) {
  .site-shell {
    padding: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }
}
