:root {
  --bg: #0a0a0c;
  --bg-soft: #0e0e12;
  --panel: #14141a;
  --panel-2: #1b1b22;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --ink: #f5f5f7;
  --ink-mid: #c3c6cd;
  --ink-dim: #8a8e98;
  --red: #ec1c24;
  --red-soft: #ff353d;
  --red-deep: #a30d12;
  --header-h: 76px;
  --r-card: 16px;
  --r-pill: 999px;
  --shadow-card: 0 30px 60px -25px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-red: 0 18px 42px -12px rgba(236, 28, 36, 0.45);
}
* { box-sizing: border-box; }
*::selection { background: var(--red); color: #fff; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 88% -10%, rgba(236, 28, 36, 0.16), transparent 60%),
    radial-gradient(900px 800px at -10% 30%, rgba(236, 28, 36, 0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0c0c10 50%, #08080a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
h1, h2, .display {
  font-family: "Unbounded", "Onest", sans-serif;
  font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase;
}
h1 { font-weight: 800; line-height: 0.94; letter-spacing: -0.03em; }
h2 { line-height: 1.02; }
.container { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding: 6px 14px 6px 10px;
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.03);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 12px rgba(236, 28, 36, 0.8);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; min-height: 48px; padding: 0 24px;
  border: 1px solid transparent; border-radius: 10px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  color: white;
  background: linear-gradient(180deg, var(--red-soft), var(--red));
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { box-shadow: 0 24px 50px -10px rgba(236, 28, 36, 0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-ghost {
  color: var(--ink); background: rgba(255,255,255,0.04);
  border-color: var(--line-2); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px; }
.section { padding: 100px 0; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(32px, 4vw, 52px); max-width: 760px; }
.section-head .sh-aside { max-width: 340px; color: var(--ink-mid); font-size: 15px; line-height: 1.6; }
