:root{
  --bg:#05060A;
  --surface:#0B0D14;
  --surface2:#0F1320;
  --text:#EDEDED;
  --muted:#9AA0AA;
  --border:rgba(255,255,255,.08);
  --red:#E50914;
  --red2:#FF2A2A;
  --shadow: 0 18px 55px rgba(0,0,0,.65);
  --glow: 0 0 24px rgba(229,9,20,.35);
  --glow2: 0 0 60px rgba(255,42,42,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(700px 340px at 75% 18%, rgba(229,9,20,.18), transparent 60%),
    radial-gradient(520px 280px at 18% 78%, rgba(255,42,42,.11), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 18%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

.noise{
  pointer-events:none;
  position:fixed; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 3px);
  opacity:.05;
  mix-blend-mode: overlay;
}

.wrap{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.mono{ font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.muted{ color:var(--muted); }
.small{ font-size:12px; }

.red{ color:var(--red2); }
.ok{ color:#b7ffda; text-shadow: 0 0 18px rgba(183,255,218,.16); }

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(5,6,10,.65);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:var(--text);
}
.brand__mark{
  width:34px; height:34px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(11px 11px at 64% 40%, rgba(255,42,42,.95), transparent 62%),
    radial-gradient(18px 18px at 60% 44%, rgba(229,9,20,.35), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--glow2);
}
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__title{
  font-family: Anton, Inter, sans-serif;
  letter-spacing:.8px;
  font-size:18px;
}
.brand__mode{
  margin-top:4px;
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.65);
}

.nav{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
.nav__link{
  text-decoration:none;
  color:rgba(255,255,255,.76);
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav__link:hover{
  border-color: rgba(229,9,20,.35);
  box-shadow: var(--glow);
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:26px;
  padding:56px 0 24px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  font-size:12px;
  color:rgba(255,255,255,.78);
}
.pill__dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--red2);
  box-shadow: var(--glow);
}

.h1{
  font-family: Anton, Inter, sans-serif;
  font-size:56px;
  line-height:1.02;
  margin:16px 0 14px;
  letter-spacing:.6px;
}
.lead{
  margin:0;
  color: rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.7;
  max-width:58ch;
}

.hero__cta{
  display:flex;
  gap:12px;
  margin:22px 0 18px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:12px 16px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.06em;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  user-select:none;
}
.btn--primary{
  color:white;
  background: linear-gradient(180deg, var(--red2), var(--red));
  box-shadow: var(--glow);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: var(--glow), 0 18px 60px rgba(0,0,0,.4); }
.btn--ghost{
  color:rgba(255,255,255,.86);
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.09);
}
.btn--ghost:hover{ border-color: rgba(229,9,20,.35); box-shadow: var(--glow); transform: translateY(-1px); }

.btn__shine{
  position:absolute;
  inset:-2px;
  border-radius:18px;
  background: radial-gradient(220px 60px at 30% 0%, rgba(255,255,255,.35), transparent 55%);
  opacity:.22;
  pointer-events:none;
}

/* Mini stats */
.mini{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.mini__item{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.mini__k{ display:block; font-size:11px; color:rgba(255,255,255,.62); letter-spacing:.08em; }
.mini__v{ display:block; margin-top:6px; font-weight:800; font-size:13px; }

/* Panel */
.panel{
  height:100%;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.panel__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
}
.panel__dots span{
  display:inline-block;
  width:9px; height:9px;
  border-radius:99px;
  margin-right:7px;
  background: rgba(255,255,255,.18);
}
.panel__title{ font-size:12px; letter-spacing:.12em; color:rgba(255,255,255,.65); }
.panel__body{ padding:16px; position:relative; }

.log{
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.26);
  box-shadow: inset 0 0 0 1px rgba(229,9,20,.06);
}
.log__line{ font-size:12px; line-height:1.7; color:rgba(255,255,255,.82); }
.log__line .muted{ color:rgba(255,255,255,.48); }

.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.card{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.card__icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:14px;
  color: var(--red2);
  border:1px solid rgba(229,9,20,.35);
  box-shadow: var(--glow);
  background: rgba(229,9,20,.08);
}
.card__title{ font-weight:900; font-size:13px; letter-spacing:.03em; }
.card__desc{ margin-top:4px; font-size:12px; color:rgba(255,255,255,.66); line-height:1.5; }

/* Eye glow element */
.eyeGlow{
  position:absolute;
  right:-60px;
  bottom:-60px;
  width:220px; height:220px;
  border-radius:999px;
  background:
    radial-gradient(circle at 45% 40%, rgba(255,42,42,.60), transparent 42%),
    radial-gradient(circle at 45% 40%, rgba(229,9,20,.22), transparent 68%);
  filter: blur(0px);
  opacity:.75;
  pointer-events:none;
}

/* Sections */
.section{ padding:42px 0 16px; }
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.h2{
  font-family: Anton, Inter, sans-serif;
  letter-spacing:.6px;
  margin:0;
  font-size:30px;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.step{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:14px 14px;
  position:relative;
  overflow:hidden;
}
.step::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(240px 80px at 20% 0%, rgba(229,9,20,.14), transparent 60%);
  opacity:.65;
  pointer-events:none;
}
.step__num{
  font-family: "JetBrains Mono";
  letter-spacing:.2em;
  color:rgba(255,255,255,.52);
  font-size:12px;
}
.step__title{
  margin-top:8px;
  font-weight:900;
  letter-spacing:.04em;
}
.step__desc{
  margin-top:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.tile{
  padding:14px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.tile__title{
  font-weight:900;
  letter-spacing:.03em;
}
.tile__desc{
  margin-top:8px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.6;
}

.section--security .security{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding:10px 12px;
}
.security__row{
  display:flex;
  gap:10px;
  padding:10px 8px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  line-height:1.5;
}
.security__row:last-child{ border-bottom:0; }

.badge{
  min-width:54px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  color:white;
  background: linear-gradient(180deg, var(--red2), var(--red));
  box-shadow: var(--glow);
}
.badge--warn{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.85);
  box-shadow:none;
}

.finalCTA{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px 0;
  flex-wrap:wrap;
}
.footer__brand{
  letter-spacing:.22em;
  font-size:12px;
  color:rgba(255,255,255,.65);
}
.footer__copy{ margin-top:6px; font-size:13px; }
.footer__link{ color:rgba(255,255,255,.86); text-decoration:none; border-bottom:1px solid rgba(229,9,20,.35); }
.footer__link:hover{ color:white; box-shadow: var(--glow); }

/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .h1{ font-size:46px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .wrap{ width: min(1120px, calc(100% - 26px)); }
  .h1{ font-size:40px; }
  .cards{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:10px 0;
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.check input{ transform: translateY(2px); }

.drop{
  border-radius:20px;
  border:1px dashed rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  padding:18px;
  cursor:pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.drop:hover{
  border-color: rgba(229,9,20,.45);
  box-shadow: 0 0 0 1px rgba(229,9,20,.12), var(--glow);
  transform: translateY(-1px);
}
.drop.is-dragover{
  border-color: rgba(255,42,42,.75);
  box-shadow: 0 0 0 1px rgba(255,42,42,.18), var(--glow);
}
.drop__title{
  font-weight:900;
  letter-spacing:.04em;
}
.drop__sub{ margin-top:8px; font-size:12px; }

