/* PlanLink – Page-specific styles (index)
   Adds: hero stage, problem section, features, workflow, use-cases,
   mission, FAQ, waitlist slab, sticky CTA, inline CTA banners.
*/

/* ===================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  padding-top: clamp(96px, 13vw, 124px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("photos/hero-banner.webp?v=20260706");
  background-size: cover;
  background-position: center 36%;
  opacity: 0.46;
  filter: grayscale(20%) contrast(103%) brightness(84%);
  z-index: -1;
  mask-image: radial-gradient(ellipse 88% 64% at 62% 34%, #000 0%, rgba(0,0,0,0.50) 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 88% 64% at 62% 34%, #000 0%, rgba(0,0,0,0.50) 40%, transparent 70%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0A0A0A 0%, rgba(10,10,10,0.94) 20%, rgba(10,10,10,0.58) 38%, rgba(10,10,10,0.20) 58%, rgba(10,10,10,0.42) 84%, #0A0A0A 100%),
    linear-gradient(180deg, #0A0A0A 0%, rgba(10,10,10,0.40) 12%, transparent 32%, transparent 52%, rgba(10,10,10,0.12) 64%, rgba(10,10,10,0.28) 76%, rgba(10,10,10,0.50) 86%, rgba(10,10,10,0.76) 94%, #0A0A0A 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: var(--s4);
  margin-bottom: var(--s5);
  font-weight: 700;
}
.hero h1 .accent {
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #b8a796 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--cream);
  max-width: 46ch;
  margin-bottom: var(--s6);
}
.hero .ctas { display: flex; gap: var(--s3); flex-wrap: wrap; }
.hero .micro {
  margin-top: var(--s4);
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--sand); font-size: 13px;
}
.hero .micro .dot { width:6px; height:6px; border-radius:999px; background: var(--success); box-shadow: 0 0 12px rgba(76,175,80,0.7); }

/* ===================================================================
   PLATTFORM-VERFÜGBARKEIT (iOS / Android / Windows)
=================================================================== */
.platforms-section {
  padding-top: clamp(20px, 3.5vw, 36px);
  padding-bottom: clamp(20px, 3.5vw, 36px);
}
.platforms {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.platforms-label {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 12px; color: var(--sand);
}
.platforms-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.platform {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.platform svg { width: 26px; height: 26px; fill: var(--cream); flex-shrink: 0; }
.platform .p-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.platform .p-name { font-weight: 600; font-size: 15px; color: #fff; }
.platform .p-state {
  font-size: 12px; color: var(--success);
  display: inline-flex; align-items: center; gap: 6px;
}
.platform.is-soon { opacity: 0.8; }
.platform.is-soon svg { fill: var(--sand); }
.platform.is-soon .p-state { color: var(--accent); }

/* Scarcity widget — slots remaining with live progress bar */
.scarcity {
  margin-top: var(--s4);
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  max-width: 380px;
}
.scarcity .head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  font-size: 13px;
}
.scarcity .head .l {
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 8px;
}
.scarcity .head .l .ping {
  position: relative; width: 8px; height: 8px;
}
.scarcity .head .l .ping::before, .scarcity .head .l .ping::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: var(--success);
}
.scarcity .head .l .ping::after { animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.7; }
@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}
.scarcity .head .r {
  color: #fff; font-weight: 600;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.scarcity .head .r .num { font-size: 18px; letter-spacing: -0.02em; }
.scarcity .head .r .of { color: var(--sand); font-size: 12px; font-weight: 500; }
.scarcity .bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.scarcity .bar .fill {
  position: absolute; inset: 0; right: auto;
  width: 88%;
  background: linear-gradient(90deg, #ffffff 0%, #f0d8b4 100%);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(232, 181, 116, 0.25);
}
.scarcity .foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--sand);
  letter-spacing: 0.02em;
}
.scarcity .foot strong { color: #fff; font-weight: 600; }

@media (max-width: 520px) {
  .scarcity { min-width: 0; width: 100%; }
}

/* Countdown */
.countdown {
  margin-top: var(--s3);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.countdown .lbl { font-size: 10px; color: var(--sand); padding: 0 6px 0 4px; letter-spacing: 0.04em; }
.countdown .unit {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 4px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  min-width: 36px;
}
.countdown .unit .v { font-size: 13px; font-weight: 700; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.countdown .unit .k { font-size: 8px; color: var(--sand); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }
.countdown .sep { color: var(--taupe); font-weight: 700; padding-bottom: 10px; font-size: 11px; }
.hero .seats {
  margin-top: var(--s4);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
}
.hero .seats .pill {
  background: rgba(76,175,80,0.20);
  border: 1px solid rgba(76,175,80,0.35);
  color: #B7E4B9;
  padding: 4px 10px; border-radius: 999px;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.06em;
}
.hero .seats .cream { color: var(--cream); }

/* Spatial stage */
.stage { position: relative; min-height: 500px; perspective: 1400px; }

.phone {
  position: relative;
  width: 240px;
  aspect-ratio: 440 / 956;
  border-radius: 38px;
  padding: 7px;
  background: linear-gradient(160deg, rgba(28,28,28,0.92), rgba(10,10,10,0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 rgba(0,0,0,0.35) inset,
    0 32px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.40);
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 31px;
  overflow: hidden;
  background: var(--espresso);
  position: relative;
}
.phone .screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 38px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%, transparent 70%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform .8s var(--spring-quick);
}

.tile {
  position: absolute;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 rgba(0,0,0,0.30) inset,
    0 24px 56px rgba(0,0,0,0.50),
    0 4px 12px rgba(0,0,0,0.30);
  transition: transform .8s var(--spring-quick);
  z-index: 4;
}
.tile::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%);
  pointer-events: none;
}

.tile-status { top: 4%; left: -8%; display: flex; align-items: center; gap: 12px; z-index: 5; transform: rotate(-3deg); }
.tile-status .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--success); box-shadow: 0 0 14px rgba(76,175,80,0.7); }
.tile-status .text .l1 { font-size: 13px; font-weight: 600; color: #fff; }
.tile-status .text .l2 { font-size: 11px; color: var(--sand); }

.tile-stat { top: 18%; right: -4%; min-width: 168px; transform: rotate(3deg); }
.tile-stat .k { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 6px; }
.tile-stat .v { font-size: 28px; font-weight: 700; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.tile-stat .d { font-size: 11px; color: var(--cream); margin-top: 6px; }

.tile-msg { bottom: 10%; left: -2%; min-width: 230px; transform: rotate(-2deg); z-index: 5; }
.tile-msg .head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tile-msg .av { width: 28px; height: 28px; border-radius: 999px; background: linear-gradient(145deg, #4a4a4a, #1f1f1f); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.tile-msg .name { font-size: 12px; font-weight: 600; color: #fff; }
.tile-msg .when { font-size: 11px; color: var(--sand); margin-left: auto; }
.tile-msg .body { font-size: 13px; color: var(--cream); line-height: 1.4; }

.tile-pill { bottom: 4%; right: 4%; padding: 10px 16px; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; transform: rotate(2deg); }
.tile-pill .ic { width: 24px; height: 24px; border-radius: 999px; background: rgba(255,255,255,0.12); display: grid; place-items: center; color: #fff; }
.tile-pill .lbl { font-size: 12px; font-weight: 600; color: #fff; }

.stage:hover .tile-status { transform: rotate(-3deg) translateY(-6px); }
.stage:hover .tile-stat { transform: rotate(3deg) translateY(-6px); }
.stage:hover .tile-msg { transform: rotate(-2deg) translateY(-6px); }
.stage:hover .tile-pill { transform: rotate(2deg) translateY(-6px); }
.stage:hover .hero-phone { transform: translate(-50%, -52%); }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stage { min-height: 460px; margin-top: var(--s5); }
}
@media (max-width: 520px) {
  .phone { width: 190px; }
  .stage { min-height: 400px; }
  .tile { padding: 9px 12px; border-radius: 16px; }
  .tile-status { top: 1%; left: 0; gap: 8px; }
  .tile-status .text .l1 { font-size: 12px; }
  .tile-status .text .l2 { font-size: 10px; }
  .tile-stat { top: 15%; right: 0; min-width: 112px; }
  .tile-stat .v { font-size: 21px; }
  .tile-stat .k { font-size: 9px; }
  .tile-stat .d { font-size: 10px; }
  .tile-msg { bottom: 8%; left: 0; min-width: 0; max-width: 88%; }
  .tile-msg .name { font-size: 11px; }
  .tile-msg .body { font-size: 12px; }
  .tile-pill { bottom: 2%; right: 0; padding: 8px 12px; }
  .tile-pill .lbl { font-size: 11px; }
}

/* ===================================================================
   SECTION HEADERS
=================================================================== */
.sec-head { max-width: 720px; }
.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: var(--s2);
  margin-bottom: var(--s3);
  font-weight: 700;
}
.sec-head p { color: var(--cream); font-size: 16px; max-width: 56ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center p { margin-inline: auto; }

/* ===================================================================
   PROBLEM ↔ LÖSUNG
=================================================================== */
#problem { position: relative; overflow: hidden; }
#problem::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("photos/hero-bg.webp?v=20260706");
  background-size: cover;
  background-position: left center;
  transform: scaleX(-1);
  opacity: 0.30;
  mask-image: radial-gradient(ellipse at 25% 50%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 50%, #000 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-top: var(--s5);
}
.compare-card {
  position: relative;
  padding: var(--s6);
  border-radius: var(--r-card-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 24px 48px rgba(0,0,0,0.35);
  overflow: hidden;
}
.compare-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%); pointer-events: none; }
.compare-card .tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: var(--s4);
}
.compare-card.bad .tag { background: rgba(229,57,53,0.15); color: #F8A4A1; border: 1px solid rgba(229,57,53,0.30); }
.compare-card.good .tag { background: rgba(76,175,80,0.15); color: #B7E4B9; border: 1px solid rgba(76,175,80,0.30); }
.compare-card h3 { font-size: 22px; font-weight: 600; margin-bottom: var(--s4); }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-card li { display: flex; align-items: flex-start; gap: 12px; color: var(--cream); font-size: 15px; line-height: 1.5; }
.compare-card li .mark {
  width: 20px; height: 20px; border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 11px;
}
.compare-card.bad li .mark { background: rgba(229,57,53,0.18); color: #F8A4A1; }
.compare-card.good li .mark { background: rgba(76,175,80,0.20); color: #B7E4B9; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ===================================================================
   FEATURES
=================================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.feat {
  position: relative;
  display: flex; flex-direction: column;
  padding: var(--s6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-card-lg);
  min-height: 280px;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 -1px 0 rgba(0,0,0,0.25) inset, 0 24px 48px rgba(0,0,0,0.35);
  transition: transform .35s var(--spring-quick), background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.feat::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%); pointer-events: none; }
.feat:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.16); }
.feat .icon {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid; place-items: center;
  color: var(--cream);
  margin-bottom: var(--s5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset;
}
.feat h3 { font-size: 22px; margin-bottom: 10px; font-weight: 600; }
.feat p { color: var(--cream); font-size: 15px; line-height: 1.55; }
@media (max-width: 920px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feat-grid { grid-template-columns: 1fr; } }

/* Showcase with stacked phones */
.showcase {
  grid-column: span 3;
  position: relative;
  padding: var(--s8);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s8);
  align-items: center;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-hero);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 -1px 0 rgba(0,0,0,0.25) inset, 0 32px 64px rgba(0,0,0,0.40);
  overflow: hidden;
}
.showcase::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 80% 50%, rgba(255,255,255,0.04), transparent 60%); pointer-events: none; }
.showcase h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; margin-bottom: var(--s4); }
.showcase p { color: var(--cream); font-size: 16px; line-height: 1.55; max-width: 40ch; }
.showcase .chips { margin-top: var(--s5); display: flex; flex-wrap: wrap; gap: 8px; }
.showcase .chip {
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--cream);
}
.phone-stack { position: relative; height: 460px; }
.phone-stack .phone { position: absolute; width: 200px; transition: transform .8s var(--spring-quick); }
.phone-stack .phone:nth-child(1) { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
.phone-stack .phone:nth-child(2) { top: 30px; left: 35%; transform: rotate(2deg); z-index: 3; }
.phone-stack .phone:nth-child(3) { top: 10px; right: 0; transform: rotate(6deg); z-index: 2; }
.phone-stack:hover .phone:nth-child(1) { transform: rotate(-6deg) translateY(-8px); }
.phone-stack:hover .phone:nth-child(2) { transform: rotate(2deg) translateY(-8px); }
.phone-stack:hover .phone:nth-child(3) { transform: rotate(6deg) translateY(-8px); }
@media (max-width: 920px) { .showcase { grid-column: span 2; grid-template-columns: 1fr; padding: var(--s5); } .phone-stack { height: 380px; } .phone-stack .phone { width: 160px; } }
@media (max-width: 580px) { .showcase { grid-column: span 1; } .phone-stack { height: 340px; } .phone-stack .phone { width: 140px; } }

/* ===================================================================
   INLINE WAITLIST BANNER
=================================================================== */
.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s6);
  align-items: center;
  padding: var(--s6) var(--s8);
  border-radius: var(--r-hero);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 24px 56px rgba(0,0,0,0.40);
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 0% 50%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner h3 {
  position: relative;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-banner p { position: relative; color: var(--cream); font-size: 15px; max-width: 50ch; line-height: 1.5; }
.cta-banner .btn { position: relative; }
@media (max-width: 720px) { .cta-banner { grid-template-columns: 1fr; padding: var(--s5); } }

/* ===================================================================
   VIDEO
=================================================================== */
.video-shell {
  position: relative;
  border-radius: var(--r-hero);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.55) 100%),
    url("photos/video-poster.webp?v=20260706");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 -1px 0 rgba(0,0,0,0.30) inset, 0 40px 80px rgba(0,0,0,0.50);
  cursor: pointer;
  transition: transform .4s var(--spring-quick);
}
.video-shell:hover { transform: translateY(-3px); }
.video-shell::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%); pointer-events: none; }
.video-shell .label {
  position: absolute; top: 24px; left: 24px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.video-shell .duration {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 13px; color: var(--cream);
  background: rgba(0,0,0,0.40);
  padding: 8px 14px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 104px; height: 104px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.30) inset, 0 16px 48px rgba(0,0,0,0.45);
  transition: transform .25s var(--spring-quick), background .25s var(--ease-out);
}
.video-shell:hover .play { transform: translate(-50%, -50%) scale(1.06); background: rgba(255,255,255,0.28); }

