:root{
  --bg0:#070707;
  --bg1:#0b0b0b;

  --yellow:#F0B90B;
  --yellow2:#FFD24A;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);

  --shadow: 0 24px 80px rgba(0,0,0,.65);
  --radius: 18px;

  --terminal-bg: #0a0a0a;
  --panel-bg: #0f0f0f;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
  margin:0;
  background: var(--bg0);
}

body::before,
body::after{ content:none !important; display:none !important; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x:hidden;
  background: transparent !important;
}

#bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  pointer-events:none;
  background: var(--bg0);
}

header, main, section, .topbar, .viewport, .view{
  position:relative;
  z-index:1;
  background: transparent !important;
}

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.viewport{ min-height: calc(100vh - 74px); }
.view{ display:none; opacity:0; transform: translateY(6px); }
.view.is-active{
  display:block;
  opacity:1;
  transform: translateY(0);
  animation: viewIn .20s ease both;
}
@keyframes viewIn{
  from { opacity:0; transform: translateY(6px); }
  to   { opacity:1; transform: translateY(0); }
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(7,7,7,.78), rgba(7,7,7,.22));
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color: var(--text);
  min-width: 180px;
}
.brand-mark{
  width:34px; height:34px;
  padding:6px;
  border-radius:12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:4px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(240,185,11,.20), rgba(255,255,255,.03));
  box-shadow: 0 18px 40px rgba(240,185,11,.10);
}
.brand-mark span{ border-radius:6px; background: rgba(255,255,255,.14); }
.brand-mark span:nth-child(1){ background: rgba(240,185,11,.95); }
.brand-mark span:nth-child(2){ background: rgba(255,255,255,.16); }
.brand-mark span:nth-child(3){ background: rgba(255,210,74,.70); }

.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-weight: 900; letter-spacing:.2px; }
.brand-sub{ color: var(--muted2); font-weight: 800; font-size: 12px; margin-top: 3px; font-family: var(--mono); }

.nav{ display:flex; align-items:center; gap:14px; }
.nav-link{
  text-decoration:none;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  font-family: var(--mono);
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px; height:2px;
  margin:5px auto;
  border-radius:999px;
  background: rgba(255,255,255,.80);
}

.mobile-nav{
  display:none;
  padding: 12px 0 16px;
  gap:10px;
  background: rgba(7,7,7,.58);
  border: 1px solid rgba(255,255,255,.06);
  border-top: none;
  border-radius: 0 0 18px 18px;
  backdrop-filter: blur(14px);
  margin-bottom: 8px;
}
.mobile-nav[hidden]{ display:none !important; }
.mobile-nav:not([hidden]){ display:grid; }

.mobile-link{
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  font-weight: 850;
  font-family: var(--mono);
}

.btn{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-family: var(--mono);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn-sm{ padding: 10px 12px; border-radius: 12px; font-size: 13px; }

.btn-primary{
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  border-color: rgba(240,185,11,.55);
  box-shadow: 0 20px 60px rgba(240,185,11,.22);
  color: rgba(0,0,0,.88);
}
.btn-outline{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.18); }
.btn-ghost{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.12); }

.terminal-frame{
  background: #0a0a0a !important;
  border: 1px solid rgba(240,185,11,.22) !important;
  box-shadow: var(--shadow);
}
.terminal-panel{
  background: #0f0f0f !important;
  border: 1px solid rgba(240,185,11,.14) !important;
}

.hero{ padding: 56px 0 18px; position:relative; }
.hero-center{ text-align:center; position:relative; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
  font-family: var(--mono);
}
.pill-led{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(240,185,11,.98);
  box-shadow: 0 0 0 6px rgba(240,185,11,.14);
}
.hero-title{
  margin: 18px 0 12px;
  font-weight: 950;
  letter-spacing: -1.2px;
  line-height: .92;
  text-transform: uppercase;
  font-size: clamp(44px, 6.6vw, 92px);
  text-shadow: 0 18px 80px rgba(0,0,0,.70);
}
.hero-sub{
  margin: 0 auto;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.hero-fade{
  height: 42px;
  margin-top: 22px;
  background: linear-gradient(90deg, rgba(240,185,11,0), rgba(240,185,11,.50), rgba(240,185,11,0));
  opacity: .55;
}

.proof{
  margin: 22px auto 0;
  width: min(980px, 100%);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-card{ padding: 14px; border-radius: 18px; text-align:left; }
.proof-k{
  font-family: var(--mono);
  color: var(--muted2);
  font-weight: 900;
  font-size: 12px;
}
.proof-v{
  margin-top: 10px;
  font-family: var(--mono);
  font-weight: 950;
  font-size: 22px;
}

.console{ padding: 26px 0 40px; }
.console-shell{ border-radius: 22px; overflow:hidden; }

.console-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(240,185,11,.14);
  background: rgba(255,255,255,.02);
}
.traffic{ display:flex; gap:6px; }
.traffic span{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.12); }
.console-path{ color: var(--muted2); font-weight: 900; font-size: 12px; font-family: var(--mono); }
.console-badge{
  font-weight: 950;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(240,185,11,.40);
  background: rgba(240,185,11,.12);
  font-family: var(--mono);
}

