:root{
  --obsidian:#14121a;
  --charcoal:#1e1b24;
  --panel:#242030;
  --tnt-red:#e6432a;
  --blast-orange:#ff8c3d;
  --warn-yellow:#f2c230;
  --paper:#f3efe8;
  --paper-dim:#c9c3ba;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--obsidian);
  color:var(--paper);
  font-family:'Rubik', sans-serif;
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}
.pixel{ font-family:'Press Start 2P', monospace; }
.mono{ font-family:'JetBrains Mono', monospace; }
a{ color:inherit; text-decoration:none; }
.fuse{
  height:14px;
  width:100%;
  background:repeating-linear-gradient(
    -45deg,
    var(--warn-yellow) 0 22px,
    var(--obsidian) 22px 44px
  );
  background-size:200% 100%;
  animation:fuse-burn 6s linear infinite;
}
@keyframes fuse-burn{
  from{ background-position:0 0; }
  to{ background-position:-200px 0; }
}
header{
  position:sticky; top:0; z-index:50;
  background:rgba(20,18,26,0.92);
  backdrop-filter:blur(6px);
  border-bottom:2px solid var(--charcoal);
}
.nav-wrap{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{
  height:34px;
  width:auto;
  display:block;
}
nav ul{ list-style:none; display:flex; gap:28px; }
nav a{
  font-size:14px; font-weight:600; color:var(--paper-dim);
  transition:color .15s ease;
}
nav a:hover, nav a:focus-visible{ color:var(--warn-yellow); outline:none; }
.hero{
  max-width:1180px; margin:0 auto;
  padding:72px 28px 80px;
  text-align:center;
  position:relative;
}
.eyebrow{
  display:inline-block;
  font-family:'Press Start 2P', monospace;
  font-size:10px;
  color:var(--obsidian);
  background:var(--warn-yellow);
  padding:8px 14px;
  margin-bottom:28px;
  box-shadow:3px 3px 0 var(--tnt-red);
}
.hero-logo{
  max-width:min(560px, 90vw);
  width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 6px 0 rgba(0,0,0,0.35));
}
.hero-sub{
  max-width:560px; margin:26px auto 0;
  font-size:17px; line-height:1.7; color:var(--paper-dim);
}
.ip-box{
  margin:44px auto 0;
  display:inline-flex; align-items:center; gap:0;
  background:var(--charcoal);
  border:3px solid var(--panel);
}
.ip-box .ip-text{
  font-family:'JetBrains Mono', monospace;
  font-weight:700;
  font-size:20px;
  padding:16px 22px;
  color:var(--warn-yellow);
  letter-spacing:0.5px;
}
.copy-btn{
  font-family:'Press Start 2P', monospace;
  font-size:11px;
  background:var(--tnt-red);
  color:var(--paper);
  border:none;
  padding:16px 20px;
  cursor:pointer;
  height:100%;
  transition:background .15s ease, transform .1s ease;
}
.copy-btn:hover{ background:var(--blast-orange); }
.copy-btn:active{ transform:scale(0.96); }
.copy-btn:focus-visible{ outline:3px solid var(--warn-yellow); outline-offset:2px; }
.hero-note{
  margin-top:14px;
  font-size:13px;
  color:var(--paper-dim);
}
.hero-note .dot{
  display:inline-block; width:8px; height:8px; border-radius:50%;
  background:#4ade80; margin-right:6px;
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }
section{ max-width:1180px; margin:0 auto; padding:80px 28px; }
.section-head{ margin-bottom:48px; }
.section-tag{
  font-family:'JetBrains Mono', monospace;
  font-size:12px; font-weight:700;
  color:var(--blast-orange);
  text-transform:uppercase; letter-spacing:2px;
}
h2{
  font-family:'Press Start 2P', monospace;
  font-size:clamp(20px, 3.4vw, 30px);
  margin-top:10px; line-height:1.5;
}
.modes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}
.mode-card{
  background:var(--panel);
  border:2px solid var(--charcoal);
  border-top:5px solid var(--mode-color, var(--tnt-red));
  padding:26px 22px;
  transition:transform .15s ease, border-color .15s ease;
}
.mode-card:hover{ transform:translateY(-4px); }
.mode-icon{
  width:38px; height:38px;
  background:var(--mode-color, var(--tnt-red));
  margin-bottom:18px;
  box-shadow:3px 3px 0 var(--obsidian);
}
.mode-card h3{
  font-family:'Press Start 2P', monospace;
  font-size:13px; line-height:1.6; margin-bottom:12px;
}
.mode-card p{ font-size:14px; line-height:1.6; color:var(--paper-dim); }
.stats-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  background:var(--charcoal);
  border:2px solid var(--panel);
}
.stat{
  padding:30px 20px;
  text-align:center;
  border-right:2px solid var(--panel);
}
.stat:last-child{ border-right:none; }
.stat-num{
  font-family:'Press Start 2P', monospace;
  font-size:24px;
  color:var(--warn-yellow);
}
.stat-label{
  margin-top:10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--paper-dim);
}
.steps{ display:flex; flex-direction:column; gap:0; }
.step{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:24px;
  padding:26px 0;
  border-bottom:2px solid var(--charcoal);
  align-items:start;
}
.step:last-child{ border-bottom:none; }
.step-num{
  font-family:'Press Start 2P', monospace;
  font-size:22px;
  color:var(--tnt-red);
}
.step h3{ font-size:17px; font-weight:600; margin-bottom:8px; }
.step p{ font-size:14px; line-height:1.7; color:var(--paper-dim); max-width:520px; }
.step code{
  font-family:'JetBrains Mono', monospace;
  background:var(--charcoal);
  padding:2px 8px;
  color:var(--warn-yellow);
}
.cta{
  text-align:center;
  background:var(--panel);
  border:2px solid var(--charcoal);
  padding:64px 28px;
}
.cta h2{ margin-bottom:16px; }
.cta p{ color:var(--paper-dim); margin-bottom:32px; }
.cta-buttons{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn{
  font-family:'Press Start 2P', monospace;
  font-size:12px;
  padding:16px 24px;
  border:none;
  cursor:pointer;
  transition:transform .1s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--tnt-red); color:var(--paper); box-shadow:4px 4px 0 var(--warn-yellow); }
.btn-ghost{ background:transparent; color:var(--paper); border:2px solid var(--paper-dim); }
footer{
  border-top:2px solid var(--charcoal);
  padding:40px 28px;
  text-align:center;
  color:var(--paper-dim);
  font-size:13px;
}
footer .ip-mono{ color:var(--warn-yellow); font-family:'JetBrains Mono', monospace; }
@media (max-width:640px){
  nav ul{ display:none; }
  .ip-box{ flex-direction:column; width:100%; }
  .copy-btn{ width:100%; }
  .step{ grid-template-columns:1fr; }
}