:root {
  --bg: #030405;
  --bg-soft: #07090b;
  --surface: rgba(255, 255, 255, .075);
  --surface-2: rgba(255, 255, 255, .105);
  --surface-3: rgba(255, 255, 255, .14);
  --text: #fff;
  --muted: #d7d8e4;
  --muted-2: #a4a7bb;
  --line: rgba(255, 255, 255, .22);
  --red: #d20a12;
  --red-2: #ff3038;
  --gold: #c99a35;
  --bronze: #8b5e2b;
  --steel: #8fa3b8;
  --cyan: #55d6ff;
  --violet: #394352;
  --pink: #b11d2b;
  --lime: #b8c7a0;
  --glass: rgba(255, 255, 255, .095);
  --glass-strong: rgba(255, 255, 255, .16);
  --shadow: 0 28px 90px rgba(0, 0, 0, .52), 0 0 70px rgba(229, 9, 20, .12);
  --glow-red: 0 0 30px rgba(210, 10, 18, .42), 0 0 80px rgba(210, 10, 18, .2);
  --glow-cyan: 0 0 34px rgba(85, 214, 255, .24);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --container: min(1160px, calc(100vw - 32px));
  --header-height: 82px;
  --font-heading: Impact, "Arial Black", "Franklin Gothic Heavy", system-ui, sans-serif;
  --font-body: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    conic-gradient(from 220deg at 22% 4%, rgba(210, 10, 18, .24), transparent 18%, rgba(85, 214, 255, .1), transparent 39%, rgba(201, 154, 53, .14), transparent 62%, rgba(143, 163, 184, .12), transparent 80%),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(180deg, #07070c 0%, #020205 48%, #09080d 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: .92;
  letter-spacing: .012em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.6rem, 9.3vw, 8.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

ul {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--red);
  color: var(--text);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--text);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  padding: 8px 12px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(242, 201, 76, .6);
}

.content-stack > * + * {
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  color: var(--muted);
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) 0, rgba(255,255,255,.34), transparent 32%);
  opacity: 0;
  transition: opacity .2s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.cursor-dot {
  position: fixed;
  z-index: 1000;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-radius: 99px;
  background: var(--gold);
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.btn--primary {
  background: linear-gradient(135deg, #85070d, var(--red) 45%, var(--bronze) 100%);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: var(--glow-red), 0 18px 42px rgba(0,0,0,.32);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, #a80810, var(--red-2) 48%, var(--gold));
  border-color: rgba(255, 255, 255, .48);
}

.btn--outline {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: rgba(22, 242, 255, .68);
  background: rgba(22, 242, 255, .12);
  box-shadow: var(--glow-cyan);
}

.btn--ghost {
  border-color: rgba(242, 201, 76, .48);
  color: var(--gold);
  background: rgba(242, 201, 76, .1);
  backdrop-filter: blur(18px);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: .72rem;
}

.btn--full {
  width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(242, 201, 76, .7);
  outline-offset: 4px;
}
