:root {
  --bg: #060506;
  --panel: rgba(15, 14, 15, .9);
  --line: rgba(255,255,255,.13);
  --red: #f52222;
  --red-2: #8e0f14;
  --text: #f5f2ee;
  --muted: #b4b0b0;
  --radius: 8px;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  background:
    radial-gradient(circle at 70% 18%, rgba(245,34,34,.22), transparent 28rem),
    linear-gradient(90deg, transparent 0 48%, rgba(245,34,34,.08) 48% 52%, transparent 52%),
    #060506;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,p { margin-top: 0; }
.shell { overflow: hidden; }
.header { position: fixed; inset: 0 0 auto; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(6,5,6,.82); backdrop-filter: blur(18px); }
.nav,.hero-inner,.container,.footer-inner { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-transform: uppercase; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: var(--radius); color: var(--red); }
.nav-links { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.hero { min-height: 100svh; display: grid; align-items: center; padding: 112px 0 42px; }
.hero-inner { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(320px,.98fr); gap: 34px; align-items: center; }
h1 { margin-bottom: 24px; font-size: clamp(58px, 8vw, 118px); line-height: .9; letter-spacing: 0; }
h1.long { font-size: clamp(48px, 6.6vw, 92px); overflow-wrap: anywhere; }
.hero-text { margin-bottom: 30px; color: #e0dddd; font-size: clamp(20px, 2vw, 28px); }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); color: white; font-weight: 900; background: linear-gradient(135deg, var(--red), var(--red-2)); box-shadow: 0 18px 50px rgba(245,34,34,.28); }
.visual { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, rgba(245,34,34,.12), rgba(255,255,255,.03)); box-shadow: 0 28px 80px rgba(0,0,0,.45); overflow: hidden; }
.section { padding: 70px 0; border-top: 1px solid var(--line); }
.section.alt { background: rgba(255,255,255,.025); }
.kicker { display: inline-block; margin-bottom: 8px; color: var(--red); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 60px); line-height: 1; }
p { color: var(--muted); }
.grid,.steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.card,.step,.band { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.card,.step { min-height: 160px; padding: 22px; }
.card::before,.step::before { content: ""; display: block; width: 44px; height: 3px; margin-bottom: 18px; background: var(--red); }
.card a { color: white; font-weight: 900; }
.steps { counter-reset: step; }
.step h3::before { counter-increment: step; content: "0" counter(step) " "; color: var(--red); }
.band { padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer { padding: 28px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner,.footer nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 840px) {
  .nav-links { display: none; }
  .hero { padding-top: 90px; }
  .hero-inner,.grid,.steps { grid-template-columns: 1fr; }
  h1 { font-size: clamp(48px, 14vw, 76px); }
  h1.long { font-size: clamp(38px, 11vw, 54px); line-height: .94; }
  .band { align-items: flex-start; flex-direction: column; }
}