.console-grid{
  display:grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 12px;
  padding: 14px;
}

.pane{ border-radius: 18px; overflow:hidden; }
.pane.big{ min-height: 260px; }

.pane-title{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(240,185,11,.12);
  color: rgba(255,255,255,.86);
  font-weight: 950;
  font-size: 12px;
  text-transform: lowercase;
  background: rgba(255,255,255,.02);
  font-family: var(--mono);
}
.pane-body{ padding: 12px; }

.pane-body.code{
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.term{ min-height: 260px; }
#consoleFeed{ padding-bottom: 8px; }

.term-input{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:baseline;
  padding-top: 6px;
  border-top: 1px solid rgba(240,185,11,.10);
  margin-top: 8px;
}
.term-prompt{ color: rgba(240,185,11,.92); font-weight: 900; }
.term-path{ color: rgba(255,255,255,.78); }
.term-sep{ color: rgba(255,255,255,.55); }

.cursor{
  display:inline-block;
  width: 10px;
  margin-left: 2px;
  color: rgba(240,185,11,.95);
  animation: blink 1s step-end infinite;
}
@keyframes blink{ 0%,49%{opacity:1} 50%,100%{opacity:0} }

.ghostline{ color: rgba(255,255,255,.52); margin: 6px 0; }
.tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  font-family: var(--mono);
}
.mt{ margin-top: 12px; }

.tabs{
  display:flex;
  gap: 8px;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(240,185,11,.12);
  background: rgba(255,255,255,.02);
}
.tab{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.72);
  font-weight: 950;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-family: var(--mono);
}
.tab.active{
  background: rgba(240,185,11,.14);
  border-color: rgba(240,185,11,.35);
  color: rgba(255,255,255,.92);
}

.feed .line{ margin: 6px 0; }
.divider{ margin: 12px 0; height: 1px; background: rgba(240,185,11,.12); }
.hl{ color: rgba(255,255,255,.95); font-weight: 900; }
.muted{ color: var(--muted2); font-weight: 800; font-family: var(--mono); }

.badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-right: 8px;
  font-family: var(--mono);
}
.badge.ok{ border-color: rgba(240,185,11,.40); background: rgba(240,185,11,.14); }
.badge.warn{ border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.badge.danger{ border-color: rgba(240,185,11,.55); background: rgba(240,185,11,.22); }

.console-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px;
  border-top: 1px solid rgba(240,185,11,.12);
  background: rgba(255,255,255,.02);
}
.note{ color: rgba(255,255,255,.70); font-weight: 750; font-size: 13px; }

.how{ padding: 22px 0 8px; }
.how-head h2{ margin:0; font-size: 26px; font-family: var(--mono); }
.how-head p{ margin:10px 0 0; color: var(--muted); line-height:1.6; }
.how-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.how-card{ padding: 14px; border-radius: 18px; }
.how-n{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  font-family: var(--mono);
  font-weight: 950;
  background: rgba(240,185,11,.10);
  border: 1px solid rgba(240,185,11,.22);
}
.how-card h3{ margin: 12px 0 6px; font-family: var(--mono); font-weight: 950; }
.how-card p{ margin:0; color: var(--muted); line-height:1.6; }

.caps{ padding: 40px 0 40px; border-top: 1px solid rgba(255,255,255,.06); }
.caps-head h2{ margin:0; font-size: 30px; letter-spacing:-.4px; font-family: var(--mono); }
.caps-head p{ margin:10px 0 0; color: var(--muted); line-height:1.6; }
.caps-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cap{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
}
.cap-ic{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  background: rgba(240,185,11,.12);
  border: 1px solid rgba(240,185,11,.28);
  font-family: var(--mono);
}

.footer{ margin-top: 22px; padding: 18px 0 8px; }
.footer-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.footer-left{ display:flex; gap: 12px; align-items:center; flex-wrap:wrap; }
.footer-right{ display:flex; gap: 12px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.footer-link{
  color: var(--muted);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  font-family: var(--mono);
}
.footer-link:hover{ color: var(--text); background: rgba(255,255,255,.04); }

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  max-width: min(520px, calc(100% - 28px));
  font-weight: 900;
  font-family: var(--mono);
}

.dash{ padding: 32px 0 48px; }
.dash-shell{ position:relative; border-radius: 22px; overflow:hidden; }

