/* =========================================================
   NANIES · Public Website Design System
   main.css — komplett neu, kein Alt-Code
   ========================================================= */
/* Fonts werden im <head> jeder Seite geladen (parallel, nicht render-blockierend). */

/* =========================================================
   TOKENS
   ========================================================= */
:root {
  /* Surfaces */
  --bg:            #090909;
  --bg-soft:       #0e0e0e;
  --bg-card:       #131313;
  --bg-card-h:     #191919;
  --bg-elev:       #1c1c1c;
  --bg-glass:      rgba(11,11,11,0.72);

  /* Gold identity */
  --gold:          #c8a95a;
  --gold-soft:     #e4cc86;
  --gold-deep:     #8d6a2f;
  --gold-line:     rgba(200,169,90,0.34);
  --gold-line-sub: rgba(200,169,90,0.16);
  --gold-glow:     rgba(200,169,90,0.20);

  /* Text */
  --white:         #f7f5f1;
  --muted:         #a9a49b;
  --muted-soft:    #6f6b63;

  /* Utility */
  --ok:            #7ec89a;
  --line-xs:       rgba(255,255,255,0.07);

  /* Shape */
  --r-sm:          12px;
  --r:             18px;
  --r-lg:          26px;
  --r-pill:        999px;

  /* Depth */
  --shadow-sm:     0 8px 24px rgba(0,0,0,0.30);
  --shadow:        0 26px 54px rgba(0,0,0,0.46);
  --shadow-gold:   0 0 30px var(--gold-glow);

  /* Metrics */
  --max:           1200px;
  --max-narrow:    860px;
  --nav-h:         84px;
  --sec-py:        clamp(64px, 9vw, 118px);
  --sec-px:        clamp(18px, 4vw, 44px);
  --gap:           clamp(16px, 2.4vw, 28px);

  /* Type */
  --f-display:     'Cormorant Garamond', Georgia, serif;
  --f-body:        'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: var(--gold-soft); text-decoration: none; transition: color 0.22s var(--ease-soft); }
a:hover { color: var(--white); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(200,169,90,0.10), transparent 34%),
    radial-gradient(circle at 86% 6%,  rgba(200,169,90,0.08), transparent 36%),
    radial-gradient(circle at 70% 84%, rgba(200,169,90,0.06), transparent 32%);
}
/* Diagonal shimmer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.7;
  background:
    linear-gradient(114deg, transparent 0 26%, rgba(200,169,90,0.045) 26% 26.6%, transparent 26.6% 52%, rgba(200,169,90,0.03) 52% 52.5%, transparent 52.5% 100%);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.display {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.headline {
  font-family: var(--f-display);
  font-size: clamp(1.95rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.subhead {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.24;
}
.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--muted);
  line-height: 1.74;
  max-width: 62ch;
}
.body-sm { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
em { font-style: italic; color: var(--gold-soft); }
.text-gold { color: var(--gold-soft); }
.text-white { color: var(--white); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--sec-px); }
.container-narrow { max-width: var(--max-narrow); }
.section { padding-block: var(--sec-py); }
.section-sm { padding-block: clamp(40px, 6vw, 72px); }
.section-head { margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.stack-sm > * + * { margin-top: 12px; }
.divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  opacity: 0.6;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #080808; padding: 10px 18px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600; font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.28s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #080808;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold), 0 10px 26px rgba(0,0,0,0.32); color: #080808; }
.btn-secondary {
  background: transparent; color: var(--gold-soft); border: 1px solid var(--gold-line);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--white); background: rgba(200,169,90,0.06); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--muted); padding: 10px 18px; }
.btn-ghost:hover { color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 17px 38px; font-size: 0.92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: clamp(22px, 3vw, 34px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--gold-line-sub);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled { background: rgba(7,7,7,0.9); border-bottom-color: var(--gold-line); }
.header-inner { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--sec-px);
  display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo { height: 60px; width: auto; transition: filter 0.22s; }
.brand:hover .brand-logo { filter: brightness(1.15); }
.brand-tag {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-line); border-radius: var(--r-pill); padding: 3px 9px; font-weight: 600; white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-link {
  position: relative; font-size: 1.01rem; font-weight: 500; color: var(--muted); letter-spacing: 0.01em;
  padding: 6px 2px; transition: color 0.22s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold-soft); }
.nav-link.active::after { width: 100%; }
/* Hybrid pages (Shop/Checkout) also load the app global.css; keep the marketing nav winning + reveal content */
.site-header .desktop-nav .nav-link { font-size: 1.01rem; text-transform: none; letter-spacing: 0.01em; padding: 6px 2px; }
.fade-in { opacity: 1; transform: none; }
/* Checkout payment marks: neutralize the marketing .card class collision (padding/box-sizing bleed) */
body[data-page="checkout"] .payment-method-mark { padding: 0; box-sizing: border-box; width: 34px; height: 34px; }
body[data-page="checkout"] .payment-method-mark:hover { transform: none; }
.header-cta { display: flex; align-items: center; flex-shrink: 0; }
.mobile-toggle {
  display: none; width: 48px; height: 48px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border-radius: var(--r-sm); border: 1px solid var(--gold-line-sub);
}
.toggle-bar {
  display: block; width: 20px; height: 1.5px;
  background: var(--gold-soft); border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.22s, width 0.3s var(--ease);
  transform-origin: center;
}
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; width: 0; }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer nav – right slide-in */
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw); z-index: 150;
  background: #0b0b0b; border-left: 1px solid var(--gold-line-sub);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateX(100%);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  overscroll-behavior: contain;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
