:root{
  /* Theme: Dark Indigo/Lila Verlauf */
  --bg0:#070A17;
  --bg1:#0B1130;
  --bg2:#120A2A;

  --card:#0c122e;
  --card2:#0a1027;

  --text:#eef2ff;
  --muted:#a7b0d6;

  --accent:#7c3aed;   /* lila */
  --accent2:#22c55e;  /* grün */
  --accent3:#38bdf8;  /* cyan */

  --border:rgba(255,255,255,.10);
  --shadow:rgba(0,0,0,.45);

  --max:1120px;
  --radius:0px; /* alles eckig */
}

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

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);

  /* FIX: kein “Wiederholen/Pattern”-Feeling mehr */
  background:
    radial-gradient(900px 700px at 10% -10%, rgba(124,58,237,.32), transparent 55%),
    radial-gradient(900px 650px at 95% 10%, rgba(34,197,94,.18), transparent 55%),
    radial-gradient(700px 500px at 60% 120%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg2));
  background-repeat:no-repeat;
  background-attachment:fixed; /* wirkt “ein Stück”, nicht tiled */
  background-size:cover;

  line-height:1.75;
  text-rendering:optimizeLegibility;
}

.wrap{max-width:var(--max);margin:0 auto;padding:28px 18px 70px}
.stack{display:flex;flex-direction:column;gap:18px}

a{color:var(--text);text-decoration:none}
a.link{
  border-bottom:2px solid rgba(56,189,248,.75);
  padding-bottom:1px;
}
a.link:hover{
  background:linear-gradient(180deg, rgba(56,189,248,.15), rgba(56,189,248,0));
}

.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:16px;top:12px;width:auto;height:auto;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.65);
  color:var(--text);
  z-index:9999;
}

.surface{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:0 20px 60px var(--shadow);
}

@media(min-width:900px){
  .wrap{padding:34px 20px 84px}
  .surface{padding:28px}
}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(7,10,23,.72);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:saturate(1.1) blur(10px);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{display:flex;align-items:center;gap:10px}
.brand-badge{
  width:34px;height:34px;
  border-radius:0; /* eckig */
  background:
    linear-gradient(135deg, rgba(124,58,237,.95), rgba(56,189,248,.70), rgba(34,197,94,.55));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 40px rgba(0,0,0,.55);
  position:relative;
  overflow:hidden;
}
.brand-badge:before{
  content:"";
  position:absolute;inset:-60px;
  background:conic-gradient(from 180deg, rgba(255,255,255,.22), transparent 25%, rgba(255,255,255,.10), transparent 60%, rgba(255,255,255,.18));
  transform:rotate(22deg);
}
.brand-name{font-weight:820;letter-spacing:.3px}
.brand-sub{display:block;font-size:12px;color:var(--muted);margin-top:-2px}

.nav{
  display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end;
}
.nav a{
  font-size:13px;
  padding:8px 10px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}
.nav a:hover{
  background:linear-gradient(135deg, rgba(124,58,237,.22), rgba(56,189,248,.12), rgba(34,197,94,.10));
  border-color:rgba(255,255,255,.18);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
}
.hero .kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  font-size:12px;
  color:var(--muted);
}
.wave{
  width:10px;height:10px;
  border-radius:0;
  background:linear-gradient(135deg, rgba(56,189,248,.95), rgba(124,58,237,.9));
  box-shadow:0 0 0 6px rgba(56,189,248,.10), 0 0 0 12px rgba(124,58,237,.08);
}

.hero h1{
  margin:12px 0 8px;
  font-size:clamp(26px,4.6vw,46px);
  line-height:1.12;
  letter-spacing:.2px;
}
.lead{
  font-size:clamp(15px,2.2vw,18px);
  color:var(--muted);
}

/* FIX 2: “Spiegelung/Glow” im Hero wieder RUND (wie Gelb-Look) */
.hero:after{
  content:"";
  position:absolute;
  right:-120px; top:-120px;
  width:360px;height:360px;
  border-radius:999px; /* <-- rund statt eckig */
  background:
    radial-gradient(circle at 30% 30%, rgba(124,58,237,.55), rgba(56,189,248,.18), transparent 68%);
  filter:blur(2px);
  opacity:.9;
}

