:root {
  --bg: #030509;
  --bg-2: #060a12;
  --panel: rgba(6, 10, 18, 0.55);
  --panel-2: rgba(9, 14, 24, 0.72);
  --text: #deecff;
  --muted: #6a7890;
  --neon-1: #00f7ff;
  --neon-2: #00a3ff;
  --neon-3: #ff9f43;
  --violet: #7a5cff;
  --danger: #ff3355;
  --success: #44ff44;
  --border: rgba(0, 247, 255, 0.12);
  --border-2: rgba(0, 247, 255, 0.28);
  --maxw: 1180px;
  --f-display: Orbitron, sans-serif;
  --f-ui: Rajdhani, Inter, sans-serif;
  --f-mono: 'IBM Plex Mono', Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(0, 247, 255, .22); color: #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0, 247, 255, .28); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 247, 255, .5); }
* { scrollbar-width: thin; scrollbar-color: rgba(0, 247, 255, .28) var(--bg); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 1px solid var(--neon-1); outline-offset: 3px; border-radius: 4px; }

.bg {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(0, 163, 255, .13), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(0, 247, 255, .09), transparent 55%),
    radial-gradient(900px 600px at 100% 120%, rgba(255, 159, 67, .05), transparent 55%),
    var(--bg);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 247, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 247, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 62% at 50% 0%, #000 18%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 90% 62% at 50% 0%, #000 18%, transparent 76%);
  animation: gridDrift 46s linear infinite;
}
@keyframes gridDrift { to { background-position: 56px 56px; } }
.grain {
  position: fixed; inset: -50%; z-index: 40; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 1%); }
  50% { transform: translate(1%, -1.5%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 90;
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2), var(--violet));
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 0 8px rgba(0, 247, 255, .5);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

.hud-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-ui); font-weight: 600; font-size: 11px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px; white-space: nowrap;
}
.hud-label b { color: var(--neon-1); font-weight: 600; }
.hud-label::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, var(--border), transparent); }
.sec-head--center .hud-label { justify-content: center; }
.sec-head--center .hud-label::after { display: none; }

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 5, 9, .55);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav.scrolled { background: rgba(3, 5, 9, .82); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { line-height: 1; }
.brand-title {
  display: block; font-family: var(--f-display); font-weight: 700; font-size: 17px;
  letter-spacing: .22em; color: #fff; text-shadow: 0 0 12px var(--neon-1);
}
.brand-subtitle {
  display: block; font-family: var(--f-ui); font-size: 7.5px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--neon-1); opacity: .65; margin-top: 3px;
}
.nav-links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav-links > a:not(.btn) {
  font-family: var(--f-ui); font-weight: 600; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .2s, text-shadow .2s;
}
.nav-links > a:not(.btn):hover { color: var(--neon-1); text-shadow: 0 0 8px rgba(0, 247, 255, .5); }
@media (max-width: 760px) { .nav-links > a:not(.btn) { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 34px; padding: 0 18px; border-radius: 4px;
  border: 1px solid rgba(0, 247, 255, .3); background: rgba(0, 247, 255, .05);
  color: var(--neon-1); font-family: var(--f-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: all .2s ease; white-space: nowrap;
}
.btn:hover {
  background: rgba(0, 247, 255, .15); border-color: var(--neon-1);
  box-shadow: 0 0 14px rgba(0, 247, 255, .32); text-shadow: 0 0 6px var(--neon-1);
}
.btn svg { width: 15px; height: 15px; flex: none; transform: translateY(-1px); }
/* Rajdhani caps sit high in their line box; the label drops back to the
   button's middle while the icon rides a pixel above it. */
.btn .btn-label { transform: translateY(1px); }
/* The extra pixel of height is added below the content: centring would push
   the label and icon down by half of it, so both are pulled back up. */
.btn--lg { height: 47px; padding: 0 28px; font-size: 13px; }
.btn--lg .btn-label { transform: translateY(1.4px); }
.btn--lg svg { transform: translateY(-.5px); }
.btn--ghost { border-color: rgba(0, 247, 255, .16); background: transparent; color: var(--muted); }
.btn--ghost:hover { border-color: rgba(0, 247, 255, .5); color: var(--text); box-shadow: none; text-shadow: none; }
/* Nav button sits tighter on its sides and a whole pixel above the row's
   centre line — a fractional offset would smear its border on 1x screens. */
.nav-links .btn { padding: 0 16px; transform: translateY(-1px); }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  height: 24px; padding: 0 10px; border-radius: 4px;
  border: 1px solid var(--border); background: rgba(0, 0, 0, .25);
  font-family: var(--f-ui); font-weight: 600; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.chip--mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: .04em; text-transform: none; }
.chip--on { border-color: rgba(68, 255, 68, .35); color: var(--success); background: rgba(68, 255, 68, .05); }
.chip--cyan { border-color: rgba(0, 247, 255, .3); color: var(--neon-1); background: rgba(0, 247, 255, .05); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse { 50% { opacity: .35; } }

.hero { padding: 76px 0 40px; text-align: center; }
.hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
/* Optical centering in the status row: the caps drop a pixel; the mono
   version chip already sits right. */
.hero-chips .chip-label { transform: translateY(1px); }
.hero-chips #verChip .chip-label { transform: none; }
.hero h1 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.2rem, 5.6vw, 4.1rem); line-height: 1.06; letter-spacing: .06em;
  color: #fff; text-shadow: 0 0 26px rgba(0, 247, 255, .35), 0 0 90px rgba(0, 163, 255, .25);
  margin-bottom: 24px; text-transform: uppercase;
}
.hero h1 .accent { color: var(--neon-1); text-shadow: 0 0 18px rgba(0, 247, 255, .75), 0 0 60px rgba(0, 247, 255, .4); }
.hero-sub {
  max-width: 660px; margin: 0 auto 34px; font-size: 1.16rem; color: var(--muted);
  font-family: var(--f-ui); font-weight: 500;
}
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-specs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