.mnav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--gold-line-sub); flex-shrink: 0;
}
.mnav-brand img { height: 36px; width: auto; display: block; }
.mobile-close {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft); border: 1px solid var(--gold-line-sub); border-radius: var(--r-sm);
}
.mobile-close svg { width: 20px; height: 20px; }
.mnav-links { flex: 1; display: flex; flex-direction: column; overflow-y: auto; padding: 8px 0; }
.mobile-nav a.m-link {
  position: relative;
  font-family: var(--f-display); font-size: clamp(1.45rem, 5.5vw, 1.9rem);
  font-weight: 600; color: var(--muted);
  padding: 13px 24px 13px 40px;
  min-height: 52px; display: flex; align-items: center;
  border-bottom: 1px solid var(--line-xs); letter-spacing: -0.01em;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), color 0.22s;
}
.mobile-nav a.m-link::before {
  content: ''; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.22s var(--ease);
}
.mobile-nav a.m-link.active { color: var(--gold-soft); }
.mobile-nav a.m-link.active::before { width: 10px; }
.mobile-nav.open a.m-link { opacity: 1; transform: translateX(0); }
.mobile-nav.open .mnav-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .mnav-links a:nth-child(2) { transition-delay: 0.09s; }
.mobile-nav.open .mnav-links a:nth-child(3) { transition-delay: 0.13s; }
.mobile-nav.open .mnav-links a:nth-child(4) { transition-delay: 0.17s; }
.mobile-nav.open .mnav-links a:nth-child(5) { transition-delay: 0.21s; }
.mobile-nav.open .mnav-links a:nth-child(6) { transition-delay: 0.25s; }
.mobile-nav.open .mnav-links a:nth-child(7) { transition-delay: 0.29s; }
.mnav-bottom {
  flex-shrink: 0; padding: 16px 20px;
  border-top: 1px solid var(--gold-line-sub);
  display: flex; flex-direction: column; gap: 10px;
}
.mnav-bottom .btn { width: 100%; min-height: 48px; }
.mnav-legal { display: flex; gap: 16px; padding-top: 4px; }
.mnav-legal a { font-size: 0.72rem; color: var(--muted-soft); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }

/* =========================================================
   HERO (video)
   ========================================================= */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h)); min-height: calc(100dvh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; padding-block: 80px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: saturate(1.05) brightness(0.62);
}
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 40%, #1a1a1a, var(--bg) 70%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.30) 40%, rgba(9,9,9,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-inline: var(--sec-px); }
.hero-logo { height: clamp(64px, 12vw, 104px); width: auto; margin: 0 auto clamp(20px, 3vw, 30px); }
.hero-slogan {
  font-family: var(--f-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 8vw, 5.6rem); margin-bottom: clamp(26px, 4vw, 38px);
  text-shadow: 0 6px 40px rgba(0,0,0,0.5);
}
.hero .btn-row { justify-content: center; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold-soft); animation: bob 2.2s var(--ease-soft) infinite;
}
.scroll-cue svg { width: 26px; height: 26px; opacity: 0.75; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* =========================================================
   VIDEO EMBED (16:9)
   ========================================================= */
.video-frame {
  position: relative; width: 100%; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--gold-line-sub); box-shadow: var(--shadow); background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(200,169,90,0.10); border-radius: inherit;
}

