:root{
  --ink: #0f1b2d;
  --muted: #4c5a6a;
  --accent: #c56a1a;
  --line: rgba(15,27,45,.10);
  --max: 1120px;
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
  max-width: 100%;
  overflow-x:hidden; 
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 70% 15%, rgba(197,106,26,.10), transparent 60%),
    radial-gradient(800px 600px at 90% 70%, rgba(15,27,45,.05), transparent 60%),
    linear-gradient(180deg, #fbf7ef 0%, #ffffff 70%);
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; height:auto; }

/* ================= HEADER ================= */

.header{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px 8px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.brand__logo--hero{
  height: 90px;
  width:auto;
  max-width: 70vw;
}

.nav{
  display:flex;
  gap:18px;
}

.nav__link{
  font-size:14px;
  color:rgba(15,27,45,.7);
}
.nav__link:hover{ color:rgba(15,27,45,.95); }

/* ================= HERO ================= */

.hero{
  max-width: var(--max);
  margin:0 auto;
  padding: 12px 20px 44px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.hero__left, .hero__right{ min-width:0; max-width: 100%;}

.hero__left{
  max-width: 680px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(197,106,26,.12);
  color:var(--accent);
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.h1{
  margin:18px 0 14px;
  font-size: clamp(46px,5vw,72px);
  line-height:1;
  letter-spacing:-.04em;
}

.accent{ color:var(--accent); }

.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:52ch;
  margin:0 0 18px;
}

/* ================= BUTTONS ================= */

.cta{
  margin:18px 0 16px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--line);
  transition:.15s ease;
  cursor:pointer;
  max-width:100%;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px rgba(15,27,45,.10);
}

.btn--dark{
  background:#0f1b2d;
  color:#fff;
  border-color:#0f1b2d;
}
.btn--light{ background:#fff; }
.btn--ghost{ background:rgba(255,255,255,.6); }

.btn__badge{
  margin-left:8px;
  font-size:12px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(15,27,45,.10);
  color: rgba(15,27,45,.72);
}

.btn[aria-disabled="true"]{
  cursor:not-allowed;
  opacity:.88;
}
.btn[aria-disabled="true"]:hover{
  transform:none;
  box-shadow:none;
}

/* ================= FEATURES (PILLS FIX – bulletproof) ================= */
/* ===== FIX: Feature-Chips nicht überbreit / nicht „runterlaufen“ ===== */

.featureRow{
  margin-top: 26px;
  display:flex;
  gap:14px 16px;
  flex-wrap:wrap;
  align-items:flex-start;
  max-width: 680px;          /* begrenzt den Bereich -> wirkt aufgeräumt */
}

.feature{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(15,27,45,.08);
  box-shadow:0 10px 26px rgba(15,27,45,.08);
  font-weight:650;
  font-size:15px;
  color: rgba(15,27,45,.82);

  /* WICHTIG: verhindert „Würste“ */
  max-width: 240px;          /* <— stell hier die Chip-Breite ein */
  flex: 0 1 220px;           /* darf schrumpfen und umbrechen */
}

.feature__icon{
  font-size:18px;
  line-height:1;
  flex: 0 0 auto;
}

.feature__title{
  line-height:1.15;
  white-space:normal;        /* darf umbrechen */
}

/* Available-in Chip etwas dezenter */
.featureRow .feature:first-child{
  opacity:.78;
  font-weight:600;
}

/* Mobile: Chips full width (sieht besser aus als Miniwürste) */
@media (max-width: 520px){
  .featureRow{ max-width: 360px; }
  .feature{
    flex: 1 1 100%;
    max-width: 100%;
    justify-content:flex-start;
  }
}


/* Responsive: auf Mobile 1 Spalte, auf Tablet 2 */
@media (max-width: 900px){
  .featureRow{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .featureRow{ grid-template-columns: 1fr; max-width: 360px; }
  .feature{ justify-content:flex-start; } /* wirkt auf mobile natürlicher */
}

/* ================= HERO PHONE (blob-free per CSS; PNG muss transparent sein) ================= */

.hero__right{
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* kein Glow / kein Panel */
.hero__right::before{ content:none; }

.phoneWrap{
  position:relative;
  width:min(374px,100%); /* kleiner */
  z-index:1;
}

.phone{
  width:100%;
  border-radius:28px;
  background:transparent;
  filter: drop-shadow(0 34px 70px rgba(15,27,45,.20));
}

/* ================= SECTIONS ================= */

.section{
  max-width:var(--max);
  margin:0 auto;
  padding:46px 20px;
}

.h2{
  font-size:28px;
  margin:0 0 10px;
  letter-spacing:-.02em;
}

.muted{
  margin:0;
  color:rgba(15,27,45,.60);
}

/* ================= SCREENSHOTS ================= */

.shots{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

.shot{
  border-radius:16px;
  padding:8px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,27,45,.08);
  box-shadow:0 10px 26px rgba(15,27,45,.08);
  transition:.15s ease;
}

.shot:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 46px rgba(15,27,45,.12);
}

.shot img{
  width:100%;
  height:300px;
  object-fit:contain;
  object-position:center;
  background:#fff;
  border-radius:12px;
}

/* ================= ABOUT ================= */

.card{
  background:rgba(255,255,255,.80);
  border:1px solid rgba(15,27,45,.08);
  border-radius:18px;
  padding:28px;
  box-shadow:0 15px 40px rgba(15,27,45,.08);
}

.body{
  margin:10px 0 0;
  color:rgba(15,27,45,.72);
  font-size:16px;
  line-height:1.7;
}

/* ================= FOOTER ================= */

.footer{
  max-width:var(--max);
  margin:0 auto;
  padding:30px 20px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:rgba(15,27,45,.60);
  gap:16px;
  flex-wrap:wrap;
}

.footer__right{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.publisher{
  display:flex;
  align-items:center;
  gap:16px;
}

.publisher__logo{
  width:88px;
  height:88px;
  border-radius:16px;
  object-fit:cover;
  box-shadow:0 15px 35px rgba(15,27,45,.12);
}

/* ================= SCREENSHOTS GRID ================= */

.shots{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px; /* größerer Abstand */
  margin-top:24px;
}


.shot{
  width:66%;
  margin:0 auto;
  border-radius:18px;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow:0 18px 40px rgba(15,27,45,.12);
}

.shot:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow:0 30px 60px rgba(15,27,45,.18);
}

/* ================= LIGHTBOX ================= */

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(10,15,25,.55);
  backdrop-filter: blur(14px);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:9999;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:20px;
  box-shadow:0 40px 120px rgba(0,0,0,.45);
  transform: scale(.92);
  transition:.25s ease;
}

.lightbox.active img{
  transform: scale(1);
}

.highlight {
  background: rgba(15,27,45,.04);
  border-left: 3px solid var(--ink);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 14px 0;
}
.highlight p { margin: 0; }


/* ================= RESPONSIVE ================= */

@media (max-width:920px){
  .hero{
    grid-template-columns:1fr;
    gap:22px;
  }

  .hero__right{
    order:-1;
    justify-content:center;
  }

  .nav{ display:none; }

  .shots{ grid-template-columns:1fr; }
  .shot img{ height:360px; }

  .brand__logo--hero{ height:70px; }

  .phoneWrap{ width:min(340px,100%); }
}

