:root{
  --bg0:#060504;
  --bg1:#0b0706;
  --panel: rgba(10,7,6,.55);
  --muted: rgba(255,255,255,.65);
  --muted2: rgba(255,255,255,.42);
  --line: rgba(255,255,255,.10);
  --accent:#f07a43;
  --accent2:#ff9a63;
  --good:#5ef2b1;

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --big: Impact, Haettenschweiler, "Arial Black", "Bebas Neue", system-ui, sans-serif;
  --ui: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  color:#fff;
  font-family: var(--ui);
  overflow-x:hidden;
  background: #000;
}

.bg{
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(900px 520px at 50% 28%, rgba(240,122,67,.16), transparent 62%),
    radial-gradient(720px 380px at 22% 78%, rgba(255,154,99,.09), transparent 62%),
    radial-gradient(620px 320px at 78% 72%, rgba(94,242,177,.07), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

#particles{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}

.noise{
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  z-index: -3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 26px;
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.18));
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.brand{display:flex; align-items:center; gap:12px}
.logoMark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  padding: 4px;
  background: linear-gradient(180deg, rgba(240,122,67,.95), rgba(240,122,67,.72));
  box-shadow: 0 12px 40px rgba(240,122,67,.25);
}

.brandName{
  letter-spacing:.18em;
  font-weight:900;
  font-size:18px
}

.brandTag{
  font-family: var(--mono);
  color: var(--muted2);
  font-size:12px;
  margin-top:2px;
}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  color: var(--muted2);
  text-decoration:none;
  font-family: var(--mono);
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
  transition:.15s ease;
}
.nav a:hover{color:#fff; background: rgba(255,255,255,.05)}
.nav .pill{
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:9px 12px;
}

.hero{
  max-width:1100px;
  margin:0 auto;
  padding:70px 20px 44px;
  text-align:center;
}


.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(240,122,67,.52);
  background: rgba(0,0,0,.30);
  font-family: var(--mono);
  font-size:12px;
  color: rgba(240,122,67,.95);
  box-shadow: 0 0 0 1px rgba(240,122,67,.12) inset;
}

.dot{
  width:8px; height:8px;
  border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 18px rgba(94,242,177,.55);
}

h1{
  margin:26px 0 14px;
  font-family: var(--big);
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: .95;
  letter-spacing: .06em;
}

.sub{
  margin:0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size:15px;
  line-height:1.7;
  font-family: var(--mono);
}

.ctaRow{
  margin-top:28px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  border-radius:12px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
  font-family: var(--mono);
  transition: .15s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.25)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  background: linear-gradient(180deg, rgba(240,122,67,1), rgba(240,122,67,.76));
  border-color: rgba(240,122,67,.25);
  color:#160b07;
  box-shadow: 0 18px 55px rgba(240,122,67,.25);
  font-weight:800;
}
.btn.ghost{background: rgba(0,0,0,.18)}
.btn.small{padding:10px 12px; border-radius:10px; font-size:13px}
.btn[disabled]{opacity:.55; cursor:not-allowed; transform:none}
.plug{font-weight:900}

