:root {
  --ink: #f5f5f7;
  --muted: #aaaab2;
  --muted-strong: #c7c7cd;
  --bg: #050506;
  --bg-elevated: #0b0b0d;
  --panel: #101013;
  --panel-2: #151519;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --red: #e51d26;
  --red-bright: #ff3139;
  --red-deep: #8d070d;
  --red-soft: rgba(229, 29, 38, .14);
  --green: #69d19a;
  --gold: #f1c45c;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --shadow-red: 0 18px 48px rgba(229, 29, 38, .24);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 74px;
  --font-display: "Arial Black", "Helvetica Neue", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 92% 9%, rgba(154, 5, 12, .13), transparent 25rem),
    linear-gradient(180deg, #050506 0%, #08080a 45%, #050506 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

img { height: auto; }

a { color: inherit; }

button, input, textarea, select { font: inherit; }

button { color: inherit; }

::selection { background: rgba(229, 29, 38, .4); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(255, 49, 57, .9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #08080a;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.container.narrow { width: min(840px, calc(100% - 40px)); }

.section {
  position: relative;
  padding: clamp(72px, 9vw, 126px) 0;
}

.section.compact { padding-block: clamp(52px, 7vw, 86px); }

.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 30%),
    #08080a;
  border-block: 1px solid rgba(255,255,255,.055);
}

.section-red-glow::before {
  content: "";
  position: absolute;
  inset: 5% auto auto 50%;
  width: min(900px, 92vw);
  height: 500px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 10, 19, .18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #ff5b62;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-bright), transparent);
}

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

h1, h2, .display-title {
  font-family: var(--font-display);
  letter-spacing: -.035em;
  line-height: .98;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6.75rem); margin-bottom: 24px; }

h2 { font-size: clamp(2.15rem, 4.3vw, 4.2rem); margin-bottom: 22px; }

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.22;
  margin-bottom: 12px;
}

p { margin-bottom: 1.2rem; }

.lead {
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.kicker {
  color: var(--muted);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.text-muted { color: var(--muted); }
.text-red { color: var(--red-bright); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.max-copy { max-width: 700px; }
.center-copy { margin-inline: auto; }

.announcement {
  position: relative;
  z-index: 60;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  background: linear-gradient(90deg, #7f060b, #d4141d 44%, #8a070c);
  color: #fff;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .095em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span { opacity: .92; }

.site-header {
  position: sticky;
  z-index: 55;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: rgba(5, 5, 6, .82);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 205px;
  text-decoration: none;
}

.brand img { width: 100%; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #d7d7dc;
  font-size: .82rem;
  font-weight: 780;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--red-bright);
  transition: right .28s var(--ease);
}

.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .24s ease, opacity .24s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transition: transform .7s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(120%) skewX(-20deg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, #ff333c, #c60d16);
  color: #fff;
  box-shadow: 0 14px 32px rgba(207, 13, 22, .28), inset 0 1px rgba(255,255,255,.2);
}

.btn-primary:hover { box-shadow: 0 18px 42px rgba(229, 29, 38, .37); }

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.045);
  color: #fff;
}

.btn-secondary:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }

.btn-compact { min-height: 42px; padding: 10px 17px; font-size: .74rem; }

.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.trust-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #9c9ca5;
  font-size: .82rem;
  line-height: 1.45;
}

.trust-note svg { flex: 0 0 17px; margin-top: 2px; color: var(--red-bright); }

.hero {
  position: relative;
  min-height: min(830px, calc(100vh - 36px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #050506 0%, rgba(5,5,6,.95) 31%, rgba(5,5,6,.38) 63%, rgba(5,5,6,.1) 100%),
    linear-gradient(180deg, transparent 72%, #050506 100%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.hero-art picture, .hero-art img { width: 100%; height: 100%; }
.hero-art img { object-fit: cover; object-position: center right; transform: scale(1.025) translate3d(0, var(--hero-shift, 0px), 0); transition: transform .08s linear; }

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #050506);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 690px) 1fr;
  align-items: center;
  min-height: inherit;
  padding-block: 78px 92px;
}

.hero-copy { max-width: 690px; }

.hero h1 span {
  display: block;
  color: var(--red-bright);
  text-shadow: 0 0 38px rgba(229,29,38,.2);
}

.hero .lead { max-width: 625px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 38px;
}

.mini-badge {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(8,8,10,.58);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}

.mini-badge-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255,49,57,.38);
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red-bright);
}

.mini-badge-icon svg { width: 20px; height: 20px; }