.dash-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(240,185,11,.12);
  background: rgba(255,255,255,.02);
}
.dash-title{ font-weight: 950; letter-spacing:.2px; font-family: var(--mono); }
.dash-sub{ margin-top: 6px; color: var(--muted2); font-weight: 850; font-size: 13px; font-family: var(--mono); }
.dash-actions{ display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.75);
  font-weight: 950;
  font-size: 12px;
  font-family: var(--mono);
}

.dash-grid{
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card{ padding: 14px; border-radius: 18px; }
.card.wide{ grid-column: 1 / -1; }

.card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  font-weight: 950;
  font-family: var(--mono);
}

.bars{ margin-top: 12px; display:grid; gap:10px; }
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.bar span{
  display:block;
  height:100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240,185,11,.78), rgba(255,210,74,.78));
  transition: width .35s ease;
}

.mt8{ margin-top: 10px; }

.rec-list{ margin: 12px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.rec-list li{
  display:flex; align-items:center; gap:10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight: 900;
  font-family: var(--mono);
}
.dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.dot.ok{ background: rgba(240,185,11,.95); box-shadow:0 0 0 6px rgba(240,185,11,.12); }
.dot.warn{ background: rgba(255,255,255,.70); box-shadow:0 0 0 6px rgba(255,255,255,.10); }

.feed2{ margin-top: 12px; display:grid; gap:10px; }
.feed-row2{
  display:grid;
  grid-template-columns: 86px 1fr 70px;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.feed-txt{ font-weight: 900; font-family: var(--mono); }

.fade-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(11,11,11,0), rgba(11,11,11,.82) 28%, rgba(11,11,11,.94));
  border-top: 1px solid rgba(255,255,255,.08);
}

.waitlist{
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 16px;
  border-radius: 18px;
}
.waitlist-head h3{ margin:0; letter-spacing:-.2px; font-family: var(--mono); }
.waitlist-head p{ margin: 8px 0 0; color: var(--muted); line-height:1.55; }

.waitlist-form{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.waitlist-form input{
  flex: 1 1 240px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,7,7,.55);
  color: rgba(255,255,255,.92);
  outline:none;
  font-weight: 850;
  font-family: var(--mono);
}
.waitlist-form input:focus{
  border-color: rgba(240,185,11,.70);
  box-shadow: 0 0 0 5px rgba(240,185,11,.16);
}

.form-msg{ margin-top: 10px; min-height: 20px; color: rgba(255,255,255,.78); font-weight: 900; font-family: var(--mono); }
.dash-back{ margin-top: 14px; display:flex; justify-content:flex-end; }

.stats-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 12px;
}
.stat{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.stat-k{ font-family: var(--mono); color: var(--muted2); font-weight: 900; font-size: 12px; }
.stat-v{ margin-top: 10px; font-family: var(--mono); font-weight: 950; font-size: 22px; }
.stat-unit{ margin-left: 6px; }
.stat-sub{ margin-top: 8px; font-size: 12px; font-family: var(--mono); }
.stat.spark{ position: relative; overflow: hidden; }

#spark{
  display:block;
  width: 100%;
  height: 54px;
  margin-top: 10px;
  opacity: .95;
  border-radius: 12px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.06);
}

@keyframes sheen {
  0%{ transform: translateX(-120%); opacity:0; }
  10%{ opacity:.16; }
  40%{ opacity:.16; }
  100%{ transform: translateX(120%); opacity:0; }
}
.stat.spark::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:-40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,.18), transparent);
  animation: sheen 4.2s ease-in-out infinite;
}

.dash-footer{ margin-top: 16px; padding-bottom: 6px; }

@media (max-width: 980px){
  .console-grid{ grid-template-columns: 1fr; }
  .caps-grid{ grid-template-columns: 1fr; }
  .proof{ grid-template-columns: 1fr; }
  .how-grid{ grid-template-columns: 1fr; }
  .stats-row{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav{ display:none; }
  .hamburger{ display:block; }
  .hero{ padding-top: 44px; }
  .dash-grid{ grid-template-columns: 1fr; }
  .feed-row2{ grid-template-columns: 86px 1fr; }
  .feed-row2 .muted{ display:none; }
}
@media (max-width: 560px){
  .stats-row{ grid-template-columns: 1fr; }
}

.brand-mark{
  width:34px;
  height:34px;
  padding:0;                 /* was 6px; remove so image fills nicely */
  border-radius:12px;
  overflow:hidden;           /* ensures rounded corners clip the image */
  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(240,185,11,.20), rgba(255,255,255,.03));
  box-shadow: 0 18px 40px rgba(240,185,11,.10);
}

.brand-logo{
  width:100%;
  height:100%;
  object-fit:cover;          /* fills the square without distortion */
  border-radius:12px;        /* extra safety */
  display:block;
}