/* =========================================================
   MEDIA / IMAGE FRAME
   ========================================================= */
.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub);
  box-shadow: var(--shadow-sm);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(200,169,90,0.12);
}

/* =========================================================
   FEATURE ROW (alternating)
   ========================================================= */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 66px); align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(48px, 7vw, 96px); }
.feature-row.reverse .fr-media { order: 2; }
.fr-media { aspect-ratio: 4 / 3; }
.fr-copy h3 { font-family: var(--f-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--bg-card); border: 1px solid var(--gold-line-sub); border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px); transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-line); background: var(--bg-card-h); }
.card-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(200,169,90,0.10); border: 1px solid var(--gold-line-sub);
  color: var(--gold-soft); margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--muted); }
.card-tag {
  display: inline-block; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
/* Teaser card (index) */
.teaser {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--gold-line-sub); background: var(--bg-card);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.teaser:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.teaser-media { aspect-ratio: 16 / 10; overflow: hidden; }
.teaser-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.teaser:hover .teaser-media img { transform: scale(1.05); }
.teaser-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.teaser-body h3 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; }
.teaser-body p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.teaser-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-soft); }
.teaser-link svg { width: 15px; height: 15px; transition: transform 0.25s; }
.teaser:hover .teaser-link svg { transform: translateX(4px); }

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pill {
  font-size: 0.72rem; letter-spacing: 0.05em; color: var(--gold-soft); font-weight: 500;
  border: 1px solid var(--gold-line-sub); border-radius: var(--r-pill); padding: 5px 13px;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { width: 100%; overflow: hidden; cursor: grab; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee.grabbing { cursor: grabbing; }
.marquee * { cursor: inherit; }
.marquee-card, .marquee-card * { cursor: none; }

.marquee-cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; background: var(--gold); color: var(--bg); font-family: var(--f-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 11px 22px; border-radius: var(--r-pill); opacity: 0; white-space: nowrap; will-change: transform; transform: translate(-50%, -50%); transition: opacity 0.18s; }
.marquee-cursor.visible { opacity: 1; }
.marquee-track { display: flex; gap: var(--gap); width: max-content; will-change: transform; }
.marquee-card {
  flex: 0 0 auto; width: 320px; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--gold-line-sub); background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.marquee-card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.marquee-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.marquee-card-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.marquee-card-body .kicker { margin-bottom: 2px; }
.marquee-card-body h3 { font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; }
.marquee-card-body p { font-size: 0.86rem; color: var(--muted); }

/* =========================================================
   PLANS
   ========================================================= */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: start; }
.plan {
  background: var(--bg-card); border: 1px solid var(--gold-line-sub); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.plan:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.plan-name { font-family: var(--f-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-soft); }
.plan-price { font-family: var(--f-display); font-size: 3.2rem; font-weight: 600; line-height: 1; margin-top: 12px; }
.plan-price sup { font-size: 1.3rem; vertical-align: super; color: var(--muted); }
.plan-note { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.plan-annual { font-size: 0.8rem; color: var(--gold); margin-top: 10px; font-weight: 500; }
.plan-sep { height: 1px; background: var(--gold-line-sub); margin: 24px 0; }
.plan-feats { display: flex; flex-direction: column; gap: 13px; flex: 1; margin-bottom: 26px; }
.feat { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.feat.on { color: var(--white); }
.feat-ic { flex-shrink: 0; width: 19px; height: 19px; margin-top: 1px; }
.feat.on .feat-ic { color: var(--gold-soft); }
.feat.off .feat-ic { color: var(--muted-soft); }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-wrap { overflow-x: auto; border: 1px solid var(--gold-line-sub); border-radius: var(--r); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line-xs); font-size: 0.9rem; }
.compare th { font-family: var(--f-body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-soft); background: rgba(200,169,90,0.04); }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--white); font-weight: 500; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .c-on { color: var(--gold-soft); }
.compare .c-off { color: var(--muted-soft); }
.compare .c-part { color: var(--muted); font-weight: 500; }
.compare svg { width: 18px; height: 18px; display: inline-block; }

/* =========================================================
   SEMINAR / SHOP CARD
   ========================================================= */
.item-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--gold-line-sub); background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.item-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.item-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.item-card:hover .item-media img { transform: scale(1.05); }
.item-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); background: rgba(9,9,9,0.82); border: 1px solid var(--gold-line-sub);
  padding: 5px 12px; border-radius: var(--r-pill); backdrop-filter: blur(6px);
}
.item-body { padding: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.item-date { font-size: 0.8rem; color: var(--muted); }
.item-body h3 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; line-height: 1.25; }
.item-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.item-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.item-price { font-size: 1.05rem; color: var(--gold-soft); font-weight: 600; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-chip {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; color: var(--muted);
  border: 1px solid var(--gold-line-sub); border-radius: var(--r-pill); padding: 9px 20px; transition: all 0.24s;
}
.filter-chip:hover { color: var(--white); border-color: var(--gold-line); }
.filter-chip.active { color: #080808; background: var(--gold); border-color: var(--gold); font-weight: 600; }

/* =========================================================
   PROJECTS / TIMELINE
   ========================================================= */
.projects-list { display: flex; flex-direction: column; gap: var(--gap); }
.project {
  display: grid; grid-template-columns: 180px 1fr; gap: clamp(18px, 3vw, 40px);
  padding: clamp(24px, 3vw, 34px); border-radius: var(--r);
  border: 1px solid var(--gold-line-sub); background: var(--bg-card); transition: border-color 0.3s;
}
.project:hover { border-color: var(--gold-line); }
.project-meta { display: flex; flex-direction: column; gap: 10px; }
.project-date { font-size: 0.82rem; color: var(--muted); }
.status {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--r-pill); border: 1px solid var(--gold-line-sub);
}
.status svg { width: 13px; height: 13px; }
.status.aktiv { color: var(--gold-soft); background: rgba(200,169,90,0.08); border-color: var(--gold-line); }
.status.geplant { color: var(--muted); }
.status.fertig { color: var(--ok); border-color: rgba(126,200,154,0.3); background: rgba(126,200,154,0.06); }
.project-body h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.project-body p { font-size: 0.94rem; color: var(--muted); }
.project-cat { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 14px; display: inline-block; }

/* =========================================================
   QUOTE (philosophy)
   ========================================================= */
.quote {
  position: relative; padding: clamp(30px, 5vw, 56px);
  border-left: 2px solid var(--gold); background: linear-gradient(120deg, rgba(200,169,90,0.05), transparent);
  border-radius: 0 var(--r) var(--r) 0;
}
.quote blockquote { font-family: var(--f-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; font-style: italic; line-height: 1.32; color: var(--white); }
.quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

/* =========================================================
   METRICS
   ========================================================= */
.metrics { border-block: 1px solid var(--gold-line-sub); }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric { text-align: center; padding: clamp(26px, 4vw, 40px) 18px; border-right: 1px solid var(--gold-line-sub); }
.metric:last-child { border-right: none; }
.metric-val { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--gold-soft); line-height: 1; }
.metric-lbl { font-size: 0.82rem; color: var(--muted); margin-top: 10px; letter-spacing: 0.04em; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: var(--max-narrow); margin-inline: auto; }
.faq-item { border: 1px solid var(--gold-line-sub); border-radius: var(--r-sm); overflow: hidden; background: var(--bg-card); transition: border-color 0.3s; }
.faq-item.open { border-color: var(--gold-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left; font-size: 1rem; font-weight: 500; color: var(--white);
}
.faq-ic { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-soft); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; font-size: 0.94rem; color: var(--muted); line-height: 1.72; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner { text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(200,169,90,0.1), transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .btn-row { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid var(--gold-line-sub); padding-block: clamp(46px, 6vw, 68px) 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(26px, 4vw, 52px); margin-bottom: 44px; }
.footer-brand-logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer-tag { font-size: 0.86rem; color: var(--muted-soft); line-height: 1.64; max-width: 30ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold-line-sub); color: var(--muted); transition: border-color 0.2s, color 0.2s; }
.footer-social-btn:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.footer-social-btn svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; border-top: 1px solid var(--line-xs); }
.footer-bottom p { font-size: 0.82rem; color: var(--muted-soft); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: var(--muted-soft); }
.footer-legal a:hover { color: var(--gold-soft); }

/* =========================================================
   PAGE-SPECIFIC LAYOUTS (unique per subpage)
   ========================================================= */

/* Split hero — asymmetric intro with visual panel */
.hero-split { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(30px, 5vw, 68px); align-items: center; padding-block: clamp(40px, 6vw, 84px); }
.hero-split .display { margin-bottom: 20px; }
.hero-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub); background: var(--bg-card); box-shadow: var(--shadow); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual.tall { aspect-ratio: 4 / 5; }

