:root {
  --bg: #05070c;
  --bg-2: #090d15;
  --panel: rgba(15, 20, 31, .78);
  --panel-strong: rgba(18, 25, 39, .94);
  --text: #fff8ea;
  --muted: #c7c8cf;
  --soft: #88909f;
  --border: rgba(255, 255, 255, .14);
  --fire: #ff531d;
  --teal: #00dfd4;
  --lime: #b8ff00;
  --purple: #7f46ff;
  --pink: #ff2f92;
  --shadow: 0 26px 80px rgba(0,0,0,.45);
  --max: 1180px;
  --radius: 30px;
  --font-body: Bahnschrift, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Bahnschrift Condensed", "Arial Narrow", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --font-ui: "Bahnschrift SemiBold", Bahnschrift, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,83,29,.18), transparent 34rem),
    radial-gradient(circle at 82% 22%, rgba(0,223,212,.18), transparent 34rem),
    linear-gradient(180deg, var(--bg), #040509 42%, #070a10);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
body.fd-lang-en .de-only { display: none !important; }
body:not(.fd-lang-en) .en-only { display: none !important; }

.brand,
.main-nav a,
.lang-btn,
.kicker,
.hero h1,
.hero-headline,
h2,
.btn,
.chip,
.copy-block p:first-child,
.vibe-card strong,
.mosaic-tile figcaption,
.social-card strong,
.age-card h2 {
  font-family: var(--font-display);
  text-transform: none;
}

.btn,
.chip,
.main-nav a,
.lang-btn,
.social-card small,
.status-line,
.watermark {
  font-family: var(--font-ui);
}

.protected-media,
.protected-media img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3,5,8,.76);
  border-bottom: 1px solid var(--border);
}
.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
}
.brand img {
  width: clamp(120px, 11vw, 190px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(184,255,0,.18));
  display: block;
}

.brand span {
  font-size: 1.08rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
}
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 850;
  padding: 8px 12px;
  border-radius: 999px;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.07); }
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 1000;
  cursor: pointer;
}
.lang-btn.is-active {
  background: linear-gradient(135deg, var(--lime), var(--teal));
  color: #03100f;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg,
.hero-bg img,
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(.95) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(0,223,212,.20), transparent 26rem),
    radial-gradient(circle at 28% 55%, rgba(255,83,29,.20), transparent 30rem),
    linear-gradient(90deg, rgba(4,6,10,.94) 0%, rgba(4,6,10,.72) 38%, rgba(4,6,10,.89) 100%),
    linear-gradient(180deg, rgba(4,6,10,.25), rgba(4,6,10,.95) 92%);
}
.hero-noise {
  z-index: -2;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 95%);
}
.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}
.kicker {
  margin: 0 0 16px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 1000;
}
.hero-wordmark {
  margin: 0 0 28px;
}
.hero-wordmark img {
  width: min(100%, 880px);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 70px rgba(0,0,0,.45));
}
.hero-headline {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: .98;
  letter-spacing: -.025em;
  font-weight: 900;
}
.hero-intro {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  font-weight: 1000;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #061111;
  background: linear-gradient(135deg, var(--lime), var(--teal) 54%, var(--fire));
  box-shadow: 0 14px 34px rgba(0,223,212,.16), 0 14px 34px rgba(255,83,29,.13);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.045)),
    radial-gradient(circle at 22% 14%, rgba(184,255,0,.20), transparent 18rem),
    radial-gradient(circle at 84% 30%, rgba(0,223,212,.20), transparent 18rem),
    rgba(12,17,25,.62);
  box-shadow: var(--shadow);
}
.hero-logo {
  position: absolute;
  z-index: 3;
  width: clamp(150px, 18vw, 260px);
  height: auto;
  right: 16px;
  top: -46px;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.56));
}
.portrait {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(0,0,0,.2);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.watermark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.48);
  font-size: .7rem;
  font-weight: 1000;
  letter-spacing: .07em;
}
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 900;
}
.status-line span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(184,255,0,.15);
}

