:root {
  --bg: #000910;
  --bg-deep: #00060d;
  --panel: #011022;
  --line: rgba(32, 113, 255, 0.28);
  --text: #f4f7ff;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.5);
  --primary: #2071ff;
  --cyan: #00d1ff;
  --header: 128px;
  --max: 1440px;
  --shell: 1200px;
  --gutter: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 144px; }
body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
}
::selection { background: rgba(32, 113, 255, 0.45); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.shell {
  width: min(var(--shell), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.center { text-align: center; }
.center-text { margin-left: auto; margin-right: auto; text-align: center; }
.center-cta { margin-top: 40px; text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow.center { text-align: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: transparent;
}
.header-glass {
  width: 100%;
  background: #00000090;
  backdrop-filter: blur(12px);
}
.site-header.scrolled .header-glass {
  background: #000000cc;
}
.header-bar {
  height: var(--header);
  width: min(95.833%, 1920px);
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.logo:hover { transform: translateX(8px); }
.logo img {
  width: 252px;
  height: auto;
  display: block;
  aspect-ratio: 377 / 96;
}
.nav {
  display: flex;
  align-items: stretch;
  width: 48%;
  margin-left: 56px;
  height: var(--header);
  color: #fff;
  font-size: 18px;
  line-height: var(--header);
}
.nav-li,
.nav-item > button {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header);
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}
.nav-li:hover,
.nav-item > button:hover,
.nav-li.is-active { color: var(--primary); }
.more-link img {
  width: 16px;
  height: auto;
  margin: 0 0 7px 4px;
}
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: var(--header);
  left: 0;
  transform: none;
  width: 160px;
  padding: 8px;
  background: #001021;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 20;
}
.nav-item:hover .dropdown,
.lang:hover .dropdown { opacity: 1; pointer-events: auto; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  border: 1px solid transparent;
  font-size: 14px;
}
.dropdown a:hover, .dropdown a.is-active {
  background: #031a33;
  color: var(--primary);
  border-color: #1e40af;
}
.os {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: #fff;
  opacity: 0.9;
}
.os.ios { clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%); }
.os.android { border-radius: 4px 4px 6px 6px; }
.os.win { background: #5ea0ff; }
.os.mac { border-radius: 3px; }
.os.linux { border-radius: 50% 50% 40% 40%; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: auto;
  min-width: 268px;
  height: var(--header);
}
.lang {
  position: relative;
  width: 64px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
}
.lang:hover { color: var(--primary); }
.lang-icon {
  width: 32px;
  height: 32px;
  display: block;
  background: currentColor;
  -webkit-mask: url("../images/lang-globe.png") center / contain no-repeat;
  mask: url("../images/lang-globe.png") center / contain no-repeat;
}
.lang .dropdown {
  left: auto;
  right: 0;
  transform: none;
  top: var(--header);
  width: 240px;
  padding: 16px 14px;
}
.lang .dropdown a {
  padding: 16px 20px;
  font-size: 18px;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 22px;
  height: 40px;
  transition: filter 0.2s, transform 0.2s;
}
.btn:hover { filter: brightness(1.08); transform: scale(1.02); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-login {
  height: 52px;
  padding: 0 28px;
  font-size: 17px;
  gap: 8px;
}
.header-actions .btn-hero-inner {
  height: 52px;
  padding: 0 28px;
  font-size: 17px;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  position: relative;
  margin-left: auto;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.hero {
  position: relative;
  height: 98vh;
  max-height: 1240px;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}
.hero-art { position: absolute; inset: 0; }
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.spark {
  position: absolute;
  left: var(--x);
  bottom: -6%;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 38%, #8cebff 58%, transparent 72%);
  animation: spark-float var(--d) linear var(--delay) infinite;
  will-change: transform;
}
.hero.is-away .spark { animation-play-state: paused; }
@keyframes spark-float {
  0% { transform: translate3d(0, 8vh, 0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate3d(var(--dx), -108vh, 0); opacity: 0.15; }
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 46%;
  display: block;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,4,12,.42) 0%, rgba(0,4,12,.12) 36%, transparent 62%),
    linear-gradient(180deg, rgba(0,6,16,.28) 0%, transparent 18%, transparent 78%, rgba(0,4,10,.5) 100%);
}
.hero-stage {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 83.333%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 58%;
  min-width: 400px;
  padding: 0 0 140px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 4.8vw, 88px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  color: #fff;
  white-space: nowrap;
}
.hero-lead {
  margin: 18px 0 14px;
  font-size: clamp(20px, 1.8vw, 34px);
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.hero-desc {
  margin: 0 0 32px;
  max-width: 36em;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  white-space: normal;
}
.btn-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: auto;
  padding: 2px;
  background: transparent;
  gap: 0;
}
.btn-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240%;
  height: 240%;
  z-index: 0;
  background: conic-gradient(
    from 180deg,
    rgba(0, 209, 255, 0) 0deg,
    rgba(0, 209, 255, 0) 210deg,
    #00d1ff 300deg,
    #9ee9ff 338deg,
    rgba(0, 209, 255, 0) 360deg
  );
  transform: translate(-50%, -50%);
  animation: hero-ring 2s linear infinite;
}
.btn-hero:hover::before { animation-duration: 0.65s; }
.btn-hero-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 62px;
  padding: 0 48px;
  border-radius: 999px;
  background: var(--primary);
  font-size: 24px;
}
@keyframes hero-ring {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-hero::before { animation: none; }
  .spark { animation: none; display: none; }
}

.hero-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 120px;
}
.hero-banner-inner {
  width: 91.666%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4.167vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.people { display: flex; flex-direction: column; gap: 8px; }
.avatars { display: flex; align-items: center; }
.avatars img {
  width: clamp(42px, 2.917vw, 56px);
  height: clamp(42px, 2.917vw, 56px);
  margin-left: -28px;
  border: 1px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.live-meta {
  font-size: clamp(11px, 0.729vw, 14px);
  color: #fff;
}
.live-meta b { font-weight: 700; }
.hero-stats {
  display: flex;
  gap: clamp(20px, 9.167vw, 176px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.stat-top {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  color: #fff;
}
.stat-top strong {
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 700;
  line-height: 1;
}
.stat-top span,
.stat-label {
  font-size: clamp(10px, 0.729vw, 14px);
  color: rgba(255,255,255,.88);
}

.section { padding: 96px 0; position: relative; }
.section.tight { padding-top: 8px; }
.split-section { padding-top: 48px; }
.stats-section { padding-top: 72px; }
.section h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
}
.section .lead { color: var(--muted); font-size: 17px; line-height: 1.8; max-width: 640px; }
.copy-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 640px;
}
.copy-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.6;
}
.copy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.stat { text-align: center; padding: 12px; }
.stat strong {
  display: block;
  font-size: clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, #fff 20%, #7eb0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--dim); }

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.map {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020b18;
}
.map img,
.vis-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.map-svg { width: 100%; height: 380px; display: block; }
.node { fill: #4da3ff; filter: drop-shadow(0 0 6px #2071ff); }
.pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(32, 113, 255, 0.7);
  animation: pulse 2.6s infinite;
}
.p1 { left: 24%; top: 34%; }
.p2 { left: 45%; top: 36%; animation-delay: .7s; }
.p3 { left: 68%; top: 28%; animation-delay: 1.3s; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 20px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.media-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.vis-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: #020b18;
}
.vis-card.stream { background: linear-gradient(160deg, #10264a, #070f1c); }
.vis-card.game { background: linear-gradient(160deg, #0b2a22, #071018); }
.vis-card.shop { background: linear-gradient(160deg, #1a1638, #080c18); }
.window, .hud, .route {
  position: absolute;
  inset: 28px;
  border-radius: 16px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 10px;
}
.dots { display: flex; gap: 6px; justify-content: center; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }
.play {
  width: 72px;
  height: 72px;
  margin: 8px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  font-weight: 800;
}
.hud b { font-size: 42px; }
.hud span { color: #7dffa8; letter-spacing: 0.08em; }
.bar { width: 70%; height: 8px; margin: 8px auto 0; border-radius: 99px; background: #123; overflow: hidden; }
.bar i { display: block; width: 78%; height: 100%; background: linear-gradient(90deg, #2071ff, #00d1ff); }
.route span { color: var(--cyan); font-size: 13px; letter-spacing: 0.12em; }
.route strong { font-size: 28px; }

.promo {
  padding: 42px 48px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(32,113,255,.22), rgba(0,209,255,.08) 48%, rgba(32,113,255,.12)),
    #03152d;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 80px rgba(0, 40, 110, 0.25);
}
#subscribe { scroll-margin-top: 96px; }
.promo h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); }
.checks { margin: 20px 0 0; padding: 0; list-style: none; }
.checks li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--muted);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='white' d='M1 5l3.2 3L11 1'/%3E%3C/svg%3E") center/8px no-repeat;
}
.promo-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  min-width: 72px;
  padding: 12px 8px 8px;
  text-align: center;
  background: #001021;
  border: 1px solid rgba(32,113,255,.25);
  border-radius: 12px;
  font-size: 32px;
  font-weight: 900;
}
.countdown small { display: block; font-size: 12px; color: var(--dim); font-weight: 500; }
.countdown i { color: var(--primary); font-style: normal; font-size: 28px; font-weight: 800; }

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.feature {
  padding: 28px 18px 24px;
  background: linear-gradient(180deg, #07192f, #011022);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  min-height: 196px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 255, 0.45);
  box-shadow: 0 16px 40px rgba(32, 113, 255, 0.12);
}
.feature .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(32, 113, 255, 0.15);
  color: var(--cyan);
  font-size: 20px;
  font-weight: 800;
}
.feature h3 { margin: 0 0 8px; font-size: 16px; }
.feature p { margin: 0; color: var(--dim); font-size: 13px; line-height: 1.65; }

.pay-section { padding-bottom: 48px; overflow: hidden; }
.pay-sub {
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.pay-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  padding: 8px 24px 0;
}
.pay-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 18px;
  box-sizing: border-box;
}
.pay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pay-icon.paypal { padding: 20px 22px 16px; }
.pay-icon.mastercard { padding: 14px; }

.quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.quote {
  padding: 22px;
  background: #011022;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: border-color 0.2s;
}
.quote:hover { border-color: rgba(32, 113, 255, 0.7); }
.quote p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0 0 20px; }
.who { display: flex; align-items: center; gap: 10px; }
.who img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
  flex: 0 0 auto;
}
.who small { color: var(--dim); display: block; font-size: 12px; }

.qmark { color: var(--primary); }
.faq { max-width: 860px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq-item h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 22px 8px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
  color: var(--muted);
  line-height: 1.8;
  transition: max-height 0.28s ease, padding 0.28s ease;
}
.faq-item.open .a { max-height: 280px; padding: 0 8px 18px; }
.faq-item button::after { content: "+"; color: var(--primary); font-size: 24px; }
.faq-item.open button::after { content: "–"; }

.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(32,113,255,.28), transparent 55%),
    linear-gradient(180deg, #000910, #001428 60%, #00060d);
  border-top: 1px solid rgba(32,113,255,.22);
}
.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
}
.cta-band p {
  margin: 0 auto 32px;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.site-footer {
  padding: 72px 0 32px;
  background: #00060d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer .footer-hd { margin: 0 0 16px; font-weight: 700; }
.site-footer .lead {
  margin: 14px 0 0;
  max-width: 38em;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.85;
}
.footer-contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
}
.social-x,
.social-mail {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
}
.social-x svg,
.social-mail svg { width: 16px; height: 16px; display: block; }
.social-x:hover,
.social-mail:hover { color: #fff; background: #000; border-color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 10px 0; color: var(--dim); }
.site-footer li a:hover { color: var(--primary); }
.copy { margin-top: 40px; color: var(--dim); font-size: 13px; }

.back-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32,113,255,.45);
  background: #000f20;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}
.back-top.show { opacity: 1; pointer-events: auto; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(1, 16, 34, 0.96);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
}
.mobile-nav.open { display: block; }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a, .mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #fff;
  padding: 16px 4px;
  font-size: 16px;
}
.mobile-nav #menu-close { width: auto; font-size: 20px; }

@media (max-width: 1280px) {
  .logo img { width: 210px; }
  .nav { width: 50%; margin-left: 28px; font-size: 16px; }
  .nav-li, .nav-item > button { font-size: 16px; }
  .hero-copy { width: 62%; padding-left: 24px; min-width: 0; }
  .hero h1, .hero-lead { white-space: normal; }
}
@media (max-width: 1100px) {
  .features, .quotes { grid-template-columns: repeat(2, 1fr); }
  .promo, .two-col, .media-split { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .header-bar { padding: 0 20px; }
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 98svh; max-height: none; }
  .hero-stage { width: 91.666%; }
  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 96px 0 180px;
  }
  .hero-bg { object-position: 68% center; }
  .hero h1, .hero-lead { white-space: normal; }
  .hero-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-stats { width: 100%; justify-content: space-between; gap: 20px; }
  .quotes { grid-template-columns: 1fr; }
}

.inner-page { background: var(--bg-deep); }
.page-wrap {
  padding: calc(var(--header) + 48px) 0 80px;
}
.crumbs {
  margin: 0 0 24px;
  color: var(--dim);
  font-size: 13px;
}
.crumbs a:hover { color: var(--primary); }
.prose {
  max-width: 760px;
}
.prose h1 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}
.prose h2 {
  margin: 36px 0 12px;
  font-size: 22px;
}
.prose h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.prose p, .prose li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 1.2em; }
.prose a { color: #7eb6ff; }
.prose a:hover { color: #fff; }
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 36px;
}
.page-links a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  border-bottom: 1px solid rgba(32,113,255,.4);
}
.page-links a:hover { color: var(--primary); }