/* Content blocks */
.grid{display:grid;gap:16px}
@media(min-width:900px){ .grid{grid-template-columns:1.1fr .9fr} }

.card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:0;
  padding:18px;
  background:rgba(255,255,255,.02);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

h2{
  margin:0 0 10px;
  font-size:clamp(20px,3vw,30px);
  line-height:1.2;
  letter-spacing:.2px;
}
h3{margin:18px 0 10px;font-size:18px;line-height:1.25}
p{margin:10px 0 14px}
ul{margin:0;padding-left:18px}
li{margin:6px 0}
.small{font-size:13px;color:var(--muted)}

.highlight{
  background:linear-gradient(90deg, rgba(124,58,237,.16), rgba(56,189,248,.10), rgba(34,197,94,.08));
  border-left:4px solid rgba(56,189,248,.75);
  padding:12px 14px;
  border-radius:0;
}

.hr{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  margin:18px 0;
}

/* Products */
.product-grid{display:grid;gap:14px}
@media(min-width:900px){ .product-grid{grid-template-columns:repeat(3, minmax(0,1fr))} }

.product{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.40);
  display:flex;
  flex-direction:column;
}
.product .img{
  aspect-ratio:16/10;
  background:
    linear-gradient(135deg, rgba(124,58,237,.18), rgba(56,189,248,.10), rgba(34,197,94,.08));
  border-bottom:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.product img{width:100%;height:100%;object-fit:cover;display:block}
.product .body{padding:14px 14px 16px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  font-size:12px;
  color:var(--muted);
}
.pill .dot{
  width:8px;height:8px;border-radius:0;
  background:linear-gradient(135deg, rgba(34,197,94,.9), rgba(56,189,248,.85));
}

.product h3{margin:10px 0 6px}
.meta{color:var(--muted);font-size:13px;margin:0 0 10px}

.btnrow{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(124,58,237,.55), rgba(56,189,248,.30));
  color:var(--text);
  font-weight:650;
}
.btn:hover{filter:brightness(1.05)}
.btn.secondary{background:rgba(255,255,255,.03)}
.btn.secondary:hover{
  background:linear-gradient(135deg, rgba(34,197,94,.14), rgba(56,189,248,.08));
}

/* Empfehlung-Box: Label sitzt über Box */
.reco{
  position:relative;
  border-radius:0;
  padding:20px 18px 16px;
  border:1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(124,58,237,.18), rgba(56,189,248,.10), rgba(34,197,94,.08)),
    rgba(255,255,255,.02);
  box-shadow:0 20px 70px rgba(0,0,0,.50);
  overflow:visible;
  margin-top:18px;
}
.reco:before{
  content:"Unsere Empfehlung";
  position:absolute;
  left:18px;
  top:-16px;
  background:linear-gradient(135deg, rgba(56,189,248,.85), rgba(124,58,237,.80));
  color:#07101f;
  padding:8px 12px;
  border-radius:0;
  border:1px solid rgba(255,255,255,.18);
  font-weight:850;
  letter-spacing:.08em;
  font-size:12px;
  text-transform:uppercase;
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.reco .title{
  font-size:clamp(18px,2.6vw,24px);
  font-weight:820;
  margin:6px 0 8px;
}
.reco .note{color:var(--text);margin:0 0 10px}
.reco .fine{font-size:12px;color:var(--muted);margin-top:10px}

/* Footer boxes */
.footer{text-align:left}
.footer .cols{display:grid;gap:14px}
@media(min-width:900px){ .footer .cols{grid-template-columns:1.2fr .8fr} }
.box{
  background:rgba(255,255,255,.02);
  border:1px dashed rgba(255,255,255,.18);
  border-radius:0;
  padding:14px;
}

/* Tables */
.table-wrap{
  overflow:auto;
  border:1px solid rgba(255,255,255,.12);
  border-radius:0;
  background:rgba(0,0,0,.20);
}
table{width:100%;border-collapse:separate;border-spacing:0}
thead th{
  text-align:left;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  position:sticky;top:0;z-index:1;
}
tbody td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(238,242,255,.92);
}
tbody tr:last-child td{border-bottom:0}
