:root{
  --bg: #07090c;
  --fg: #eef2f6;
  --muted: rgba(238, 242, 246, 0.72);
  --muted2: rgba(238, 242, 246, 0.55);

  --nav-bg: rgba(8, 10, 13, 0.62);
  --nav-border: rgba(255, 255, 255, 0.08);

  --pill: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
              var(--bg);
}

.page{
  min-height: 100%;
  padding: 18px 18px 60px;
}

/* Top Navbar */
.topnav{
  position: sticky;
  top: 14px;
  z-index: 100;
}

.topnav-inner{
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 16px 18px;

  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: var(--pill);

  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* Brand (Logo + Text) */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 22px;

  color: #ffd84a;
  text-shadow:
    0 0 6px rgba(255, 216, 74, 0.35),
    0 0 14px rgba(255, 216, 74, 0.25);

  transition: transform 0.15s ease;
}

.brand:hover {
  transform: scale(1.04);
}

/* Logo */
.brand-logo {
  height: 34px;
  width: auto;
  display: block;

  filter: drop-shadow(0 0 6px rgba(255, 216, 74, 0.4));
}

.brand-text{
  display: block;
}

/* Navigation links */
.nav-links{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-links a{
  display: inline-block;
  text-decoration: none;
  color: var(--fg);
  opacity: 0.95;
  font-weight: 600;
  font-size: 15px;
  position: relative;

  transition:
    transform 0.2s ease,
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.nav-links a:hover{
  color: #ffd84a;
  text-shadow:
    0 0 6px rgba(255, 216, 74, 0.4),
    0 0 16px rgba(255, 216, 74, 0.25);

  transform: scale(1.08);
}

/* Right actions */
.nav-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg{
  width: 18px;
  height: 18px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  line-height: 1;

  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-primary{
  background: #ffffff;
  color: #0b0f14;
}

.btn-primary:hover{
  filter: brightness(0.96);
  transform: scale(1.04);
}

/* Login */
.login{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: var(--fg);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;

  transition: transform 0.15s ease, background 0.15s ease;
}

.login:hover{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  transform: scale(1.04);
}

/* Main content wrapper */
.content{
  max-width: 1240px;
  margin: 22px auto 0;
}

/* 2-column layout: links content, rechts kompakte cards */
.layout{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.right{
  position: sticky;
  top: 110px; /* unterhalb navbar */
}

/* Hero */
.hero{
  padding: 26px 6px 10px;
}

.hero h1{
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.6px;
}

.hero p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Sections */
.section{
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.section h2{
  margin: 0 0 8px;
}

.section p{
  margin: 0;
  color: var(--muted2);
}

/* kompakte Feature-Spalte */
.features-compact{
  display: grid;
  gap: 14px;
}

/* dunkler + kleiner + ruhiger */
.feature-card.compact{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;

  padding: 14px 14px;
  border-radius: 16px;

  background:
    radial-gradient(420px 160px at 10% 0%, rgba(255, 216, 74, 0.07), transparent 55%),
    rgba(0,0,0,0.22);

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 10px 26px rgba(0,0,0,0.45);

  transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.feature-card.compact:hover{
  transform: translateY(-2px);
  border: 1px solid rgba(255, 216, 74, 0.18);
  box-shadow:
    0 12px 34px rgba(0,0,0,0.55),
    0 0 18px rgba(255,216,74,0.10);
}

.feature-icon.compact{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  background: rgba(255,216,74,0.06);
  border: 1px solid rgba(255,216,74,0.14);
  box-shadow: 0 0 14px rgba(255,216,74,0.10);
}

.feature-body h3{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.feature-body p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 980px){
  .layout{
    grid-template-columns: 1fr;
  }

  .right{
    position: static;
  }
}

@media (max-width: 720px){
  .topnav-inner{
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "links links";
    row-gap: 10px;
  }

  .nav-links{
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* ====== XL Hero + Right Rail (zentriert, größer, wie Referenz) ====== */

.content{
  max-width: 1240px;
  margin: 26px auto 0;
}

/* 2-column layout, bewusst "kompakt" im Zentrum */
.layout-xl{
  display: grid;
  grid-template-columns: minmax(520px, 640px) 360px;
  gap: 36px;
  align-items: start;

  /* optisch wie Card-Gruppe mittig */
  justify-content: center;
}

/* HERO CARD */
.hero-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(900px 420px at 75% 55%, rgba(255, 216, 74, 0.16), transparent 55%),
    rgba(255,255,255,0.03);
  box-shadow:
    0 14px 48px rgba(0,0,0,0.55);

  padding: 34px 34px 22px;
}

.hero-title{
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.accent{
  color: #ffd84a;
  text-shadow:
    0 0 8px rgba(255, 216, 74, 0.35),
    0 0 22px rgba(255, 216, 74, 0.20);
}

.hero-sub{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}

.hero-actions{
  display: flex;
  gap: 12px;
  margin: 8px 0 18px;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  color: #0b0f14;
  background: #ffd84a;

  box-shadow:
    0 0 0 1px rgba(255,216,74,0.22),
    0 10px 26px rgba(0,0,0,0.45),
    0 0 22px rgba(255,216,74,0.22);

  transition: transform 0.15s ease, filter 0.15s ease;
}

.cta:hover{
  transform: translateY(-1px) scale(1.02);
  filter: brightness(0.98);
}

.cta-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  color: var(--fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
}

.cta-ghost:hover{
  transform: translateY(-1px);
  border: 1px solid rgba(255,216,74,0.18);
  background: rgba(255,216,74,0.05);
}

/* STATS ROW */
.hero-stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}

.stat{
  padding: 16px 14px;
  text-align: center;
}

.stat + .stat{
  border-left: 1px solid rgba(255,255,255,0.06);
}

.stat-value{
  font-size: 22px;
  font-weight: 800;
  color: #ffd84a;
  text-shadow: 0 0 10px rgba(255,216,74,0.20);
}

.stat-label{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

/* RIGHT RAIL */
.feature-rail{
  display: grid;
  gap: 16px;

  position: sticky;
  top: 110px;
}

.feature-card-xl{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(560px 220px at 15% 0%, rgba(255, 216, 74, 0.10), transparent 58%),
    rgba(255,255,255,0.025);
  box-shadow: 0 12px 34px rgba(0,0,0,0.50);

  padding: 16px 16px;
  transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.feature-card-xl:hover{
  transform: translateY(-2px);
  border: 1px solid rgba(255,216,74,0.18);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.58),
    0 0 22px rgba(255,216,74,0.12);
}

.feature-head{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.feature-icon-xl{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;

  background: rgba(255,216,74,0.07);
  border: 1px solid rgba(255,216,74,0.16);
  box-shadow: 0 0 16px rgba(255,216,74,0.12);
}

.feature-titlewrap h3{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
}

.feature-titlewrap p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Bottom "menu/demo" style link */
.feature-link{
  text-decoration: none;
  color: var(--fg);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);

  transition: transform 0.18s ease, border 0.18s ease, background 0.18s ease;
}

.feature-link:hover{
  transform: translateY(-2px);
  border: 1px solid rgba(255,216,74,0.18);
  background: rgba(255,216,74,0.04);
}

.feature-link-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon-mini{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: rgba(255,216,74,0.07);
  border: 1px solid rgba(255,216,74,0.14);
}

.feature-link-sub{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
}

.feature-link-arrow{
  font-size: 18px;
  color: #ffd84a;
}

/* Responsive: stapeln */
@media (max-width: 1020px){
  .layout-xl{
    grid-template-columns: 1fr;
  }
  .feature-rail{
    position: static;
  }
  .hero-title{
    font-size: 40px;
  }
}


/* ===== Zentrierung des gesamten Hero-Blocks ===== */

.content{
  min-height: calc(100vh - 140px); /* Höhe minus Navbar */
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 100%;
  margin: 0;
}

.layout-xl{
  display: grid;
  grid-template-columns: minmax(520px, 640px) 360px;
  gap: 40px;

  align-items: center;     /* vertikal zentriert innerhalb */
  justify-content: center; /* horizontal zentriert */

  padding-bottom: 40px;
}

/* ===== Fine-Tuning: alles etwas größer und präsenter ===== */

.layout-xl{
  grid-template-columns: minmax(560px, 700px) 400px;
  gap: 52px;
}

/* HERO größer */
.hero-card{
  padding: 44px 44px 32px;
}

.hero-title{
  font-size: 54px;
}

.hero-sub{
  font-size: 16px;
}

/* Buttons etwas größer */
.cta,
.cta-ghost{
  padding: 14px 20px;
  font-size: 15px;
}

/* Stats größer */
.stat-value{
  font-size: 26px;
}

.stat-label{
  font-size: 13px;
}

/* Rechte Feature-Cards größer */
.feature-card-xl{
  padding: 20px 20px;
}

.feature-icon-xl{
  width: 52px;
  height: 52px;
  font-size: 20px;
}

.feature-titlewrap h3{
  font-size: 17px;
}

.feature-titlewrap p{
  font-size: 14px;
}

/* Docs / FAQ Card größer */
.feature-link{
  padding: 18px 18px;
}

.feature-icon-mini{
  width: 42px;
  height: 42px;
  font-size: 18px;
}

/* ===== Ambient animated background glow ===== */

.ambient-glow{
  position: relative;
}

.ambient-glow::before{
  content: "";
  position: absolute;
  inset: -200px; /* großflächig */
  z-index: -1;

  background:
    radial-gradient(600px 400px at 30% 40%, rgba(255,216,74,0.08), transparent 60%),
    radial-gradient(700px 500px at 70% 60%, rgba(255,216,74,0.06), transparent 65%);

  filter: blur(60px);
  opacity: 0.8;

  animation: glowFloat 18s ease-in-out infinite;
}

/* Sehr langsame Bewegung */
@keyframes glowFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-30px, -20px) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
}

:root{
  --logo-url: url("Transparent_hornet.png");
}

/* Subtiles Pattern im Hintergrund */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  /* Pattern: mehrere Logos verteilt */
  background-image: var(--logo-url);
  background-repeat: repeat;
  background-size: 140px 140px;     /* Größe der Kacheln */
  background-position: 30px 40px;

  opacity: 0.035;                  /* extrem subtil */
  filter: blur(0.2px) saturate(0.9);
  transform: rotate(-6deg);
}

body::before{
  -webkit-mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.9), rgba(0,0,0,0.05) 70%);
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.9), rgba(0,0,0,0.05) 70%);
}
/*
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  background-image: url("Transparent_hornet.png");
  background-repeat: repeat;
  background-size: 160px 160px;

  opacity: 0.03;
  transform: rotate(-6deg);
  animation: logoDrift 40s linear infinite;
}

@keyframes logoDrift{
  from { background-position: 0 0; }
  to   { background-position: 280px 180px; }
}


save for later*/


/* ===== Premium Grain Overlay ===== */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  /* sehr subtile Körnung als SVG-Noise */
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size: 180px 180px;

  opacity: 0.06;           /* wichtig: extrem niedrig */
  mix-blend-mode: overlay; /* macht es "filmisch" */
}

