:root {
  --bg: #07060d;
  --bg-2: #0d0b17;
  --surface: rgba(20, 17, 34, .62);
  --surface-solid: #13101f;
  --surface-2: #1b1729;
  --border: rgba(200, 190, 255, .09);
  --border-strong: rgba(200, 190, 255, .18);
  --fg: #eeecf8;
  --muted: #9a96b3;
  --faint: #6b6784;
  --violet: #8b5cf6;
  --violet-2: #7c3aed;
  --magenta: #d946ef;
  --pink: #f472b6;
  --success: #34d399;
  --danger: #fb7185;
  --grad: linear-gradient(120deg, #a78bfa 0%, #8b5cf6 30%, #d946ef 70%, #f472b6 100%);
  --grad-btn: linear-gradient(135deg, #7c3aed, #a855f7 50%, #d946ef);
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(139, 92, 246, .45); color: #fff; }
kbd {
  font-family: var(--mono); font-size: .8em; padding: .12em .5em; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  box-shadow: 0 2px 0 rgba(0,0,0,.45); color: var(--fg); white-space: nowrap;
}
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.small { font-size: .78rem; }
.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.center { text-align: center; }
#bg-canvas { position: fixed; inset: 0; z-index: -2; width: 100%; height: 100%; }
.aurora { position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 26s ease-in-out infinite alternate;
}
.aurora i:nth-child(1) { width: 60vw; height: 60vw; left: -18vw; top: -24vw; background: radial-gradient(circle, rgba(124,58,237,.55), transparent 65%); }
.aurora i:nth-child(2) { width: 50vw; height: 50vw; right: -16vw; top: 10vh; background: radial-gradient(circle, rgba(217,70,239,.35), transparent 65%); animation-duration: 32s; animation-delay: -8s; }
.aurora i:nth-child(3) { width: 45vw; height: 45vw; left: 25vw; bottom: -30vw; background: radial-gradient(circle, rgba(76,29,149,.5), transparent 65%); animation-duration: 38s; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 4vh) scale(1.12); }
  100% { transform: translate(-4vw, 8vh) scale(.95); }
}
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; left: 0; top: 0; width: 520px; height: 520px; margin: -260px 0 0 -260px;
  border-radius: 50%; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(139,92,246,.13), transparent 60%);
  transform: translate3d(var(--mx, -999px), var(--my, -999px), 0);
  transition: opacity .4s;
}
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); box-shadow: 0 0 12px rgba(217,70,239,.6); }
.btn {
  --h: 42px; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: var(--h); padding: 0 1.15rem; border-radius: 12px; font-weight: 600; font-size: .92rem;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s, color .25s;
  white-space: nowrap; isolation: isolate;
}
.btn-sm { --h: 36px; padding: 0 .9rem; font-size: .86rem; border-radius: 10px; }
.btn-lg { --h: 52px; padding: 0 1.6rem; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff; background: var(--grad-btn); background-size: 200% 200%; animation: gradshift 6s ease infinite;
  box-shadow: 0 8px 30px -8px rgba(168,85,247,.7), inset 0 1px 0 rgba(255,255,255,.25);
  overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 14px 40px -8px rgba(217,70,239,.8), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-outline { border: 1px solid var(--border-strong); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: rgba(167,139,250,.55); background: rgba(139,92,246,.1); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--fg); background: rgba(255,255,255,.05); }
.btn:active { transform: scale(.97); }
@keyframes gradshift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .35s, border-color .35s, backdrop-filter .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,6,13,.7); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(1180px, 100% - 32px); margin: 0 auto; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .14em; font-size: .9rem; }
.brand img { border-radius: 8px; }
.nav-links { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: block; padding: .45rem .8rem; border-radius: 9px; font-size: .88rem; color: var(--muted); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--fg); background: rgba(255,255,255,.05); }
.nav-actions { display: flex; align-items: center; gap: .35rem; }
.burger { display: none; width: 38px; height: 38px; position: relative; border-radius: 10px; }
.burger i { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s var(--ease), top .3s var(--ease); }
.burger i:first-child { top: 14px; } .burger i:last-child { top: 22px; }
.nav.open .burger i:first-child { top: 18px; transform: rotate(45deg); }
.nav.open .burger i:last-child { top: 18px; transform: rotate(-45deg); }
.mobile-menu { display: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem;
  font-family: var(--mono); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: #c4b5fd;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.center .eyebrow::after { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.06; letter-spacing: -.035em; font-weight: 700; margin: 0 0 1.1rem; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.1rem); max-width: 62ch; margin: 0; }
.center .lead { margin-inline: auto; }
.grad-text {
  background: var(--grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: textshine 7s linear infinite;
}
@keyframes textshine { to { background-position: 200% center; } }
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: .6rem; padding: .4rem .9rem .4rem .7rem;
  border-radius: 999px; font-size: .8rem; color: #d8d2f5;
  background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, linear-gradient(90deg, rgba(139,92,246,.6), rgba(217,70,239,.3), rgba(139,92,246,.1)) border-box;
  border: 1px solid transparent;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); } 80%,100% { box-shadow: 0 0 0 9px rgba(52,211,153,0); } }