.panel{
  margin:42px auto 0;
  max-width:980px;
  text-align:left;
  border-radius:18px;
  overflow:hidden;
  background: rgba(10,7,6,.52);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.panelTop{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}
.panelTitle{
  font-family: var(--mono);
  color: rgba(255,255,255,.85);
  font-size:13px
}
.panelHint{
  font-family: var(--mono);
  color: var(--muted2);
  font-size:12px;
}

.panelBody{display:grid; grid-template-columns:360px 1fr}
.left{padding:16px; border-right:1px solid rgba(255,255,255,.08)}
.right{padding:16px}

.label{font-family: var(--mono); color: var(--muted2); font-size:12px}
.input{
  width:100%;
  margin-top:8px;
  background: rgba(0,0,0,.32);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  border-radius:14px;
  padding:12px 12px;
  font-family: var(--mono);
  line-height:1.6;
  resize: vertical;
  min-height:98px;
  outline:none;
}
.input:focus{
  border-color: rgba(240,122,67,.45);
  box-shadow: 0 0 0 3px rgba(240,122,67,.12);
}

.mini{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.miniTitle{font-family: var(--mono); color: rgba(255,255,255,.85); font-size:12px}
.miniNote{margin-top:8px; font-family: var(--mono); color: var(--muted2); font-size:12px}

.mesh{
  position:relative;
  height:92px;
  margin-top:10px;
  border-radius:14px;
  background:
    radial-gradient(240px 90px at 45% 40%, rgba(240,122,67,.14), transparent 65%),
    rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}

.node{
  position:absolute;
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.80);
  box-shadow: 0 0 14px rgba(255,255,255,.18);
}
.n1{left:18%; top:45%}
.n2{left:42%; top:22%}
.n3{left:62%; top:62%}
.n4{left:82%; top:38%}

.pulse{
  position:absolute;
  left:50%; top:50%;
  width:12px; height:12px;
  transform: translate(-50%,-50%);
  border-radius:999px;
  border:1px solid rgba(240,122,67,.55);
  box-shadow: 0 0 20px rgba(240,122,67,.22);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%{opacity:.25; transform:translate(-50%,-50%) scale(1)}
  45%{opacity:.8; transform:translate(-50%,-50%) scale(2.4)}
  100%{opacity:0; transform:translate(-50%,-50%) scale(3.2)}
}

.smallRow{display:flex; gap:10px; margin-top:12px}

.tabs{display:flex; gap:10px; margin-bottom:12px}
.tab{
  font-family: var(--mono);
  font-size:12px;
  padding:9px 10px;
  border-radius:12px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted2);
  cursor:pointer;
}
.tab.active{
  color:#160b07;
  background: rgba(240,122,67,.95);
  border-color: rgba(240,122,67,.25);
  font-weight:800;
}

.terminal{
  height:260px;
  overflow:auto;
  border-radius:16px;
  background: rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
  font-family: var(--mono);
  font-size:12px;
  line-height:1.65;
  color: rgba(255,255,255,.86);
  white-space:pre-wrap;
}

.grid{
  margin:30px auto 0;
  max-width:980px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  padding: 0 2px;
}
.card{
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.09);
  padding:16px;
}
.cardTop{font-family: var(--mono); color: rgba(240,122,67,.9); font-size:12px}
.cardTitle{margin-top:10px; font-size:18px; font-weight:900; letter-spacing:.02em}
.cardText{margin-top:8px; color: var(--muted); font-family: var(--mono); font-size:12.5px; line-height:1.65}

.how{
  margin:28px auto 0;
  max-width:980px;
  padding:18px 16px;
  border-radius:18px;
  background: rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.08);
}
.howTitle{font-family: var(--mono); color: rgba(255,255,255,.86); font-size:12px; margin-bottom:12px}
.howList{margin:0; padding-left:18px; color: var(--muted); font-family: var(--mono); line-height:1.8}
.howList li{margin:8px 0}
.howList span{
  display:inline-grid; place-items:center;
  width:20px; height:20px;
  margin-right:8px;
  border-radius:8px;
  background: rgba(240,122,67,.20);
  border:1px solid rgba(240,122,67,.35);
  color: rgba(240,122,67,.95);
  font-weight:900;
  font-size:12px;
}

.footer{
  margin:26px auto 0;
  max-width:980px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:16px 6px 0;
  color: var(--muted2);
  font-family: var(--mono);
  font-size:12px;
}

@media (max-width: 960px){
  .panelBody{grid-template-columns:1fr}
  .left{border-right:none; border-bottom:1px solid rgba(255,255,255,.08)}
  .grid{grid-template-columns:1fr}
  .footer{flex-direction:column}
}

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  .hero {
    padding: 48px 18px 28px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 56px);
    letter-spacing: .04em;
  }

  .sub {
    font-size: 14px;
    line-height: 1.6;
  }

  .ctaRow {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 14px;
  }

  .panel {
    margin-top: 28px;
    border-radius: 16px;
  }

  .panelBody {
    grid-template-columns: 1fr !important;
  }

  .left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .right {
    padding-top: 12px;
  }

  .input {
    font-size: 14px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab {
    flex: 1;
    text-align: center;
  }

  .terminal {
    height: 220px;
    font-size: 11px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how {
    padding: 16px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .topbar {
    padding: 14px 16px;
  }

  .nav {
    display: none;
  }

  .brandName {
    font-size: 16px;
  }

}