/* Stat band — inline metric strip */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 40px); }
.stat-cell { padding: 6px 0; }
.stat-cell .num { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--gold-soft); line-height: 1; }
.stat-cell .lbl { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* Steps — horizontal numbered flow */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: step; }
.step { position: relative; }
.step-num { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; color: var(--gold-soft); border: 1px solid var(--gold-line); background: rgba(200,169,90,0.06); margin-bottom: 18px; }
.step h3 { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 23px; left: 60px; right: -20px; height: 1px; background: linear-gradient(90deg, var(--gold-line), transparent); }

/* Editorial hero — portrait + big serif statement */
.hero-editorial { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-block: clamp(36px, 5vw, 72px); }
.editorial-portrait { position: relative; aspect-ratio: 3 / 4; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub); }
.editorial-portrait img { width: 100%; height: 100%; object-fit: cover; }
.editorial-lead { font-family: var(--f-display); font-size: clamp(1.7rem, 3.4vw, 2.8rem); font-weight: 500; font-style: italic; line-height: 1.28; color: var(--white); }
.byline { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--muted); font-size: 0.9rem; }
.byline::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

/* Cover hero — centered publication cover */
.hero-cover { text-align: center; padding-block: clamp(40px, 6vw, 80px); }
.cover-mock { width: min(320px, 74vw); margin: 30px auto 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--gold-line); box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-8deg) rotateX(3deg); transition: transform 0.6s var(--ease); }
.cover-mock:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.cover-mock img { width: 100%; display: block; }
.issue-meta { display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 26px; color: var(--muted); font-size: 0.86rem; }
.issue-meta span { display: inline-flex; align-items: center; gap: 7px; }
.rubrik-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rubrik { padding: 22px 20px; border-radius: var(--r); border: 1px solid var(--gold-line-sub); background: var(--bg-card); }
.rubrik h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.rubrik p { color: var(--muted); font-size: 0.85rem; }