.dl-page .page-wrap { padding: calc(var(--header)) 0 0; }
.dl-hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  padding: 56px 0 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dl-hero-art {
  position: absolute;
  inset: 0;
}
.dl-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 46%;
  display: block;
}
.dl-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 6, 16, 0.88) 0%, rgba(0, 6, 16, 0.62) 42%, rgba(0, 6, 16, 0.4) 100%),
    linear-gradient(180deg, rgba(0, 6, 16, 0.35) 0%, transparent 28%, rgba(0, 6, 16, 0.55) 100%);
}
.dl-hero .container { position: relative; z-index: 2; }
.dl-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.dl-lead {
  margin: 0;
  max-width: 46em;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.dl-hero .dl-grid { margin-top: 72px; }
.dl-block {
  padding: 88px 0;
}
.dl-block.dl-faq { padding-bottom: 48px; }
.dl-page .cta-band { border-top: 0; }
.dl-head { margin-bottom: 36px; max-width: 40em; }
.dl-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.dl-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
}
.dl-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 320px;
  padding: 28px 24px 24px;
  border-radius: 18px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  background: #04101e;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.dl-card:hover {
  border-color: #2071ff;
  background: linear-gradient(180deg, #072040, #04101e);
  transform: translateY(-4px);
}
.dl-ico {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(32, 113, 255, 0.14);
  color: #8cbcff;
}
.dl-ico svg { width: 28px; height: 28px; display: block; }
.dl-ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.dl-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}
.dl-card .dl-meta {
  margin: 0 0 10px;
  padding: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.4;
}
.dl-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.dl-card .btn {
  width: 100%;
  height: 44px;
  margin-top: auto;
  font-size: 15px;
}
.dl-verify-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  border-radius: 18px;
  background: #04101e;
}
.dl-verify {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.dl-verify th,
.dl-verify td {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.dl-verify th {
  color: var(--dim);
  font-weight: 600;
  white-space: nowrap;
}
.dl-verify tbody tr:last-child th,
.dl-verify tbody tr:last-child td { border-bottom: 0; }
.dl-verify code,
.dl-verify-cmd code,
.dl-specs code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #8cbcff;
  word-break: break-all;
}
.dl-verify-cmd {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.dl-steps,
.dl-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.dl-steps article,
.dl-specs article {
  min-height: 188px;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  background: #04101e;
}
.dl-steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 16px;
  font-weight: 800;
}
.dl-steps h3,
.dl-specs h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.dl-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.dl-specs ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.dl-faq .faq { margin-top: 0; }
@media (max-width: 1200px) {
  .dl-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .dl-hero { min-height: 0; padding: 40px 0 56px; }
  .dl-block { padding: 56px 0; }
  .dl-grid,
  .dl-steps,
  .dl-specs,
  .sub-plans,
  .sub-includes { grid-template-columns: 1fr; }
  .dl-card,
  .dl-steps article,
  .dl-specs article { min-height: 0; }
  .sub-hero { padding: 40px 0 48px; }
  .sub-hero-meta { align-items: flex-start; }
  .sub-s { flex-direction: column; align-items: stretch; }
}

.sub-hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: visible;
}
.sub-hero .container { position: relative; z-index: 2; }
.sub-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.sub-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
  margin-top: 28px;
}
.sub-plans {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr) minmax(0, 0.9fr);
  gap: 22px;
  margin-top: 56px;
  align-items: center;
}
.sub-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  border-radius: 28px;
  border: 1px solid rgba(90, 160, 255, 0.28);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(40, 110, 220, 0.35), transparent 58%),
    #071428;
  color: #fff;
}
.sub-plan.is-featured {
  z-index: 1;
  padding: 48px 36px 40px;
  border: 0;
  background: linear-gradient(180deg, #7eb6ff 0%, #3d8dff 42%, #2f6fff 100%);
  box-shadow: 0 24px 80px rgba(32, 113, 255, 0.35);
}
.sub-off {
  position: absolute;
  top: -14px;
  right: 18px;
  width: 68px;
  height: 68px;
  margin: 0;
  display: grid;
  place-items: center;
  background: #2071ff;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  clip-path: polygon(50% 0%, 63% 12%, 79% 8%, 82% 25%, 97% 32%, 88% 46%, 100% 58%, 86% 66%, 90% 84%, 74% 82%, 68% 98%, 50% 90%, 32% 98%, 26% 82%, 10% 84%, 14% 66%, 0% 58%, 12% 46%, 3% 32%, 18% 25%, 21% 8%, 37% 12%);
}
.sub-plan h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.sub-plan.is-featured h2 { font-size: 22px; }
.sub-price {
  margin: 0 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: #fff;
}
.sub-price strong {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sub-plan.is-featured .sub-price strong { font-size: 64px; }
.sub-price span {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}
.sub-total {
  margin: -12px 0 22px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.sub-total s {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
}
.sub-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 168px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s, filter 0.2s;
}
.sub-plan.is-featured .sub-buy {
  min-width: 220px;
  height: 52px;
  background: #fff;
  color: #111;
}
.sub-buy:hover { transform: scale(1.03); filter: brightness(1.06); }
.sub-plan ul {
  width: 100%;
  margin: 22px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px dotted rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}
.sub-plan.is-featured ul {
  border-top-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 15px;
}
.sub-plan li {
  position: relative;
  padding-left: 22px;
}
.sub-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(180, 210, 255, 0.95);
  font-size: 13px;
}
.sub-plan.is-featured li::before { color: #fff; }
.sub-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  background: #04101e;
}
.sub-s h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}
.sub-s p {
  margin: 0;
  max-width: 46em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.sub-s .btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 24px;
  white-space: nowrap;
}
.sub-includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sub-includes article {
  min-height: 168px;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  background: #04101e;
}
.sub-includes h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.sub-includes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.sub-compare { min-width: 640px; }
.sub-pay .pay-logos { margin-top: 8px; }
.sub-legal {
  margin: 28px auto 0;
  max-width: 52em;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.8;
}
.sub-legal a { color: #8cbcff; }
.sub-legal a:hover { color: #fff; }
@media (max-width: 1100px) {
  .sub-includes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sub-plans { grid-template-columns: 1fr; }
  .sub-plan.is-featured { order: -1; }
  .sub-price strong { font-size: 42px; }
  .sub-plan.is-featured .sub-price strong { font-size: 52px; }
}

.faq-hero {
  position: relative;
  padding: 36px 0 28px;
  overflow: hidden;
  border-bottom: 1px solid rgba(32, 113, 255, 0.22);
}
.faq-hero .container { position: relative; z-index: 2; }
.faq-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.faq-hero .dl-lead { font-size: 16px; }
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.faq-cats a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(32, 113, 255, 0.35);
  background: rgba(4, 16, 30, 0.72);
  color: #fff;
  font-size: 14px;
}
.faq-cats a:hover {
  border-color: #2071ff;
  color: #8cbcff;
}
.faq-page .dl-head { margin-bottom: 12px; max-width: none; }
.faq-page .dl-head h2 { margin-bottom: 4px; font-size: 22px; }
.faq-page .faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
  max-width: none;
  margin: 0;
  position: relative;
}
.faq-page .faq-col { min-width: 0; }
.faq-page .faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.faq-page .faq a { color: #8cbcff; }
.faq-page .faq a:hover { color: #fff; }
.faq-page .faq code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #8cbcff;
  word-break: break-all;
}
.faq-page .faq-item button {
  padding: 14px 8px;
  font-size: 16px;
}
.faq-page .faq-item.open .a { padding: 0 8px 12px; }
.faq-page .dl-block {
  padding: 28px 0;
  border-bottom: 1px solid rgba(32, 113, 255, 0.22);
  background: none;
}
.faq-page .cta-band { border-top: 0; }
@media (max-width: 900px) {
  .faq-page .faq {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-page .faq::before { display: none; }
}
@media (max-width: 780px) {
  .faq-hero { padding: 28px 0 22px; }
}

.about-page .dl-block {
  padding: 48px 0;
  border-bottom: 1px solid rgba(32, 113, 255, 0.22);
}
.about-page .cta-band { border-top: 0; }
.about-story a,
.about-tl a,
.about-page .sub-includes a { color: #8cbcff; }
.about-story a:hover,
.about-tl a:hover,
.about-page .sub-includes a:hover { color: #fff; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.about-stats article {
  padding: 28px 20px;
  border-radius: 18px;
  border: 1px solid rgba(32, 113, 255, 0.22);
  background: #04101e;
  text-align: center;
}
.about-stats strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--dim);
  font-size: 14px;
}
.about-story {
  max-width: 46em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.about-story p { margin: 0 0 16px; }
.about-story p:last-child { margin-bottom: 0; }
.about-tl {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 52em;
}
.about-tl li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-tl li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-tl time {
  color: #8cbcff;
  font-size: 15px;
  font-weight: 700;
  padding-top: 4px;
}
.about-tl h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.about-tl p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .about-tl li { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}

.legal-page .dl-block {
  padding: 44px 0;
  border-bottom: 1px solid rgba(32, 113, 255, 0.22);
}
.legal-page .cta-band { border-top: 0; }
.legal-page .dl-lead { max-width: none; }
.legal-page .dl-head { max-width: none; margin-bottom: 20px; }
.legal-page .about-story {
  max-width: none;
}
.legal-page .sub-s p { max-width: none; }
@media (min-width: 960px) {
  .legal-page .dl-block > .container:has(.about-story) {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 12px 56px;
    align-items: start;
  }
  .legal-page .dl-block > .container:has(.about-story) .dl-head {
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--header) + 20px);
  }
  .legal-page .dl-block > .container:has(.about-story) .dl-head h2 {
    font-size: clamp(22px, 2vw, 28px);
  }
}
.legal-page .about-story a { color: #8cbcff; }
.legal-page .about-story a:hover { color: #fff; }
.legal-page .about-story h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.legal-page .about-story h3:first-child { margin-top: 0; }
.legal-page .about-story ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.legal-page .about-story li {
  margin: 0 0 8px;
  color: var(--muted);
}
.legal-meta {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 13px;
}
.legal-page .legal-meta a,
.legal-page .dl-lead a { color: #8cbcff; }
.legal-page .legal-meta a:hover,
.legal-page .dl-lead a:hover { color: #fff; }
