/* ============================================
   fairi · Landing Styles
   Palette
     #363457 Space Indigo   · Hintergrund
     #465C69 Blue Slate     · Karten
     #C49DBA Lilac          · Soft-Text / Highlights
     #735290 Dusty Grape    · Primary CTA
     #95AE78 Muted Olive    · Akzent / Erfolg
   ============================================ */

:root {
  --c-bg:        #363457;
  --c-bg-2:      #2b2a47;
  --c-card:      #465C69;
  --c-lilac:     #C49DBA;
  --c-lilac-2:   #d6b3cb;
  --c-grape:     #735290;
  --c-grape-2:   #8a64ab;
  --c-olive:     #95AE78;
  --c-fog:       rgba(255, 255, 255, 0.94);
  --c-fog-soft:  rgba(255, 255, 255, 0.72);
  --c-fog-mute:  rgba(255, 255, 255, 0.46);
  --c-line:      rgba(196, 157, 186, 0.18);
  --c-line-2:    rgba(196, 157, 186, 0.32);

  --serif: 'Fredoka', 'Inter', system-ui, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --w-narrow:  720px;
  --w-default: 1100px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--c-bg);
  color: var(--c-fog);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Sternenhimmel-Canvas */
#sky {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%,  #4a3a6c 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, #2b2a47 0%, transparent 55%),
    linear-gradient(180deg, #2b2a47 0%, #363457 50%, #2b2a47 100%);
}

/* ============================================
   Typografie
   ============================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--c-fog);
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 1.3rem;
  font-weight: 450;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--c-lilac);
  font-weight: 500;
  letter-spacing: -0.005em;
}

p {
  font-size: 1.05rem;
  color: var(--c-fog-soft);
  max-width: 62ch;
}

em {
  font-style: italic;
  color: var(--c-lilac);
}

strong {
  color: var(--c-fog);
  font-weight: 600;
}

a {
  color: var(--c-lilac);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--c-fog); }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--w-default);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
}
.container.narrow { max-width: var(--w-narrow); }
.center { text-align: center; }

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}
.section p { margin-bottom: 1.1rem; }
.section p:last-of-type { margin-bottom: 0; }
.narrow p { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-lilac);
  margin-bottom: 1.4rem;
  opacity: 0.88;
}

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  color: var(--c-fog);
  margin-bottom: 1.3rem;
  line-height: 1.6;
  max-width: 60ch;
}

.source {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--c-fog-mute);
  margin-top: 1.6rem;
}

.muted {
  color: var(--c-fog-mute);
  font-size: 0.9rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem clamp(1.2rem, 4vw, 2.4rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(43, 42, 71, 0.55);
  border-bottom: 1px solid var(--c-line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--c-fog);
  letter-spacing: -0.01em;
}
.logo-text { line-height: 1; }
img.logo-mark {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-block;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 1.8rem; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--c-fog-soft); font-weight: 500; }
.nav-cta {
  background: var(--c-grape);
  color: var(--c-fog) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--c-grape-2); transform: translateY(-1px); }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 880px; }

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-lilac);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-name {
  color: var(--c-lilac);
  font-style: italic;
  position: relative;
  display: inline-block;
  min-width: 4ch;
}

.held-word {
  background: linear-gradient(135deg, var(--c-lilac) 0%, var(--c-grape-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--c-fog-soft);
  margin: 1.8rem auto 2.4rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-microtrust {
  font-size: 0.85rem;
  color: var(--c-fog-mute);
  margin-top: 1.4rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ============================================
   Audio-Demo im Hero
   ============================================ */