/* Full-bleed image hero (doodles) */
.hero-fullbleed { position: relative; min-height: 62vh; min-height: 62dvh; display: flex; align-items: flex-end; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub); padding: clamp(28px, 5vw, 60px); }
.hero-fullbleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-fullbleed::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,9,0.2), rgba(9,9,9,0.9)); z-index: 1; }
.hero-fullbleed > .fb-content { position: relative; z-index: 2; max-width: 640px; }
.values-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.value-chip { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: var(--r-pill); border: 1px solid var(--gold-line-sub); background: var(--bg-card); font-size: 0.88rem; color: var(--muted); }
.value-chip svg { width: 17px; height: 17px; color: var(--gold-soft); }

/* Portal card (external redirect) */
.portal-card { max-width: 560px; margin: 0 auto; text-align: center; padding: clamp(34px, 5vw, 56px); border-radius: var(--r-lg); border: 1px solid var(--gold-line); background: var(--bg-card); box-shadow: var(--shadow); }
.portal-ring { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold-line); background: rgba(200,169,90,0.06); }
.portal-ring svg { width: 38px; height: 38px; color: var(--gold-soft); }
.portal-count { font-family: var(--f-display); color: var(--gold-soft); font-weight: 600; }

/* Chat mock (Professor Jule) */
.chat-mock { max-width: 480px; border-radius: var(--r-lg); border: 1px solid var(--gold-line-sub); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow); }
.chat-top { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line-xs); }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(200,169,90,0.1); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; }
.chat-avatar svg { width: 22px; height: 22px; color: var(--gold-soft); }
.chat-top strong { display: block; font-size: 0.95rem; }
.chat-top span { font-size: 0.76rem; color: var(--ok); }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.bubble { max-width: 82%; padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; line-height: 1.5; }
.bubble.user { align-self: flex-end; background: rgba(200,169,90,0.14); color: var(--white); border-bottom-right-radius: 4px; }
.bubble.jule { align-self: flex-start; background: var(--bg-elev); color: var(--muted); border-bottom-left-radius: 4px; }