/* ===== Mouse Parallax Vars (Default = 0) ===== */
:root{
  --px: 0;    /* Glow drift X */
  --py: 0;    /* Glow drift Y */
  --patx: 0;  /* Pattern drift X */
  --paty: 0;  /* Pattern drift Y */
}

/* Deine Ambient-Glow Ebene: leicht mit Maus bewegen */
.ambient-glow::before{
  transform: translate(calc(var(--px) * 1px), calc(var(--py) * 1px)) scale(1);
}

/* Dein Logo-Pattern (body::before) driftet sehr subtil mit */
body::before{
  background-position: calc(30px + (var(--patx) * 1px)) calc(40px + (var(--paty) * 1px));
}

/* ===== Reveal on scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  filter: blur(2px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: opacity, transform, filter;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.feature-rail .reveal:nth-child(1){ transition-delay: 0.06s; }
.feature-rail .reveal:nth-child(2){ transition-delay: 0.12s; }
.feature-rail .reveal:nth-child(3){ transition-delay: 0.18s; }
.feature-rail .reveal:nth-child(4){ transition-delay: 0.24s; }

/* ===== CTA Micro Pulse ===== */
.cta{
  animation: ctaPulse 7.5s ease-in-out infinite;
}

@keyframes ctaPulse{
  0%, 70%, 100%{
    box-shadow:
      0 0 0 1px rgba(255,216,74,0.22),
      0 10px 26px rgba(0,0,0,0.45),
      0 0 22px rgba(255,216,74,0.22);
    transform: translateY(0);
  }
  78%{
    box-shadow:
      0 0 0 1px rgba(255,216,74,0.28),
      0 12px 30px rgba(0,0,0,0.52),
      0 0 30px rgba(255,216,74,0.28);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce){
  .cta{ animation: none; }
  .reveal{ transition: none; transform: none; filter: none; opacity: 1; }
  .ambient-glow::before{ animation: none; }
}

/* ===== Requirements Section ===== */
.req{
  margin: 44px auto 0;
  max-width: 1240px;
  padding: 0 6px 50px;
}

.req-head{
  text-align: center;
  margin: 18px 0 22px;
}

.req-title{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.6px;
}

.req-sub{
  margin: 0 auto 16px;
  max-width: 70ch;
  color: var(--muted);
}

.req-toggle{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.req-pill{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 13px;
}

.req-pill.is-active{
  background: rgba(255, 216, 74, 0.16);
  border: 1px solid rgba(255, 216, 74, 0.22);
  color: #ffd84a;
  text-shadow: 0 0 10px rgba(255,216,74,0.20);
}

.req-shell{
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(900px 420px at 70% 45%, rgba(255, 216, 74, 0.10), transparent 60%),
    rgba(255,255,255,0.03);
  box-shadow: 0 14px 48px rgba(0,0,0,0.55);
}

/* Diagram */
.req-diagram{
  padding: 22px 22px 16px;
}

.diagram-row{
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 8px 16px;
}

.device{
  width: 160px;
  margin: 0 auto;
  position: relative;
}
.device-screen{
  height: 96px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.device-stand{
  width: 60px;
  height: 10px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.device-label{
  text-align: center;
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 650;
}

.wire{
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,216,74,0.65), transparent);
  box-shadow: 0 0 16px rgba(255,216,74,0.25);
  border-radius: 999px;
}

.dongle{
  width: 160px;
  margin: 0 auto;
  position: relative;
}
.dongle-top{
  width: 70px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 10px;
  background: rgba(255,216,74,0.08);
  border: 1px solid rgba(255,216,74,0.18);
}
.dongle-body{
  height: 80px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}
.dongle-label{
  text-align: center;
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 650;
}

.diagram-note{
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

/* Blocks */
.req-block{
  padding: 18px 18px;
}

.block-head h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 850;
}

.block-head p{
  margin: 0 0 14px;
  color: var(--muted2);
  font-size: 13px;
}

.req-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.req-item.is-recommended{
  border: 1px solid rgba(255,216,74,0.22);
  background:
    radial-gradient(520px 200px at 20% 0%, rgba(255,216,74,0.12), transparent 58%),
    rgba(0,0,0,0.18);
}

.req-item-left{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.req-bullet{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,216,74,0.07);
  border: 1px solid rgba(255,216,74,0.14);
  box-shadow: 0 0 14px rgba(255,216,74,0.10);
  flex: 0 0 auto;
}

.req-item-title{
  font-weight: 850;
  font-size: 14px;
}

.req-item-sub{
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
  max-width: 64ch;
}

.req-link{
  text-decoration: none;
  color: #ffd84a;
  font-weight: 800;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0.95;
}
.req-link:hover{
  text-shadow: 0 0 12px rgba(255,216,74,0.22);
  transform: translateY(-1px);
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  margin-left: 8px;
  font-weight: 900;
}

.badge-rec{
  background: rgba(255,216,74,0.14);
  border: 1px solid rgba(255,216,74,0.22);
  color: #ffd84a;
}

.req-or{
  text-align: center;
  color: var(--muted2);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  margin: 12px 0;
}

/* Tags */
.tag-row{
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tag{
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

/* Lists */
.req-list, .req-notes{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check{
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: #ffd84a;
  background: rgba(255,216,74,0.08);
  border: 1px solid rgba(255,216,74,0.14);
}

.dot{
  display: inline-block;
  width: 16px;
  margin-right: 10px;
  color: #ffd84a;
}

/* CTA */
.req-cta{
  padding: 18px 18px;
  text-align: center;
}

.req-cta h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.req-cta p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.req-cta-btn{
  display: inline-flex;
}

/* Responsive */
@media (max-width: 760px){
  .diagram-row{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wire{ display: none; }
  .req-item{
    flex-direction: column;
    align-items: flex-start;
  }
  .req-link{ padding-top: 6px; }
}

/* Floating Discord Button */
.discord-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;

  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,216,74,0.25);
  color: #ffd84a;

  padding: 12px 16px;
  border-radius: 14px;

  font-weight: 800;
  font-size: 13px;
  text-decoration: none;

  backdrop-filter: blur(8px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    0 0 20px rgba(255,216,74,0.08);

  transition: all 0.2s ease;
}

.discord-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.7),
    0 0 30px rgba(255,216,74,0.25);
}

/* ===== Pricing / Hardware Shop Teaser ===== */

.pricing-page{
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 10px 6px 60px;
}

.pricing-head{
  text-align: center;
  margin: 8px 0 22px;
}
.pricing-title{
  margin: 0 0 8px;
  font-size: 40px;
  letter-spacing: -0.8px;
}
.pricing-sub{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
}

.hardware{
  max-width: 1100px;
  margin: 22px auto 0;
}

.hardware-top{
  text-align: center;
  margin-bottom: 14px;
}
.hardware-title{
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.4px;
}
.hardware-sub{
  margin: 0 auto;
  max-width: 76ch;
  color: var(--muted2);
}

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

.product-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(800px 360px at 65% 45%, rgba(255, 216, 74, 0.10), transparent 60%),
    rgba(255,255,255,0.03);
  box-shadow: 0 14px 48px rgba(0,0,0,0.55);
  overflow: hidden;

  transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  border: 1px solid rgba(255,216,74,0.18);
  box-shadow: 0 18px 56px rgba(0,0,0,0.60), 0 0 22px rgba(255,216,74,0.10);
}

.product-media{
  position: relative;
  height: 170px;
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
}

.product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.product-media.media-fallback .media-fallback-box{
  display: grid;
}
.media-fallback-box{
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(238,242,246,0.7);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  background:
    radial-gradient(500px 220px at 60% 40%, rgba(255,216,74,0.10), transparent 60%),
    rgba(0,0,0,0.20);
}

.badge-deal{
  background: rgba(255,216,74,0.14);
  border: 1px solid rgba(255,216,74,0.22);
  color: #ffd84a;
}

.product-body{
  padding: 14px 14px 14px;
}
.product-body h3{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}
.product-body p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.meta-chip{
  font-size: 11px;
  font-weight: 850;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.product-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.price{
  display: grid;
  gap: 2px;
}
.price-main{
  font-weight: 950;
  color: #ffd84a;
  text-shadow: 0 0 10px rgba(255,216,74,0.18);
}
.price-sub{
  font-size: 11px;
  color: var(--muted2);
}

.add-btn{
  border: 1px solid rgba(255,216,74,0.22);
  background: rgba(255,216,74,0.14);
  color: #ffd84a;
  font-weight: 900;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.add-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,216,74,0.18);
  box-shadow: 0 0 22px rgba(255,216,74,0.10);
}

.pricing-next{
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 18px;
}
.pricing-next h2{
  margin: 0 0 8px;
}
.pricing-next p{
  margin: 0;
  color: var(--muted);
}

/* Cart button in navbar */
.cart-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg);
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
}
.cart-btn:hover{
  transform: translateY(-1px);
  border: 1px solid rgba(255,216,74,0.16);
  background: rgba(255,216,74,0.05);
}
.cart-count{
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
  color: #0b0f14;
  background: #ffd84a;
}