.mini-badge strong { display: block; color: #fff; font-size: .82rem; line-height: 1.25; }
.mini-badge span { display: block; margin-top: 3px; color: #9e9ea7; font-size: .72rem; line-height: 1.35; }

.hero-seal {
  position: absolute;
  z-index: 5;
  right: clamp(30px, 5vw, 90px);
  bottom: 110px;
  width: 136px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(7,7,8,.74);
  box-shadow: 0 0 0 8px rgba(255,255,255,.025), 0 20px 50px rgba(0,0,0,.34);
  text-align: center;
  backdrop-filter: blur(10px);
  animation: sealPulse 4.8s ease-in-out infinite;
}

.hero-seal strong {
  display: block;
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-seal span {
  display: block;
  margin-top: 5px;
  color: #e6e6e9;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

@keyframes sealPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255,255,255,.025), 0 20px 50px rgba(0,0,0,.34); }
  50% { transform: scale(1.035); box-shadow: 0 0 0 12px rgba(229,29,38,.035), 0 20px 58px rgba(229,29,38,.2); }
}

.logo-strip {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #08080a;
}

.logo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.logo-strip-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: #c7c7cc;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.logo-strip-item:last-child { border-right: 0; }
.logo-strip-item svg { width: 21px; height: 21px; color: var(--red-bright); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.section-heading > div:first-child { max-width: 740px; }
.section-heading p { max-width: 520px; margin-bottom: 0; color: var(--muted); }

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

.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 36%),
    var(--panel);
  box-shadow: inset 0 1px rgba(255,255,255,.03);
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,29,38,.13), transparent 70%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,49,57,.31);
  box-shadow: 0 22px 55px rgba(0,0,0,.23), inset 0 1px rgba(255,255,255,.04);
}

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,49,57,.34);
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: .95rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,49,57,.35);
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red-bright);
}

.card-icon svg { width: 24px; height: 24px; }
.card p:last-child { margin-bottom: 0; }
.card .link-arrow { margin-top: 22px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.link-arrow svg { width: 17px; height: 17px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }

.split-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0d0d0f;
  box-shadow: var(--shadow);
}

.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: inherit;
  pointer-events: none;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 12px;
  color: #c8c8ce;
}

.check-list .check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(229,29,38,.13);
  color: var(--red-bright);
}

.check-list .check svg { width: 14px; height: 14px; }
.check-list strong { color: #fff; }

.answer-box {
  position: relative;
  padding: 26px 28px;
  border: 1px solid rgba(255,49,57,.27);
  border-left: 4px solid var(--red-bright);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(229,29,38,.11), rgba(255,255,255,.025));
}

.answer-box strong:first-child {
  display: block;
  margin-bottom: 8px;
  color: #ff5f66;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.answer-box p:last-child { margin-bottom: 0; }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 22px;
  border: 1px solid rgba(241,196,92,.27);
  border-radius: 14px;
  background: rgba(241,196,92,.07);
  color: #d5d0c4;
}