/* ===================================================================
   SO FUNKTIONIERT'S — steps
=================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
.step {
  position: relative;
  padding: var(--s6);
  border-radius: var(--r-card-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 16px 40px rgba(0,0,0,0.30);
  overflow: hidden;
}
.step::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 40%); pointer-events: none; }
.step .num {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream);
  font-weight: 700; font-size: 14px;
  margin-bottom: var(--s4);
}
.step h3 { position: relative; font-size: 20px; margin-bottom: 8px; font-weight: 600; }
.step p { position: relative; color: var(--cream); font-size: 15px; line-height: 1.55; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ===================================================================
   FÜR WEN — use cases
=================================================================== */
#fuer-wen { position: relative; overflow: hidden; }
#fuer-wen::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("photos/video-poster.webp?v=20260706");
  background-size: cover;
  background-position: right center;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
.case {
  position: relative;
  padding: var(--s5);
  border-radius: var(--r-card-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 16px 40px rgba(0,0,0,0.30);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--spring-quick), background .25s var(--ease-out);
}
.case::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%); pointer-events: none; }
.case:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); }
.case .icon {
  position: relative;
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid; place-items: center;
  color: var(--cream); margin-bottom: var(--s4);
}
.case h3 { position: relative; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.case p { position: relative; color: var(--cream); font-size: 14px; line-height: 1.5; }
@media (max-width: 900px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cases { grid-template-columns: 1fr; } }

/* ===================================================================
   MISSION
=================================================================== */
.mission {
  position: relative;
  padding: clamp(40px, 6vw, 80px);
  border-radius: var(--r-hero);
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 100%),
    url("photos/mission-bg.webp?v=20260706");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 32px 64px rgba(0,0,0,0.40);
  overflow: hidden;
}
.mission::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(255,255,255,0.04), transparent 65%),
    radial-gradient(500px 400px at 100% 100%, rgba(255,255,255,0.03), transparent 65%);
  pointer-events: none;
}
.mission-inner { position: relative; max-width: 820px; margin-inline: auto; text-align: center; }
.mission .quote {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.20;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: var(--s5) 0 var(--s6);
}
.mission .quote em { font-style: normal; color: var(--cream); font-weight: 500; }
.mission .quote-sub {
  max-width: 720px;
  margin: 0 auto var(--s2);
  font-size: 16px;
  line-height: 1.65;
  color: var(--sand);
}
.mission .values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
  text-align: left;
}
.mission .value {
  padding: var(--s4) var(--s5);
  border-radius: var(--r-card-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.mission .value .k { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.mission .value .d { font-size: 13px; color: var(--cream); line-height: 1.5; }
@media (max-width: 820px) { .mission .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mission .values { grid-template-columns: 1fr; } }

/* ===================================================================
   ÜBER UNS / TEAM
=================================================================== */
.team-section { position: relative; }
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s6);
}
.member {
  position: relative;
  padding: var(--s6);
  border-radius: var(--r-card-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 16px 40px rgba(0,0,0,0.30);
  overflow: hidden;
  transition: transform .35s var(--spring-quick), background .25s var(--ease-out);
}
.member::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.member:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); }
.member-top {
  position: relative;
  display: flex; align-items: center; gap: var(--s4);
  margin-bottom: var(--s4);
}
.member .avatar {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border-radius: 999px;
  background: linear-gradient(145deg, #4a4a4a, #1f1f1f);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, var(--elev-2);
  display: grid; place-items: center;
  overflow: hidden;
}
.member .avatar span {
  font-size: 24px; font-weight: 800; color: var(--cream);
  letter-spacing: 0.5px;
}
.member .avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.member .member-id h3 { font-size: 19px; font-weight: 600; margin: 0 0 2px; }
.member .member-id .role {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 3px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
}
.member > p { position: relative; color: var(--cream); font-size: 14px; line-height: 1.6; margin: 0; }
.member > p + p { margin-top: var(--s3); }
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }

