:root {
  --bg: #0d0f14;
  --panel: #161b22;
  --panel-alt: #11161d;
  --text: #edf2f7;
  --muted: #a7b0bd;
  --accent: #ff6b6b;
  --line: #28303b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; background: rgba(13,15,20,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { font-size: 28px; font-weight: 700; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--muted); }
.hero { padding: 88px 0 64px; background: radial-gradient(circle at top right, rgba(255,107,107,.18), transparent 35%); }
.hero h1, .section h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.05; margin: 0 0 16px; }
.hero-copy { max-width: 720px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; color: var(--accent); font-size: 12px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.button { display: inline-block; padding: 13px 20px; border-radius: 999px; background: var(--accent); color: white; font-weight: 700; }
.button-secondary { background: transparent; border: 1px solid var(--line); }
.section { padding: 56px 0; }
.section-alt { background: var(--panel-alt); }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 22px; min-height: 150px; }
.card h3 { margin: 0 0 12px; font-size: 22px; }
.card p { margin: 0 0 10px; color: var(--muted); line-height: 1.6; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.pill { border: 1px solid var(--line); color: var(--muted); padding: 8px 12px; border-radius: 999px; }
.pagination-wrap { margin-top: 24px; }