.notice svg { width: 23px; height: 23px; flex: 0 0 23px; color: var(--gold); margin-top: 2px; }
.notice strong { color: #fff1bf; }
.notice p:last-child { margin-bottom: 0; }
.notice a { color: #fff; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 28px;
  background: #0e0e11;
  text-align: center;
}

.stat strong {
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.stat span { color: var(--muted); font-size: .82rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 78px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 50%, rgba(255,71,78,.25), transparent 30%),
    linear-gradient(115deg, #7f060c 0%, #d4141e 54%, #83070c 100%);
  box-shadow: 0 30px 80px rgba(118, 2, 8, .24), inset 0 1px rgba(255,255,255,.14);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 55px, rgba(255,255,255,.022) 55px 56px);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.cta-band h2 { max-width: 760px; margin-bottom: 12px; }
.cta-band p { max-width: 710px; margin-bottom: 0; color: rgba(255,255,255,.82); }
.cta-band .btn { min-width: 210px; background: #08080a; box-shadow: 0 17px 36px rgba(0,0,0,.25); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(62px, 8vw, 100px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 85% 35%, rgba(197, 9, 18, .18), transparent 28rem),
    linear-gradient(180deg, #08080a, #050506);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(229,29,38,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(229,29,38,.025), 0 0 0 130px rgba(229,29,38,.014);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 { font-size: clamp(3rem, 6.2vw, 5.9rem); }
.page-hero .lead { max-width: 780px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  color: #9797a0;
  font-size: .78rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumbs a { color: #bdbdc4; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs svg { width: 12px; height: 12px; opacity: .65; }

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 26px;
  color: #9d9da6;
  font-size: .8rem;
}

.page-meta span { display: inline-flex; align-items: center; gap: 7px; }
.page-meta svg { width: 15px; height: 15px; color: var(--red-bright); }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 64px;
}

.article-body { min-width: 0; }
.article-body > p:first-of-type { font-size: 1.17rem; color: #ceced3; }
.article-body h2 { margin-top: 60px; font-size: clamp(2rem, 3.5vw, 3rem); }
.article-body h3 { margin-top: 38px; }
.article-body ul, .article-body ol { padding-left: 1.25rem; }
.article-body li { margin-bottom: .72rem; color: #c5c5cb; }
.article-body a { color: #ff666d; text-underline-offset: 3px; }
.article-body blockquote {
  margin: 35px 0;
  padding: 23px 26px;
  border-left: 4px solid var(--red-bright);
  background: rgba(229,29,38,.07);
  color: #dddde1;
  font-size: 1.06rem;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,13,15,.93);
}

.toc strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.toc ol { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: grid; grid-template-columns: 24px 1fr; gap: 8px; color: #aaaab3; font-size: .86rem; text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--red-bright); font-size: .7rem; font-weight: 900; }
.toc a:hover { color: #fff; }

.data-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background: #0d0d0f;
}

.data-table th, .data-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: #151519; color: #fff; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.data-table td { color: #bcbcc3; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table strong { color: #fff; }

.timeline { position: relative; display: grid; gap: 18px; margin-top: 34px; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 26px; bottom: 26px; width: 1px; background: linear-gradient(var(--red), rgba(229,29,38,.1)); }
.timeline-step { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #0f0f12; }
.timeline-index { z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,49,57,.35); border-radius: 50%; background: #150b0d; color: var(--red-bright); font-family: var(--font-display); }
.timeline-step p:last-child { margin-bottom: 0; }

.accordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #0e0e11; transition: border-color .2s ease; }
.accordion-item:has(.accordion-trigger[aria-expanded="true"]) { border-color: rgba(255,49,57,.28); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: #fff; font-weight: 800; text-align: left; cursor: pointer; }
.accordion-trigger svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--red-bright); transition: transform .22s ease; }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.accordion-panel > div { overflow: hidden; }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { padding: 0 22px 21px; margin: 0; color: #b2b2bb; }

.review-scorecard { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.score-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #101013; }
.score-icon { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; border-radius: 11px; background: var(--red-soft); color: var(--red-bright); }
.score-icon svg { width: 20px; height: 20px; }
.score-item strong { display: block; color: #fff; }
.score-item span { color: #aaaab3; font-size: .9rem; }

.guide-card { display: flex; min-height: 100%; flex-direction: column; }
.guide-card .guide-meta { margin-bottom: 16px; color: #ff5c63; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.guide-card p { flex: 1; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: #a8a8b0; font-size: .72rem; font-weight: 750; }

.legal-page h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-top: 48px; }
.legal-page h3 { margin-top: 32px; }
.legal-page p, .legal-page li { color: #bcbcc4; }
.legal-page ul { padding-left: 1.15rem; }

.site-footer {
  position: relative;
  padding: 72px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050506;
}

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

.footer-brand { max-width: 365px; }
.footer-logo { width: 210px; margin-bottom: 22px; }
.footer-brand p { color: #96969f; font-size: .9rem; }
.footer-title { margin: 4px 0 18px; color: #fff; font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #9e9ea7; font-size: .88rem; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(2px); }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 26px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); color: #777780; font-size: .74rem; }
.footer-bottom p { max-width: 870px; margin: 0; }
.footer-bottom a { color: #aaaab1; }

.mobile-cta {
  position: fixed;
  z-index: 52;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,6,.9);
  backdrop-filter: blur(16px);
}

.mobile-cta .btn { width: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.go-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 25%, rgba(208, 10, 19, .22), transparent 28rem),
    #050506;
}

.go-card {
  width: min(580px, 100%);
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(13,13,15,.94);
  box-shadow: 0 35px 100px rgba(0,0,0,.5), 0 0 70px rgba(201, 7, 15, .12);
  text-align: center;
}

.go-logo { width: 230px; margin: 0 auto 32px; }
.go-spinner { position: relative; width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 28px; }
.go-spinner::before { content: ""; position: absolute; inset: 0; border: 4px solid rgba(255,255,255,.08); border-top-color: var(--red-bright); border-radius: 50%; animation: spin 1s linear infinite; }
.go-spinner strong { color: #fff; font-family: var(--font-display); font-size: 1.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.go-card h1 { font-size: clamp(2.1rem, 7vw, 3.5rem); }
.go-card p { color: #adadb5; }
.go-card .btn { width: 100%; margin-top: 10px; }
.go-domain { display: inline-flex; align-items: center; gap: 7px; margin-top: 19px; color: #83838c; font-size: .76rem; }
.go-domain svg { width: 15px; height: 15px; }
.go-cancel { display: inline-block; margin-top: 18px; color: #9b9ba3; font-size: .78rem; }

.no-js-note { padding: 14px 18px; border-radius: 12px; background: rgba(241,196,92,.08); color: #e7d7a8; }

.sitemap-list { columns: 2; gap: 44px; }
.sitemap-list li { break-inside: avoid; margin-bottom: 12px; }
.sitemap-list a { color: #d0d0d5; }

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-code { color: var(--red-bright); font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); line-height: .8; opacity: .9; }

@media (max-width: 1080px) {
  .brand { width: 180px; }
  .nav-list { gap: 17px; }
  .nav-link { font-size: .74rem; }
  .header-actions .btn { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 650px) 1fr; }
  .hero-seal { right: 28px; }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header { position: sticky; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    z-index: -1;
    top: calc(36px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    padding: 28px 20px 120px;
    background: rgba(5,5,6,.98);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
  }
  .nav-open .site-nav { z-index: 50; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { display: block; padding: 17px 8px; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-link::after { display: none; }
  .hero { min-height: auto; }
  .hero::before {
    background:
      linear-gradient(180deg, #050506 0%, rgba(5,5,6,.96) 37%, rgba(5,5,6,.35) 63%, #050506 100%);
  }
  .hero-inner { grid-template-columns: 1fr; align-items: start; padding-block: 74px 520px; }
  .hero-copy { max-width: 720px; }
  .hero-art img { object-position: center bottom; }
  .hero-seal { right: 26px; bottom: 105px; width: 118px; }
  .hero-badges { grid-template-columns: 1fr; max-width: 470px; }
  .mini-badge { min-height: 72px; }
  .logo-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip-item:nth-child(2) { border-right: 0; }
  .logo-strip-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse .split-media, .split.reverse .split-copy { order: initial; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band .btn { justify-self: start; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .toc { position: static; order: -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .container, .container.narrow { width: min(100% - 28px, var(--container)); }
  .announcement { min-height: 34px; font-size: .64rem; letter-spacing: .07em; }
  .brand { width: 165px; }
  .hero-inner { padding-block: 56px 450px; }
  .hero h1 { font-size: clamp(2.8rem, 14.2vw, 4.65rem); letter-spacing: -.05em; }
  .hero .lead { font-size: 1.05rem; }
  .hero-seal { width: 104px; right: 14px; bottom: 74px; }
  .hero-seal strong { font-size: 1.6rem; }
  .hero-seal span { font-size: .56rem; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .btn { width: 100%; }
  .logo-strip-item { min-height: 76px; padding: 14px 10px; font-size: .67rem; }
  .section { padding-block: 68px; }
  .section.compact { padding-block: 50px; }
  h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .card-grid, .card-grid.two, .card-grid.four, .review-scorecard { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { min-height: 118px; }
  .cta-band { padding: 34px 25px; border-radius: 22px; }
  .cta-band .btn { width: 100%; }
  .page-hero { padding-block: 64px 58px; }
  .page-hero h1 { font-size: clamp(2.9rem, 14vw, 4.3rem); }
  .timeline::before { left: 20px; }
  .timeline-step { grid-template-columns: 42px 1fr; gap: 15px; padding: 20px; }
  .timeline-index { width: 42px; height: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom > * + * { margin-top: 12px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .sitemap-list { columns: 1; }
}

@media (max-width: 430px) {
  .header-actions { gap: 8px; }
  .hero-inner { padding-bottom: 405px; }
  .hero-badges { display: none; }
  .hero-seal { bottom: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-art img { transform: none; }
}

@media print {
  .announcement, .site-header, .mobile-cta, .cta-band, .button-row, .site-footer { display: none !important; }
  body { background: #fff; color: #111; padding: 0; }
  .page-hero { padding: 30px 0; background: #fff; border: 0; }
  .page-hero h1, h2, h3 { color: #111; }
  p, li, .lead, .text-muted { color: #333 !important; }
  .card, .answer-box, .notice { border: 1px solid #bbb; background: #fff; box-shadow: none; }
  a { color: #111; }
}