/* Feed mock (NANIES Net) */
.feed-mock { max-width: 460px; border-radius: var(--r-lg); border: 1px solid var(--gold-line-sub); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow); }
.feed-post { padding: 18px 20px; }
.feed-head { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.feed-dot { width: 38px; height: 38px; border-radius: 50%; background: rgba(200,169,90,0.12); border: 1px solid var(--gold-line-sub); }
.feed-head strong { font-size: 0.9rem; }
.feed-head span { font-size: 0.76rem; color: var(--muted-soft); }
.feed-post p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.feed-img { aspect-ratio: 16 / 10; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line-xs); margin-bottom: 14px; }
.feed-img img { width: 100%; height: 100%; object-fit: cover; }
.feed-actions { display: flex; gap: 22px; color: var(--muted-soft); }
.feed-actions span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; }
.feed-actions svg { width: 17px; height: 17px; }

/* Tier hero (NANIES Club) */
.tier-hero { display: flex; flex-direction: column; gap: 12px; }
.tier-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-radius: var(--r); border: 1px solid var(--gold-line-sub); background: var(--bg-card); transition: border-color 0.3s, transform 0.3s; }
.tier-bar:hover { border-color: var(--gold-line); transform: translateX(5px); }
.tier-bar .t-name { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; }
.tier-bar.plus { background: linear-gradient(120deg, rgba(200,169,90,0.1), var(--bg-card)); border-color: var(--gold-line); }
.tier-bar .t-price { color: var(--gold-soft); font-weight: 600; }
.tier-bar .t-desc { color: var(--muted); font-size: 0.86rem; }

/* Alternating band background */
.band { background: var(--bg-soft); border-block: 1px solid var(--gold-line-sub); }

/* Split panels (two equal feature columns) */
.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.panel { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub); background: var(--bg-card); }
.panel-media { aspect-ratio: 16 / 10; overflow: hidden; }
.panel-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.panel:hover .panel-media img { transform: scale(1.05); }
.panel-body { padding: clamp(22px, 3vw, 32px); }
.panel-body h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.panel-body p { color: var(--muted); }

@media (max-width: 860px) {
  .hero-split, .hero-editorial { grid-template-columns: 1fr; }
  .hero-visual.tall { aspect-ratio: 16 / 10; }
  .editorial-portrait { aspect-ratio: 16 / 11; max-width: 440px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .rubrik-grid { grid-template-columns: 1fr 1fr; }
  .split-panels { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rubrik-grid, .stat-band { grid-template-columns: 1fr; }
  .tier-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .marquee-card { width: 260px; }
}

/* =========================================================
   AUTH PAGES (login / register)
   ========================================================= */
.auth-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; max-width: 1000px; margin-inline: auto; }
.auth-aside { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-sub); min-height: 100%; display: flex; }
.auth-aside-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.auth-aside::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(9,9,9,0.55), rgba(9,9,9,0.92)); z-index: 1; }
.auth-aside-inner { position: relative; z-index: 2; padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: flex-end; gap: 20px; }
.auth-aside-quote { font-family: var(--f-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 500; font-style: italic; line-height: 1.3; color: var(--white); }
.auth-aside-list { display: flex; flex-direction: column; gap: 13px; }
.auth-aside-list li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--muted); }
.auth-aside-list .feat-ic { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold-soft); border: 1px solid var(--gold-line); background: rgba(200,169,90,0.08); }
.auth-aside-list .feat-ic svg { width: 12px; height: 12px; }

