/* ── Variables ─────────────────────────────────────────── */
:root {
  --dark-green:   #1B3D26;
  --pitch-green:  #3A7D3C;
  --ticker-bg:    #0B140C;
  --gold:         #D4A017;
  --red:          #C0392B;
  --text:         #FFFFFF;
  --text-muted:   rgba(255,255,255,0.65);
  --card:         rgba(255,255,255,0.07);
  --card-hover:   rgba(255,255,255,0.11);
  --divider:      rgba(255,255,255,0.10);
}

/* ── Accessibility ─────────────────────────────────────── */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  background: var(--ticker-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  height: clamp(52px, 6vw, 68px);
  background: rgba(11, 20, 12, 0.92);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 2px;
  color: var(--gold);
}

.nav-logo-img {
  height: clamp(28px, 3.5vw, 38px);
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(90px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background: var(--ticker-bg);
}

/* Hintergrundbild via <picture> */
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Dark overlay — wie AppBackground in der App */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11,20,12,0.55) 0%,
    rgba(27,61,38,0.65) 45%,
    rgba(11,20,12,0.90) 100%
  );
  pointer-events: none;
}

/* Content über dem Overlay */
.hero > *:not(.hero-bg-picture) { position: relative; z-index: 2; }

.hero-title-svg {
  width: min(520px, 90vw);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.hero-title-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tagline {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  line-height: 1.7;
}

.hero-tagline strong {
  color: var(--text);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Store Buttons ─────────────────────────────────────── */
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.2vw, 16px) clamp(20px, 2.5vw, 32px);
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  transition: transform 0.15s, background 0.15s;
  min-width: clamp(150px, 18vw, 200px);
}

.store-btn:active { transform: scale(0.97); }

.store-btn.primary {
  background: var(--pitch-green);
  color: var(--text);
}
.store-btn.primary:hover { background: #4a8f4d; transform: translateY(-2px); }

.store-btn.disabled {
  background: var(--card);
  color: var(--text-muted);
  cursor: default;
  border: 1px solid var(--divider);
}

.store-btn-icon { font-size: clamp(24px, 3vw, 32px); line-height: 1; }
.store-btn-text { text-align: left; }
.store-btn-small { font-size: clamp(10px, 1vw, 12px); opacity: 0.7; display: block; }
.store-btn-big { font-size: clamp(16px, 1.8vw, 20px); font-weight: 500; display: block; }

/* ── Section base ──────────────────────────────────────── */
section { padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px); }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pitch-green);
  text-align: center;
  margin-bottom: clamp(10px, 1.2vw, 16px);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 48px);
  text-align: center;
  color: var(--text);
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.section-body {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  line-height: 1.75;
}

/* ── Nostalgie-Block ───────────────────────────────────── */
.nostalgie {
  background: linear-gradient(180deg, var(--ticker-bg) 0%, rgba(27,61,38,0.25) 50%, var(--ticker-bg) 100%);
}

.nostalgie-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.nostalgie-quote blockquote {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3.8vw, 38px);
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.nostalgie-quote p {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Features ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 28vw, 280px), 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card);
  border-radius: 12px;
  padding: clamp(22px, 2.5vw, 36px) clamp(20px, 2.5vw, 32px);
  transition: background 0.2s;
}
.feature-card:hover { background: var(--card-hover); }

.feature-icon {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: clamp(12px, 1.5vw, 20px);
  display: block;
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text);
  margin-bottom: clamp(6px, 0.8vw, 12px);
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Screenshots ───────────────────────────────────────── */
.screenshots-section {
  padding: clamp(60px, 8vw, 110px) 0;
  overflow: hidden;
}

.screenshots-section .section-label,
.screenshots-section .section-title {
  padding: 0 clamp(20px, 5vw, 80px);
}

.screenshots-scroll {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(32px, 4vw, 48px) clamp(20px, 5vw, 80px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.phone-mockup {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  scroll-snap-align: center;
}

.phone-screen {
  width: clamp(140px, 20vw, 200px);
  aspect-ratio: 1290 / 2796;
  border-radius: clamp(18px, 2.5vw, 26px);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.12),
    0 20px 60px rgba(0,0,0,0.6);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-caption {
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--text-muted);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Pricing ───────────────────────────────────────────── */
.pricing {
  text-align: center;
  background: linear-gradient(180deg, var(--ticker-bg) 0%, rgba(27,61,38,0.2) 100%);
}

.free-season-banner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  background: rgba(58,125,60,0.15);
  border-radius: 12px;
  padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
  max-width: 520px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: left;
}

.free-season-icon { font-size: clamp(28px, 3.5vw, 40px); flex-shrink: 0; }

.free-season-banner strong {
  display: block;
  font-size: clamp(16px, 1.9vw, 21px);
  color: var(--text);
  margin-bottom: 4px;
}

.free-season-banner span {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text-muted);
}

