:root  {
  --ink:#16201f;
  --paper:#f3efe5;
  --acid:#c4ff38;
  --coral:#ff725c;
  --line:#b9b8ae;
  --muted:#66706d;
}
*  {
  box-sizing:border-box;
}
html  {
  scroll-behavior:smooth;
}
body  {
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:"Space Grotesk",sans-serif;
}
.site-header  {
  min-height:106px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:20px clamp(24px,6vw,96px);
  border-bottom:1px solid var(--ink);
  overflow:hidden;
}
.header-glow  {
  position:absolute;
  width:340px;
  height:340px;
  right:24%;
  top:-250px;
  background:var(--acid);
  filter:blur(45px);
  opacity:.68;
}
.logo,.main-nav  {
  position:relative;
  z-index:1;
}
.logo  {
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--ink);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:.07em;
}
.logo-mark  {
  display:grid;
  place-items:center;
  width:43px;
  height:43px;
  background:var(--ink);
  color:var(--acid);
  font:600 17px "IBM Plex Mono",monospace;
}
.main-nav  {
  display:flex;
  align-items:center;
  gap:clamp(14px,2.5vw,38px);
}
.main-nav a  {
  color:var(--ink);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}
.main-nav a:hover,.main-nav a.active  {
  color:#bd3f31;
}
.hero  {
  min-height:510px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  gap:50px;
  padding:80px clamp(24px,10vw,160px);
  background:var(--ink);
  color:#fff;
}
.eyebrow,.section-label  {
  margin:0 0 18px;
  font:500 12px "IBM Plex Mono",monospace;
  letter-spacing:.07em;
}
.eyebrow  {
  color:var(--acid);
}
.hero h1,.section h2  {
  margin:0;
  letter-spacing:-.06em;
  line-height:.95;
}
.hero h1  {
  font-size:clamp(48px,6vw,88px);
}
.hero h1 span  {
  color:var(--acid);
}
.intro  {
  max-width:570px;
  color:#d2d8d3;
  font-size:18px;
  line-height:1.55;
}
.button  {
  display:inline-flex;
  align-items:center;
  gap:24px;
  margin-top:18px;
  padding:14px 17px;
  color:var(--ink);
  background:var(--acid);
  font:600 14px "IBM Plex Mono",monospace;
  text-decoration:none;
}
.button span  {
  font-size:23px;
  line-height:0;
}
.terminal  {
  max-width:430px;
  justify-self:end;
  width:100%;
  background:#283330;
  border:1px solid #53625d;
  box-shadow:12px 12px 0 rgba(196,255,56,.2);
  font:14px "IBM Plex Mono",monospace;
}
.terminal-bar  {
  display:flex;
  align-items:center;
  gap:6px;
  height:36px;
  padding:0 11px;
  border-bottom:1px solid #53625d;
}
.terminal-bar span  {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--coral);
}
.terminal-bar span:nth-child(2) {
  background:#f5d65b
}
.terminal-bar span:nth-child(3) {
  background:var(--acid)
}
.terminal-bar p  {
  margin:0 auto;
  color:#b9c4bd;
  font-size:11px;
}
.terminal-body  {
  min-height:205px;
  padding:22px;
}
.terminal-body p  {
  margin:0 0 11px;
}
.prompt,.success  {
  color:var(--acid);
}
.prompt,.danger  {
  color:#ff5c33;
}
.dim  {
  color:#aab4af;
}
.cursor  {
  display:inline-block;
  width:8px;
  height:15px;
  background:var(--acid);
  vertical-align:-3px;
  animation:blink 1s steps(2) infinite;
}
@keyframes blink  {
  50% {
    opacity:0
  }
}
.page-intro  {
  padding:80px clamp(24px,10vw,160px) 75px;
  background:var(--ink);
  color:#fff;
}
.page-intro h1  {
  margin:0;
  font-size:clamp(48px,6.5vw,92px);
  letter-spacing:-.065em;
  line-height:.9;
}
.page-intro h1 span  {
  color:var(--acid);
}
.quick-links  {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:60px;
}
.quick-link-grid  {
  display:grid;
  gap:12px;
}
.quick-link  {
  display:grid;
  grid-template-columns:150px 1fr auto;
  gap:18px;
  align-items:center;
  min-height:90px;
  padding:20px;
  border:1px solid var(--ink);
  color:var(--ink);
  text-decoration:none;
}
.quick-link:hover  {
  background:var(--ink);
  color:#fff;
}
.quick-link span  {
  color:#bd3f31;
  font:11px "IBM Plex Mono",monospace;
}
.quick-link strong  {
  font-size:20px;
  letter-spacing:-.03em;
}
.quick-link i  {
  font:20px "IBM Plex Mono",monospace;
  font-style:normal;
}
.quick-link.featured  {
  background:var(--coral);
}
.quick-link.featured:hover  {
  background:var(--coral);
  color:var(--ink);
}
.latest-post  {
  max-width:850px;
  padding:38px;
  background:var(--ink);
  color:#fff;
}
.latest-post>p:first-child  {
  color:var(--acid);
  font:12px "IBM Plex Mono",monospace;
}
.latest-post h2  {
  margin:10px 0 18px;
}
.latest-post>p:not(:first-child)  {
  max-width:650px;
  line-height:1.55;
}
.more-posts  {
  margin-top:54px;
}
.section  {
  padding:90px clamp(24px,10vw,160px);
}
.section-label  {
  color:#bd3f31;
}
.about  {
  display:grid;
  grid-template-columns:.6fr 1.4fr;
  gap:70px;
  border-bottom:1px solid var(--line);
}
.section h2  {
  font-size:clamp(38px,4.4vw,66px);
}
.about h2 span  {
  color:#bd3f31;
}
.about p  {
  max-width:670px;
  font-size:18px;
  line-height:1.55;
}
.collection  {
  background:#e9e4d8;
}
.collection-heading  {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:42px;
}
.collection-heading p  {
  max-width:390px;
  margin:0;
  line-height:1.5;
}
.collection-layout  {
  display:grid;
  grid-template-columns:260px 1fr;
  min-height:525px;
  border:1px solid var(--ink);
  background:var(--paper);
}
.computer-list  {
  max-height:525px;
  overflow:auto;
  border-right:1px solid var(--ink);
}
.manufacturer  {
  margin:0;
  padding:18px 13px 7px;
  border-bottom:1px solid #d3cfc4;
  background:#d8d3c4;
  color:var(--ink);
  font:600 12px "IBM Plex Mono",monospace;
  letter-spacing:.06em;
}
.device-type  {
  margin:0;
  padding:9px 13px 5px;
  color:var(--muted);
  font:11px "IBM Plex Mono",monospace;
  letter-spacing:.06em;
}
.computer  {
  width:100%;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border:0;
  border-bottom:1px solid #d3cfc4;
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
  font:14px "Space Grotesk",sans-serif;
}
.computer small  {
  color:var(--muted);
  font:11px "IBM Plex Mono",monospace;
}
.computer:hover,.computer.active  {
  background:var(--ink);
  color:#fff;
}
.computer.active small  {
  color:#c9d2cb;
}
.computer-detail  {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
  padding:44px;
}
.machine-visual  {
  position:relative;
  width:280px;
  height:230px;
  margin:auto;
}
.monitor  {
  width:255px;
  height:170px;
  padding:12px;
  background:#d8d3c4;
  border:10px solid #4d504d;
  border-radius:12px 12px 4px 4px;
  box-shadow:10px 11px 0 #96958c;
}
.screen  {
  height:100%;
  padding:18px;
  background:#314738;
  color:var(--acid);
  font:17px "IBM Plex Mono",monospace;
  text-shadow:0 0 5px #a8f727;
}
.screen span  {
  color:#e0f0d7;
  font-size:13px;
}
.monitor-neck  {
  width:55px;
  height:22px;
  margin:0 auto;
  background:#4d504d;
}
.keyboard  {
  width:280px;
  height:32px;
  margin-top:-1px;
  background:repeating-linear-gradient(90deg,#494b49 0 17px,#79807b 18px 19px),repeating-linear-gradient(0deg,transparent 0 10px,#8f938c 11px 12px);
  border:5px solid #4d504d;
  transform:perspective(100px) rotateX(15deg);
}
.detail-copy h3  {
  margin:0 0 15px;
  font-size:40px;
  letter-spacing:-.05em;
}
.detail-copy>p  {
  line-height:1.55;
}
.detail-copy dl  {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:30px 0 0;
}
.detail-copy dl div  {
  padding-top:12px;
  border-top:2px solid var(--ink);
}
.detail-copy dt  {
  margin-bottom:5px;
  color:var(--muted);
  font:11px "IBM Plex Mono",monospace;
  text-transform:uppercase;
}
.detail-copy dd  {
  margin:0;
  font-weight:600;
  font-size:14px;
}
.posts h2  {
  margin-bottom:36px;
}
.post-grid  {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.post-grid article  {
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:26px;
  background:var(--ink);
  color:#fff;
}
.post-grid article:nth-child(2)  {
  background:var(--coral);
  color:var(--ink);
}
.post-grid p  {
  margin:0;
  color:var(--acid);
  font:11px "IBM Plex Mono",monospace;
}
.post-grid article:nth-child(2) p  {
  color:var(--ink);
}
.post-grid h3  {
  margin:24px 0;
  max-width:250px;
  font-size:28px;
  letter-spacing:-.045em;
  line-height:1;
}
.post-grid a  {
  color:inherit;
  font:13px "IBM Plex Mono",monospace;
}
footer  {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:26px clamp(24px,6vw,96px);
  background:var(--acid);
  font:11px "IBM Plex Mono",monospace;
}
.machine-photo  {
  width:min(100%,330px);
  margin:0 auto;
}
.machine-photo img  {
  display:block;
  width:100%;
  max-height:275px;
  object-fit:contain;
  background:#d8d3c4;
}
.machine-photo figcaption  {
  margin-top:9px;
  color:var(--muted);
  font:11px "IBM Plex Mono",monospace;
  line-height:1.4;
}
.machine-photo.no-photo  {
  min-height:230px;
  display:grid;
  place-items:center;
  border:2px dashed var(--muted);
  background:#d8d3c4;
}
.machine-photo.no-photo img,.machine-photo.no-photo figcaption  {
  display:none;
}
.machine-photo.no-photo::after  {
  content:'BILD FOLGT';
  color:var(--muted);
  font:13px "IBM Plex Mono",monospace;
}
.specs,.full-text  {
  margin-top:32px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.specs h4,.full-text h4  {
  margin:0 0 12px;
  font:600 12px "IBM Plex Mono",monospace;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.specs ul  {
  display:grid;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}
.specs li  {
  position:relative;
  padding-left:18px;
  font-size:14px;
  line-height:1.45;
}
.specs li::before  {
  content:'+';
  position:absolute;
  left:0;
  color:#bd3f31;
  font-weight:700;
}
.full-text p  {
  margin:0 0 14px;
  font-size:15px;
  line-height:1.55;
}
.full-text p:last-child  {
  margin-bottom:0;
}
@media (max-width:760px)  {
  .site-header  {
    align-items:flex-start;
    min-height:0;
  }
  .main-nav  {
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:10px 16px;
  }
  .main-nav a  {
    font-size:12px;
  }
  .hero  {
    grid-template-columns:1fr;
    padding-top:65px;
    padding-bottom:65px;
  }
  .terminal  {
    justify-self:start;
  }
  .about,.quick-links  {
    grid-template-columns:1fr;
    gap:20px;
  }
  .quick-link  {
    grid-template-columns:1fr auto;
  }
  .quick-link span  {
    grid-column:1 / -1;
  }
  .collection-heading  {
    display:block;
  }
  .collection-heading p  {
    margin-top:20px;
  }
  .collection-layout  {
    grid-template-columns:1fr;
  }
  .computer-list  {
    display:flex;
    max-height:none;
    overflow:auto;
    border-right:0;
    border-bottom:1px solid var(--ink);
  }
  .computer  {
    min-width:118px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  .computer small  {
    display:none;
  }
  .computer-detail  {
    grid-template-columns:1fr;
    padding:28px;
  }
  .machine-visual  {
    transform:scale(.85);
    margin:-15px auto;
  }
  .detail-copy dl  {
    grid-template-columns:1fr;
  }
  .post-grid  {
    grid-template-columns:1fr;
  }
  .post-grid article  {
    min-height:170px;
  }
  footer  {
    flex-direction:column;
  }
  .section  {
    padding-top:65px;
    padding-bottom:65px;
  }
}
