/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --bg:        #050310;
  --bg2:       #08061a;
  --surface:   #0c0a20;
  --card:      #100e26;
  --card-h:    #16132e;
  --b0:        rgba(139,92,246,.08);
  --b1:        rgba(139,92,246,.16);
  --b2:        rgba(139,92,246,.30);
  --b3:        rgba(139,92,246,.50);
  --v:         #8b5cf6;
  --v2:        #a78bfa;
  --v3:        #c4b5fd;
  --vd:        #6d28d9;
  --vdim:      rgba(139,92,246,.08);
  --vglow:     rgba(139,92,246,.5);
  --vglow2:    rgba(139,92,246,.2);
  --tx:        #ede9ff;
  --tx2:       #9e9bbe;
  --tx3:       #5e5c7a;
  --ok:        #22c55e;
  --okbg:      rgba(34,197,94,.10);
  --warn:      #f59e0b;
  --warnbg:    rgba(245,158,11,.10);
  --fh:        'Oxanium', sans-serif;
  --fb:        'Figtree', sans-serif;
  --fm:        'JetBrains Mono', monospace;
  --r:         16px;
  --r2:        12px;
  --r3:        8px;
  --r4:        6px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--fb);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Safe area for notched phones */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--fb); cursor: pointer; }
svg { flex-shrink: 0; }

/* ════════════════════════════════════════
   ATMOSPHERE
════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .018;
}
.mesh { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; width: 100vw; }
.mesh i { position: absolute; border-radius: 50%; filter: blur(160px); max-width: 100vw; }
.m1 { width: 900px; height: 900px; top: -350px; left: -200px; background: #4c1d95; opacity: .13; }
.m2 { width: 700px; height: 700px; bottom: -250px; right: -150px; background: #3b0764; opacity: .10; }
.m3 { width: 500px; height: 500px; top: 30%; left: 45%; background: #7c3aed; opacity: .07; animation: drift 10s ease-in-out infinite alternate; }
.m4 { width: 300px; height: 300px; top: 10%; right: 10%; background: #a78bfa; opacity: .05; animation: drift 7s 2s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(50px,-35px); } }

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.wrap { position: relative; z-index: 1; max-width: 1020px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .wrap { padding: 0 28px; } }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(5,3,16,.82);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--b0);
}
.nav-in {
  max-width: 1020px; margin: 0 auto; padding: 0 20px;
  height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
@media (min-width: 640px) { .nav-in { padding: 0 28px; } }
.logo { font-family: var(--fh); font-weight: 800; font-size: 1.05rem; letter-spacing: 1.5px; flex-shrink: 0; line-height: 1; }
.logo-r { background: linear-gradient(135deg, var(--v3), var(--v)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-e { color: var(--tx3); font-size: .68em; font-weight: 400; letter-spacing: .5px; margin-left: 5px; font-family: var(--fb); }
.nav-links { display: none; }
@media (min-width: 860px) {
  .nav-links { display: flex; gap: 22px; font-size: .78rem; color: var(--tx3); }
  .nav-links a { transition: color .18s; letter-spacing: .3px; }
  .nav-links a:hover { color: var(--tx); }
}
.nav-r { display: flex; align-items: center; gap: 10px; }
.alive {
  display: none;
  align-items: center; gap: 6px;
  background: var(--okbg); border: 1px solid rgba(34,197,94,.18);
  border-radius: 100px; padding: 4px 11px;
  font-size: .68rem; font-family: var(--fm); color: var(--ok); white-space: nowrap;
}
@media (min-width: 640px) { .alive { display: flex; } }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 6px var(--ok); animation: blink 2.2s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.25;transform:scale(1.7)} }

.btn-nav {
  background: linear-gradient(135deg, var(--vd), var(--v));
  color: #fff; padding: 5px 12px; border-radius: var(--r4);
  font-size: .68rem; font-weight: 700; border: none;
  font-family: var(--fh); letter-spacing: .4px; text-transform: uppercase;
  transition: all .2s var(--ease); white-space: nowrap;
  box-shadow: 0 3px 12px rgba(109,40,217,.28);
  line-height: 1; height: 28px; display: flex; align-items: center;
}
.btn-nav:hover { background: linear-gradient(135deg, var(--v), var(--v2)); transform: translateY(-1px); box-shadow: 0 5px 18px var(--vglow2); }
.burger {
  display: flex; align-items: center; justify-content: center;
  background: var(--vdim); border: 1px solid var(--b1);
  border-radius: var(--r4); color: var(--tx); padding: 7px; min-width: 36px; min-height: 36px;
  transition: background .2s; flex-shrink: 0;
}
.burger:hover { background: var(--b1); }
@media (min-width: 860px) { .burger { display: none; } }

/* ════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════ */
.mob { display: none; }
.mob.open {
  display: flex; flex-direction: column;
  position: fixed; inset: 56px 0 0 0; z-index: 290;
  background: rgba(5,3,16,.97);
  backdrop-filter: blur(28px);
  padding: 16px 20px 32px;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob a {
  font-family: var(--fh); font-size: .95rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 15px 4px; border-bottom: 1px solid var(--b0);
  color: var(--tx2); transition: color .15s;
}
.mob a:hover { color: var(--v2); }
.mob-btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r3);
  font-weight: 700; font-size: .85rem; font-family: var(--fh);
  letter-spacing: .5px; text-transform: uppercase; border: none;
  transition: all .22s var(--ease); white-space: nowrap;
  min-height: 46px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--vd), var(--v));
  color: #fff;
  box-shadow: 0 6px 28px rgba(109,40,217,.4), 0 0 0 1px rgba(139,92,246,.25) inset;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--v), var(--v2)); transform: translateY(-2px); box-shadow: 0 14px 36px var(--vglow2), 0 0 0 1px rgba(167,139,250,.3) inset; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--tx2);
  border: 1px solid var(--b1); text-decoration: none;
}
.btn-ghost:hover { border-color: var(--b2); color: var(--tx); background: var(--vdim); transform: translateY(-1px); }
.bgrp { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 400px) { .bgrp { flex-direction: column; } .bgrp .btn { width: 100%; justify-content: center; } }