/* ===================================================================
   FAQ
=================================================================== */
.faq { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s5); }
.faq details {
  position: relative;
  border-radius: var(--r-card-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: background .25s var(--ease-out);
}
.faq details[open] { background: rgba(255, 255, 255, 0.07); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s4) var(--s5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  font-size: 16px; font-weight: 600; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  position: relative;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
  font-size: 0; /* verbirgt das "+"-Textzeichen */
  transition: background .25s var(--ease-out);
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--spring-quick), opacity .25s var(--ease-out);
}
.faq summary .plus::before { width: 12px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 12px; }
.faq details[open] summary .plus { background: rgba(255, 255, 255, 0.10); }
.faq details[open] summary .plus::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.faq .answer { padding: 0 var(--s5) var(--s5); color: var(--cream); font-size: 15px; line-height: 1.6; }
.faq .answer p + p { margin-top: 12px; }

/* ===================================================================
   WAITLIST (Pre-order) slab
=================================================================== */
#preorder { position: relative; overflow: hidden; }
#preorder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("photos/mission-bg.webp?v=20260706");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at 50% 100%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, #000 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.order {
  position: relative;
  border-radius: var(--r-hero);
  padding: clamp(40px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 -1px 0 rgba(0,0,0,0.30) inset, 0 32px 80px rgba(0,0,0,0.50);
  overflow: hidden;
}
.order::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 0% 0%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(600px 500px at 100% 100%, rgba(255,255,255,0.03), transparent 65%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.order-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.order h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.025em; margin-bottom: var(--s4); font-weight: 700; }
.order .lead { color: var(--cream); font-size: 17px; margin-bottom: var(--s5); line-height: 1.5; }
.order .badges { display: flex; flex-direction: column; gap: 14px; margin-top: var(--s5); }
.order .badge {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--cream); font-size: 14px;
  line-height: 1.5;
}
.order .badge .b-text { flex: 1; min-width: 0; }
.order .badge .b-text strong { color: #fff; font-weight: 600; }
.order .badge .tick {
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(232, 181, 116, 0.16);
  border: 1px solid rgba(232, 181, 116, 0.40);
  color: #F4D2A1;
  display: grid; place-items: center;
  font-size: 12px; flex-shrink: 0;
  margin-top: 1px;
}

form.preorder { display: grid; gap: var(--s5); }
form.preorder .panel { display: grid; gap: var(--s5); }
form.preorder .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
form.preorder label { display: block; }
form.preorder .lbl { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 7px; display: block; }
form.preorder input, form.preorder textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-button);
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
form.preorder input::placeholder, form.preorder textarea::placeholder { color: var(--taupe); }
form.preorder input:focus, form.preorder textarea:focus {
  border-color: rgba(232, 181, 116, 0.45);
  background: rgba(0, 0, 0, 0.60);
  box-shadow: 0 0 0 4px rgba(232, 181, 116, 0.10);
}
form.preorder textarea { min-height: 110px; resize: vertical; font-family: var(--font-sans); }
form.preorder .submit { margin-top: var(--s3); display: flex; justify-content: space-between; align-items: center; gap: var(--s4); flex-wrap: wrap; }
form.preorder .fine { color: var(--sand); font-size: 12px; max-width: 38ch; line-height: 1.5; }
form.preorder .fine a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
form.preorder.sent .panel { display: none; }
.thanks {
  display: none;
  padding: var(--s6);
  border-radius: var(--r-card-sm);
  background: rgba(76,175,80,0.10);
  border: 1px solid rgba(76,175,80,0.30);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.thanks .h { font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-size: 16px; }
.thanks .d { color: var(--cream); font-size: 14px; line-height: 1.5; }
form.preorder.sent + .thanks { display: block; }

@media (max-width: 820px) { .order-grid { grid-template-columns: 1fr; } form.preorder .row2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  form.preorder { gap: var(--s4); }
  form.preorder .panel { gap: var(--s4); }
  form.preorder .row2 { gap: var(--s4); }
}

/* Button overrides */
.btn-primary {
  background: rgba(255, 250, 240, 0.95);
  color: var(--button-ink);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 -1px 0 rgba(0,0,0,0.10) inset, 0 16px 32px rgba(0,0,0,0.30), 0 4px 8px rgba(0,0,0,0.18);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 8px 24px rgba(0,0,0,0.25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ===================================================================
   STATUS BAND — Beta-Plätze, Countdown, Activity
=================================================================== */
.status-section { padding-block: clamp(24px, 3vw, 40px); }
.status-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 0;
  padding: var(--s5);
  border-radius: var(--r-card-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 16px 40px rgba(0,0,0,0.35);
  overflow: hidden;
}
.status-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.status-cell {
  position: relative;
  padding: 4px var(--s5);
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  min-width: 0;
}
.status-cell:first-child { border-left: 0; padding-left: 4px; }
.status-cell:last-child { padding-right: 4px; }

.status-k {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.status-k .ping {
  position: relative; width: 8px; height: 8px;
}
.status-k .ping::before, .status-k .ping::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: var(--success);
}
.status-k .ping::after { animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.7; }

.status-v {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.status-v .status-of {
  font-size: 14px; font-weight: 500;
  color: var(--sand);
  letter-spacing: 0;
}

.status-cell .bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.status-cell .bar .fill {
  position: absolute; inset: 0; right: auto;
  background: linear-gradient(90deg, #ffffff 0%, #f0d8b4 100%);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(232, 181, 116, 0.25);
}

.status-foot {
  font-size: 12px;
  color: var(--sand);
  margin-top: auto;
}
.status-foot strong { color: var(--cream); font-weight: 600; }

/* Countdown inside status (override hero-version sizes) */
.status-cell .countdown {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: 6px;
  margin-bottom: 12px;
}
.status-cell .countdown .unit {
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  min-width: 56px;
}
.status-cell .countdown .unit .v { font-size: 22px; letter-spacing: -0.02em; }
.status-cell .countdown .unit .k { font-size: 9px; margin-top: 4px; }
.status-cell .countdown .sep { font-size: 16px; padding-bottom: 14px; }

/* Flip-clock style rolling digit reels */
.status-cell .countdown .reels {
  display: inline-flex;
  gap: 1px;
  height: 1em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.status-cell .countdown .digit {
  position: relative;
  display: inline-block;
  width: 0.62em;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
}
.status-cell .countdown .digit .reel {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
}
.status-cell .countdown .digit .reel > span {
  height: 1em;
  display: flex; align-items: center; justify-content: center;
}
/* Faint horizontal seam through the digit — classic flip-clock midline */
.status-cell .countdown .digit::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
}
/* Subtle inner shadow top/bottom — adds dimensional polish */
.status-cell .countdown .digit::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

/* Activity card */
.status-activity {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  margin-bottom: 4px;
}
.status-activity .av {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: #fff; font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.status-activity .who { min-width: 0; line-height: 1.35; }
.status-activity .who .n { font-size: 13px; color: #fff; }
.status-activity .who .m { font-size: 11px; color: var(--sand); margin-top: 2px; }

@media (max-width: 920px) {
  .status-band { grid-template-columns: 1fr 1fr; gap: var(--s4); padding: var(--s4); }
  .status-cell { border-left: 0; padding: var(--s4); background: rgba(255,255,255,0.02); border-radius: 12px; }
  .status-cell:first-child, .status-cell:last-child { padding: var(--s4); }
  .status-cell:last-child { grid-column: span 2; }
}
@media (max-width: 540px) {
  .status-band { grid-template-columns: 1fr; }
  .status-cell:last-child { grid-column: span 1; }
  .status-cell .countdown .unit { padding: 8px 10px; min-width: 48px; }
  .status-cell .countdown .unit .v { font-size: 18px; }
}

/* ===================================================================
   SOCIAL PROOF BAR
=================================================================== */
.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--s5) var(--s6);
  border-radius: var(--r-card-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 16px 40px rgba(0,0,0,0.30);
  overflow: hidden;
}
.proof-strip::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.proof-strip .cell {
  position: relative;
  padding: 0 var(--s5);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.proof-strip .cell:first-child { border-left: 0; }
.proof-strip .v {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; line-height: 1;
  color: #fff;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.proof-strip .v.warn { color: #f0d8b4; }
.proof-strip .v .small { font-size: 0.55em; color: var(--sand); font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.proof-strip .k {
  font-size: 12px; color: var(--sand);
  margin-top: 8px; letter-spacing: 0.02em;
  line-height: 1.4;
}
.proof-strip .k strong { color: var(--cream); font-weight: 500; }
@media (max-width: 820px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); gap: var(--s4); padding: var(--s5); }
  .proof-strip .cell { padding: 0; border-left: 0; }
  .proof-strip .cell:nth-child(3) { padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,0.06); }
  .proof-strip .cell:nth-child(4) { padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ===================================================================
   LIVE ACTIVITY TOAST (bottom-left)
=================================================================== */
.live-toast {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 39;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px 10px 12px;
  background: rgba(20, 20, 20, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 16px 40px rgba(0,0,0,0.55);
  max-width: 320px;
  opacity: 0; transform: translateY(20px) scale(0.96);
  transition: opacity .35s var(--ease-out), transform .45s var(--spring-quick);
  pointer-events: none;
}
.live-toast.show { opacity: 1; transform: none; }
.live-toast .av {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #fff; font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.live-toast .text { min-width: 0; line-height: 1.35; }
.live-toast .text .l1 { font-size: 13px; color: #fff; font-weight: 500; }
.live-toast .text .l1 strong { font-weight: 600; }
.live-toast .text .l2 { font-size: 11px; color: var(--sand); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.live-toast .text .l2 .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--success); box-shadow: 0 0 8px rgba(76,175,80,0.7); }
@media (max-width: 600px) {
  .live-toast { left: 16px; right: 16px; max-width: none; bottom: 80px; }
}

/* ===================================================================
   STICKY CTA — floating glass pill bottom-right
=================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 12px 10px 18px;
  background: rgba(20, 20, 20, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 16px 40px rgba(0,0,0,0.50);
  color: #fff;
  font-size: 14px; font-weight: 500;
  opacity: 0; transform: translateY(20px) scale(0.94); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .45s var(--spring-quick);
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 12px rgba(76,175,80,0.7); }
.sticky-cta .lbl { color: var(--cream); }
.sticky-cta .go {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,250,240,0.95); color: var(--button-ink);
  font-weight: 600; font-size: 13px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
@media (max-width: 600px) {
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; justify-content: space-between; }
}

/* ===================================================================
   MICRO-ANIMATIONS — float, shimmer, count-up, parallax
=================================================================== */
@keyframes float-slow {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, -52%); }
}
@keyframes float-tile-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-6px); }
}
@keyframes float-tile-2 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-8px); }
}
@keyframes float-tile-3 {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-5px); }
}
@keyframes float-tile-4 {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-7px); }
}

