/* ==========================
   Switchly landing — HUD neon
   ========================== */

:root{
  --bg0:#07080d;
  --bg1:#0b0e18;
  --fg:#e9ecff;
  --muted:#aab0d6;
  --line:rgba(160,170,255,0.14);

  --neon:#b56dff;
  --neon2:#43d9ff;
  --good:#4dffb5;
  --warn:#ffcc66;

  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--fg);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(181,109,255,.10), transparent 60%),
              radial-gradient(900px 500px at 80% 40%, rgba(67,217,255,.08), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

.container{
  width:min(1200px, calc(100% - 44px));
  margin:0 auto;
}

/* Ambient layers */
.bg-grid{
  position:fixed; inset:0;
  background-image:
    linear-gradient(to right, rgba(160,170,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(160,170,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(600px 400px at 50% 20%, rgba(0,0,0,.9), transparent 70%);
  pointer-events:none;
  opacity:.55;
}
.bg-noise{
  position:fixed; inset:-20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-size:220px 220px;
  mix-blend-mode: overlay;
  opacity:.18;
  pointer-events:none;
}
.bg-vignette{
  position:fixed; inset:0;
  background: radial-gradient(900px 520px at 50% 10%, transparent 40%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}

/* Topbar */
.topbar{
  position:sticky; top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(10,12,20,.78), rgba(10,12,20,.35));
  border-bottom: 1px solid rgba(160,170,255,.10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
  user-select:none;
}
.brand__dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--neon2), var(--neon));
  box-shadow: 0 0 18px rgba(181,109,255,.55);
}
.brand__name{ letter-spacing:.12em; font-weight:800; font-size:14px; }
.brand__tag{ color:var(--muted); font-size:12px; }

.nav{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color: rgba(233,236,255,.82);
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: rgba(181,109,255,.22);
  background: rgba(181,109,255,.06);
}

.topbar__actions{
  display:flex;
  gap:10px;
}

/* Buttons */
.btn{
  border:1px solid rgba(160,170,255,.18);
  background: rgba(10,12,20,.35);
  color: var(--fg);
  padding:10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:650;
  letter-spacing:.02em;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(181,109,255,.35);
}
.btn:active{ transform: translateY(0px) scale(.99); }
.btn--primary{
  background: linear-gradient(135deg, rgba(181,109,255,.95), rgba(67,217,255,.80));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 10px 40px rgba(181,109,255,.20);
  color: #08101a;
}
.btn--ghost{
  background: rgba(10,12,20,.20);
}
.btn--wide{ padding-left:18px; padding-right:18px; }
.btn--xl{ padding:14px 18px; font-size:14px; }

/* Typography */
.h1{
  margin:14px 0 10px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing:-.02em;
}
.h2{
  margin:0;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing:-.02em;
}
.h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}
.lead{
  margin: 10px 0 18px;
  color: rgba(233,236,255,.78);
  max-width: 56ch;
}
.sub{
  margin:10px 0 0;
  color: rgba(233,236,255,.70);
  max-width: 70ch;
}
.p{ color: rgba(233,236,255,.72); margin:10px 0 0; }
.small{ font-size:12px; }
.muted{ color: rgba(233,236,255,.58); }
.neon{
  color: var(--fg);
  text-shadow:
    0 0 18px rgba(181,109,255,.25),
    0 0 34px rgba(67,217,255,.18);
}

/* Hero */
.hero{
  position:relative;
  padding: 44px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; }
  .nav{ display:none; }
  .topbar__inner{ justify-content:space-between; }
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(160,170,255,.18);
  background: rgba(10,12,20,.30);
  font-size:12px;
  letter-spacing:.10em;
  color: rgba(233,236,255,.80);
}
.pill__light{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--neon2), var(--neon));
  box-shadow: 0 0 18px rgba(67,217,255,.30), 0 0 30px rgba(181,109,255,.28);
}

.searchCard{
  margin-top: 14px;
  border-radius: var(--radius2);
  border:1px solid rgba(160,170,255,.14);
  background: linear-gradient(180deg, rgba(10,12,20,.55), rgba(10,12,20,.22));
  box-shadow: var(--shadow);
  padding: 14px;
  max-width: 640px;
}
.searchCard__label{
  font-size:12px;
  letter-spacing:.10em;
  color: rgba(233,236,255,.62);
  margin-bottom:10px;
}
.searchRow{
  display:flex;
  gap:10px;
  align-items:center;
}
.searchInput{
  flex:1;
  height:44px;
  border-radius: 999px;
  border:1px solid rgba(160,170,255,.18);
  background: rgba(0,0,0,.22);
  color: var(--fg);
  outline:none;
  padding: 0 14px;
  font-size:14px;
}
.searchInput:focus{
  border-color: rgba(67,217,255,.40);
  box-shadow: 0 0 0 4px rgba(67,217,255,.12);
}
.searchHint{
  margin-top:10px;
  color: rgba(233,236,255,.58);
  font-size:12px;
}
.linkLike{
  all:unset;
  cursor:pointer;
  color: rgba(67,217,255,.95);
  text-decoration: underline;
}
.linkLike:hover{ color: rgba(181,109,255,.95); }

