:root {
  --black: #0a0a0b;
  --black2: #141416;
  --red: #ff003d;
  --red2: #d80032;
  --red-dark: #46000e;
  --gold: #ffcc00;
  --orange: #ff7b00;
  --white: #ffffff;
  --paper: #fbfbfc;
  --ink: #151519;
  --muted: #6d6d78;
  --line: #ececf1;
  --soft: #fff4f6;
  --shadow: 0 30px 90px rgba(10, 10, 11, .22);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    linear-gradient(135deg, #0a0a0b 0%, #0a0a0b 330px, transparent 330px),
    linear-gradient(180deg, #fff 0%, #f6f6f8 100%);
}

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

img {
  max-width: 100%;
  height: auto
}

.container {
  width: min(1210px, 92%);
  margin: auto
}

.topbar {
  background: #0a0a0b;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.topbar strong {
  color: var(--gold)
}

.topbar .mini-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.topbar a {
  color: #ffd9df;
  font-weight: 700
}

.header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 18px;
  align-items: center;
}

.logo img {
  width: 205px;
  display: block
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu a {
  color: #2b2b31;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 10px;
}

.menu a:hover,
.menu a.active {
  background: #101010;
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 10px
}

.menu-btn {
  display: none;
  background: #101010;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 22px
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 0, 61, .22);
}

.btn-primary:hover {
  transform: translateY(-2px)
}

.btn-outline {
  border-color: #151519;
  color: #151519;
  background: #fff;
}

.btn-dark {
  background: #101010;
  color: #fff
}

.hero {
  position: relative;
  background:
    linear-gradient(105deg, #0a0a0b 0%, #160004 48%, #ff003d 48%, #ff003d 100%);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .24;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 62px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #120205;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 950;
  transform: skewX(-8deg);
}

.hero-kicker span {
  transform: skewX(8deg);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.hero-kicker img {
  width: 26px;
  height: 26px
}

h1 {
  margin: 22px 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}

.hero p {
  max-width: 680px;
  color: #ffe1e6;
  font-size: 18px;
}

.hero-card {
  background: #fff;
  color: #151519;
  border-radius: 26px;
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/16;
  object-fit: cover;
  border-radius: 18px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.stat {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 14px;
  border-radius: 14px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1
}

.stat span {
  font-size: 12px;
  color: #ffd8dd
}

.section-tabs {
  background: #fff;
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.tabs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.tab-card {
  min-height: 120px;
  background: #fff;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.tab-card:last-child {
  border-right: 0
}

.tab-card small {
  font-weight: 950;
  color: var(--red);
  text-transform: uppercase
}

.tab-card strong {
  display: block;
  font-size: 20px;
  margin-top: 4px;
  color: #111
}

.tab-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px
}

.content-wrap {
  padding: 54px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.article {
  display: grid;
  gap: 24px;
}

.block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(10, 10, 11, .08);
  scroll-margin-top: 110px;
}

.block:nth-child(even) {
  border-left: 7px solid var(--red);
}

.label {
  display: inline-flex;
  background: #101010;
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  margin: 0 0 12px;
  color: #101010;
  line-height: 1.12;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -1px;
}

h3 {
  font-size: 22px;
  color: var(--red-dark);
  margin: 20px 0 8px
}

.article a:not(.btn) {
  color: var(--red2);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px
}

.sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.side-card {
  background: #101010;
  color: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.side-card h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px
}

.side-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #ffe1e6;
  font-weight: 850;
  font-size: 14px;
}

.cta-panel {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border-radius: 24px;
  padding: 22px;
}

.cta-panel h3 {
  margin-top: 0;
  color: #fff
}

.notice,
.warning {
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
}

.notice {
  background: #fff9e6;
  border: 1px solid #ffe1a3;
  border-left: 6px solid var(--gold)
}

.warning {
  background: #fff1f3;
  border: 1px solid #ffcbd3;
  border-left: 6px solid var(--red)
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-tile {
  background: #f8f8fa;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.info-tile b {
  display: block;
  color: #101010;
  font-size: 18px;
  margin-bottom: 4px
}

.steps,
.checks {
  list-style: none;
  padding-left: 0
}

.steps {
  counter-reset: step
}

.steps li,
.checks li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 10px 0;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.steps li::before {
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #101010;
  border-radius: 10px;
  font-weight: 950;
}

.checks li::before {
  content: "●";
  color: var(--red);
  font-weight: 950;
  margin-right: 8px
}

.demo- {
  background: #0b0b0c;
  color: #fff;
  border-radius: 26px;
  padding: 24px;
  border: 2px solid #2b2b31;
}

.-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.-top b {
  color: var(--gold)
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.reel {
  min-height: 126px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  border-radius: 16px;
  font-size: 58px;
  border-bottom: 7px solid var(--gold);
}

.demo-result {
  font-weight: 900;
  color: #ffd8dd
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
}

summary {
  cursor: pointer;
  font-weight: 950;
  color: #101010
}

details p {
  color: var(--muted);
  margin-bottom: 0
}

.page-hero {
  background: linear-gradient(115deg, #0a0a0b 0%, #1e0006 62%, #ff003d 62%, #ff003d 100%);
  color: #fff;
  padding: 70px 0;
}

.breadcrumb {
  color: #ffd8dd;
  font-size: 14px;
  margin-bottom: 12px
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 900
}

.related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.related a {
  padding: 16px;
  border-radius: 16px;
  background: #101010;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 950;
}

.footer {
  background: #09090a;
  color: #ffd8dd;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer img {
  width: 190px
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px
}

.footer-links a {
  color: var(--gold);
  font-weight: 900
}

.footer-note {
  font-size: 14px;
  color: #ffc9d1
}

@media(max-width:980px) {
  .nav {
    grid-template-columns: 1fr auto
  }

  .menu,
  .nav-actions {
    display: none
  }

  .menu.show {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 14px;
    border-bottom: 1px solid var(--line)
  }

  .menu.show a {
    color: #111;
    width: 100%;
    text-align: center
  }

  .menu-btn {
    display: block
  }

  .hero-inner,
  .content-wrap,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .tabs-grid,
  .grid-3,
  .related {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }

  h1 {
    font-size: 42px
  }
}