.auth-panel { background: var(--bg-card); border: 1px solid var(--gold-line-sub); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); }
.auth-form { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.field-opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted-soft); }
.field input { width: 100%; padding: 13px 16px; border-radius: var(--r-sm); border: 1px solid var(--gold-line-sub); background: var(--bg); color: var(--white); font-family: var(--f-body); font-size: 0.96rem; transition: border-color 0.24s, box-shadow 0.24s; }
.field input::placeholder { color: var(--muted-soft); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,90,0.14); }
.field-check { display: flex; align-items: flex-start; gap: 11px; font-size: 0.86rem; color: var(--muted); line-height: 1.55; cursor: pointer; }
.field-check input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.field-check a { color: var(--gold-soft); }
.auth-status { min-height: 1.2em; margin-top: 14px; }
.price-note { font-size: 0.86rem; color: var(--muted); }
.price-note a { color: var(--gold-soft); }

.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--muted-soft); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gold-line-sub); }

.btn-google { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px 20px; border-radius: var(--r-pill); background: #fff; color: #3c4043; font-weight: 600; font-size: 0.94rem; border: 1px solid transparent; transition: transform 0.2s, box-shadow 0.2s; }
.btn-google:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }

.auth-forgot { margin-top: 20px; border-top: 1px solid var(--line-xs); padding-top: 18px; }
.auth-forgot-toggle { background: none; border: none; color: var(--gold-soft); font-size: 0.86rem; font-weight: 600; cursor: pointer; padding: 0; font-family: var(--f-body); }
.auth-forgot-toggle:hover { color: var(--gold-soft); text-decoration: underline; }
.auth-forgot-body { margin-top: 16px; }

