:root {
  --color-bg-primary: #FAFAF8;
  --color-bg-secondary: #F3F6F9;
  --color-bg-tertiary: #F8F7F3;

  --color-text-primary: #1F2933;
  --color-text-secondary: #5B6670;
  --color-text-muted: #8A939B;

  --color-accent-blue: #4F7FFF;
  --color-accent-crimson: #E2556F;
  --color-accent-sand: #F2C98A;

  --font-headline: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1200px;

  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-soft: 0 12px 40px rgba(0,0,0,0.06);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  padding: 16px 0;
  z-index: 100;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 12px;        /* sanft gerundete Ecken */
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);  /* optional: leichte Tiefe */
}


.nav-links {
  display: flex;
  align-items: center;   /* vertikale Zentrierung */
  list-style: none;
  gap: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 14px;
}

.nav-links > li:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  color: rgba(0,0,0,0.35);   /* bei dunkler Bar später: rgba(255,255,255,0.35) */
  font-size: 13px;
  line-height: 1;
}


.nav-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* HERO */

.hero {
  position: relative;
  padding: var(--space-xl) 0;
  text-align: left;
  background: url("hero-scene.jpg") center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 720px;      /* begrenzt die Textbreite */
  margin-left: 8%;      /* schiebt alles nach links ins ruhige Bildfeld */
}
/* HERO TYPO FEINSCHLIFF */

/* Markenname oben */
.hero-brand {
  color: #ffffff;
  font-size: 30px;       /* größer als vorher */
  font-weight: 600;
  margin-bottom: 28px;   /* mehr Abstand nach unten */
}

/* Hauptheadline bleibt wie sie ist, nur Abstand anpassen */
.hero-headline {
  margin-bottom: 24px;   /* Abstand zur Subline */
}
/* Hauptaussage schwarz und klar */
.hero-headline,
.hero-em {
  color: #000000;          /* echtes Schwarz */
  text-shadow: 0 2px 8px rgba(255,255,255,0.45);  /* leichte Aufhellung vom Hintergrund */
}

/* Subline */
.hero-subline {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 36px;   /* mehr Luft zu den Store-Buttons */
}


/* Weiche Unschärfe als eigene Schicht */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px) brightness(0.9) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) brightness(0.9) saturate(1.1);
  z-index: 0;
}

/* Inhalt wieder nach vorne holen */
.hero > .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 8%;
  transform: translateY(-60px);  /* schiebt den Textblock nach oben */
}

.nowrap { white-space: nowrap; }

.hero-headline,
.about-headline {
  overflow-wrap: normal;
  word-break: normal;
}


/* STORE BADGES (App Store / Google Play) */
.store-badges {
  display: flex;
  gap: 16px;           /* Abstand zwischen den beiden */
  align-items: center;
  justify-content: flex-start;  /* linksbündig */
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 46px;   /* beide exakt gleich hoch */
  width: auto;
  display: block;
}



/* SECTIONS */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

/* CTA SOCIAL */

.cta-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.cta-social img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.cta-social img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* FOOTER */

.footer {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--color-text-muted);
}

/* SPRACHAUSWAHL */

.lang-switch {
  position: relative;
  padding-bottom: 6px;
}

.lang-current {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--color-text-secondary);
  cursor: pointer;
  font-family: var(--font-body);

  padding: 8px 12px;      /* NEU */
  min-height: 40px;       /* NEU */
  display: inline-flex;   /* NEU */
  align-items: center;    /* NEU */
}

.lang-menu {
  display: none;              /* standardmäßig versteckt */
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  list-style: none;
  padding: 8px 0;
  min-width: 140px;
  z-index: 1000;
}

.lang-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text-primary);
  font-size: 14px;
}

.lang-menu li a:hover {
  background: var(--color-bg-secondary);
}

/* Öffnen bei Hover (Übergangslösung, Klick kommt später mit JS) */
.lang-switch:hover .lang-menu {
  display: block;
}
.line-lock {
  white-space: nowrap;
  display: inline-block;
}

.hero-headline,
.about-headline {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
/* =========================
   ABOUT – Editorial Typo
========================= */

.section-about {
  padding: 140px 0;
}

.container.narrow {
  max-width: 760px;
}

/* Kleine Einordnung oben */
.about-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Leitsatz oben */
.about-lead {
  font-family: var(--font-headline);
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-text-primary);
}

