/* Wolfsnacht Landing — Palette = App-Theme (WolfTheme / Higgsfield-Rezept) */
:root {
  --ink: #0B1220;
  --surface: #141C30;
  --elevated: #1E293B;
  --amber: #F59E0B;
  --amber-soft: #FDE68A;
  --moon: #CBD5E1;
  --blood: #B91C1C;
  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.64);
  --text-3: rgba(255, 255, 255, 0.4);
  --hairline: rgba(255, 255, 255, 0.09);
  --radius: 24px;
  --radius-s: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; }
em { font-style: normal; color: var(--amber); }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px clamp(16px, 4vw, 40px);
  background: linear-gradient(rgba(11, 18, 32, 0.85), transparent);
  backdrop-filter: blur(2px);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
  font-weight: 900; font-size: 1.15rem; letter-spacing: 0.01em;
}
.nav__brand img { border-radius: 8px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--ink); text-decoration: none;
  font-weight: 800; font-size: 1.05rem;
  padding: 15px 30px; border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 40px rgba(245, 158, 11, 0.35); }
.btn--small { font-size: 0.9rem; padding: 9px 18px; box-shadow: none; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  text-align: center; isolation: isolate;
  padding: 90px 20px 60px;
}
.hero__video, #fireflies, .hero__scrim {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero__video { object-fit: cover; z-index: -3; }
#fireflies { z-index: -1; pointer-events: none; }
.hero__scrim {
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0%, rgba(11, 18, 32, 0.55) 75%),
    linear-gradient(rgba(11, 18, 32, 0.35), rgba(11, 18, 32, 0.92) 88%, var(--ink));
}
.hero__copy { max-width: 760px; }
.hero__eyebrow {
  color: var(--amber-soft); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 22px;
}
.hero__sub {
  color: var(--moon); font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 560px; margin: 0 auto 34px;
}
.hero__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__hint { color: var(--text-3); font-size: 0.88rem; font-weight: 600; }
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--text-3); font-size: 1.3rem; animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ── Sections ────────────────────────────────────────── */
.section {
  position: relative; max-width: 1080px;
  margin: 0 auto; padding: clamp(70px, 10vw, 120px) 20px;
  text-align: center;
}

.card {
  background: rgba(20, 28, 48, 0.72);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: left;
  backdrop-filter: blur(6px);
}

/* Steps */
.steps__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 14px; }
.steps__grid h3 { margin-bottom: 8px; }
.steps__grid p { color: var(--text-2); font-size: 0.97rem; }
.card__num {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--ink); font-weight: 900; font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Roles carousel */
.roles { max-width: none; padding-left: 0; padding-right: 0; }
.roles__sub { color: var(--text-2); margin-top: -8px; }
.roles__stage { position: relative; height: min(72vh, 640px); margin-top: 10px; }
#carousel { width: 100%; height: 100%; display: block; touch-action: pan-y; }
.roles__caption {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-weight: 900; font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--amber-soft); text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* Pack */
.pack__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 820px; margin: 14px auto 0;
}
.pack__tier ul { list-style: none; margin-top: 18px; }
.pack__tier li {
  color: var(--text-2); font-size: 0.96rem; padding: 7px 0 7px 28px;
  position: relative;
}
.pack__tier li::before {
  content: "🌙"; position: absolute; left: 0; font-size: 0.85rem;
}
.pack__price { font-size: 2rem; font-weight: 900; color: var(--amber); margin-top: 6px; }
.pack__price span { font-size: 0.95rem; color: var(--text-3); font-weight: 600; }
.pack__tier--premium { border-color: rgba(245, 158, 11, 0.45); position: relative; }
.pack__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--ink); font-size: 0.78rem; font-weight: 800;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}

/* Honest */
.honest__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 14px; }
.honest__grid .card { display: flex; flex-direction: column; gap: 6px; }
.honest__grid strong { font-size: 1.05rem; }
.honest__grid span { color: var(--text-2); font-size: 0.93rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 44px 20px 56px; text-align: center;
  color: var(--text-3); font-size: 0.88rem;
}
.footer__links { display: flex; gap: 26px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.footer__links a { color: var(--moon); text-decoration: none; font-weight: 700; }
.footer__links a:hover { color: var(--amber-soft); }
.footer p { max-width: 560px; margin: 0 auto; }

/* Reveal-Grundzustand (GSAP animiert auf sichtbar; ohne JS sichtbar) */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(28px); }
  .js [data-hero] { opacity: 0; transform: translateY(18px); }
}

@media (max-width: 640px) {
  .hero { padding-top: 76px; }
  .nav { padding-top: 10px; }
}
