@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --bg: #0b0b10;
  --surface: #16151d;
  --surface-2: #1e1d28;
  --border: #2b2a38;
  --text: #f3f2f7;
  --muted: #9a98a8;
  --gold: #d8b44a;
  --gold-dark: #b6923a;
  --teal: #2dd4bf;
  --purple: #c026d3;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', -apple-system, 'Segoe UI', sans-serif;
}

.font-display { font-family: 'Chakra Petch', ui-monospace, monospace; }

/* Warmes Glühen hinter dem Hero-Mockup, angelehnt an den Vinyl-Goldton des App-Icons */
.hero-glow {
  background: radial-gradient(circle, rgba(216, 180, 74, 0.18) 0%, rgba(216, 180, 74, 0) 70%);
  filter: blur(6px);
}

.phone-frame {
  position: relative;
  background: #05050a;
  border-radius: 2.4rem;
  padding: 0.55rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-frame img {
  border-radius: 1.85rem;
  display: block;
  width: 100%;
}
.phone-notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.38rem;
  background: #05050a;
  border-radius: 999px;
  z-index: 10;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}

.pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Fade-in-on-scroll (per IntersectionObserver in script.js aktiviert) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.flow-connector {
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

::selection { background: rgba(216, 180, 74, 0.25); color: var(--text); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #17171d;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.5rem 0;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}