/* Apply gentle floating to hero stage elements (override transitions on idle) */
.stage .hero-phone { animation: float-slow 7s ease-in-out infinite; }
.stage .tile-status { animation: float-tile-1 5.5s ease-in-out infinite; }
.stage .tile-stat   { animation: float-tile-2 6.2s ease-in-out infinite; }
.stage .tile-msg    { animation: float-tile-3 5.8s ease-in-out infinite; }
.stage .tile-pill   { animation: float-tile-4 6.6s ease-in-out infinite; }

/* Pause floats on hover so the hover-lift state takes over cleanly */
.stage:hover .hero-phone,
.stage:hover .tile-status,
.stage:hover .tile-stat,
.stage:hover .tile-msg,
.stage:hover .tile-pill { animation-play-state: paused; }

/* Shimmer sweep on primary buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: shimmer 0.9s ease-out; }
@keyframes shimmer {
  to { left: 130%; }
}

/* Bounce-in for sticky CTA when first shown */
.sticky-cta.show { animation: pop-in 0.45s cubic-bezier(0.22, 1.4, 0.36, 1); }
@keyframes pop-in {
  0%   { opacity: 0; transform: translateY(20px) scale(0.94); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

/* Feature icon — subtle scale + glow on card hover */
.feat .icon { transition: transform .35s var(--spring-quick), background .25s var(--ease-out), box-shadow .35s var(--ease-out); }
.feat:hover .icon {
  transform: scale(1.08) translateY(-2px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.30), 0 0 24px rgba(255,255,255,0.06);
}

/* Use case icon */
.case .icon { transition: transform .35s var(--spring-quick), background .25s var(--ease-out); }
.case:hover .icon { transform: scale(1.08) rotate(-3deg); background: rgba(255,255,255,0.14); }

/* Stat number count-up — tabular numerals so width doesn't jump */
.cd-up { font-variant-numeric: tabular-nums; }

/* Stagger reveal — applied to direct children of grids */
.feat-grid > .reveal { transition-delay: 0ms; }
.feat-grid > .reveal.in:nth-child(1) { transition-delay: 0ms; }
.feat-grid > .reveal.in:nth-child(2) { transition-delay: 60ms; }
.feat-grid > .reveal.in:nth-child(3) { transition-delay: 120ms; }
.feat-grid > .reveal.in:nth-child(4) { transition-delay: 180ms; }
.feat-grid > .reveal.in:nth-child(5) { transition-delay: 240ms; }
.feat-grid > .reveal.in:nth-child(6) { transition-delay: 300ms; }
.feat-grid > .reveal.in:nth-child(7) { transition-delay: 360ms; }
.feat-grid > .reveal.in:nth-child(8) { transition-delay: 420ms; }
.feat-grid > .reveal.in:nth-child(9) { transition-delay: 480ms; }
/* Showcase (10. Kind) tritt separat ins Bild – ohne lange Verzögerung */
.feat-grid > .showcase.reveal.in { transition-delay: 0ms; }

.cases > .reveal.in:nth-child(1) { transition-delay: 0ms; }
.cases > .reveal.in:nth-child(2) { transition-delay: 50ms; }
.cases > .reveal.in:nth-child(3) { transition-delay: 100ms; }
.cases > .reveal.in:nth-child(4) { transition-delay: 150ms; }
.cases > .reveal.in:nth-child(5) { transition-delay: 200ms; }
.cases > .reveal.in:nth-child(6) { transition-delay: 250ms; }
.cases > .reveal.in:nth-child(7) { transition-delay: 300ms; }
.cases > .reveal.in:nth-child(8) { transition-delay: 350ms; }

.steps > .reveal.in:nth-child(1) { transition-delay: 0ms; }
.steps > .reveal.in:nth-child(2) { transition-delay: 80ms; }
.steps > .reveal.in:nth-child(3) { transition-delay: 160ms; }
.steps > .reveal.in:nth-child(4) { transition-delay: 240ms; }
.steps > .reveal.in:nth-child(5) { transition-delay: 320ms; }
.steps > .reveal.in:nth-child(6) { transition-delay: 400ms; }

/* Live-toast pop animation override */
.live-toast.show { animation: pop-in 0.45s cubic-bezier(0.22, 1.4, 0.36, 1); }

/* Nav link underline grow */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--spring-quick);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stage .hero-phone, .stage .tile-status, .stage .tile-stat,
  .stage .tile-msg, .stage .tile-pill { animation: none; }
  .btn-primary::after { display: none; }
  .sticky-cta.show, .live-toast.show { animation: none; }
  .status-cell .countdown .digit .reel { transition: none; }
}