.ticker {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.ticker-track {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  font-weight: 850;
}
.chip:first-child {
  color: #061111;
  background: linear-gradient(135deg, var(--lime), var(--teal));
}

.section { padding: clamp(74px, 9vw, 116px) 0; }
.dark-section {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 90% 16%, rgba(127,70,255,.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section-title { max-width: 760px; margin-bottom: 34px; }
.section-title.centered { margin-inline: auto; text-align: center; }
h2 {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(2.25rem, 5.2vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.025em;
}
.section-title p:not(.kicker), .pack-copy p, .afterdark-copy p { color: var(--muted); max-width: 720px; }
.profile-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.profile-text-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(13,18,29,.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.copy-block p {
  margin: 0 0 1.1em;
  color: var(--muted);
  font-size: clamp(1.01rem, 1.2vw, 1.13rem);
}
.copy-block p:first-child {
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -.01em;
}
.copy-block p:last-child { margin-bottom: 0; }

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.vibe-card {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vibe-card.hot {
  color: #061111;
  background: linear-gradient(135deg, var(--fire), var(--lime));
}
.vibe-card strong { font-size: 1.35rem; letter-spacing: -.035em; }
.vibe-card span { color: inherit; opacity: .84; font-size: .88rem; font-weight: 800; }

.pack-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.pack-logo-card {
  padding: clamp(18px, 4vw, 34px);
  border-radius: 34px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.12), rgba(255,255,255,.035)), rgba(255,255,255,.035);
}
.pack-logo-card img {
  width: min(100%, 520px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.48));
}
.pack-copy .btn { margin-top: 12px; }

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}
.mosaic-tile {
  position: relative;
  margin: 0;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #121722;
  box-shadow: 0 22px 54px rgba(0,0,0,.34);
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .5s ease;
}
.mosaic-tile:hover img { transform: scale(1.035); }
.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.74));
  pointer-events: none;
}
.mosaic-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--text);
}
.tile-wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.tile-tall { grid-column: span 4; grid-row: span 2; aspect-ratio: 3 / 4.4; }
.tile-square { grid-column: span 4; aspect-ratio: 1 / 1; }
.pos-top img { object-position: center 18%; }
.pos-low img { object-position: center 58%; }
.pos-center img { object-position: center center; }

.afterdark-section { padding-top: 0; }
.afterdark-card {
  position: relative;
  min-height: 420px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.afterdark-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.afterdark-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,12,.95), rgba(5,7,12,.66), rgba(5,7,12,.92));
}
.afterdark-copy {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 44px));
  padding: clamp(30px, 6vw, 62px);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.social-card {
  min-height: 170px;
  padding: 20px;
  border-radius: 26px;
  text-decoration: none;
  background:
    radial-gradient(circle at 90% 12%, rgba(0,223,212,.10), transparent 12rem),
    rgba(255,255,255,.055);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,255,0,.45);
  background: rgba(255,255,255,.085);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #061111;
  background: linear-gradient(135deg, var(--lime), var(--teal), var(--fire));
  font-weight: 1000;
  letter-spacing: -.04em;
}
.social-card strong { font-size: 1.28rem; }
.social-card small { color: var(--muted); font-weight: 800; }

.site-footer {
  border-top: 1px solid var(--border);
  background: #030508;
  padding: 42px 0;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}
.footer-inner img { width: 132px; height: auto; }
.legal-links a { color: var(--muted); }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,83,29,.22), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(0,223,212,.20), transparent 28rem),
    rgba(2,3,6,.94);
  backdrop-filter: blur(16px);
}
.age-gate.is-hidden { display: none; }
.age-card {
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 48px);
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(13,18,29,.92);
  box-shadow: var(--shadow);
  text-align: center;
}
.age-card img { width: min(260px, 70%); margin: 0 auto 16px; }
.age-card h2 { font-size: clamp(2.1rem, 6vw, 4rem); }
.age-card p { color: var(--muted); }
.age-actions { justify-content: center; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }

@media (max-width: 1050px) {
  .hero-inner, .profile-layout, .pack-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 520px; }
  .vibe-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-wide { grid-column: span 12; }
  .tile-tall, .tile-square { grid-column: span 6; }
  .main-nav { display: none; }
}
@media (max-width: 680px) {
  .nav-shell { min-height: 70px; }
  .brand img { width: 126px; }
  .hero-inner { padding-top: 54px; }
  .hero h1 { font-size: clamp(4.1rem, 20vw, 6.2rem); margin-bottom: 24px; }
  .hero-headline { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-logo { width: 150px; top: -34px; }
  .vibe-grid, .social-grid { grid-template-columns: 1fr; }
  .mosaic-grid { display: block; }
  .mosaic-tile { min-height: 420px; margin-bottom: 18px; aspect-ratio: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2.2rem, 13vw, 3.5rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* Legal / privacy page */
.legal-page .legal-hero {
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(42px, 6vw, 70px);
  background:
    radial-gradient(circle at 22% 20%, rgba(184,255,0,.16), transparent 28rem),
    radial-gradient(circle at 82% 16%, rgba(0,223,212,.14), transparent 26rem);
}
.legal-page h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #fff8ea, var(--lime), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-lead { color: var(--muted); font-size: 1.16rem; }
.narrow { max-width: 920px; }
.legal-content {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13,18,29,.76);
  box-shadow: var(--shadow);
}
.legal-content h2 {
  margin-top: 1.55em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}
.legal-content h2:first-of-type { margin-top: .25em; }
.legal-content p { color: var(--muted); }
.legal-content strong { color: var(--text); }
.legal-content code {
  color: var(--lime);
  background: rgba(255,255,255,.08);
  padding: .08em .34em;
  border-radius: .35em;
}


.fd-email-obfuscated a { color: inherit; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Version 3.2.4: remove Firedog logo overlay from the portrait card */
.hero-card .hero-logo { display: none !important; }