.hero-stage { max-width: 1010px; margin: 62px auto 0; position: relative; }
.hero-shot { position: relative; }
.hero-shot::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -44px; height: 64px;
  background: radial-gradient(ellipse, rgba(0, 200, 255, .32), transparent 70%);
  filter: blur(22px); z-index: -1;
}
.float-chip {
  position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 7px;
  padding: 13px 16px; border-radius: 10px;
  background: var(--panel-2); border: 1px solid var(--border-2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px -18px rgba(0, 200, 255, .45), inset 0 0 24px rgba(0, 247, 255, .04);
  text-align: left;
}
.float-chip .fc-label { font-family: var(--f-ui); font-weight: 600; font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.float-chip .fc-value { font-family: var(--f-mono); font-size: 12.5px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.float-chip .fc-value b { color: var(--success); font-weight: 500; }
.float-chip .fc-value i { color: var(--neon-1); font-style: normal; }
.float-chip--tl { top: 46px; left: -74px; }
.float-chip--br { bottom: 74px; right: -66px; }
@media (max-width: 1220px) { .float-chip--tl { left: 8px; } .float-chip--br { right: 8px; } }
@media (max-width: 640px) { .float-chip { display: none; } }

.frame { position: relative; border-radius: 12px; border: 1px solid var(--border-2); background: #05080f; overflow: visible; }
.frame-clip { border-radius: 12px; overflow: hidden; }
.frame-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: rgba(255, 255, 255, .025); border-bottom: 1px solid var(--border);
}
.frame-bar i { width: 10px; height: 10px; border-radius: 50%; background: #232d3f; display: inline-block; }
.frame-bar i:nth-child(1) { background: #ff5f57; }
.frame-bar i:nth-child(2) { background: #febc2e; }
.frame-bar i:nth-child(3) { background: #28c840; }
.frame-bar span { margin-left: 10px; font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.frame-bar .frame-dot { margin-left: auto; display: flex; align-items: center; gap: 6px; font-family: var(--f-ui); font-size: 9.5px; font-weight: 600; letter-spacing: .22em; color: var(--success); text-transform: uppercase; }
.frame img { width: 100%; height: auto; aspect-ratio: 1440 / 830; object-fit: cover; object-position: top center; }
.frame img.crop-916 { aspect-ratio: 16 / 9; }
.frame img.crop-1610 { aspect-ratio: 8 / 5; }
.frame img.crop-deck { aspect-ratio: 1440 / 640; }
.frame::before, .frame::after,
.frame .hud-corner::before, .frame .hud-corner::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none; z-index: 4;
  border: 1px solid rgba(0, 247, 255, .55);
}
.frame::before { top: -7px; left: -7px; border-right: none; border-bottom: none; }
.frame::after { top: -7px; right: -7px; border-left: none; border-bottom: none; }
.frame .hud-corner::before { bottom: -7px; left: -7px; border-right: none; border-top: none; }
.frame .hud-corner::after { bottom: -7px; right: -7px; border-left: none; border-top: none; }

.marquee-belt { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 84px; background: rgba(0, 0, 0, .22); overflow: hidden; }
.marquee { display: flex; overflow: hidden; padding: 15px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex: none; align-items: center; gap: 44px; padding-right: 44px; animation: marq 36s linear infinite; }
.marquee-track span {
  font-family: var(--f-ui); font-weight: 600; font-size: 12px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee-track b { color: var(--neon-1); font-size: 9px; text-shadow: 0 0 8px rgba(0, 247, 255, .6); }
@keyframes marq { to { transform: translateX(-100%); } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 74px 0 10px; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)) padding-box,
    linear-gradient(145deg, rgba(0, 231, 255, .22), rgba(122, 92, 255, .14)) border-box;
  border: 1px solid transparent; border-radius: 12px; padding: 20px 22px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.stat-label { font-family: var(--f-ui); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stat-value { font-family: var(--f-display); font-size: 27px; font-weight: 700; color: var(--neon-1); text-shadow: 0 0 12px rgba(0, 247, 255, .5); line-height: 1.1; }
.stat-value small { font-size: 12px; font-family: var(--f-ui); color: var(--muted); text-shadow: none; letter-spacing: .1em; margin-left: 6px; }
.stat-value .inf { font-family: Inter, sans-serif; font-weight: 600; }

.sec { padding: 88px 0 0; }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--f-display); font-weight: 800; letter-spacing: .04em;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem); line-height: 1.18; color: #fff;
  text-shadow: 0 0 22px rgba(0, 247, 255, .22); margin-bottom: 14px;
}
.sec-head h2 .accent { color: var(--neon-1); text-shadow: 0 0 14px rgba(0, 247, 255, .6); }
.sec-head p { color: var(--muted); font-family: var(--f-ui); font-weight: 500; font-size: 1.08rem; }

.features { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.feature { grid-column: span 3; position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--border); border-radius: 12px; background: var(--panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform .25s, border-color .25s, box-shadow .25s; }
.feature--wide { grid-column: span 6; }
@media (max-width: 980px) { .feature { grid-column: span 6; } .feature--wide { grid-column: span 12; } }
@media (max-width: 660px) { .feature, .feature--wide { grid-column: span 12; } }
.feature:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 22px 54px -24px rgba(0, 200, 255, .4); }
.feature::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 247, 255, .09), transparent 65%);
}
.feature:hover::after { opacity: 1; }
.feature-ico {
  width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(0, 247, 255, .07); border: 1px solid rgba(0, 247, 255, .25);
  box-shadow: inset 0 0 18px rgba(0, 247, 255, .06);
}
.feature-ico svg { width: 22px; height: 22px; color: var(--neon-1); filter: drop-shadow(0 0 6px rgba(0, 247, 255, .55)); }
.feature h3 { font-family: var(--f-ui); font-weight: 700; font-size: 1.12rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; font-family: var(--f-ui); font-weight: 500; }
.feature .mini-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.show { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.show:last-child { margin-bottom: 0; }
.show.rev .show-txt { order: 2; }
.show-txt h2 {
  font-family: var(--f-display); font-weight: 800; letter-spacing: .04em;
  font-size: clamp(1.45rem, 3vw, 2.05rem); color: #fff; line-height: 1.2;
  text-shadow: 0 0 20px rgba(0, 247, 255, .2); margin-bottom: 16px;
}
.show-txt > p { color: var(--muted); font-family: var(--f-ui); font-weight: 500; font-size: 1.06rem; margin-bottom: 20px; }
.show-list { list-style: none; display: grid; gap: 11px; margin-bottom: 4px; }
.show-list li { display: flex; gap: 11px; align-items: flex-start; font-family: var(--f-ui); font-weight: 500; font-size: 1.02rem; color: var(--text); }
.show-list li svg { width: 17px; height: 17px; color: var(--neon-1); flex: none; margin-top: 4px; filter: drop-shadow(0 0 5px rgba(0, 247, 255, .5)); }
.show-list b { font-weight: 600; }
@media (max-width: 900px) {
  .show { grid-template-columns: 1fr; gap: 30px; }
  .show.rev .show-txt { order: 0; }
}

.term {
  margin-top: 26px; border-radius: 10px; border: 1px solid var(--border);
  background: rgba(0, 0, 0, .38); overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 247, 255, .03);
}
.term-bar { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, .02); }
.term-bar span { font-family: var(--f-mono); font-size: 10.5px; color: var(--muted); }
.term-bar .dot { width: 5px; height: 5px; }
.term-body { padding: 15px 16px 17px; font-family: var(--f-mono); font-size: 12.5px; line-height: 1.85; }
.term-body .t-line { display: block; white-space: pre-wrap; }
.term-body .t-prompt { color: var(--neon-1); }
.term-body .t-dim { color: var(--muted); }
.term-body .t-ok { color: var(--success); }
.term-caret { display: inline-block; width: 7px; height: 13px; background: var(--neon-1); vertical-align: -2px; margin-left: 2px; box-shadow: 0 0 8px var(--neon-1); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

.term--tui { margin-top: 0; box-shadow: 0 30px 80px -34px rgba(0, 200, 255, .3), inset 0 0 30px rgba(0, 247, 255, .03); }
.tui { font-family: var(--f-mono); font-size: 12.5px; line-height: 1.8; }
.tui-head { display: flex; align-items: center; gap: 14px; padding: 10px 14px; border-bottom: 1px dashed rgba(0, 247, 255, .2); flex-wrap: wrap; }
.tui-logo { color: var(--neon-1); letter-spacing: .24em; font-weight: 500; text-shadow: 0 0 10px rgba(0, 247, 255, .55); }
.tui-tabs { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.tui-tabs b { font-weight: 500; color: var(--muted); padding: 0 8px; border: 1px solid transparent; border-radius: 3px; }
.tui-tabs b.on { color: var(--neon-1); border-color: rgba(0, 247, 255, .35); background: rgba(0, 247, 255, .06); text-shadow: 0 0 6px rgba(0, 247, 255, .5); }
.tui-rows { padding: 12px 14px 8px; overflow-x: auto; }
.tui-row { display: grid; grid-template-columns: 14px minmax(118px, 1fr) 96px 62px 44px; gap: 10px; align-items: center; white-space: nowrap; padding: 2px 6px; border-radius: 3px; min-width: 380px; }
.tui-row.sel { background: rgba(0, 247, 255, .07); outline: 1px solid rgba(0, 247, 255, .22); color: var(--text); }
.tui-row .st-on { color: var(--success); text-shadow: 0 0 6px rgba(68, 255, 68, .35); }
.tui-row .st-off { color: var(--muted); }
.tui-port { color: var(--neon-1); }
.tui-badge { justify-self: start; padding: 0 5px; border: 1px solid rgba(255, 159, 67, .4); border-radius: 3px; color: var(--neon-3); font-size: 10px; line-height: 1.6; }
.tui-keys { padding: 9px 14px 12px; border-top: 1px dashed rgba(0, 247, 255, .2); color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.tui-keys b { color: var(--neon-1); font-weight: 500; }

.deck { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.deck.rev .show-txt { order: 2; }
@media (max-width: 900px) { .deck { grid-template-columns: 1fr; gap: 30px; } .deck.rev .show-txt { order: 0; } }
.modules-panel { border: 1px solid var(--border-2); border-radius: 12px; background: var(--panel-2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); overflow: hidden; box-shadow: 0 30px 80px -34px rgba(0, 200, 255, .35); }
.modules-panel-head { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--border); }
.modules-panel-head .mp-title { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #fff; text-shadow: 0 0 10px rgba(0, 247, 255, .4); }
.modules-panel-head .mp-sub { margin-left: auto; font-family: var(--f-ui); font-weight: 600; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.modules-panel-head .mp-sub i { color: var(--neon-1); font-style: normal; }
.modules-table { width: 100%; border-collapse: collapse; font-family: var(--f-ui); font-size: 13.5px; }
.modules-table thead th {
  text-align: left; font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  padding: 11px 18px; border-bottom: 1px solid var(--border);
}
.modules-table tbody td { padding: 12px 18px; border-bottom: 1px solid rgba(255, 255, 255, .05); vertical-align: middle; white-space: nowrap; }
.modules-table tbody tr:last-child td { border-bottom: none; }
.modules-table tbody tr:hover { background: rgba(0, 247, 255, .04); }
.modules-table .m-name { font-family: var(--f-mono); font-size: 13px; color: var(--text); font-weight: 500; }
.modules-table .m-num { font-family: var(--f-mono); font-size: 12px; color: var(--neon-1); }
.m-status {
  display: inline-block; padding: 3px 9px; border-radius: 4px; border: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--f-ui); font-weight: 600; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); background: rgba(255, 255, 255, .02); transition: all .35s;
}
.m-status.on { border-color: rgba(68, 255, 68, .4); color: var(--success); background: rgba(68, 255, 68, .06); box-shadow: 0 0 10px rgba(68, 255, 68, .15); text-shadow: 0 0 6px rgba(68, 255, 68, .5); }
.m-status.wait { border-color: rgba(255, 159, 67, .4); color: var(--neon-3); background: rgba(255, 159, 67, .06); box-shadow: 0 0 10px rgba(255, 159, 67, .12); }
.m-status.deny { border-color: rgba(255, 51, 85, .4); color: var(--danger); background: rgba(255, 51, 85, .06); box-shadow: 0 0 10px rgba(255, 51, 85, .12); }
.boot-cell { opacity: 0; transform: translateY(4px); transition: opacity .4s, transform .4s; }
.boot-cell.in { opacity: 1; transform: none; }
@media (max-width: 640px) {
  .modules-table { font-size: 12px; }
  .modules-table thead th, .modules-table tbody td { padding-left: 10px; padding-right: 10px; }
  .modules-table .m-name, .modules-table .m-num { font-size: 11.5px; }
}

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 15px; }
.app-card {
  display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.app-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 18px 46px -22px rgba(0, 200, 255, .45); }
.app-ico {
  width: 46px; height: 46px; flex: none; border-radius: 10px; display: grid; place-items: center;
  background: rgba(0, 247, 255, .07); border: 1px solid rgba(0, 247, 255, .22); color: var(--neon-1); overflow: hidden;
  box-shadow: inset 0 0 16px rgba(0, 247, 255, .05);
}
.app-ico svg, .app-ico img { width: 26px; height: 26px; }
.app-ico .app-ico-letter {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 17px; line-height: 1; text-align: center;
  color: var(--neon-1); text-shadow: 0 0 8px rgba(0, 247, 255, .6);
}
.app-meta { flex: 1 1 0; min-width: 0; }
.app-name { font-family: var(--f-ui); font-weight: 700; font-size: 1.02rem; letter-spacing: .05em; text-transform: uppercase; display: flex; align-items: flex-start; gap: 8px; }
.app-ver { margin-left: auto; align-self: flex-start; font-family: var(--f-mono); font-size: 10.5px; color: var(--neon-1); border: 1px solid rgba(0, 247, 255, .25); border-radius: 4px; padding: 1px 6px; font-weight: 500; }
.app-cat { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--neon-3); font-family: var(--f-ui); font-weight: 600; margin: 3px 0 4px; }
.app-desc { color: var(--muted); font-size: .88rem; font-family: var(--f-ui); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.store-hint { text-align: center; color: var(--muted); font-family: var(--f-mono); font-size: 11.5px; margin-top: 28px; letter-spacing: .04em; }
.store-hint b { color: var(--success); font-weight: 500; }

.cta-sec { padding: 110px 0 96px; position: relative; overflow: hidden; }
.watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-display); font-weight: 900; font-size: clamp(90px, 17vw, 230px);
  letter-spacing: .08em; color: transparent; -webkit-text-stroke: 1px rgba(0, 247, 255, .07);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.cta {
  position: relative; text-align: center; padding: 66px 34px 62px; border-radius: 14px;
  background:
    radial-gradient(640px 260px at 50% 0%, rgba(0, 200, 255, .14), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .008)) padding-box;
  border: 1px solid transparent;
  background-clip: padding-box, padding-box;
  box-shadow: inset 0 0 0 1px rgba(0, 247, 255, .18), 0 40px 110px -40px rgba(0, 200, 255, .35);
}
.cta .hud-label { justify-content: center; }
.cta .hud-label::after { display: none; }
.cta h2 {
  font-family: var(--f-display); font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  font-size: clamp(1.7rem, 4vw, 2.7rem); color: #fff;
  text-shadow: 0 0 24px rgba(0, 247, 255, .3); margin-bottom: 14px;
}
.cta p { color: var(--muted); font-family: var(--f-ui); font-weight: 500; margin-bottom: 30px; font-size: 1.1rem; }
.cta-specs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

.footer { border-top: 1px solid var(--border); padding: 34px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.footer-brand .brand-title { font-size: 13px; }
.footer-brand .brand-subtitle { font-size: 6.5px; }
.footer-note { color: var(--muted); font-family: var(--f-ui); font-weight: 500; font-size: .92rem; }
.footer-note a b { color: var(--neon-1); font-weight: 600; }
.footer-note a:hover b { text-shadow: 0 0 8px rgba(0, 247, 255, .6); }

.reveal { opacity: 0; transform: translateY(26px); filter: blur(7px); transition: opacity .8s ease, transform .8s ease, filter .8s ease; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .bg-grid, .dot, .grain, .marquee-track, .term-caret { animation: none; }
}
[hidden] { display: none !important; }
