:root{
  --bg0:#0b0c10;
  --bg1:#0f1220;
  --card: rgba(255,255,255,.07);
  --card2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --stroke: rgba(255,255,255,.14);

  --accent1: #a7f3ff;
  --accent2: #c4b5fd;
  --accent3: #fbcfe8;

  --radius: 22px;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 800px at 15% 10%, rgba(196,181,253,.16), transparent 65%),
              radial-gradient(900px 700px at 85% 25%, rgba(167,243,255,.14), transparent 55%),
              radial-gradient(900px 700px at 35% 90%, rgba(251,207,232,.10), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  overflow-x:hidden;
}

.wrap{
  width:min(980px, 92vw);
  margin:0 auto;
}

.muted{color:var(--muted)}
.tiny{font-size:.86rem; line-height:1.35}
.pill{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.18rem .55rem;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  font-weight:700;
  letter-spacing:.02em;
}

/* Background décor */
.bg{position:fixed; inset:0; z-index:-1; pointer-events:none}
.blob{
  position:absolute; filter: blur(40px);
  opacity:.55;
  transform: translateZ(0);
  animation: drift 14s ease-in-out infinite;
}
.b1{
  width:420px; height:420px; border-radius:55% 45% 50% 50%;
  background: radial-gradient(circle at 30% 30%, rgba(167,243,255,.55), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(196,181,253,.45), transparent 62%);
  left:-120px; top:60px;
}
.b2{
  width:520px; height:520px; border-radius:45% 55% 52% 48%;
  background: radial-gradient(circle at 30% 30%, rgba(251,207,232,.50), transparent 62%),
              radial-gradient(circle at 70% 70%, rgba(167,243,255,.35), transparent 62%);
  right:-180px; bottom:-140px;
  animation-delay:-5s;
}
.grain{
  position:absolute; inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  opacity:.08;
  transform: rotate(8deg);
}

@keyframes drift{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(0,-18px,0) scale(1.03)}
}

.top{
  padding:28px 0 10px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}

.brand{
  display:flex; align-items:center; gap:14px;
}
.brand__logo{
  width:84px; height:84px; border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  object-fit:contain;
  padding:10px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float{0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)}}

.brand__txt h1{
  margin:0;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  letter-spacing:.01em;
}
.brand__txt p{margin:.25rem 0 0}

.top__cta{display:flex; align-items:center; gap:10px; position:relative}
.toast{
  position:absolute;
  right:0; top:calc(100% + 10px);
  padding:.55rem .75rem;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 700;
  letter-spacing:.01em;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.btn:active{transform: translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, rgba(167,243,255,.22), rgba(196,181,253,.22), rgba(251,207,232,.16));
  border-color: rgba(255,255,255,.22);
}
.btn--soft{
  background: rgba(255,255,255,.10);
}
.btn--ghost{
  background: transparent;
}
.arrow{margin-left:.4rem}

/* Hero */
.hero{
  margin: 10px 0 24px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
  align-items:stretch;
}
.hero__media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  min-height: 260px;
}
.hero__img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.04);
  transition: filter .35s ease, transform .35s ease;
  will-change: transform;
}
.hero__veil{
  position:absolute; inset:0;
  display:flex; align-items:flex-start; justify-content:flex-start;
  padding:14px;
  background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}
.veil__chip{
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight:800;
  font-size:.9rem;
}

/* Locked state: blur images + disable interactions */
body.locked .hero__img{
  filter: blur(22px) brightness(.85) saturate(.9);
  transform: scale(1.08);
}
body.locked .hero__veil{opacity:1}

/* Card next to hero */
.hero__card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__meta{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px}
.chip{
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  font-weight:700;
  font-size:.9rem;
}
.hero__copy{margin:0; line-height:1.45}

/* Section */
.section{margin: 16px 0 36px}
.section__head h2{margin:0 0 6px; font-size:1.25rem}
.section__head p{margin:0 0 14px}

/* Links list */
.links{
  display:grid;
  gap:12px;
}
.link{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.link::before{
  content:"";
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 20% 30%, rgba(167,243,255,.20), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(196,181,253,.18), transparent 55%);
  opacity:.0;
  transform: rotate(10deg);
  transition: opacity .18s ease;
}
.link:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.link:hover::before{opacity:.9}
.link__icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.link__icon svg{width:22px; height:22px; color: rgba(255,255,255,.9)}
.link__text{display:flex; flex-direction:column; min-width:0}
.link__title{font-weight:900; letter-spacing:.01em}
.link__sub{font-size:.92rem}
.link__go{
  margin-left:auto;
  font-weight:900;
  opacity:.85;
}

/* Disable clicks before initial gate */
body.locked .link{
  filter: blur(2px) saturate(.85);
  pointer-events:none;
}

/* Note */
.note{
  margin-top:14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.22);
}

/* Footer */
.footer{
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footer__brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.footer__brand img{
  border-radius:10px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  padding:4px;
}
.footer__links{display:flex; gap:14px}
.footer__links a{text-decoration:none}
.footer__links a:hover{color:rgba(255,255,255,.9)}
.footer__bottom{margin-top:14px}

/* Modal */
.modal[hidden] { display: none !important; }

.modal{
  position:fixed; inset:0;
  z-index:999;
  display:grid;
  place-items:center;
}
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__panel{
  width:min(520px, 92vw);
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(20,22,34,.78);
  box-shadow: var(--shadow);
  padding: 18px 18px 14px;
  position:relative;
  transform: translateY(8px);
  animation: pop .22s ease forwards;
}
@keyframes pop{to{transform: translateY(0)}}
.modal__badge{
  position:absolute; top:12px; right:12px;
  padding:.28rem .55rem;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.modal__actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 12px 0 8px;
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* --- Basic anti-download friction (not bulletproof) --- */
img, .hero__media, .brand__logo {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;   /* iOS long-press menu */
  -webkit-user-drag: none;
}

img {
  pointer-events: none; /* verhindert "Bild in neuem Tab öffnen"/Kontextmenü direkt am Bild */
}

/* Slide */

/* Slide (NO ZOOM) */

.hero__slideshow{
  position:absolute;
  inset:0;
  will-change: transform; /* bleibt für dein Parallax-translateY okay */
}

.hero__slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform: none; /* <- KEIN ZOOM */
  transition: opacity .55s ease, filter .35s ease;
  will-change: opacity, filter;
}

.hero__slide.is-active{
  opacity:1; /* nur Crossfade, kein Zoom/Drift */
}

body.locked .hero__slide{
  filter: blur(22px) brightness(.85) saturate(.9);
  transform: none; /* <- auch im Locked-State kein Zoom */
}


@keyframes ken2s{
  0%   { transform: scale(0.95) translate3d(-8px,-6px,0); }
  100% { transform: scale(1.00) translate3d( 8px, 6px,0); }
}

body.locked .hero__slide{
  animation: none !important;
  filter: blur(22px) brightness(.85) saturate(.9);
  transform: scale(1.10);
}

@media (prefers-reduced-motion: reduce){
  .hero__slide.is-active{ animation:none !important; }
}



/* Responsive */
@media (max-width: 860px){
  .hero{grid-template-columns: 1fr; }
  .brand__logo{width:76px; height:76px}
  .top{padding-top:22px}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important; scroll-behavior:auto !important;}
  .reveal{opacity:1; transform:none}
}
