:root{
  --bg0:#0b0d12;
  --bg1:#0e1017;
  --bar:#0a0b0f;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.16);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --radius: 14px;
  --max: 1320px;

  /* akzent grob in deiner violett/blau Richtung */
  --accent: #6b5cff;
  --accent2:#4b55ff;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(107,92,255,.18), transparent 60%),
              radial-gradient(900px 600px at 85% 20%, rgba(75,85,255,.14), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Utility */
.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.h1{
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(34px, 3.3vw, 56px);
}
.h2{
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(26px, 2.4vw, 40px);
}
.h3{
  margin: 14px 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: 22px;
}
.lead{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}
.text{
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Background-map feeling (optional) */
.hero,
.split,
.features{
  position: relative;
  overflow: hidden;
}

/* Wenn du eine bg-map.png hast: wird subtil drübergelegt */
.hero::before,
.split::before,
.features::before{
  content:"";
  position:absolute;
  inset:-20%;
  background-image: url("assets/bg-map.png");
  background-size: cover;
  background-position: center;
  opacity: .16;
  filter: blur(1px);
  transform: scale(1.05);
  pointer-events:none;
}

/* Vignette + depth */
.hero::after,
.split::after,
.features::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 60% 35%, rgba(0,0,0,.0), rgba(0,0,0,.55) 75%),
    radial-gradient(900px 700px at 30% 0%, rgba(0,0,0,.05), rgba(0,0,0,.65) 70%);
  pointer-events:none;
}

/* HERO */
.hero{
  /* mehr Luft, damit die Phones groß wirken wie in deinem "NEU" */
  padding: 50px 0 60px;
}
.hero__inner{ position:relative; z-index:1; }

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom: 26px;
}
.brand__logo{
  height: 100px;   /* 64–80 ist meist sweet spot */
  width: auto;
  display:block;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: center;
  min-height: 420px;
}

.hero__copy{ padding-top: 8px; }

.hero__visual{
  display:flex;
  justify-content:flex-end;
  align-items:center;

  /* sorgt für den "Premium-Freiraum" rechts */
  padding-right: 90px;
}

.phones{
  width: min(60vw, 980px); /* statt min(880px, 100%) */
  max-width: none;         /* wichtig, sonst limitiert irgendwas */
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.65));
  transform: translateX(70px) translateY(-30px);
}

/* CTA Buttons */
.cta{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  max-width: 340px;
}
.cta--center{
  margin: 18px auto 0;
  align-items:center;
  max-width: none;
}
.cta--center .btn{
  width: min(360px, 100%);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--stroke2);
  user-select:none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn__icon{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.btn__play{
  font-size: 13px;
  opacity: .9;
}

.btn--primary{
  color: var(--text);
  background: rgba(0,0,0,.35);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.btn--primary:hover{
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
  transition: transform .18s ease, border-color .18s ease;
}

.btn--ghost{
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.06);
}
.btn--ghost:hover{
  border-color: rgba(255,255,255,.22);
  transition: border-color .18s ease;
}
.btn--disabled{
  opacity: .55;
  cursor:not-allowed;
}

/* STATEMENT BAR */
.bar{
  background: var(--bar);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 90px 0; /* größer, damit nichts gequetscht wirkt */
}
.bar__text{
  margin: 0;
  text-align:center;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
  font-size: clamp(18px, 2vw, 26px);
}

/* SPLIT SECTION */
.split{
  padding: 56px 0 34px;
}
.split__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items:center;
}
.split__visual{
  display:flex;
  justify-content:flex-start;
}
.phoneTilt{
  width: min(320px, 100%);
  height:auto;
  display:block;
  /* nach innen drehen: oben eher Richtung Text */
  transform: rotate(12deg);
  transform-origin: center;
  filter: drop-shadow(0 26px 55px rgba(0,0,0,.55));
}
.split__copy{
  text-align: right; /* wie in deinem PS Mockup */
  max-width: 520px;
  margin-left:auto;
}

/* FEATURES GRID (unten) */
.features{
  padding: 46px 0 60px;
}
.features .container{ position:relative; z-index:1; }

.features__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 8px;
  margin-bottom: 22px;
}

.featureCard{
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 190px;
}

.featureIcon{
  width: 38px;
  height: 38px;
  display:block;
  opacity: .95;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.25));
}

.disclaimer{
  margin: 18px auto 6px;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.5;
  max-width: 80ch;
}

/* FOOTER */
.footer{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
.footer__link{
  color: rgba(255,255,255,.70);
  text-decoration:none;
}
.footer__link:hover{
  color: rgba(255,255,255,.92);
}
.footer__sep{ opacity:.55; }

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

  .hero__visual{
    justify-content: flex-start;
    padding-right: 0; /* auf Mobile kein rechter Freiraum */
  }

  .phones{
    width: min(520px, 92%);
    transform: none; /* wichtig: kein translate auf Mobile */
    filter: drop-shadow(0 28px 55px rgba(0,0,0,.60));
  }

  .split__inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .split__copy{
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
  .cta{ max-width: none; }
}

@media (max-width: 720px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .bar{ padding: 30px 0; }
  .features__grid{
    grid-template-columns: 1fr;
  }
  .featureCard{
    min-height: auto;
  }
}