.hero-title { font-size: clamp(2.7rem, 7.2vw, 5.6rem); line-height: .98; letter-spacing: -.05em; font-weight: 800; margin: 1.4rem 0 1.4rem; }
.hero-title .line { display: block; }
.hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 52ch; margin: 0 0 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-ctas.center { justify-content: center; }
.stats { display: flex; gap: 0; margin: 2.6rem 0 0; padding: 0; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); backdrop-filter: blur(10px); width: fit-content; max-width: 100%; }
.stat { padding: .9rem 1.4rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--border-strong); }
.stat dt { font-size: .72rem; color: var(--faint); font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.stat dd { margin: 0; font-size: 1.9rem; font-weight: 700; letter-spacing: -.03em; line-height: 1.2; }
.stat { display: flex; flex-direction: column-reverse; }

.hero-visual { position: relative; aspect-ratio: 1; max-width: 520px; width: 100%; justify-self: center; display: grid; place-items: center; }
.orbit { position: absolute; inset: 0; }
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--border-strong); inset: 0; }
.ring.r1 { inset: 4%; border-style: dashed; border-color: rgba(167,139,250,.18); animation: spin 60s linear infinite; }
.ring.r2 { inset: 16%; border-color: rgba(217,70,239,.14); animation: spin 40s linear infinite reverse; }
.ring.r3 { inset: 28%; background: radial-gradient(circle, rgba(124,58,237,.3), transparent 70%); border: 0; animation: breathe 5s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.1); opacity: .7; } }
.sat {
  position: absolute; left: 50%; top: 50%; font-family: var(--mono); font-size: .72rem; padding: .3rem .65rem; border-radius: 8px;
  background: rgba(19,16,31,.85); border: 1px solid var(--border-strong); color: #d9d3ff; white-space: nowrap;
  --r: 46%; animation: orbit 24s linear infinite; backdrop-filter: blur(6px);
}
.sat::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); margin-right: .45rem; vertical-align: 1px; box-shadow: 0 0 8px var(--violet); }
.sat.s2 { animation-delay: -6s; } .sat.s3 { animation-delay: -12s; } .sat.s4 { animation-delay: -18s; }
@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(min(240px, 42vw)) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(min(240px, 42vw)) rotate(-360deg); }
}
.core { width: 62%; position: relative; z-index: 2; transform-style: preserve-3d; transition: transform .3s var(--ease); }
.core-svg { width: 100%; filter: drop-shadow(0 30px 60px rgba(124,58,237,.45)); animation: bob 6s ease-in-out infinite; }
.hx-frame { stroke-dasharray: 8 10; animation: dash 20s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -360; } }
.hx-node { animation: nodepulse 2.4s ease-in-out infinite; transform-origin: 160px 160px; }
@keyframes nodepulse { 50% { r: 5; fill: #f0abfc; } }
@keyframes bob { 50% { transform: translateY(-12px); } }

.hud-card, .scan-chip {
  position: absolute; z-index: 3; border-radius: 14px; background: rgba(15,13,26,.82);
  border: 1px solid var(--border-strong); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
}
.hud-card { left: -4%; top: 8%; padding: .65rem .75rem .7rem; min-width: 150px; }
.hud-head { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; margin-bottom: .45rem; }
.hud-list { list-style: none; margin: 0; padding: 0; font-family: var(--mono); font-size: .72rem; }
.hud-list li {
  position: relative; padding: .12rem .5rem .12rem .6rem; color: #e9e5ff; animation: hudin .45s var(--ease) both;
  border-left: 2px solid; border-image: linear-gradient(#8b5cf6, #d946ef) 1;
  background: linear-gradient(90deg, rgba(139,92,246,.12), transparent);
}
@keyframes hudin { from { opacity: 0; transform: translateX(-8px); } }
.scan-chip { right: -2%; bottom: 12%; display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem .7rem .7rem; }
.scan-chip b { display: block; font-size: .85rem; }
.scan-chip small { color: var(--muted); font-size: .72rem; font-family: var(--mono); }
.scan-ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #052e1f; background: var(--success); box-shadow: 0 0 20px rgba(52,211,153,.5); }
.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 8s ease-in-out infinite -3s; }
@keyframes floaty { 50% { transform: translateY(-14px); } }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 24px; height: 38px; border-radius: 12px; border: 1.5px solid var(--border-strong); }
.scroll-hint span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: #c4b5fd; animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
.marquee {
  overflow: hidden; border-block: 1px solid var(--border); background: rgba(13,11,23,.55); backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1.1rem; padding: 1.15rem 1.1rem; font-size: 1.05rem; font-weight: 600; color: #cfc9ea; white-space: nowrap; letter-spacing: -.01em; }
.marquee-track span::after { content: ""; width: 8px; height: 8px; transform: rotate(45deg); background: var(--grad); border-radius: 2px; opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.checks { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .8rem; }
.checks li { display: flex; gap: .85rem; align-items: flex-start; padding: .9rem 1rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, transform .3s var(--ease); }
.checks li:hover { border-color: rgba(167,139,250,.35); transform: translateX(4px); }
.checks b { color: #e9d5ff; font-weight: 600; }
.ck { flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px; background: rgba(139,92,246,.18); border: 1px solid rgba(167,139,250,.45); position: relative; }
.ck::after { content: ""; position: absolute; left: 7px; top: 3px; width: 5px; height: 10px; border: solid #c4b5fd; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.scanner {
  border-radius: 20px; overflow: hidden; background: rgba(12,10,21,.85); border: 1px solid var(--border-strong);
  box-shadow: 0 40px 100px -30px rgba(124,58,237,.45), 0 0 0 1px rgba(255,255,255,.02) inset; font-size: .85rem;
  backdrop-filter: blur(12px);
}
.scanner-top { display: flex; align-items: center; gap: 1rem; padding: .7rem 1rem; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.scanner-top .muted:nth-child(2) { flex: 1; }
.traffic { display: flex; gap: 6px; } .traffic i { width: 10px; height: 10px; border-radius: 50%; background: #3a3550; }
.traffic i:first-child { background: #ff5f57; } .traffic i:nth-child(2) { background: #febc2e; } .traffic i:last-child { background: #28c840; }
.scanner-body { display: grid; grid-template-columns: 140px 1fr; min-height: 380px; }
.scanner-side { border-right: 1px solid var(--border); padding: 1rem .8rem; display: flex; flex-direction: column; gap: .15rem; font-size: .8rem; }
.scanner-side span { padding: .35rem .55rem; border-radius: 7px; color: var(--muted); }
.scanner-side span.on { background: rgba(139,92,246,.16); color: #e9e5ff; }
.side-label { margin: .2rem 0 .3rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg); }
.side-label.dim { color: var(--faint); margin-top: .8rem; }
.scanner-main { padding: 1.1rem 1.2rem 1.3rem; position: relative; overflow: hidden; }
.scan-head { display: flex; justify-content: space-between; align-items: center; margin: .7rem 0 .9rem; }
.scan-pin { font-weight: 800; font-size: 1.35rem; letter-spacing: .1em; }
.scan-verdict { position: relative; font-family: var(--mono); font-weight: 700; font-size: .85rem; padding: .45rem .9rem; border-radius: 10px; min-width: 116px; text-align: center; transition: all .4s var(--ease); }
.scan-verdict[data-state="scanning"] { background: rgba(251,191,36,.1); color: #fcd34d; border: 1px solid rgba(251,191,36,.3); }
.scan-verdict[data-state="legit"] { background: rgba(52,211,153,.12); color: var(--success); border: 1px solid rgba(52,211,153,.45); box-shadow: 0 0 30px rgba(52,211,153,.25); }
.scan-verdict[data-state="scanning"] .verdict-legit, .scan-verdict[data-state="legit"] .verdict-scanning { display: none; }
.scan-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,.06); overflow: hidden; }
.scan-bar span { display: block; height: 100%; width: var(--w, 0%); background: var(--grad); transition: width .25s linear; box-shadow: 0 0 10px rgba(217,70,239,.6); }
.scan-log { height: 92px; overflow: hidden; margin: .9rem 0; padding: .6rem .75rem; border-radius: 10px; background: rgba(0,0,0,.35); border: 1px solid var(--border); color: var(--muted); display: flex; flex-direction: column; justify-content: flex-end; line-height: 1.55; }
.scan-log .ok { color: var(--success); } .scan-log .dim { color: var(--faint); }
.scan-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.tile { padding: .7rem .8rem; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
.tile small { display: block; color: var(--faint); font-size: .7rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.tile b { font-size: 1.5rem; letter-spacing: -.02em; }
.tile.ok { border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.06); } .tile.ok b { color: var(--success); }
.scan-info { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; margin-top: .9rem; font-size: .78rem; }
.scan-info div { display: flex; justify-content: space-between; gap: .5rem; padding: .35rem 0; border-bottom: 1px dashed var(--border); }
.scan-info small { color: var(--faint); }
.scan-beam { position: absolute; left: 0; right: 0; top: 0; height: 90px; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(139,92,246,.14), transparent); border-bottom: 1px solid rgba(196,181,253,.4); animation: beam 2.6s ease-in-out infinite; }
.scanner.done .scan-beam { opacity: 0; transition: opacity .6s; }
@keyframes beam { 0% { transform: translateY(-100%); } 100% { transform: translateY(460px); } }
.tabs { position: relative; display: flex; gap: .25rem; width: fit-content; max-width: 100%; overflow-x: auto; margin: 0 auto 2rem; padding: .35rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { position: relative; z-index: 1; padding: .55rem 1rem; border-radius: 10px; font-size: .88rem; font-weight: 500; color: var(--muted); transition: color .25s; white-space: nowrap; }
.tab em { font-style: normal; font-family: var(--mono); font-size: .7rem; margin-left: .35rem; opacity: .6; }
.tab.active { color: #fff; }
.tab-ink { position: absolute; z-index: 0; top: .35rem; bottom: .35rem; left: 0; width: 0; border-radius: 10px; background: linear-gradient(135deg, rgba(124,58,237,.55), rgba(217,70,239,.35)); box-shadow: 0 6px 20px -6px rgba(168,85,247,.7), inset 0 1px 0 rgba(255,255,255,.15); transition: transform .45s var(--ease), width .45s var(--ease); }

.mod-layout { display: grid; grid-template-columns: 1fr 380px; gap: 1.25rem; align-items: start; }
.mod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .75rem; }
.mod {
  --spot-x: 50%; --spot-y: 50%;
  position: relative; text-align: left; padding: 1rem; border-radius: 16px; background: var(--surface); border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .3s, background .3s, opacity .35s, box-shadow .3s; overflow: hidden;
  animation: modin .5s var(--ease) both;
}
@keyframes modin { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.mod::before, .spot::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(260px circle at var(--spot-x) var(--spot-y), rgba(167,139,250,.16), transparent 60%);
}
.mod:hover::before, .spot:hover::before { opacity: 1; }
.mod:hover { transform: translateY(-3px); border-color: rgba(167,139,250,.3); }
.mod.selected { border-color: rgba(192,132,252,.7); background: linear-gradient(160deg, rgba(124,58,237,.22), rgba(20,17,34,.7)); box-shadow: 0 16px 40px -16px rgba(168,85,247,.6); }
.mod-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: .8rem; background: rgba(139,92,246,.14); border: 1px solid rgba(167,139,250,.25); color: #c4b5fd; }
.mod-ico svg, .md-icon svg, .how-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mod.selected .mod-ico { background: var(--grad-btn); color: #fff; border-color: transparent; }
.mod h3 { margin: 0; font-size: .98rem; font-weight: 600; letter-spacing: -.01em; }
.mod p { margin: .15rem 0 0; font-size: .8rem; color: var(--muted); }
.mod-cat { position: absolute; top: .9rem; right: .9rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }

.mod-detail { position: sticky; top: 96px; border-radius: 20px; padding: 1px; background: linear-gradient(160deg, rgba(167,139,250,.55), rgba(217,70,239,.15) 40%, rgba(255,255,255,.05)); box-shadow: 0 30px 80px -30px rgba(124,58,237,.6); }
.md-inner { border-radius: 19px; padding: 1.5rem; background: linear-gradient(180deg, rgba(22,18,38,.97), rgba(13,11,23,.97)); min-height: 420px; }
.md-inner.swap { animation: swapin .45s var(--ease); }
@keyframes swapin { from { opacity: 0; transform: translateY(8px); filter: blur(4px); } }
.md-top { display: flex; justify-content: space-between; align-items: center; }
.md-cat { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #c4b5fd; padding: .25rem .6rem; border-radius: 6px; background: rgba(139,92,246,.14); }
.md-key { font-size: .72rem; color: var(--faint); }
.md-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin: 1.3rem 0 1rem; color: #fff; background: var(--grad-btn); box-shadow: 0 12px 30px -8px rgba(168,85,247,.7); }
.md-icon svg { width: 28px; height: 28px; }
.mod-detail h3 { margin: 0; font-size: 1.6rem; letter-spacing: -.03em; }
.md-tag { margin: .1rem 0 1rem; color: #d8b4fe; font-weight: 500; }
.md-desc { color: var(--muted); margin: 0 0 1.3rem; font-size: .93rem; }
.md-settings { display: grid; gap: .45rem; }
.md-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem .75rem; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--border); font-size: .82rem; }
.md-row span:first-child { color: var(--muted); }
.md-row span:last-child { font-family: var(--mono); color: var(--fg); }
.md-settings-h { font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: .2rem; }
.stage {
  position: relative; height: clamp(560px, 62vw, 640px); border-radius: 24px; overflow: hidden; border: 1px solid var(--border-strong);
  box-shadow: 0 50px 120px -40px rgba(124,58,237,.55); user-select: none; -webkit-user-select: none;
}
.stage-sky { position: absolute; inset: 0; background: linear-gradient(180deg, #2a1f5c 0%, #5b3a8f 38%, #c0719a 62%, #f0a37a 72%); }
.pix-sun { position: absolute; width: 90px; height: 90px; right: 18%; top: 44%; background: #ffd9a0; box-shadow: 0 0 80px 30px rgba(255,190,140,.5); image-rendering: pixelated; }
.pix-hills { position: absolute; left: 0; right: 0; bottom: 26%; height: 22%;
  background:
    linear-gradient(#2b1f45, #2b1f45) 0 100%/12% 55% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 12% 100%/10% 80% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 22% 100%/14% 45% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 36% 100%/8% 70% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 44% 100%/16% 38% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 60% 100%/10% 90% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 70% 100%/12% 60% no-repeat,
    linear-gradient(#2b1f45, #2b1f45) 82% 100%/18% 75% no-repeat;
}
.pix-ground { position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 2px, transparent 2px 48px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 2px, transparent 2px 48px),
    linear-gradient(#4a8c3a 0 14px, #6b4a2f 14px);
}
.target-player { position: absolute; left: 50%; bottom: 25%; width: 44px; height: 110px; margin-left: 40px;
  background:
    linear-gradient(#e0ac85, #e0ac85) 50% 0/60% 24% no-repeat,
    linear-gradient(#2fa3c7, #2fa3c7) 50% 26%/80% 36% no-repeat,
    linear-gradient(#3d3a8c, #3d3a8c) 50% 100%/60% 38% no-repeat;
  animation: strafe 5s ease-in-out infinite;
}
@keyframes strafe { 50% { transform: translateX(60px); } }
.esp-box { position: absolute; inset: -8px -10px; border: 1.5px solid #c084fc; box-shadow: 0 0 12px rgba(192,132,252,.7), inset 0 0 12px rgba(192,132,252,.25); opacity: 0; transition: opacity .3s; }
.stage.esp-on .esp-box { opacity: 1; }
.stage.chams-on .target-player { filter: drop-shadow(0 0 0 #e879f9) brightness(1.1) sepia(1) hue-rotate(230deg) saturate(4); }
.esp-name { position: absolute; left: 50%; bottom: 100%; transform: translate(-50%, -6px); font-size: .7rem; background: rgba(0,0,0,.55); padding: .1rem .4rem; border-radius: 4px; white-space: nowrap; color: #fff; }
.esp-name b { color: var(--success); }

.arraylist { position: absolute; right: 14px; top: 14px; z-index: 3; text-align: right; font-family: var(--mono); font-size: .76rem; }
.al-head { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font); font-weight: 700; letter-spacing: .06em; padding: .3rem .6rem; background: rgba(10,8,18,.72); border-radius: 6px 6px 0 0; }
.arraylist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: flex-end; }
.arraylist li { padding: .12rem .6rem; background: rgba(10,8,18,.72); color: #f3e8ff; border-right: 2px solid; border-image: linear-gradient(#8b5cf6, #d946ef) 1; animation: alin .35s var(--ease) both; }
@keyframes alin { from { opacity: 0; transform: translateX(14px); } }
.target-hud { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%) translateY(10px); z-index: 3; display: flex; gap: .7rem; align-items: center; padding: .6rem .8rem; border-radius: 12px; background: rgba(10,8,18,.8); border: 1px solid var(--border-strong); opacity: 0; transition: opacity .35s, transform .35s var(--ease); min-width: 210px; }
.stage.thud-on .target-hud { opacity: 1; transform: translateX(-50%); }
.th-ava { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(#5a3a22 0 30%, #e0ac85 30% 100%); box-shadow: inset 0 -8px 0 #c98f6a; }
.target-hud b { font-size: .85rem; }
.th-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.1); margin: .25rem 0; overflow: hidden; }
.th-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--success), #a3e635); }
.target-hud small { color: var(--muted); font-size: .66rem; }

.gui {
  position: absolute; left: 24px; top: 24px; z-index: 5; width: min(640px, calc(100% - 48px));
  border-radius: 14px; background: rgba(16,14,27,.94); border: 1px solid rgba(200,190,255,.16);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(0,0,0,.4); backdrop-filter: blur(10px);
  transition: opacity .25s, transform .25s var(--ease); font-size: .84rem;
}
.gui.hidden { opacity: 0; transform: scale(.96); pointer-events: none; }
.gui-bar { display: flex; align-items: center; gap: 1rem; padding: .6rem .8rem; border-bottom: 1px solid var(--border); cursor: grab; }
.gui-bar:active { cursor: grabbing; }
.gui-title { display: flex; align-items: center; gap: .45rem; font-weight: 700; }
.gui-tabs { display: flex; gap: .8rem; flex: 1; font-size: .8rem; color: var(--faint); }
.gui-tabs b { color: var(--fg); font-weight: 600; }
.gui-body { display: grid; grid-template-columns: 110px 1fr 200px; height: 320px; }
.gui-rail { border-right: 1px solid var(--border); padding: .5rem; display: flex; flex-direction: column; gap: .2rem; }
.gui-rail button { text-align: left; padding: .45rem .6rem; border-radius: 8px; color: var(--muted); font-size: .8rem; transition: background .2s, color .2s; }
.gui-rail button:hover { background: rgba(255,255,255,.05); color: var(--fg); }
.gui-rail button.on { background: rgba(139,92,246,.18); color: #fff; box-shadow: inset 2px 0 0 var(--violet); }
.gui-list { list-style: none; margin: 0; padding: .5rem; overflow-y: auto; scrollbar-width: thin; }
.gui-list li { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .5rem .6rem; border-radius: 8px; cursor: pointer; transition: background .15s; }
.gui-list li:hover { background: rgba(255,255,255,.04); }
.gui-list li.sel { background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px var(--border-strong); }
.gui-list .key { font-family: var(--mono); font-size: .68rem; color: var(--faint); margin-left: auto; margin-right: .5rem; }
.switch { flex: none; width: 30px; height: 17px; border-radius: 10px; background: #2b2640; position: relative; transition: background .25s; }
.switch::after { content: ""; position: absolute; left: 2px; top: 2px; width: 13px; height: 13px; border-radius: 50%; background: #8a86a3; transition: transform .25s var(--ease), background .25s; }
.on > .switch, li.on .switch { background: var(--grad-btn); }
li.on .switch::after { transform: translateX(13px); background: #fff; }
li.on .name { color: #fff; }
.gui-list .name { color: var(--muted); }
.gui-inspector { border-left: 1px solid var(--border); padding: .8rem; overflow-y: auto; }
.gui-inspector h4 { margin: 0; font-size: .95rem; }
.gui-inspector .tag { color: #d8b4fe; font-size: .74rem; margin: 0 0 .7rem; }
.gui-inspector .desc { color: var(--muted); font-size: .74rem; line-height: 1.5; margin: 0 0 .8rem; }
.slider { margin-bottom: .7rem; }
.slider label { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); margin-bottom: .3rem; }
.slider label span { font-family: var(--mono); color: var(--fg); }
.slider input { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 3px; background: linear-gradient(90deg, var(--violet) var(--v, 50%), #2b2640 var(--v, 50%)); outline: none; }
.slider input::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(139,92,246,.4); cursor: pointer; }
.slider input::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(139,92,246,.4); cursor: pointer; }
.gui-foot { padding: .5rem .8rem; border-top: 1px solid var(--border); }
.gui-reopen { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 4; padding: .8rem 1.2rem; border-radius: 12px; background: rgba(10,8,18,.8); border: 1px solid var(--border-strong); opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(8px); }
.gui.hidden ~ .gui-reopen { opacity: 1; pointer-events: auto; }
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.video { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); transform-style: preserve-3d; }
.video:hover { border-color: rgba(167,139,250,.4); box-shadow: 0 30px 70px -30px rgba(168,85,247,.6); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .8s var(--ease), filter .5s; filter: saturate(.9) brightness(.8); }
.video:hover .video-thumb img { transform: scale(1.08); filter: saturate(1.1) brightness(.9); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,6,13,.85)); }
.play { position: absolute; left: 50%; top: 50%; z-index: 2; width: 68px; height: 68px; margin: -34px 0 0 -34px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(139,92,246,.75); backdrop-filter: blur(6px); box-shadow: 0 0 0 10px rgba(139,92,246,.2), 0 10px 40px rgba(124,58,237,.6); transition: transform .4s var(--ease); }
.play svg { margin-left: 3px; }
.video:hover .play { transform: scale(1.12); }
.badge-live { position: absolute; z-index: 2; left: 14px; top: 14px; font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; padding: .3rem .6rem; border-radius: 6px; background: rgba(52,211,153,.15); color: var(--success); border: 1px solid rgba(52,211,153,.4); backdrop-filter: blur(6px); }
.video-meta { padding: 1.2rem 1.4rem 1.4rem; }
.video-meta h3 { margin: 0 0 .35rem; font-size: 1.15rem; letter-spacing: -.02em; }
.video-meta p { margin: 0 0 .8rem; color: var(--muted); font-size: .92rem; }
.link-arrow { font-size: .86rem; color: #c4b5fd; font-weight: 500; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.how-card { --spot-x: 50%; --spot-y: 50%; position: relative; padding: 1.6rem; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: border-color .3s, transform .4s var(--ease); }
.how-card:hover { border-color: rgba(167,139,250,.35); transform: translateY(-4px); }
.how-num { position: absolute; right: 1.2rem; top: 1rem; font-size: 3rem; font-weight: 600; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(167,139,250,.22); }
.how-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.2rem; color: #d8b4fe; background: linear-gradient(145deg, rgba(139,92,246,.25), rgba(217,70,239,.08)); border: 1px solid rgba(167,139,250,.3); }
.how-ico svg { width: 22px; height: 22px; }
.how-card h3 { margin: 0 0 .5rem; font-size: 1.12rem; letter-spacing: -.015em; }
.how-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.price { --spot-x: 50%; --spot-y: 50%; position: relative; display: flex; flex-direction: column; padding: 2rem 1.7rem 1.7rem; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); transition: transform .4s var(--ease), border-color .3s; overflow: hidden; }
.price:hover { transform: translateY(-6px); border-color: rgba(167,139,250,.35); }
.price h3 { margin: 0; font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.amount { margin: .6rem 0 1.4rem; font-size: 3rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.amount .cur { font-size: 1.6rem; vertical-align: .9rem; margin-right: .1rem; color: #c4b5fd; }
.amount small { font-size: .9rem; font-weight: 500; color: var(--faint); letter-spacing: 0; margin-left: .3rem; }
.price ul { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .7rem; flex: 1; }
.price li { display: flex; gap: .6rem; align-items: center; font-size: .92rem; color: #d6d2ea; }
.price li::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; background: rgba(139,92,246,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4b5fd' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.price li.hl { color: #f0abfc; font-weight: 500; }
.price-badge { position: absolute; top: 1.4rem; right: 1.4rem; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 999px; color: #fff; background: var(--grad-btn); }
.price-badge.alt { background: rgba(255,255,255,.06); color: #e9d5ff; border: 1px solid rgba(167,139,250,.35); }
.price.featured { border: 0; background: transparent; padding: calc(2rem + 1px) calc(1.7rem + 1px) calc(1.7rem + 1px); transform: scale(1.035); z-index: 1; }
.price.featured:hover { transform: scale(1.035) translateY(-6px); }
.price.featured::before {
  content: ""; position: absolute; inset: -60%; z-index: -2;
  background: conic-gradient(from 0deg, transparent 0 55%, #8b5cf6 70%, #d946ef 82%, #f472b6 88%, transparent 100%);
  animation: spin 5s linear infinite;
}
.price.featured::after { content: ""; position: absolute; inset: 1px; border-radius: 21px; z-index: -1; background: linear-gradient(180deg, #1c1631, #110e1e 70%); }
.price.featured { box-shadow: 0 40px 90px -30px rgba(168,85,247,.7); }
.dl-layout { max-width: 1040px; margin: 0 auto; }
.dl-action { display: flex; justify-content: center; margin: 0 0 clamp(3rem, 6vw, 4.5rem); }
.dl-action .dl-btn { --h: 68px; padding: 0 3rem; font-size: 1.25rem; border-radius: 18px; box-shadow: 0 20px 60px -12px rgba(217,70,239,.75), inset 0 1px 0 rgba(255,255,255,.3); }
.dl-steps-h { text-align: center; }
.dl-steps ol { grid-template-columns: repeat(4, 1fr); }
.dl-steps li { flex-direction: column; }
.dl-card { position: relative; border-radius: 24px; padding: 1px; overflow: hidden; isolation: isolate; box-shadow: 0 40px 90px -30px rgba(168,85,247,.65); }
.dl-card::before {
  content: ""; position: absolute; inset: -60%; z-index: -2;
  background: conic-gradient(from 0deg, transparent 0 55%, #8b5cf6 70%, #d946ef 82%, #f472b6 88%, transparent 100%);
  animation: spin 6s linear infinite;
}
.dl-card-inner { position: relative; border-radius: 23px; padding: 1.7rem; background: linear-gradient(180deg, #1c1631, #100d1c 75%); }
.dl-top { display: flex; justify-content: space-between; align-items: center; }
.dl-badges { display: flex; gap: .4rem; }
.dl-badge { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 999px; color: #e9d5ff; background: rgba(255,255,255,.05); border: 1px solid rgba(167,139,250,.35); }
.dl-badge.free { color: #052e1f; background: var(--success); border-color: transparent; box-shadow: 0 0 18px rgba(52,211,153,.45); }
.dl-head { display: flex; gap: 1rem; align-items: center; margin: 1.5rem 0 1.6rem; }
.dl-head img { border-radius: 14px; box-shadow: 0 12px 30px -8px rgba(139,92,246,.8); }
.dl-head h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.03em; }
.dl-head p { margin: .15rem 0 0; transition: opacity .2s; }
.dl-label { margin: 0 0 .55rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.dl-versions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; margin-bottom: 1.2rem; }
.dl-ver { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .7rem .5rem; border-radius: 12px; font-family: var(--mono); font-size: .88rem; font-weight: 600; color: #fff; border: 1px solid rgba(192,132,252,.45); background: linear-gradient(160deg, rgba(124,58,237,.28), rgba(217,70,239,.08)); }
.dl-ver::before { content: "✓"; font-size: .7rem; color: var(--success); margin-bottom: .1rem; }
.dl-ver em { display: block; font-style: normal; font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #f0abfc; }
.dl-btn { --h: 58px; font-size: 1.05rem; }
.dl-btn b { font-family: var(--mono); }
.dl-meta { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.dl-meta li { padding: .6rem .7rem; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
.dl-meta small { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.dl-meta span { font-size: .88rem; font-weight: 600; }
.dl-steps-h { margin: 0 0 1rem; font-size: 1.2rem; letter-spacing: -.02em; }
.dl-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; position: relative; }
.dl-steps li { --spot-x: 50%; --spot-y: 50%; position: relative; display: flex; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: border-color .3s, transform .3s var(--ease); }
.dl-steps li:hover { border-color: rgba(167,139,250,.35); transform: translateX(4px); }
.dl-num { flex: none; width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-weight: 600; color: #fff; background: var(--grad-btn); box-shadow: 0 6px 16px -6px rgba(168,85,247,.8); }
.dl-steps b { display: block; margin-bottom: .15rem; }
.dl-steps p { margin: 0; color: var(--muted); font-size: .9rem; }
.dl-steps a { color: #c4b5fd; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(196,181,253,.4); }
.dl-steps code { font-family: var(--mono); font-size: .8em; padding: .1em .4em; border-radius: 5px; background: rgba(255,255,255,.06); color: #e9d5ff; }
.cta-wrap { padding-top: 0; }
.cta { position: relative; text-align: center; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; border-radius: 28px; overflow: hidden; border: 1px solid var(--border-strong); background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,.35), transparent 60%), rgba(13,11,23,.75); }
.cta-glow { position: absolute; left: 50%; top: -40%; width: 70%; height: 80%; transform: translateX(-50%); background: radial-gradient(circle, rgba(217,70,239,.35), transparent 65%); filter: blur(40px); animation: breathe 6s ease-in-out infinite; }
.cta > * { position: relative; }
.cta-logo { margin: 0 auto 1.4rem; border-radius: 16px; box-shadow: 0 16px 40px -10px rgba(139,92,246,.8); animation: bob 5s ease-in-out infinite; }
.cta .lead { margin: 0 auto 2rem; }
.footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; background: rgba(7,6,13,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-note { margin: .8rem 0 0; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.footer-col a { color: var(--muted); transition: color .2s; width: fit-content; }
.footer-col a:hover { color: var(--fg); }
.footer-h { margin: 0 0 .3rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.no-js .reveal { opacity: 1; transform: none; filter: none; }
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .mobile-menu { display: grid; gap: .2rem; padding: 0 16px; max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .45s var(--ease); background: rgba(7,6,13,.94); backdrop-filter: blur(18px); }
  .nav.open .mobile-menu { max-height: 420px; padding: .5rem 16px 1rem; border-bottom: 1px solid var(--border); }
  .nav.open { background: rgba(7,6,13,.94); }
  .mobile-menu a { padding: .75rem .5rem; border-bottom: 1px solid var(--border); color: var(--muted); }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { max-width: 440px; margin-top: 1rem; }
  .split { grid-template-columns: 1fr; }
  .mod-layout { grid-template-columns: 1fr; }
  .mod-detail { position: relative; top: 0; order: -1; }
  .md-inner { min-height: 0; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: 1fr; max-width: 440px; }
  .dl-steps ol { grid-template-columns: 1fr 1fr; }
  .price.featured, .price.featured:hover { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hide-sm { display: none; }
  .hero { padding-top: 96px; }
  .hero-visual { max-width: 320px; }
  .sat { display: none; }
  .hud-card { left: -2%; top: 2%; transform: scale(.85); transform-origin: top left; }
  .scan-chip { right: -2%; bottom: 4%; }
  .stats { width: 100%; }
  .stat { flex: 1; padding: .8rem .9rem; }
  .stat dd { font-size: 1.2rem; white-space: nowrap; }
  .stat { padding: .8rem .7rem; }
  .scanner-body { grid-template-columns: 1fr; }
  .scanner-side { display: none; }
  .scan-info { grid-template-columns: 1fr; }
  .videos, .how-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr 1fr; }
  .mod { padding: .85rem; }
  .mod-cat { display: none; }
  .stage { height: 640px; }
  .gui { left: 10px; top: 10px; width: calc(100% - 20px); }
  .gui-body { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; height: 430px; }
  .gui-rail { flex-direction: row; border-right: 0; border-bottom: 1px solid var(--border); overflow-x: auto; }
  .gui-rail button { white-space: nowrap; }
  .gui-inspector { border-left: 0; border-top: 1px solid var(--border); max-height: 150px; }
  .gui-tabs span, .gui-foot { display: none; }
  .arraylist { top: auto; bottom: 34%; font-size: .66rem; }
  .target-hud { bottom: 3%; }
  .footer-grid { grid-template-columns: 1fr; }
  .dl-steps ol { grid-template-columns: 1fr; }
  .dl-action .dl-btn { width: 100%; }
}

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