/* Cart drawer */
.cart-drawer{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}
.cart-drawer.is-open{
  opacity: 1;
  pointer-events: auto;
}

.cart-panel{
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(420px, calc(100% - 36px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 420px at 70% 45%, rgba(255, 216, 74, 0.10), transparent 60%),
    rgba(8,10,13,0.92);
  box-shadow: 0 18px 60px rgba(0,0,0,0.70);
  overflow: hidden;
}

.cart-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-head h3{
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}
.cart-sub{
  margin: 6px 0 0;
  color: var(--muted2);
  font-size: 12px;
}
.cart-close{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.cart-close:hover{
  border-color: rgba(255,216,74,0.16);
}

.cart-items{
  padding: 10px 14px;
  display: grid;
  gap: 10px;
  max-height: min(52vh, 420px);
  overflow: auto;
}

.cart-item{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
}
.cart-item strong{
  font-size: 13px;
}
.cart-item .muted{
  color: var(--muted2);
  font-size: 12px;
  margin-top: 4px;
}
.cart-item-controls{
  display: grid;
  justify-items: end;
  gap: 8px;
}
.qty{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qty button{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
}
.qty button:hover{
  border-color: rgba(255,216,74,0.16);
}
.qty span{
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.remove{
  font-size: 12px;
  color: #ffd84a;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
}
.remove:hover{
  text-shadow: 0 0 12px rgba(255,216,74,0.20);
}

.cart-foot{
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 10px;
}
.cart-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.cart-total strong{
  color: #ffd84a;
}
.cart-actions{
  display: flex;
  gap: 10px;
}
.cart-clear{
  flex: 1;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
}
.cart-clear:hover{
  border-color: rgba(255,216,74,0.16);
}
.cart-checkout{
  flex: 1;
  justify-content: center;
  pointer-events: none;
  opacity: 0.6;
}

.cart-note{
  margin: 0;
  color: var(--muted2);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 980px){
  .product-grid{ grid-template-columns: 1fr; }
  .product-media{ height: 190px; }
}

.product-media{
  position: relative;
  height: 190px;                  /* etwas höher = mehr Platz */
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  overflow: hidden;               /* WICHTIG: verhindert "überlappen" */
  padding: 14px;                  /* Luft für contain */
}

/* Bild wird IMMER sauber eingepasst */
.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;            /* statt cover -> keine komischen crops */
  display: block;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.98;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.35));
}

/* Lesbarkeit: dunkler Verlauf unten */
.product-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}

.user-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.user-avatar{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,216,74,0.25);
  box-shadow: 0 0 16px rgba(255,216,74,0.10);
}

.user-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffd84a;
  box-shadow: 0 0 16px rgba(255,216,74,0.25);
}

.user-name{
  font-weight: 900;
  font-size: 13px;
  color: var(--fg);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-logout{
  cursor: pointer;
  border: 1px solid rgba(255,216,74,0.18);
  background: rgba(255,216,74,0.10);
  color: #ffd84a;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 12px;
}
.user-logout:hover{
  box-shadow: 0 0 18px rgba(255,216,74,0.12);
}

.user-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.user-avatar{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,216,74,0.25);
  box-shadow: 0 0 16px rgba(255,216,74,0.10);
}

.user-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffd84a;
  box-shadow: 0 0 16px rgba(255,216,74,0.25);
}

.user-name{
  font-weight: 800;
  font-size: 14px;
  color: var(--fg);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-logout{
  cursor: pointer;
  border: 1px solid rgba(255,216,74,0.18);
  background: rgba(255,216,74,0.10);
  color: #ffd84a;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 12px;
}
.user-logout:hover{
  box-shadow: 0 0 18px rgba(255,216,74,0.12);
}