/* ===================================================================
   REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--spring-quick); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }


/* ===================================================================
   APP TOUR — interaktiver Screen-Switcher
=================================================================== */
#tour { position: relative; overflow: hidden; }
.tour { margin-top: var(--s6); }

.tour-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 16px 40px rgba(0,0,0,0.30);
  margin-bottom: var(--s6);
  width: fit-content;
  max-width: 100%;
}
.tour-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--cream);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background .22s var(--ease-out), color .22s var(--ease-out), border-color .22s var(--ease-out);
  font-family: inherit;
  white-space: nowrap;
}
.tour-tab svg { opacity: 0.7; transition: opacity .22s var(--ease-out); }
.tour-tab:hover { background: rgba(255,255,255,0.05); color: #fff; }
.tour-tab:hover svg { opacity: 1; }
.tour-tab.is-active {
  background: rgba(255, 250, 240, 0.95);
  color: var(--button-ink);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 8px 18px rgba(0,0,0,0.30);
}
.tour-tab.is-active svg { opacity: 1; }

.tour-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--r-hero);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 -1px 0 rgba(0,0,0,0.25) inset, 0 32px 64px rgba(0,0,0,0.40);
  overflow: hidden;
}
.tour-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 50%, rgba(232,181,116,0.07), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.tour-copy { position: relative; min-height: 360px; }
.tour-pane {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(8px);
  pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .55s var(--spring-quick);
}
.tour-pane.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.tour-pane.is-active ~ .tour-pane { /* hidden */ }
/* Make non-active panes truly out of flow */
.tour-pane:not(.is-active) { display: none; }