.demo {
  margin: 1.6rem auto 2.4rem;
  max-width: 480px;
}
.demo-play {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: rgba(70, 92, 105, 0.42);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--c-fog);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease);
  backdrop-filter: blur(8px);
}
.demo-play:hover {
  background: rgba(70, 92, 105, 0.6);
  border-color: var(--c-line-2);
  transform: translateY(-1px);
}
.demo-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-grape);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease);
}
.demo-play.playing .demo-icon { background: var(--c-olive); }
.demo-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--c-fog);
  margin-left: 3px;
  transition: opacity .2s var(--ease);
}
.demo-play.playing .demo-triangle {
  border-width: 0;
  width: 10px;
  height: 12px;
  background: var(--c-fog);
  margin-left: 0;
}
.demo-label {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.demo-title {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--c-fog);
}
.demo-meta {
  font-size: 0.78rem;
  color: var(--c-fog-mute);
  letter-spacing: 0.02em;
}
.demo-waves {
  flex: 0 0 auto;
  display: flex;
  gap: 3px;
  align-items: center;
  height: 24px;
}
.demo-waves span {
  display: inline-block;
  width: 3px;
  height: 8px;
  background: var(--c-lilac);
  border-radius: 2px;
  opacity: 0.4;
  transition: opacity .3s ease;
}
.demo-play.playing .demo-waves span {
  animation: wave 0.9s ease-in-out infinite;
  opacity: 1;
}
.demo-play.playing .demo-waves span:nth-child(1) { animation-delay: 0.0s; }
.demo-play.playing .demo-waves span:nth-child(2) { animation-delay: 0.1s; }
.demo-play.playing .demo-waves span:nth-child(3) { animation-delay: 0.2s; }
.demo-play.playing .demo-waves span:nth-child(4) { animation-delay: 0.3s; }
.demo-play.playing .demo-waves span:nth-child(5) { animation-delay: 0.2s; }
.demo-play.playing .demo-waves span:nth-child(6) { animation-delay: 0.1s; }
.demo-play.playing .demo-waves span:nth-child(7) { animation-delay: 0.0s; }
@keyframes wave {
  0%, 100% { height: 8px; }
  50%      { height: 22px; }
}
.demo-note {
  font-size: 0.78rem;
  color: var(--c-fog-mute);
  margin-top: 0.6rem;
  text-align: center;
  line-height: 1.5;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Primary CTA
   ============================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.cta.primary {
  background: var(--c-grape);
  color: var(--c-fog);
  box-shadow: 0 8px 30px -8px rgba(115, 82, 144, 0.6);
}
.cta.primary:hover {
  background: var(--c-grape-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(115, 82, 144, 0.8);
}
.cta-arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.cta:hover .cta-arrow { transform: translateX(4px); }

/* Scroll-Hint */
.hero-scrollhint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--c-fog-mute);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.7;
}
.hero-scrollhint span {
  width: 3px;
  height: 6px;
  background: var(--c-fog-mute);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ============================================
   Identity Section
   ============================================ */
.identity h2 em { color: var(--c-olive); }

/* ============================================
   Split Layout (Voice, Words)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* Voice Quote */
.quote-card {
  background: rgba(70, 92, 105, 0.45);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(8px);
}
.quote {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--c-fog);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.quote::before { content: '\201E'; color: var(--c-lilac); }
.quote::after  { content: '\201C'; color: var(--c-lilac); }
.quote-attr {
  font-size: 0.85rem;
  color: var(--c-fog-mute);
  font-style: normal;
}

/* ============================================
   Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
}
.step {
  background: rgba(70, 92, 105, 0.35);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-2);
}
.step-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--c-lilac);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  background: rgba(54, 52, 87, 0.6);
}
.step p { font-size: 1rem; }

/* Anti-Screen */
.anti-screen { text-align: center; }
.anti-screen h2 { margin-bottom: 1.8rem; }
.anti-screen p { margin-left: auto; margin-right: auto; }

/* Big Number */
.big-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.big-number .number {
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 9rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--c-lilac), var(--c-grape-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.big-number .number-unit {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--c-lilac);
  margin-top: -0.5rem;
}
.big-number .number-label {
  font-size: 1.02rem;
  color: var(--c-fog-soft);
  margin-top: 0.6rem;
  max-width: 24ch;
  line-height: 1.45;
}

/* ============================================
   Privacy Section
   ============================================ */
.privacy h2 { margin-bottom: 1.4rem; }
.privacy .lead { max-width: 64ch; }

/* ============================================
   Wound Section (offene Frage)
   ============================================ */
.wound {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(115, 82, 144, 0.08) 50%,
    transparent 100%
  );
}
.wound h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.018em;
}
.wound .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--c-lilac);
  border-left: 2px solid var(--c-grape);
  padding-left: 1.4rem;
  margin-bottom: 2rem;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq h2 { margin-bottom: 3rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: rgba(70, 92, 105, 0.32);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item[open] {
  background: rgba(70, 92, 105, 0.5);
  border-color: var(--c-line-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-fog);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1 1 auto; }
.faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(54, 52, 87, 0.6);
  color: var(--c-lilac);
  font-size: 1.3rem;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--c-grape);
  color: var(--c-fog);
}
.faq-a {
  padding: 0 1.6rem 1.5rem;
}
.faq-a p {
  font-size: 1rem;
  color: var(--c-fog-soft);
  line-height: 1.65;
  max-width: none;
}

/* ============================================
   Waitlist
   ============================================ */
.start {
  background: linear-gradient(180deg, transparent 0%, rgba(115, 82, 144, 0.1) 100%);
}
.waitlist {
  display: flex;
  gap: 0.8rem;
  margin: 2.5rem auto 1rem;
  max-width: 520px;
  flex-wrap: wrap;
}
.waitlist input {
  flex: 1 1 220px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: var(--sans);
  background: rgba(54, 52, 87, 0.6);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  color: var(--c-fog);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.waitlist input::placeholder { color: var(--c-fog-mute); }
.waitlist input:focus {
  border-color: var(--c-lilac);
  background: rgba(54, 52, 87, 0.9);
}
.waitlist button { flex: 0 0 auto; }
.waitlist-msg {
  text-align: center;
  font-size: 0.95rem;
  color: var(--c-olive);
  min-height: 1.4em;
  margin-top: 0.4rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid var(--c-line);
  padding: 2.8rem 0 2.2rem;
  margin-top: 2rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-links {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.footer-links a { color: var(--c-fog-mute); }
.footer-links a:hover { color: var(--c-fog-soft); }
.footer-locale {
  color: var(--c-lilac) !important;
  font-style: italic;
}
.footer-fineprint {
  font-size: 0.82rem;
  color: var(--c-fog-mute);
  text-align: left;
}

/* ============================================
   Reveal on Scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Mobile Polish
   ============================================ */
@media (max-width: 640px) {
  .demo-play { padding: 0.9rem 1rem; gap: 0.8rem; }
  .demo-waves span { width: 2px; }
  .faq-item summary { font-size: 1rem; padding: 1.2rem 1.3rem; }
  .faq-a { padding: 0 1.3rem 1.3rem; }
}