/* ════════════════════════════════════════
   SOCIAL BUTTONS
════════════════════════════════════════ */
.social-row { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-top: 20px; width: 100%; overflow: hidden; }
.sb {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; border-radius: var(--r4);
  font-size: .72rem; font-weight: 600;
  transition: transform .15s, filter .18s; text-decoration: none;
  min-height: 34px;
}
.sb:hover { transform: translateY(-2px); filter: brightness(1.12); }
.sb-rd { background: #ff4500; color: #fff; }
.sb-tw { background: #111; color: #fff; border: 1px solid #333; }
.sb-fb { background: #1877f2; color: #fff; }
.sb-li { background: #0a66c2; color: #fff; }
.sb-pi { background: #e60023; color: #fff; }

/* ════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════ */
.bc { padding: 11px 0; font-size: .72rem; color: var(--tx3); position: relative; z-index: 1; }
.bc ol { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.bc a:hover { color: var(--tx2); }
.bc .sep { margin: 0 4px; opacity: .4; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero { padding: 44px 0 40px; text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--vdim); border: 1px solid var(--b1);
  border-radius: 100px; padding: 5px 14px;
  font-size: .68rem; font-family: var(--fm); color: var(--v2);
  margin-bottom: 22px; animation: up .5s ease both; letter-spacing: .3px;
}
@keyframes up { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
h1 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(1.75rem, 6vw, 3.2rem);
  letter-spacing: 1.5px; line-height: 1.08;
  margin-bottom: 14px; text-transform: uppercase;
  animation: up .5s .07s ease both;
}
h1 .hl {
  background: linear-gradient(135deg, var(--v3) 0%, var(--v2) 45%, var(--v) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}
.hero-sub {
  font-size: .88rem; color: var(--tx2); max-width: 420px; margin: 0 auto 28px;
  animation: up .5s .13s ease both; line-height: 1.7; font-weight: 300; letter-spacing: .2px;
}
.hero-btns { animation: up .5s .18s ease both; }
.hero-social { animation: up .5s .23s ease both; }

/* ════════════════════════════════════════
   HERO IMAGE
════════════════════════════════════════ */
.hero-img {
  margin: 32px auto 0; max-width: min(860px, 100%);
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--b1);
  box-shadow: 0 0 0 1px var(--b0), 0 40px 80px rgba(0,0,0,.7), 0 0 80px var(--vglow2);
  background: var(--card); min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  animation: up .6s .28s ease both;
}
@media (min-width: 640px) { .hero-img { min-height: 300px; } }
/* ══ HERO IMAGE — replace src on #heroImg ══ */
.ph {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: var(--tx3); font-size: .72rem; font-family: var(--fm); padding: 40px 20px; text-align: center;
}
.ph svg { opacity: .18; }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--b0);
  border: 1px solid var(--b0); border-radius: var(--r);
  overflow: hidden; margin-top: 28px;
  animation: up .5s .35s ease both;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface); padding: 18px 12px; text-align: center; }
.stat-v {
  font-family: var(--fh); font-size: 1.45rem; font-weight: 800; letter-spacing: .5px;
  background: linear-gradient(135deg, var(--v2), var(--v));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: .62rem; color: var(--tx3); margin-top: 3px; font-family: var(--fm); text-transform: uppercase; letter-spacing: 1px; }

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--b0); border-bottom: 1px solid var(--b0);
  position: relative; z-index: 1;
}
@media (min-width: 640px) { .trust { grid-template-columns: repeat(5, 1fr); } }
.ti {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 13px 10px; font-size: .73rem; color: var(--tx3);
  border-right: 1px solid var(--b0); border-bottom: 1px solid var(--b0);
}
.ti:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .ti { border-bottom: none; }
  .ti:nth-child(2n) { border-right: 1px solid var(--b0); }
  .ti:last-child { border-right: none; }
}
.ti svg { color: var(--v2); }

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.sec { padding: 56px 0; }
.sec + .sec { border-top: 1px solid var(--b0); }
@media (max-width: 639px) { .sec { padding: 44px 0; } }
.sh { text-align: center; margin-bottom: 32px; }
.slbl { font-family: var(--fm); font-size: .63rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--v2); margin-bottom: 8px; }
h2 { font-family: var(--fh); font-size: clamp(1.15rem, 3vw, 1.65rem); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; }
.sint { font-size: .83rem; color: var(--tx2); max-width: 480px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.feat-grid {
  display: grid; gap: 1px; background: var(--b0);
  border: 1px solid var(--b0); border-radius: var(--r); overflow: hidden;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) { .feat-grid { grid-template-columns: repeat(4, 1fr); } }
.fc { background: var(--card); padding: 20px 18px; transition: background .2s; }
.fc:hover { background: var(--card-h); }
.fc-ico {
  width: 34px; height: 34px; border-radius: var(--r3);
  background: var(--vdim); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: .95rem;
}
.fc h3 { font-family: var(--fh); font-weight: 700; font-size: .75rem; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
.fc p { font-size: .76rem; color: var(--tx2); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════
   STATUS — terminal monitor
════════════════════════════════════════ */
.status-shell { background: var(--card); border: 1px solid var(--b1); border-radius: var(--r); overflow: hidden; }
.status-bar {
  padding: 11px 16px; background: rgba(0,0,0,.25);
  border-bottom: 1px solid var(--b0);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.sdots { display: flex; gap: 5px; }
.sd { width: 10px; height: 10px; border-radius: 50%; }
.sd-r { background: #ff5f57; } .sd-y { background: #febc2e; } .sd-g { background: #28c840; }
.st-title { font-family: var(--fm); font-size: .68rem; color: var(--tx3); letter-spacing: .8px; }
.st-ts { font-family: var(--fm); font-size: .62rem; color: var(--tx3); display: none; }
@media (min-width: 500px) { .st-ts { display: block; } }
.status-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 680px) { .status-inner { grid-template-columns: 220px 1fr; } }
/* Ring col */
.ring-col {
  padding: 28px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(160deg, rgba(0,0,0,.2), transparent);
  border-bottom: 1px solid var(--b0);
}
@media (min-width: 680px) { .ring-col { border-bottom: none; border-right: 1px solid var(--b0); } }
.ring-wrap { position: relative; width: 130px; height: 130px; }
.ring-svg { width: 130px; height: 130px; transform: rotate(-90deg); }
.rtrack { fill: none; stroke: var(--b1); stroke-width: 5.5; }
.rfill {
  fill: none; stroke: url(#rg); stroke-width: 5.5; stroke-linecap: round;
  stroke-dasharray: 365; stroke-dashoffset: 1;
  animation: ringIn 1.6s .4s var(--ease) both;
}
@keyframes ringIn { from{stroke-dashoffset:365} to{stroke-dashoffset:1} }
.ring-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-pct {
  font-family: var(--fh); font-size: 1.55rem; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--v2), var(--v));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ring-lbl { font-family: var(--fm); font-size: .52rem; color: var(--tx3); text-transform: uppercase; letter-spacing: 1px; }
.ring-caption { font-family: var(--fm); font-size: .63rem; color: var(--tx3); text-align: center; line-height: 1.5; }
.ubar {
  display: flex; flex-wrap: nowrap; gap: 3px;
  margin-top: 8px; overflow: hidden;
}
.useg {
  width: 6px; height: 12px; border-radius: 2px;
  background: var(--v); opacity: .8; flex-shrink: 0;
}
.useg.off { background: rgba(255,255,255,.10); opacity: 1; }
/* Services */
.svcs { display: flex; flex-direction: column; }
.svc {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-bottom: 1px solid var(--b0);
  font-size: .8rem; transition: background .18s;
  animation: svcIn .35s ease both;
}
.svc:last-child { border-bottom: none; }
.svc:hover { background: rgba(139,92,246,.04); }
@media (max-width: 479px) { .svc { flex-wrap: wrap; gap: 6px; } }
.svc:nth-child(1){animation-delay:.2s} .svc:nth-child(2){animation-delay:.3s}
.svc:nth-child(3){animation-delay:.4s} .svc:nth-child(4){animation-delay:.5s}
.svc:nth-child(5){animation-delay:.6s} .svc:nth-child(6){animation-delay:.7s}
@keyframes svcIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }
.svc-pr { font-family: var(--fm); font-size: .65rem; color: var(--v); flex-shrink: 0; }
.svc-nm { font-family: var(--fm); font-size: .73rem; color: var(--tx); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.svc-ms { font-family: var(--fm); font-size: .62rem; color: var(--tx3); white-space: nowrap; display: none; }
@media (min-width: 480px) { .svc-ms { display: block; } }
.badge-pill {
  font-family: var(--fm); font-size: .6rem; padding: 2px 9px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; flex-shrink: 0;
}
.bp-ok { background: var(--okbg); color: var(--ok); border: 1px solid rgba(34,197,94,.2); }
.bp-beta { background: var(--warnbg); color: var(--warn); border: 1px solid rgba(245,158,11,.18); }
/* Scanline */
.scan { height: 2px; background: linear-gradient(90deg, transparent 0%, var(--v2) 50%, transparent 100%); opacity: .22; animation: scan 3.5s linear infinite; }
@keyframes scan { from{transform:translateX(-100%)} to{transform:translateX(100%)} }
.scan-wrap { overflow: hidden; height: 2px; border-bottom: 1px solid var(--b0); }

/* ════════════════════════════════════════
   SCREENSHOTS
════════════════════════════════════════ */
.gallery { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 500px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gitem {
  border-radius: var(--r2); overflow: hidden; border: 1px solid var(--b0);
  background: var(--card); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.gitem:hover { border-color: var(--b1); transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
/* ══ GALLERY — set src on each .gimg ══ */

/* ════════════════════════════════════════
   PLATFORM TABS
════════════════════════════════════════ */
.ptabs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 540px) { .ptabs { grid-template-columns: repeat(4, 1fr); gap: 6px; } }
.ptab {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 12px; border-radius: var(--r3); border: 1px solid var(--b1);
  background: var(--card); color: var(--tx3); font-family: var(--fh); font-weight: 600; font-size: .72rem;
  transition: all .2s; letter-spacing: .4px; text-transform: uppercase;
  min-height: 42px;
}
.ptab.active, .ptab:hover { background: var(--v); border-color: var(--v); color: #fff; box-shadow: 0 4px 18px var(--vglow2); }
.ptab.active { box-shadow: 0 4px 24px rgba(109,40,217,.45); }
.ppanel { display: none; }
.ppanel.active { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .ppanel.active { grid-template-columns: 1fr 240px; } }
/* Steps */
.steps { display: flex; flex-direction: column; gap: 8px; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--b0); border-radius: var(--r2);
  padding: 15px 16px; transition: border-color .2s;
}
.step:hover { border-color: var(--b1); }
.sn { font-family: var(--fh); font-size: .95rem; font-weight: 800; color: var(--v); min-width: 22px; line-height: 1.3; flex-shrink: 0; }
.st { font-family: var(--fh); font-weight: 700; font-size: .75rem; letter-spacing: .3px; text-transform: uppercase; margin-bottom: 3px; }
.sd2 { font-size: .76rem; color: var(--tx2); line-height: 1.6; font-weight: 300; }
.plat-aside { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 719px) { .plat-aside { display: none; } }
.plat-img-box {
  border-radius: var(--r2); border: 1px solid var(--b0);
  background: var(--card); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
/* ══ PLATFORM IMAGES — set src on each .plat-img ══ */
.pinfo { background: var(--card); border: 1px solid var(--b0); border-radius: var(--r2); padding: 14px; }
.pi-r { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--b0); font-size: .74rem; }
.pi-r:last-child { border-bottom: none; padding-bottom: 0; }
.pi-k { color: var(--tx3); font-family: var(--fm); }
.pi-v { color: var(--v2); font-family: var(--fm); font-weight: 500; }
.plat-dl { margin-top: 14px; }

/* ════════════════════════════════════════
   REQUIREMENTS
════════════════════════════════════════ */
.rtabs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 18px;
}
@media (min-width: 540px) { .rtabs { grid-template-columns: repeat(4, 1fr); } }
.rtab {
  padding: 10px 10px; border-radius: var(--r3); border: 1px solid var(--b1);
  background: var(--card); color: var(--tx3); font-family: var(--fh); font-weight: 600; font-size: .72rem;
  transition: all .2s; letter-spacing: .4px; text-transform: uppercase; text-align: center;
  min-height: 40px;
}
.rtab.active { background: var(--vdim); border-color: var(--b2); color: var(--v2); }
.rtab:not(.active):hover { color: var(--tx2); }
.rpanel { display: none; }
.rpanel.active { display: block; }
.ctbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ctbl { width: 100%; border-collapse: collapse; font-size: .79rem; min-width: 420px; }
.ctbl th { font-family: var(--fm); font-size: .6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--tx3); padding: 10px 14px; border-bottom: 1px solid var(--b0); text-align: left; }
.ctbl td { padding: 11px 14px; border-bottom: 1px solid var(--b0); vertical-align: top; }
.ctbl tr:last-child td { border-bottom: none; }
.ctbl tbody tr:hover td { background: rgba(139,92,246,.035); }
.chk { color: var(--ok); font-weight: 600; font-family: var(--fm); font-size: .7rem; white-space: nowrap; }
.nope { color: var(--tx3); font-family: var(--fm); font-size: .7rem; }
.rnote { font-size: .72rem; color: var(--tx3); font-family: var(--fm); margin-top: 10px; padding: 10px 14px; background: var(--vdim); border-radius: var(--r3); border: 1px solid var(--b0); line-height: 1.5; }

/* ════════════════════════════════════════
   CHANGELOG
════════════════════════════════════════ */
.cl { display: flex; flex-direction: column; position: relative; }
.cl::before { content: ''; position: absolute; left: 20px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(to bottom, var(--v) 0%, rgba(139,92,246,.1) 100%); }
.cli { display: flex; gap: 16px; padding: 20px 0; }
.cli + .cli { border-top: 1px solid var(--b0); }
.cldot {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--card); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; font-size: .85rem;
}
.cldot.latest { background: var(--vdim); border-color: var(--b2); }
.clb { flex: 1; padding-top: 4px; min-width: 0; }
.clh { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.clv { font-family: var(--fh); font-weight: 700; font-size: .85rem; letter-spacing: .3px; }
.cltag { font-size: .58rem; font-family: var(--fm); padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; }
.tnew { background: var(--vdim); color: var(--v2); border: 1px solid var(--b1); }
.tfix { background: var(--okbg); color: var(--ok); border: 1px solid rgba(34,197,94,.18); }
.timp { background: var(--warnbg); color: var(--warn); border: 1px solid rgba(245,158,11,.18); }
.cld { font-size: .66rem; color: var(--tx3); font-family: var(--fm); margin-bottom: 10px; }
.cll { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.cll li { font-size: .77rem; color: var(--tx2); display: flex; gap: 8px; align-items: flex-start; font-weight: 300; line-height: 1.5; }
.cll li span { color: var(--v); flex-shrink: 0; margin-top: 2px; font-size: .68rem; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-col { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.fi { background: var(--card); border: 1px solid var(--b0); border-radius: var(--r2); overflow: hidden; transition: border-color .2s; }
.fi.open { border-color: var(--b1); }
.fq {
  width: 100%; background: none; border: none; color: var(--tx);
  font-family: var(--fh); font-weight: 600; font-size: .8rem; letter-spacing: .4px;
  padding: 15px 17px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  text-transform: uppercase; min-height: 50px;
}
.fq:hover { color: var(--v2); }
.fq-arr { width: 15px; height: 15px; flex-shrink: 0; transition: transform .25s; color: var(--tx3); }
.fi.open .fq-arr { transform: rotate(180deg); color: var(--v); }
.fa { display: none; padding: 0 17px 15px; font-size: .8rem; color: var(--tx2); line-height: 1.7; font-weight: 300; }
.fi.open .fa { display: block; }

/* ════════════════════════════════════════
   DOWNLOAD CTA
════════════════════════════════════════ */
.dl-box {
  border-radius: var(--r); border: 1px solid var(--b1);
  background: linear-gradient(160deg, rgba(109,40,217,.12), rgba(139,92,246,.05) 55%, transparent);
  padding: 48px 28px; text-align: center; position: relative; overflow: hidden;
}
@media (min-width: 640px) { .dl-box { padding: 56px 48px; } }
.dl-box::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 480px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--v2), transparent);
}
.dl-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(139,92,246,.12), transparent 65%);
  pointer-events: none;
}
.dl-box h2 { margin-bottom: 8px; }
.dl-box p { color: var(--tx2); margin-bottom: 24px; font-size: .83rem; font-weight: 300; }
.dl-chips { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.dc { font-size: .68rem; color: var(--tx3); font-family: var(--fm); display: flex; align-items: center; gap: 5px; }
.dc::before { content: '✓'; color: var(--ok); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { border-top: 1px solid var(--b0); padding: 28px 0; position: relative; z-index: 1; }
.foot { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.fl { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; font-size: .73rem; color: var(--tx3); }
.fl a:hover { color: var(--tx2); }
.foot-copy { font-size: .68rem; color: var(--tx3); line-height: 1.6; }

/* ════════════════════════════════════════
   SCROLL PROGRESS
════════════════════════════════════════ */
.progress-bar {
  position: fixed; top: 56px; left: 0; z-index: 299;
  height: 2px; background: linear-gradient(90deg, var(--vd), var(--v2));
  width: 0%; transition: width .1s linear;
  box-shadow: 0 0 8px var(--v);
}

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.btt {
  position: fixed; bottom: 24px; right: 20px; z-index: 200;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(109,40,217,.5);
  transition: all .2s; opacity: 0; pointer-events: none;
  /* safe area for iOS home bar */
  bottom: calc(24px + env(safe-area-inset-bottom));
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { background: var(--v2); transform: translateY(-3px); }

/* ════════════════════════════════════════
   TOUCH TARGETS & SELECTION
════════════════════════════════════════ */
@media (hover: none) {
  .fc:hover { background: var(--card); }
  .gitem:hover { transform: none; }
  .step:hover { border-color: var(--b0); }
}
::selection { background: rgba(139,92,246,.35); color: #fff; }
