:root {
  --bg: #070b14;
  --text: #e8edf5;
  --muted: rgba(255, 255, 255, 0.55);
  --accent: #ff6b4a;
  --border: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: radial-gradient(900px 480px at 12% -10%, rgba(255, 107, 74, 0.12), transparent), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 80px; }
nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 36px; font-size: 0.9rem; }
nav .brand { color: #fff; font-weight: 700; margin-right: auto; text-decoration: none; }
nav .brand:hover { text-decoration: none; opacity: 0.9; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.02em; }
h2 { font-size: 1.15rem; margin: 28px 0 10px; color: rgba(255,255,255,0.9); }
p, li { color: var(--muted); }
ul { padding-left: 1.2rem; }
.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}
.cta:hover { opacity: 0.92; }
.card {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.muted { color: var(--muted); font-size: 0.95rem; }
footer { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.8rem; color: rgba(255,255,255,0.35); }