@media (max-width: 780px) {
  .auth-split { grid-template-columns: 1fr; max-width: 480px; }
  .auth-aside { min-height: 220px; order: 2; }
  .auth-panel { order: 1; }
}
@media (max-width: 420px) {
  .field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue { animation: none; }
  .cover-mock, .cover-mock:hover { transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .feature-row { grid-template-columns: 1fr; gap: 26px; }
  .fr-media { order: -1; aspect-ratio: 16 / 10; } /* image always before text on mobile */
  .feature-row.reverse .fr-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  /* Touch targets ≥ 48px */
  .mobile-close { width: 48px; height: 48px; }
  .footer-social-btn { width: 48px; height: 48px; }
  .btn-sm { min-height: 48px; }
  .filter-chip { min-height: 48px; padding: 12px 20px; }
  .auth-forgot-toggle { min-height: 44px; padding: 12px 0; display: block; }
  /* backdrop-filter is expensive on mobile CPUs */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--gold-line-sub); }
  .metric:last-child { border-bottom: none; }
  .project { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-hero { padding-block: clamp(80px, 12vw, 128px) clamp(36px, 5vw, 52px); text-align: center; border-bottom: 1px solid var(--gold-line-sub); }
.legal-hero h1 { font-family: var(--f-display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; color: var(--white); margin-bottom: 10px; }
.legal-hero p { font-size: 0.88rem; color: var(--muted-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.legal-body { max-width: 720px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) var(--sec-px); }
.legal-body h2 { font-family: var(--f-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; color: var(--white); margin: 2.6em 0 0.6em; padding-bottom: 0.4em; border-bottom: 1px solid var(--line-xs); }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--gold-soft); margin: 1.6em 0 0.3em; }
.legal-body p { font-size: 0.91rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.9em; }
.legal-body ul, .legal-body ol { padding-left: 1.6em; margin-bottom: 1em; display: flex; flex-direction: column; gap: 6px; }
.legal-body li { font-size: 0.91rem; color: var(--muted); line-height: 1.7; }
.legal-body a { color: var(--gold-soft); }
.legal-body a:hover { color: var(--gold); }
.legal-placeholder { color: var(--gold) !important; font-style: italic; }

/* =========================================================
   SAFE AREA – iOS Home Indicator (Regel 2)
   ========================================================= */
.site-footer {
  padding-bottom: max(34px, env(safe-area-inset-bottom));
}

/* =========================================================
   AUTH FORM – iOS Zoom-Fix: inputs ≥ 16px prevent auto-zoom
   ========================================================= */
@media (max-width: 780px) {
  .field input, .field select, .field textarea { font-size: 16px; }
}

/* =========================================================
   TOUCH UX POLISH (Regel 1 & 6)
   ========================================================= */
* { -webkit-tap-highlight-color: transparent; }
.btn, .mobile-toggle, .mobile-close, .filter-chip,
.mobile-nav a, .nav-link, .footer-social-btn,
.faq-q, .auth-forgot-toggle { touch-action: manipulation; }
.btn, .mobile-toggle, .mobile-close, .mobile-nav a,
.filter-chip, .faq-q { user-select: none; -webkit-user-select: none; }
section[id] { scroll-margin-top: var(--nav-h); }
@media (max-width: 940px) {
  .btn:active { opacity: 0.82; transform: scale(0.98); transition: opacity 0.1s, transform 0.1s; }
}

/* =========================================================
   MOBILE BOTTOM CTA BAR (Regel 1 – Daumen-Erreichbarkeit)
   ========================================================= */
.mobile-cta-bar { display: none; }
@media (max-width: 940px) {
  .mobile-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
    display: flex; gap: 10px;
    padding: 12px 18px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(9,9,9,0.95);
    border-top: 1px solid var(--gold-line-sub);
    transition: transform 0.3s var(--ease), opacity 0.3s;
    will-change: transform;
  }
  .mobile-cta-bar.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
  .mobile-cta-bar .btn { flex: 1; min-height: 48px; width: auto; }
}

/* =========================================================
   HOVER GUARD – Touch-Geräte: alle transform/shadow Effekte zurücksetzen
   ========================================================= */
@media (hover: none) {
  .btn-primary:hover  { transform: none; box-shadow: none; color: #080808; }
  .btn-secondary:hover { transform: none; background: transparent; border-color: var(--gold-line); color: var(--gold-soft); }
  .brand:hover .brand-logo { filter: none; }
  .nav-link:hover::after  { width: 0; }
  .card:hover  { transform: none; border-color: var(--gold-line-sub); background: var(--bg-card); }
  .teaser:hover { transform: none; border-color: var(--gold-line-sub); }
  .teaser:hover .teaser-media img { transform: none; }
  .teaser:hover .teaser-link svg  { transform: translateX(0); }
  .filter-chip:hover { color: var(--muted); border-color: var(--gold-line-sub); }
  .item-card:hover   { transform: none; border-color: var(--gold-line-sub); }
  .item-card:hover .item-media img { transform: none; }
  .marquee-card:hover { transform: none; border-color: var(--gold-line-sub); }
  .plan:hover    { transform: none; border-color: var(--gold-line-sub); }
  .cover-mock:hover  { transform: perspective(1400px) rotateY(-8deg) rotateX(3deg); }
  .panel:hover .panel-media img { transform: none; }
  .tier-bar:hover    { transform: none; border-color: var(--gold-line-sub); }
  .project:hover     { border-color: var(--gold-line-sub); }
  .btn-google:hover  { transform: none; box-shadow: none; }
}

/* =========================================================
   COOKIE CONSENT BANNER (DSGVO)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, calc(100% + 40px));
  z-index: 200;
  width: min(760px, calc(100% - 32px));
  background: rgba(14,14,14,0.97);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg, 16px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  opacity: 0;
  transition: transform 0.35s var(--ease, cubic-bezier(0.22,1,0.36,1)), opacity 0.35s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie-banner.is-visible { transform: translate(-50%, 0); opacity: 1; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
}
.cookie-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.cookie-text a { color: var(--gold-soft); }
.cookie-text a:hover { color: var(--gold); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .cookie-banner { bottom: 12px; width: calc(100% - 20px); }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 18px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; }
}
/* Cookie-Banner ueber der mobilen CTA-Bar positionieren */
@media (max-width: 940px) {
  .cookie-banner { bottom: calc(76px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.2s; }
}
