:root {
  --cream-paper: #F5EBD8;
  --sage-mist: #B9C9B0;
  --peach-soft: #F2C9A8;
  --rust-deep: #A0522D;
  --rust-bright: #C8693B;
  --rust-shadow: #6B3820;
  --copper-glow: #D9885A;
  --ink-soft: #3D2E22;
  --ink-light: #6B5544;
  --bone: #FAF4E6;
  --moss-success: #7A9B6E;
  --panel-border: rgba(107, 56, 32, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bone);
  color: var(--ink-soft);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--bone);
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 244, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-border);
}

.topbar-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
  color: var(--rust-deep);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rust-bright);
  box-shadow: 0 0 0 4px rgba(200, 105, 59, 0.18);
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink-light);
  font-weight: 800;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.nav a:hover {
  background: rgba(200, 105, 59, 0.12);
  color: var(--rust-deep);
}

.nav a.active {
  background: var(--rust-bright);
  color: #fff;
}

.page {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.eyebrow {
  color: var(--copper-glow);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--ink-soft);
  margin: 8px 0 6px;
  line-height: 1.15;
}

.updated {
  color: var(--ink-light);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 28px;
}

.card {
  background: var(--cream-paper);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 28px 30px;
}

.card h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--rust-deep);
  margin: 28px 0 10px;
}

.card h2:first-child {
  margin-top: 0;
}

.card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.card li {
  margin-bottom: 7px;
  font-weight: 600;
}

.card strong {
  font-weight: 900;
  color: var(--rust-shadow);
}

.card a {
  color: var(--rust-bright);
  font-weight: 800;
}

.lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-soft);
}

hr {
  border: none;
  border-top: 1px solid var(--panel-border);
  margin: 24px 0;
}

.disclaimer {
  margin-top: 22px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-light);
  font-weight: 600;
}

/* Support page */
.support-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 22px 0 6px;
}

.action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--bone);
  border: 1px solid var(--panel-border);
  text-decoration: none;
  color: var(--ink-soft);
  transition: transform 0.12s, box-shadow 0.12s;
}

.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 56, 32, 0.12);
}

.action .icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: rgba(200, 105, 59, 0.16);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.action .label {
  font-weight: 900;
  font-size: 16px;
  color: var(--rust-deep);
}

.action .sub {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-light);
}

.card a.btn,
.btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--rust-bright);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(200, 105, 59, 0.35);
}

.footer {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--panel-border);
  color: var(--ink-light);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.footer a:hover {
  color: var(--rust-deep);
}

.footer .spacer {
  margin-left: auto;
}