.badges{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}
.badge{
  border-radius: 14px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(10,12,20,.25);
  padding: 10px 12px;
  min-width: 140px;
}
.badge__k{ font-weight:800; }
.badge__v{ color: rgba(233,236,255,.62); font-size:12px; margin-top:2px; }

.trustRow{
  margin-top: 16px;
}
.trustRow__label{
  font-size:12px;
  color: rgba(233,236,255,.60);
  margin-bottom:8px;
}
.logos{ display:flex; gap:10px; flex-wrap:wrap; }
.logoChip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(10,12,20,.22);
  color: rgba(233,236,255,.74);
  font-size:12px;
}

/* Hero visual core */
.hero__viz{ display:flex; justify-content:center; }
.core{
  position:relative;
  width:min(520px, 100%);
  aspect-ratio: 1 / 1;
}
.core__glow{
  position:absolute; inset:-10%;
  background: radial-gradient(circle at 45% 35%, rgba(181,109,255,.26), transparent 55%),
              radial-gradient(circle at 65% 55%, rgba(67,217,255,.18), transparent 55%);
  filter: blur(14px);
  opacity: .9;
}
.core__frame{
  position:absolute; inset:0;
  border-radius: 28px;
  border:1px solid rgba(160,170,255,.14);
  background: linear-gradient(180deg, rgba(10,12,20,.55), rgba(10,12,20,.12));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.core__scanline{
  position:absolute; left:-30%; right:-30%; top:-40%;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(67,217,255,.10), transparent);
  transform: rotate(18deg);
  animation: scanMove 5.2s linear infinite;
  opacity:.8;
}
@keyframes scanMove{
  0%{ top:-55%; }
  100%{ top:120%; }
}

.core__chip{
  position:absolute;
  left:50%; top:50%;
  width: 62%;
  aspect-ratio:1/1;
  transform: translate(-50%,-50%);
  border-radius: 18px;
  border: 1px solid rgba(160,170,255,.16);
  background:
    radial-gradient(circle at 35% 30%, rgba(181,109,255,.14), transparent 55%),
    radial-gradient(circle at 65% 65%, rgba(67,217,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.05));
  box-shadow: 0 12px 60px rgba(0,0,0,.55);
}
.chip__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(160,170,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(160,170,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.55;
  border-radius:18px;
  mask-image: radial-gradient(220px 220px at 50% 50%, rgba(0,0,0,.95), transparent 70%);
}
.chip__center{
  position:absolute; inset:0;
  display:grid;
  place-items:center;
}
.chip__ring{
  width: 58%;
  aspect-ratio:1/1;
  border-radius:999px;
  border: 1px solid rgba(67,217,255,.35);
  box-shadow:
    0 0 0 6px rgba(67,217,255,.08),
    0 0 32px rgba(181,109,255,.14);
  animation: ringPulse 2.8s ease-in-out infinite;
}
@keyframes ringPulse{
  0%,100%{ transform: scale(1); opacity:.85; }
  50%{ transform: scale(1.03); opacity:1; }
}
.chip__dot{
  position:absolute;
  width: 12px; height: 12px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--neon2), var(--neon));
  box-shadow: 0 0 18px rgba(181,109,255,.35);
  animation: dotOrbit 4.6s linear infinite;
}
@keyframes dotOrbit{
  0%{ transform: translate(0, -92px); }
  25%{ transform: translate(92px, 0); }
  50%{ transform: translate(0, 92px); }
  75%{ transform: translate(-92px, 0); }
  100%{ transform: translate(0, -92px); }
}
.chip__text{
  position:absolute;
  bottom:18%;
  text-align:center;
  user-select:none;
}
.chip__title{
  font-size:12px;
  letter-spacing:.12em;
  color: rgba(233,236,255,.82);
  font-weight:800;
}
.chip__sub{
  margin-top:6px;
  font-size:12px;
  color: rgba(233,236,255,.60);
}
.chip__pins{
  position:absolute; inset:-10px;
  border-radius: 22px;
  border: 1px dashed rgba(160,170,255,.16);
  opacity:.5;
}