.tour-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand);
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-bottom: var(--s4);
}
.tour-pane h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 700;
  margin-bottom: var(--s3);
}
.tour-pane p {
  color: var(--cream); font-size: 16px; line-height: 1.55;
  max-width: 44ch;
  margin-bottom: var(--s4);
}
.tour-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tour-list li {
  position: relative;
  padding-left: 26px;
  color: var(--cream); font-size: 14px; line-height: 1.5;
}
.tour-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: rgba(232, 181, 116, 0.16);
  border: 1px solid rgba(232, 181, 116, 0.40);
}
.tour-list li::after {
  content: "";
  position: absolute; left: 4px; top: 10px;
  width: 8px; height: 4px;
  border-left: 1.6px solid #F4D2A1;
  border-bottom: 1.6px solid #F4D2A1;
  transform: rotate(-45deg);
}

/* Phone wrap */
.tour-phone-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.tour-phone {
  position: relative;
  width: 280px;
  z-index: 2;
}
.tour-phone .screen img.tour-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s var(--ease-out), transform .8s var(--spring-quick);
}
.tour-phone .screen img.tour-img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Floating chips */
.tour-chip {
  position: absolute;
  padding: 10px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 16px 32px rgba(0,0,0,0.40);
  z-index: 3;
  color: #fff;
}
.tour-chip::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
  pointer-events: none;
}
.tour-chip .lbl { font-size: 12px; font-weight: 500; color: var(--cream); }
.tour-chip .ic {
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(76,175,80,0.20);
  border: 1px solid rgba(76,175,80,0.40);
  color: #B7E4B9;
  display: grid; place-items: center;
}
.chip-a {
  top: 6%; left: 0;
  transform: rotate(-3deg);
  animation: float-tile-1 6.4s ease-in-out infinite;
}
.chip-b {
  bottom: 8%; right: 0;
  transform: rotate(2deg);
  animation: float-tile-4 7s ease-in-out infinite;
  padding: 10px 16px;
}
.chip-b .num {
  font-size: 22px; font-weight: 700; line-height: 1; color: #fff;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.chip-b .num .of { font-size: 13px; color: var(--sand); font-weight: 500; margin-left: 2px; }

/* Thumbnail rail */
.tour-rail {
  display: flex; gap: 12px;
  margin-top: var(--s5);
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.20) transparent;
}
.tour-rail::-webkit-scrollbar { height: 6px; }
.tour-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 999px; }
.tour-thumb {
  flex: 0 0 auto;
  width: 92px;
  aspect-ratio: 440 / 956;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--espresso);
  border: 1px solid rgba(255, 255, 255, 0.10);
  cursor: pointer;
  transition: transform .3s var(--spring-quick), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
}
.tour-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  opacity: 0.62;
  transition: opacity .25s var(--ease-out);
}
.tour-thumb:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.20); }
.tour-thumb:hover img { opacity: 0.85; }
.tour-thumb.is-active {
  border-color: rgba(232, 181, 116, 0.55);
  box-shadow: 0 0 0 2px rgba(232, 181, 116, 0.20), 0 12px 28px rgba(0,0,0,0.35);
}
.tour-thumb.is-active img { opacity: 1; }