.price-box {
  display: inline-block;
  background: var(--card);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 52px) clamp(40px, 6vw, 72px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.price-amount {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 80px);
  color: var(--gold);
  line-height: 1;
}

.price-label {
  font-size: clamp(13px, 1.5vw, 17px);
  color: var(--text-muted);
  margin-top: 8px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
  max-width: 380px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-muted);
}

.price-features li::before {
  content: '✓';
  color: var(--pitch-green);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 18px);
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: 1px;
  padding: clamp(12px, 1.5vw, 18px) clamp(28px, 3.5vw, 48px);
  border-radius: 8px;
  transition: transform 0.15s, background 0.15s;
}
.btn-gold:hover { background: #e0ab1d; transform: translateY(-2px); }

/* ── Footer ────────────────────────────────────────────── */
footer {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 80px);
  text-align: center;
  background: var(--ticker-bg);
}

.footer-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: clamp(11px, 1.1vw, 14px);
  color: rgba(255,255,255,0.3);
}

.footer-made-by {
  margin-top: 8px;
  font-size: clamp(11px, 1.1vw, 13px);
  color: rgba(255,255,255,0.25);
}

.footer-made-by a {
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.15s;
}
.footer-made-by a:hover { opacity: 1; }

/* ── Legal pages ───────────────────────────────────────── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 130px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-muted);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  transition: color 0.15s;
}
.legal-back:hover { color: var(--text); }

.legal-page h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 46px);
  color: var(--gold);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  letter-spacing: 1px;
}

.legal-page h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text);
  margin: clamp(24px, 3vw, 40px) 0 clamp(8px, 1vw, 14px);
  letter-spacing: 0.5px;
}

.legal-page p, .legal-page li {
  font-size: clamp(14px, 1.7vw, 18px);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-page a { color: var(--pitch-green); }
.legal-page a:hover { color: var(--gold); }

.legal-footer-links {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  flex-wrap: wrap;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-muted);
}
.legal-footer-links a:hover { color: var(--text); }

/* ── Mobile ────────────────────────────────────────────── */
body { overflow-x: hidden; }

@media (max-width: 600px) {
  /* Nav: legal links weg, nur Logo */
  .nav-links { display: none; }

  /* Hero: CTAs untereinander, full width */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .store-btn { justify-content: center; min-width: unset; }

  /* Features: 1 Spalte */
  .features-grid { grid-template-columns: 1fr; }

  /* Free season banner: stack */
  .free-season-banner { flex-direction: column; text-align: center; }

  /* Price box: full width */
  .price-box { padding: 28px 32px; width: 100%; }

  /* Price features: left-aligned */
  .price-features { max-width: 100%; }

  /* Screenshots: erste/letzte Card padding als visueller Hint */
  .screenshots-scroll {
    padding-left: 20px;
    padding-right: 20px;
  }
  .screenshots-scroll::after {
    content: '';
    flex-shrink: 0;
    width: 1px;
  }

  /* Footer links: kleinere gaps */
  .footer-links { gap: 12px; }

  /* Legal: weniger padding */
  .legal-page { padding-top: 80px; }
}

@media (max-width: 380px) {
  .hero-title-svg { width: 95vw; }
  .btn-gold { width: 100%; justify-content: center; }
}

/* ── Lightbox ──────────────────────────────────────────── */
.phone-mockup[data-src]:hover .phone-screen {
  box-shadow:
    0 0 0 2px var(--gold),
    0 20px 60px rgba(0,0,0,0.6);
  transition: box-shadow 0.2s;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-height: 100dvh;
}

.lightbox-phone {
  width: min(280px, 70vw);
  aspect-ratio: 1290 / 2796;
  border-radius: clamp(20px, 3vw, 32px);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.15),
    0 32px 80px rgba(0,0,0,0.8);
}

.lightbox-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.15s;
}
.lightbox-close:hover { color: var(--text); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text);
  font-size: 40px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.15s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 600px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-phone { width: min(240px, 75vw); }
}
