:root {
  --bg: #050607;
  --panel: rgba(12, 15, 19, .9);
  --panel-2: rgba(18, 22, 28, .96);
  --line: rgba(255,255,255,.12);
  --red: #ff2525;
  --red-2: #8f0d12;
  --text: #f4f4f0;
  --muted: #aeb3bd;
  --cyan: #2be5ff;
  --radius: 6px;
  --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:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(255,37,37,.18), transparent 28rem),
    #050607;
  background-size: 46px 46px, 46px 46px, auto, auto;
}
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(5,6,7,.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);
  background: rgba(255,37,37,.1);
}
.nav-links {
  display: flex;
  align-items: center;
  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.04fr) minmax(320px,.96fr);
  align-items: center;
  gap: 32px;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(68px, 9vw, 126px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}
h1.long {
  font-size: clamp(54px, 7vw, 96px);
  overflow-wrap: anywhere;
}
.hero-text {
  margin-bottom: 30px;
  color: #dfe2e8;
  font-size: clamp(20px, 2vw, 30px);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 18px 48px rgba(255,37,37,.28);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.button.secondary { background: rgba(255,255,255,.05); box-shadow: none; }
.visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,37,37,.08), rgba(43,229,255,.04));
  box-shadow: 0 28px 86px rgba(0,0,0,.46);
  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: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  text-transform: uppercase;
}
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: 158px; padding: 22px; }
.card { position: relative; }
.card::before,.step::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--red);
}
.card a { font-weight: 900; color: white; }
.steps { counter-reset: steps; }
.step h3::before { counter-increment: steps; content: "0" counter(steps) " "; color: var(--red); }
.band {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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(56px, 18vw, 92px); }
  h1.long { font-size: clamp(40px, 13vw, 58px); line-height: .94; }
  .band { align-items: flex-start; flex-direction: column; }
}