@media (max-width: 920px) {
  .tour-stage { grid-template-columns: 1fr; padding: var(--s5); }
  .tour-copy { min-height: auto; }
  .tour-phone-wrap { min-height: 440px; margin-top: var(--s4); }
}
@media (max-width: 520px) {
  .tour-phone { width: 220px; }
  /* Keep the phone + floating chips in a centered, viewport-safe box so the
     chips no longer stick out at the screen edges (looked buggy on mobile). */
  .tour-phone-wrap { width: min(300px, 90vw); max-width: 100%; margin-inline: auto; overflow: visible; }
  .tour-tabs { padding: 6px; }
  .tour-tab { padding: 8px 12px; font-size: 12px; }
  .chip-a { top: 2%; left: 0; }
  .chip-b { bottom: 4%; right: 0; }
  .tour-thumb { width: 70px; border-radius: 10px; }
}

/* ===================================================================
   "FÜR WEN" — Branchen-Karten mit Foto-Hintergrund
=================================================================== */
.case.has-photo {
  min-height: 240px;
  justify-content: flex-start;
  isolation: isolate;
}
.case.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--case-bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform .8s var(--ease-out), filter .35s var(--ease-out);
  filter: saturate(105%);
}
.case.has-photo::before {
  /* überschreibt den ursprünglichen ::before-Glanz mit dunklem Verlauf für Lesbarkeit */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.30) 100%),
    linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 45%);
  z-index: -1;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.case.has-photo:hover::after { transform: scale(1.05); filter: saturate(115%); }
