:root{
  --bg:#07111f;
  --panel:rgba(10,27,48,.82);
  --line:rgba(96,211,255,.45);
  --text:#eaf7ff;
  --muted:#98b8ca;
  --accent:#3fd9ff;
  --paper:#f4efe4;
  --warning:#ffbf58;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:
    radial-gradient(circle at 82% 8%,rgba(63,217,255,.16),transparent 32%),
    radial-gradient(circle at 8% 22%,rgba(255,191,88,.10),transparent 28%),
    linear-gradient(135deg,#050914,#0a1524 55%,#08111d);
  color:var(--text);
  font-family:"Courier New",Consolas,"Liberation Mono",monospace;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(63,217,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(63,217,255,.06) 1px,transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:linear-gradient(to bottom,black,transparent 92%);
  mask-image:linear-gradient(to bottom,black,transparent 92%);
}

a{color:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  padding:0 42px;
  border-bottom:1px solid rgba(96,211,255,.22);
  background:rgba(5,12,22,.76);
  backdrop-filter:blur(18px);
}

.logo{
  font-weight:900;
  letter-spacing:.16em;
  text-decoration:none;
}

.logo span{color:var(--accent)}

nav{display:flex;gap:22px;color:var(--muted);font-size:14px}
nav a{text-decoration:none}
nav a:hover{color:var(--accent)}

main{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

.hero{
  min-height:620px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}

.eyebrow,
section header p{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
}

h1{
  font-size:clamp(42px,6vw,78px);
  line-height:.92;
  margin:18px 0;
  text-transform:uppercase;
}

h1 em{color:var(--warning);font-style:normal}

.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  max-width:620px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.actions a{
  border:1px solid var(--accent);
  border-radius:999px;
  background:linear-gradient(135deg,#3fd9ff,#9af1ff);
  color:#03101d;
  font-weight:900;
  padding:14px 20px;
  text-decoration:none;
}

.actions .ghost{
  background:transparent;
  color:var(--text);
}

.technical-drawing{
  position:relative;
  height:460px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(6,18,32,.55);
  box-shadow:0 0 80px rgba(63,217,255,.12) inset;
}

.technical-drawing::before{
  content:"";
  position:absolute;
  inset:26px;
  border:1px dashed rgba(96,211,255,.28);
  border-radius:20px;
}

.machine{
  position:absolute;
  left:47%;
  top:52%;
  width:220px;
  height:285px;
  transform:translate(-50%,-50%);
  border:2px solid var(--accent);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.03),rgba(63,217,255,.08));
}

.machine::before,
.machine::after{
  content:"";
  position:absolute;
  border:1px solid var(--line);
}

.machine::before{width:280px;left:-30px;top:34px}
.machine::after{height:340px;left:50%;top:-28px}

.screen{
  position:absolute;
  top:48px;
  left:52px;
  width:116px;
  height:54px;
  border:1px solid var(--accent);
  display:grid;
  place-items:center;
  color:var(--accent);
  font-weight:900;
  font-size:24px;
}

.circle{
  position:absolute;
  top:130px;
  left:80px;
  width:62px;
  height:62px;
  border:2px solid var(--accent);
  border-radius:50%;
}

.nozzle{
  position:absolute;
  bottom:62px;
  left:94px;
  width:36px;
  height:58px;
  border:1px solid var(--accent);
}

.base{
  position:absolute;
  bottom:24px;
  left:42px;
  width:138px;
  height:22px;
  border:1px solid var(--accent);
}

.robot-orbit{
  position:absolute;
  right:42px;
  bottom:38px;
  width:122px;
  height:122px;
  border:1px dashed var(--line);
  border-radius:50%;
}

.robot-orbit span,
.robot-orbit i{
  position:absolute;
  border:1px solid var(--accent);
  border-radius:50%;
}

.robot-orbit span{inset:28px;background:rgba(63,217,255,.08)}
.robot-orbit i{width:12px;height:12px;right:15px;top:25px;background:var(--accent)}

.callout{
  position:absolute;
  border-left:1px solid var(--accent);
  padding-left:12px;
  color:#c9d6df;
  font-size:13px;
}

.c1{top:76px;left:40px}
.c2{top:210px;right:34px}
.c3{bottom:58px;left:48px}

section{margin:70px 0}

h2{
  font-size:clamp(30px,4vw,48px);
  margin:10px 0 24px;
  text-transform:uppercase;
}

.notice,
.card,
.score-grid div,
.adbox,
.article-grid article,
.brand-table article,
table{
  border:1px solid rgba(96,211,255,.28);
  background:var(--panel);
  border-radius:24px;
  box-shadow:0 22px 60px rgba(0,0,0,.18);
}

.notice{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
  padding:18px 22px;
}

.notice strong{
  color:var(--warning);
  letter-spacing:.16em;
}

.notice p{color:var(--muted);line-height:1.55;margin:0}

.cards,
.article-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.dessert-cards{
  grid-template-columns:repeat(3,1fr);
}

.card,
.article-grid article{
  padding:24px;
}

.card span{
  color:var(--accent);
  font-weight:900;
}

.card p,
.article-grid p,
.brand-table p,
.monetization p{
  color:var(--muted);
  line-height:1.6;
}

.brand-list{
  counter-reset:item;
  display:grid;
  gap:8px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.brand-list li{
  border-top:1px dashed rgba(96,211,255,.20);
  padding-top:8px;
  color:#d9f4ff;
}

.brand-list li::before{
  content:counter(item, decimal-leading-zero) " / ";
  counter-increment:item;
  color:var(--accent);
  font-weight:900;
}

.brand-matrix{
  border:1px solid rgba(96,211,255,.28);
  border-radius:28px;
  background:rgba(6,18,32,.42);
  padding:26px;
}

.brand-table{
  display:grid;
  grid-template-columns:repeat(7,minmax(170px,1fr));
  gap:14px;
  overflow-x:auto;
  padding-bottom:4px;
}

.brand-table article{
  min-width:170px;
  padding:18px;
}

.brand-table h3{
  color:var(--accent);
  font-size:14px;
  min-height:42px;
  text-transform:uppercase;
}

.product-board{
  border:1px solid rgba(96,211,255,.28);
  border-radius:30px;
  background:rgba(6,18,32,.42);
  padding:28px;
}

.product-board header{
  display:grid;
  grid-template-columns:minmax(260px,.7fr) 1fr;
  gap:22px;
  align-items:end;
  margin-bottom:24px;
}

.product-board header span{
  color:var(--muted);
  line-height:1.65;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.product-grid article{
  border:1px solid rgba(96,211,255,.24);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(63,217,255,.06));
  padding:20px;
}

.product-grid small{
  color:var(--accent);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.product-grid h3{
  color:var(--text);
  min-height:54px;
}

.product-grid p,
.product-grid li{
  color:var(--muted);
  line-height:1.55;
}

.product-grid ul{
  border-top:1px dashed rgba(96,211,255,.20);
  display:grid;
  gap:6px;
  list-style:none;
  margin:16px 0 0;
  padding:12px 0 0;
}

.product-grid li::before{
  content:"// ";
  color:var(--warning);
}

.alltime-ranking{
  border:1px solid rgba(255,191,88,.30);
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(255,191,88,.08),rgba(10,27,48,.82)),
    var(--panel);
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.24);
}

.alltime-ranking header{
  display:grid;
  grid-template-columns:minmax(260px,.7fr) 1fr;
  gap:22px;
  align-items:end;
  margin-bottom:24px;
}

.alltime-ranking header span{
  color:var(--muted);
  line-height:1.65;
}

.rank-list{
  display:grid;
  gap:12px;
}

.rank-list article{
  display:grid;
  grid-template-columns:64px minmax(160px,.35fr) 1fr;
  gap:18px;
  align-items:center;
  border:1px solid rgba(96,211,255,.22);
  border-left:5px solid var(--warning);
  border-radius:18px;
  background:rgba(5,12,22,.45);
  padding:16px;
}

.rank-list b{
  color:var(--warning);
  font-size:28px;
}

.rank-list h3{
  margin:0;
  color:var(--text);
  text-transform:uppercase;
}

.rank-list p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.category-winners{
  display:grid;
  grid-template-columns:repeat(7,minmax(150px,1fr));
  gap:12px;
  margin-top:20px;
  overflow-x:auto;
}

.category-winners article{
  min-width:150px;
  border:1px dashed rgba(255,191,88,.34);
  border-radius:18px;
  background:rgba(255,191,88,.06);
  padding:16px;
}

.category-winners span,
.category-winners small{
  color:var(--muted);
  display:block;
}

.category-winners strong{
  color:var(--warning);
  display:block;
  font-size:20px;
  margin:8px 0;
}

.table-wrap{overflow-x:auto}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
}

th,td{
  text-align:left;
  padding:18px;
  border-bottom:1px solid rgba(96,211,255,.14);
}

th{
  color:var(--accent);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.pill{
  display:inline-block;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--warning);
  padding:8px 10px;
  white-space:nowrap;
}

.score-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.score-grid div{
  padding:24px;
}

.score-grid strong{
  color:var(--accent);
  font-size:30px;
}

.adbox{
  margin-top:18px;
  min-height:110px;
  display:grid;
  place-items:center;
  color:var(--muted);
  border-style:dashed;
}

footer{
  border-top:1px solid rgba(96,211,255,.22);
  padding:36px;
  text-align:center;
  color:var(--muted);
}

footer a{text-decoration:none}

@media (max-width:900px){
  .topbar{padding:0 20px}
  nav{display:none}
  .hero{grid-template-columns:1fr;padding-top:40px}
  .cards,
  .article-grid,
  .dessert-cards,
  .score-grid,
  .notice,
  .product-board header,
  .alltime-ranking header,
  .rank-list article{grid-template-columns:1fr}

  .product-grid{grid-template-columns:1fr}
}