/* Fließtext */
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 28px;
  color: var(--color-text-secondary);
}

/* Poetischer Mittelteil */
.about-poetry {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Abschluss-Klammer */
.about-closing {
  margin-top: 48px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Mobile Feinschliff */
@media (max-width: 768px) {
  .about-lead {
    font-size: 26px;
  }

  .about-text p,
  .about-closing {
    font-size: 16px;
  }

  .about-poetry {
    font-size: 18px;
  }
}
/* STORY SECTION – Moment, Link, Wink, Zweite Chance */

.story-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fafaf8, #f3f6f9);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 140px;
  padding: 0 32px;
}

.story-block:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.story-text {
  max-width: 520px;
}

.story-title {
  font-size: 32px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #1F2933;
}

.story-lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.story-note {
  margin-top: 16px;
  font-style: italic;
  color: #5B6670;
}

.story-visual img {
  width: 100%;
  border-radius: 18px;
  filter: blur(4px) brightness(0.95);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.mockup-placeholder {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e8ecf2, #f6f8fb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A939B;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .story-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 100px;
  }

  .story-visual {
    order: -1;
  }

  .story-title {
    font-size: 26px;
  }
}
/* =========================
   SICHERHEIT – REDUZIERT
========================= */

.section-safety-minimal {
  background: #f7f8fa;
  padding: var(--space-xl) 0;
}

.section-safety-minimal .section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.safety-point {
  text-align: center;
}

.safety-point h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

.safety-point p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .safety-list {
    grid-template-columns: 1fr;
  }
}
/* NEXTSTAGE */

.section-nextstage {
  background: linear-gradient(180deg, #FAFAF8 0%, #F3F6F9 100%);
  padding: var(--space-xl) 0;
}

.nextstage-text {
  text-align: center;
  line-height: 1.9;
  color: var(--color-text-secondary);
}

.nextstage-text p {
  margin-bottom: 28px;
  font-size: 18px;
}

.nextstage-lines {
  font-style: italic;
  color: var(--color-text-primary);
}

.nextstage-highlight {
  font-weight: 500;
  color: var(--color-text-primary);
}

.nextstage-mockups {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.nextstage-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.06);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.nextstage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.12) 45%,
    rgba(242, 201, 138, 0.08) 100%
  );
  pointer-events: none;
}

.nextstage-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 900px) {
  .nextstage-mockups {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

#faq,
#linkwink,
#footer {
  scroll-margin-top: 100px;
}

/* FEATURE SECTIONS – ILIWIO / HOTSPOT / STREAK */

.section-feature {
  padding: 100px 0;
}

.section-feature.alt {
  background: #f7f9fc;
}

.feature-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-text {
  flex: 1;
  max-width: 520px;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-placeholder {
  width: 260px;
  height: 520px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef2f7, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa3ad;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .feature-split {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
  }
}

.story-visual .feature-img {
  filter: none;
}

/* =========================
   FEATURE TRIO (Hotspot / ILIWIO / Streak)
========================= */

.feature-trio {
  padding: 120px 0;
}

.feature-trio-text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  text-align: center;
  margin-bottom: 60px;
  align-items: start;
}

.feature-item {
  min-height: 190px;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.feature-item p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

/* BILDER */
.feature-trio-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-visual-item {
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.feature-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.92) saturate(0.98);
  transform: scale(1.05);
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .feature-trio-text {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .feature-trio-visuals {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-visual-item {
    height: 220px;
  }
}

/* MOCKUP CARDS nur für Link / Wink / Zweite Chance */

.mockup-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 28px;
  padding: 20px;
  border: 1px solid rgba(31, 41, 51, 0.06);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 24px 60px rgba(15, 23, 42, 0.08);
}

.mockup-card .feature-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  filter: none !important;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-links a {
  position: relative;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-text-primary);
  transition: width 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-links a:hover::after {
  width: 100%;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

/* MOBILE HERO FIX */
@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .hero > .container,
  .hero .container {
    max-width: 100%;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(-40px);
  }

  .hero-headline {
    font-size: clamp(32px, 8.6vw, 44px);
    max-width: 100%;
  }

  .line-lock {
    white-space: normal;
    display: inline;
  }

  @media (max-width: 768px) {
  .navbar-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .nav-links li {
    padding: 0 8px;
  }

  .nav-links > li:not(:last-child)::after {
    margin-left: 8px;
  }

  .lang-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
 }
}