/* HUD corners */
.hud{
  position:absolute;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.28);
  backdrop-filter: blur(8px);
  width: 170px;
}
.hud__k{ font-size:11px; letter-spacing:.12em; font-weight:800; color: rgba(233,236,255,.70); }
.hud__v{ font-size:12px; color: rgba(233,236,255,.55); margin-top:2px; }
.hud__big{
  margin-top:8px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.02em;
  text-shadow: 0 0 20px rgba(181,109,255,.22);
}
.hud__bar{
  margin-top:10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.hud__bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, rgba(67,217,255,.9), rgba(181,109,255,.85));
  border-radius:999px;
  box-shadow: 0 0 22px rgba(67,217,255,.20);
}
.hud__line{ margin-top:8px; color: rgba(233,236,255,.65); font-size:12px; }

.hud--tl{ left:14px; top:14px; }
.hud--tr{ right:14px; top:14px; text-align:right; }
.hud--bl{ left:14px; bottom:14px; }
.hud--br{ right:14px; bottom:14px; text-align:right; }

.hero__divider{
  margin-top: 26px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(181,109,255,.35), rgba(67,217,255,.25), transparent);
  opacity:.8;
}

/* Sections */
.section{ padding: 64px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(181,109,255,.06), rgba(67,217,255,.03));
  border-top: 1px solid rgba(160,170,255,.10);
  border-bottom: 1px solid rgba(160,170,255,.10);
}
.sectionHead{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 22px;
}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .cards3{ grid-template-columns: 1fr; }
}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.26);
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 40% 30%, rgba(181,109,255,.16), transparent 50%),
              radial-gradient(circle at 65% 70%, rgba(67,217,255,.10), transparent 55%);
  transform: rotate(12deg);
  opacity:.65;
}
.card > *{ position:relative; z-index:1; }
.card__icon{
  width:44px; height:44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(160,170,255,.12);
  margin-bottom:10px;
  color: rgba(67,217,255,.95);
  text-shadow: 0 0 14px rgba(67,217,255,.22);
  font-size:18px;
}
.card__foot{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.mini{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(233,236,255,.62);
}

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .stats{ grid-template-columns: 1fr 1fr; }
}
.stat{
  border-radius: var(--radius);
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.22);
  padding: 14px;
}
.stat__n{
  font-size:28px;
  font-weight:900;
  letter-spacing:-.02em;
  text-shadow: 0 0 22px rgba(181,109,255,.18);
}
.stat__t{ margin-top:6px; color: rgba(233,236,255,.66); }

.strip{
  margin-top:16px;
  border-radius: var(--radius);
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.22);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding: 14px;
}
.strip__k{ font-weight:850; letter-spacing:.06em; }
.strip__v{ color: rgba(233,236,255,.66); margin-top:6px; }

/* Builder */
.builder{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .builder{ grid-template-columns:1fr; }
}
.list{
  margin: 16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.tick{
  display:inline-grid;
  place-items:center;
  width:18px; height:18px;
  border-radius:6px;
  background: rgba(77,255,181,.10);
  border:1px solid rgba(77,255,181,.22);
  margin-right:10px;
  color: var(--good);
  font-weight:900;
}
.actions{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.note{ margin-top:12px; color: rgba(233,236,255,.55); font-size:12px; }

.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.25);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__head{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(160,170,255,.10);
  background: rgba(0,0,0,.20);
}
.dot{ width:10px; height:10px; border-radius:999px; }
.dot--r{ background:#ff5a66; }
.dot--y{ background:#ffd566; }
.dot--g{ background:#66ffcc; }
.panel__title{
  margin-left:8px;
  letter-spacing:.12em;
  font-weight:900;
  font-size:12px;
  color: rgba(233,236,255,.70);
}
.panel__body{ padding: 14px; }
.row{
  display:grid;
  grid-template-columns: 60px 1fr 26px;
  gap:10px;
  align-items:center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(160,170,255,.14);
}
.row:last-of-type{ border-bottom:none; }
.k{ color: rgba(233,236,255,.62); font-size:12px; letter-spacing:.10em; }
.v{ font-weight:700; }
.s{ text-align:right; font-weight:900; }
.ok{ color: var(--good); }
.bad{ color: rgba(255,90,102,.92); }

.meter{ margin-top: 16px; }
.meter__label{ color: rgba(233,236,255,.66); font-size:12px; letter-spacing:.10em; }
.meter__bar{
  margin-top:10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.meter__bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, rgba(77,255,181,.85), rgba(67,217,255,.82), rgba(181,109,255,.85));
  border-radius:999px;
}
.meter__foot{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.warn{
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,204,102,.22);
  background: rgba(255,204,102,.06);
  color: rgba(255,204,102,.95);
  font-size:12px;
}

/* Example */
.exampleGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .exampleGrid{ grid-template-columns:1fr; }
}

.resultCard, .tableCard, .comparison{
  border-radius: var(--radius2);
  border:1px solid rgba(160,170,255,.14);
  background: rgba(10,12,20,.24);
  box-shadow: 0 12px 60px rgba(0,0,0,.35);
  padding: 16px;
}
.resultCard__head{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.tag{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(233,236,255,.64);
}
.tag--good{
  border-color: rgba(77,255,181,.22);
  background: rgba(77,255,181,.08);
  color: rgba(77,255,181,.92);
}
.resultCard__title{ font-weight:900; font-size:18px; letter-spacing:-.01em; }
.resultCard__priceRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-top:12px;
}
.price{
  font-size:34px;
  font-weight:950;
  letter-spacing:-.02em;
  text-shadow: 0 0 24px rgba(181,109,255,.18);
}
.meta{ color: rgba(233,236,255,.62); font-size:12px; line-height:1.4; }
.good{ color: rgba(77,255,181,.95); font-weight:900; }
.chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.chip{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(233,236,255,.62);
}
.resultCard__actions{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }

.tableCard__title{ font-weight:900; letter-spacing:.06em; color: rgba(233,236,255,.70); }
.matrix{ margin-top:12px; display:grid; gap:10px; }
.mrow{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.16);
}
.mk{ color: rgba(233,236,255,.62); letter-spacing:.08em; font-size:12px; }
.mv{ font-weight:850; }
.divider{
  height:1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, rgba(160,170,255,.20), transparent);
}
.compareMini{ display:grid; gap:10px; }
.compareMini__row{
  display:flex; justify-content:space-between; align-items:center;
  color: rgba(233,236,255,.74);
}