.case.has-photo .icon {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-self: flex-start;
}
.case.has-photo h3 { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.case.has-photo p { color: rgba(255,255,255,0.86); text-shadow: 0 1px 10px rgba(0,0,0,0.55); }

/* ===================================================================
   REALITÄT — Bild-Galerie aus dem Baustellen-Alltag
=================================================================== */
.reality-section { position: relative; }
.reality-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s6);
}
.reality-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-card-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 10, 0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 24px 56px rgba(0,0,0,0.45);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  min-height: 220px;
  transition: transform .35s var(--spring-quick), box-shadow .35s var(--ease-out);
}
.reality-card.big {
  grid-row: span 2;
  min-height: 460px;
}
.reality-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease-out), filter .4s var(--ease-out);
}
.reality-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%);
  z-index: -1;
  pointer-events: none;
}
.reality-card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 32px 72px rgba(0,0,0,0.55); }
.reality-card:hover img { transform: scale(1.06); filter: saturate(115%); }

.reality-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reality-card.big .reality-overlay { padding: var(--s6); }
.reality-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent, #E8B574);
  margin-bottom: 6px;
}
.reality-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
}
.reality-card.big .reality-overlay h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 22ch;
}
.reality-overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 38ch;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .reality-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .reality-card.big { grid-column: span 2; grid-row: auto; min-height: 380px; }
}
@media (max-width: 560px) {
  .reality-grid { grid-template-columns: 1fr; }
  .reality-card.big { grid-column: auto; min-height: 320px; }
  .reality-card { min-height: 200px; }
}


/* ===================================================================
   MISSION — soft background image for warmth
=================================================================== */
.mission-section { position: relative; overflow: hidden; }
.mission-section .mission-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mission-section .mission-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: saturate(110%) brightness(0.85);
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 75%);
}
.mission-section .wrap { position: relative; z-index: 1; }

/* ===================================================================
   ATMOSPHÄRISCHE SEKTIONS-HINTERGRÜNDE
   ChatGPT-Bilder als warme, weiche Backdrops in dunklen Sektionen
=================================================================== */

/* Problem-Sektion: Helligkeit anheben */
#problem::before {
  background-image: url("photos/branch-bau.webp?v=20260706");
  background-position: center;
  transform: none;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}

/* Funktionen-Sektion: warme Werkstatt-Atmosphäre */
#funktionen { position: relative; overflow: hidden; }
#funktionen::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("photos/mission-bg.webp?v=20260706");
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  mask-image: radial-gradient(ellipse at 80% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, #000 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
#funktionen > .wrap { position: relative; z-index: 1; }

/* Workflow-Sektion: Kalender-Bild (Hand pinnt Tag) als Backdrop */
#workflow { position: relat