:root{
  --bg:#0b0c10;
  --text:#ffffff;
  --accent:#4f46e5;
  --card:#111111;
  --muted:#9ca3af;
  --border:#222222;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;   /* WICHTIG */
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(79,70,229,.22), transparent 60%),
              radial-gradient(900px 600px at 85% 0%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}

main{
  flex:1;                  /* schiebt Footer nach unten */
}

.footer{
  margin-top:auto;         /* klebt unten bei wenig Inhalt */
  border-top:1px solid var(--border);
  padding:18px 0 26px;
}

a{color:inherit}
.container{max-width:980px;margin:0 auto;padding:0 16px}

.header{
  position:sticky;top:0;z-index:10;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.headerInner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 0}
.brandName{font-size:16px;letter-spacing:.2px}

.pill{
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
}

.hero{padding:18px 0 0}
.grid{
  display:grid;
  grid-template-columns:1fr; /* Mobile */
  gap:16px;
}

/* Mobile: Bild oben */
.media{ order:1; }
.copy{ order:2; }

/* Desktop: nebeneinander */
@media (min-width:920px){
  .grid{
    grid-template-columns:1.05fr .95fr;
    align-items:start;
    gap:18px;
  }
  .copy{ order:1; }
  .media{ order:2; }
}


/* Fixe Bilder & Rahmengröße */

.heroImg{
  width:100%;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  display:block;
  border-radius:12px;
  border:1px solid var(--border);
  object-fit:cover;
}

@media (max-width:720px){
  .heroImg{
    aspect-ratio: 1 / 1;
    max-height: 360px;
  }
}





/* Rahmen Spring mit der bBildergröße */
/*
.media{ width:100%; }
.card{ width:100%; }
.heroImg{
  width:100%;
  height:320px;
  aspect-ratio:auto;
  object-fit:cover;
}

@media (min-width:920px){
  .heroImg{ height:420px; }
}
*/

.h1{
  font-size:34px;
  line-height:1.06;
  margin:18px 0 10px;
}
@media (min-width: 920px){
  .h1{font-size:44px}
}

.sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}

.priceBlock{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:12px;margin:14px 0 10px;
}
.price{font-size:34px;font-weight:900;letter-spacing:.2px}
.small{font-size:13px}
.muted{color:var(--muted)}

.payWrap{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin: 8px 0 12px;
}

.bullets{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:8px;
}
.bullets li{
  display:flex;
  gap:10px;
  color:rgba(255,255,255,.92);
}
.bullets li::before{content:"✓";color:#22c55e;font-weight:900}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}
.heroImg{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
  border:1px solid var(--border);
  object-fit:cover;
}
.thumbs{
  /*min-height:90px;Rahmen größe*/
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.thumb{
  width:64px;height:64px;
  border-radius:12px;
  border:1px solid var(--border);
  cursor:pointer;
  opacity:.88;
  object-fit:cover;
}
.thumb:hover{opacity:1}

.footer{
  border-top:1px solid var(--border);
  margin-top:36px;
  padding:18px 0 26px;
}
.footerInner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
@media (min-width: 720px){
  .footerInner{flex-direction:row;align-items:center;justify-content:space-between}
}
.legalNav a{
  color:var(--muted);
  text-decoration:none;
  margin-right:12px;
}
.legalNav a:last-child{margin-right:0}
.legalNav a:hover{color:var(--accent)}