.comparison{
  margin-top:14px;
}
.cmpTable{
  margin-top:12px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(160,170,255,.12);
}
.cmpRow{
  display:grid;
  grid-template-columns: 1fr 120px 120px;
  gap:10px;
  padding: 12px 14px;
  background: rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(160,170,255,.10);
}
.cmpRow--head{
  background: rgba(0,0,0,.22);
  color: rgba(233,236,255,.74);
  font-weight:900;
  letter-spacing:.06em;
  font-size:12px;
}
.cmpRow:last-child{ border-bottom:none; }

/* CTA */
.cta{
  padding: 56px 0;
}
.cta__inner{
  border-radius: 28px;
  border:1px solid rgba(160,170,255,.14);
  background:
    radial-gradient(600px 320px at 20% 30%, rgba(181,109,255,.16), transparent 60%),
    radial-gradient(600px 320px at 80% 60%, rgba(67,217,255,.12), transparent 60%),
    rgba(10,12,20,.24);
  box-shadow: var(--shadow);
  padding: 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.cta__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding: 28px 0 48px;
  border-top: 1px solid rgba(160,170,255,.10);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Overlay */
.overlay{
  position:fixed; inset:0;
  display:none;
  z-index: 999;
}
.overlay.is-open{ display:block; }
.overlay__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}
.overlay__panel{
  position:relative;
  width: min(860px, calc(100% - 28px));
  margin: 80px auto 0;
  border-radius: 22px;
  border: 1px solid rgba(160,170,255,.18);
  background: linear-gradient(180deg, rgba(10,12,20,.90), rgba(10,12,20,.70));
  box-shadow: 0 30px 120px rgba(0,0,0,.75);
  overflow:hidden;
}
@media (max-width: 520px){
  .overlay__panel{ margin-top: 64px; }
}
.overlay__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.25);
}
.overlay__title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.10em;
  font-size:12px;
  color: rgba(233,236,255,.76);
}
.overlay__close{
  border:none;
  cursor:pointer;
  color: rgba(233,236,255,.70);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(160,170,255,.14);
  border-radius: 12px;
  padding: 8px 10px;
}
.overlay__close:hover{
  border-color: rgba(181,109,255,.35);
}
.pulseDot{
  width:10px; height:10px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--neon2), var(--neon));
  box-shadow: 0 0 18px rgba(181,109,255,.35);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:.75; }
  50%{ transform: scale(1.25); opacity:1; }
}

.terminal{
  padding: 14px;
  position:relative;
}
.terminal::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(67,217,255,.06), transparent 40%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0px, rgba(255,255,255,.035) 1px, transparent 1px, transparent 4px);
  opacity:.5;
  pointer-events:none;
}
.terminal__pre{
  margin:0;
  padding: 12px 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(160,170,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(233,236,255,.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  min-height: 280px;
  white-space: pre-wrap;
}

.overlay__foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(160,170,255,.12);
  background: rgba(0,0,0,.22);
}
.progressBar{
  width: 220px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
  border: 1px solid rgba(160,170,255,.12);
}
.progressBar span{
  display:block;
  height:100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(67,217,255,.9), rgba(181,109,255,.9));
  box-shadow: 0 0 18px rgba(67,217,255,.18);
  transition: width .2s ease;
}
