/* ═══════════════════════════════════════════════════════════════════════════
   Findorado – Design System 2025
   Premium Affiliate Blog · DE/AT/CH · Always Dark
═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens (Always Dark) ────────────────────────────────────────── */
:root {
  --accent:      #e8420a;   /* dekorativ, Hintergründe, großer Text ≥19px */
  --accent-h:    #ff5520;
  --accent-t:    #ff6028;   /* Akzentfarbe als KLEINER Text auf Karten (≥4.5:1 WCAG AA) */
  --accent2:     #6480ff;   /* war #2a5fff – aufgehellt für WCAG AA */
  --gold:        #f59e0b;

  --bg:          #0b0b14;
  --bg-alt:      #0f0f1b;
  --surface:     #161626;
  --surface-2:   #1d1d30;
  --surface-3:   #24243a;
  --ink:         #ffffff;
  --text:        #e4e4f4;
  --muted:       #9696b8;   /* #9696b8 ≈ 7:1 auf --surface – WCAG AA ✓ */
  --border:      rgba(255,255,255,.06);
  --shadow:      0 2px 12px rgba(0,0,0,.35);
  --shadow-md:   0 6px 28px rgba(0,0,0,.5);
  --shadow-lg:   0 16px 60px rgba(0,0,0,.6);

  --radius:      16px;
  --radius-sm:   10px;
  --header-h:    68px;

  /* Spotlight (set by JS) */
  --mx: 50%;
  --my: 40%;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.65; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Scroll Animations ──────────────────────────────────────────────────── */
.animate {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0s);
}
.animate.in-view { opacity: 1; transform: none; }

/* ── Back To Top ────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,66,10,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  font-size: 18px;
}
#backToTop.visible { opacity: 1; transform: none; }
#backToTop:hover { background: var(--accent-h); transform: translateY(-2px); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: all .35s ease;
}
.site-header.scrolled {
  background: rgba(8,8,15,.92);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 40px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; height: var(--header-h); gap: 24px;
}

/* Logo */
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.5px; flex-shrink: 0; }
.logo-find  { color: #fff; }
.logo-orado { color: var(--accent); }

/* Nav */
.main-nav { display: flex; gap: 2px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-link {
  color: rgba(255,255,255,.5); font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  transition: color .2s, background .2s;
  letter-spacing: .1px;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { color: #fff; background: rgba(232,66,10,.18); }

/* Breadcrumb in Header (Artikel-Seite) */
.breadcrumb-nav {
  display: flex; align-items: center;
  flex: 1; overflow: hidden;
}
.breadcrumb-nav .breadcrumb {
  margin-bottom: 0; display: flex; align-items: center;
  gap: 6px; flex-wrap: nowrap; overflow: hidden;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.breadcrumb-nav .breadcrumb a { color: rgba(255,255,255,.70); transition: color .2s; }
.breadcrumb-nav .breadcrumb a:hover { color: #fff; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.search-shortcut {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.65); font-size: 12px;
  padding: 6px 12px; border-radius: 8px; cursor: pointer;
  transition: all .2s;
}
.search-shortcut:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.9); }
.search-shortcut kbd {
  background: rgba(255,255,255,.08); border-radius: 4px;
  padding: 1px 5px; font-size: 11px; font-family: inherit;
}

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Search Overlay ─────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.72); backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  background: var(--surface); border-radius: 20px;
  width: 100%; max-width: 600px; margin: 0 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  overflow: hidden; transform: translateY(-16px);
  transition: transform .22s;
  border: 1px solid rgba(255,255,255,.08);
}
.search-overlay.open .search-box { transform: none; }
.search-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.search-header svg { color: var(--muted); flex-shrink: 0; }
#searchInput { flex: 1; border: none; background: none; outline: none; font-size: 17px; color: var(--text); font-family: inherit; }
#searchInput::placeholder { color: var(--muted); }
#searchClose { background: var(--surface-2); border: none; color: var(--muted); border-radius: 6px; padding: 4px 8px; font-size: 12px; cursor: pointer; }
#searchResults { max-height: 420px; overflow-y: auto; }

.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  transition: background .15s; color: var(--text);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--surface-2); }
.search-result img, .search-result-placeholder { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.search-result-placeholder { background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.search-result strong { display: block; font-size: 15px; margin-bottom: 2px; }
.search-result strong mark { background: rgba(232,66,10,.14); color: var(--accent); border-radius: 2px; }
.search-result span { font-size: 12px; color: var(--muted); }
.search-loading, .search-empty { padding: 32px; text-align: center; color: var(--muted); font-size: 14px; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO – Split Layout mit dramatischem Hintergrund
══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: #07070f;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Cursor Spotlight */
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(
    900px circle at var(--mx) var(--my),
    rgba(232,66,10,.10),
    rgba(42,95,255,.04) 50%,
    transparent 70%
  );
  transition: background 0.05s;
}

/* Feines Grid-Overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}

/* Horizon Glow (bottom) */
.hero::after {
  content: '';
  position: absolute; bottom: 44px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(232,66,10,.5) 30%, rgba(42,95,255,.4) 70%, transparent 95%);
  z-index: 6;
}

/* Aurora Blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: blobDrift ease-in-out infinite alternate;
  will-change: transform;
}
.blob-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232,66,10,.32) 0%, transparent 70%);
  top: -360px; left: -280px;
  animation-duration: 16s;
}
.blob-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,95,255,.22) 0%, transparent 70%);
  top: -80px; right: -250px;
  animation-duration: 21s;
  animation-direction: alternate-reverse;
}
.blob-3 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(160,60,255,.18) 0%, transparent 70%);
  bottom: -60px; left: 35%;
  animation-duration: 14s;
  animation-delay: -5s;
}
.blob-4 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,200,160,.12) 0%, transparent 70%);
  top: 30%; right: 5%;
  animation-duration: 18s;
  animation-delay: -8s;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 45px) scale(1.1); }
}

/* Grain Texture */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Particles (injected by JS) */
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.6);
  pointer-events: none;
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .3; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

/* Split-Grid */
.hero-split {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  flex: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 60px 24px 40px;
}

/* ── Hero Left ───────────────────────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(232,66,10,.35);
  background: rgba(232,66,10,.08);
  color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; width: fit-content;
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: dotGlow 2s ease-in-out infinite alternate;
  flex-shrink: 0;
}
@keyframes dotGlow {
  from { box-shadow: 0 0 4px var(--accent); }
  to   { box-shadow: 0 0 16px var(--accent), 0 0 32px rgba(232,66,10,.45); }
}

.hero-heading {
  font-size: clamp(46px, 5.8vw, 90px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -3px; color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 0 100px rgba(232,66,10,.12);
}
.hh-accent {
  display: block;
  background: linear-gradient(160deg, #ff6b35 0%, #e8420a 45%, #b83000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentGlow 3.5s ease-in-out infinite alternate;
}
@keyframes accentGlow {
  from {
    filter: drop-shadow(0 0 12px rgba(232,66,10,.45))
            drop-shadow(0 0 30px rgba(232,66,10,.2));
  }
  to {
    filter: drop-shadow(0 0 28px rgba(255,90,20,.85))
            drop-shadow(0 0 70px rgba(232,66,10,.5))
            drop-shadow(0 0 120px rgba(200,50,0,.25));
  }
}

.hero-sub {
  color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.75;
  margin-bottom: 24px; max-width: 460px;
}

/* Trust-Zeile */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin-bottom: 32px;
}
.hero-trust .trust-item {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 0; background: none; border: none;
}

/* CTA-Gruppe */
.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 0;
}

/* Sekundärer Hero-Button */
.btn-secondary-hero {
  display: inline-flex; align-items: center;
  padding: 14px 22px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
  transition: border-color .18s, color .18s, background .18s;
  white-space: nowrap;
}
.btn-secondary-hero:hover {
  border-color: rgba(255,255,255,.35); color: #fff;
  background: rgba(255,255,255,.05);
}

/* CTA Button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(232,66,10,.4);
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; position: relative; overflow: visible;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50px; border: 2px solid var(--accent);
  opacity: 0; animation: btnRing 2.8s ease-out infinite;
}
@keyframes btnRing {
  0%   { inset: -3px; opacity: .6; }
  100% { inset: -14px; opacity: 0; }
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(232,66,10,.52);
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center;
  margin-top: 36px;
  padding: 14px 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; width: fit-content;
  gap: 0;
  backdrop-filter: blur(10px);
}
.hs-item {
  display: flex; align-items: baseline; gap: 7px;
  padding: 0 20px; white-space: nowrap;
}
.hs-num {
  font-size: 22px; font-weight: 800;
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 20px rgba(232,66,10,.3);
}
.hs-lbl {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.hs-sep { width: 1px; height: 28px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ── Hero Right – Floating Cards ─────────────────────────────────────────── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.hero-cards {
  position: relative;
  width: 340px; height: 500px;
}

.hc-card {
  position: absolute;
  width: 265px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.1);
  text-decoration: none;
  will-change: transform;
  transition: box-shadow .3s;
}
.hc-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 1px rgba(232,66,10,.2); }

.hc-card-1 { top: 0; left: 50px; z-index: 3; animation: float1 9s ease-in-out infinite; }
.hc-card-2 { top: 110px; left: 12px; z-index: 2; animation: float2 11s ease-in-out infinite; animation-delay: -3.5s; }
.hc-card-3 { top: 255px; left: 65px; z-index: 1; animation: float3 8s ease-in-out infinite; animation-delay: -6s; }

@keyframes float1 { 0%,100% { transform: rotate(-4.5deg) translateY(0); } 50% { transform: rotate(-4.5deg) translateY(-16px); } }
@keyframes float2 { 0%,100% { transform: rotate(3.5deg)  translateY(0); } 50% { transform: rotate(3.5deg)  translateY(-11px); } }
@keyframes float3 { 0%,100% { transform: rotate(-2deg)   translateY(0); } 50% { transform: rotate(-2deg)   translateY(-20px); } }

.hc-img { height: 148px; overflow: hidden; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; }
.hc-img img { width: 100%; height: 100%; object-fit: cover; }
.hc-img-ph { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }
.hc-body { padding: 14px 17px 16px; }
.hc-type {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 5px;
}
.hc-title {
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.88); line-height: 1.45;
}
.hc-placeholder { opacity: .6; }

/* Dekorative Badge/Tag */
.hc-deco {
  position: absolute; z-index: 5;
  font-size: 11px; font-weight: 800; letter-spacing: .3px;
  border-radius: 50px; padding: 6px 12px;
  white-space: nowrap;
}
.hc-deco-badge {
  top: -12px; right: -8px;
  background: var(--gold); color: #111;
  box-shadow: 0 4px 16px rgba(245,158,11,.45);
  animation: badgeFloat 6s ease-in-out infinite;
}
.hc-deco-tag {
  bottom: 30px; right: -16px;
  background: rgba(34,197,94,.92); color: #fff;
  font-size: 10px;
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  animation: badgeFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes badgeFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

/* ── Scroll Hint ─────────────────────────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%); z-index: 5; opacity: .25;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 6px; background: rgba(255,255,255,.9);
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 65% { transform: translateY(9px); opacity: 0; } }

/* ── Hero Marquee Strip ──────────────────────────────────────────────────── */
.hero-marquee {
  position: relative; z-index: 5;
  border-top: 1px solid rgba(255,255,255,.05);
  height: 44px; display: flex; align-items: center;
  overflow: hidden;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
.marquee-label {
  flex-shrink: 0; padding: 0 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  border-right: 1px solid rgba(255,255,255,.06);
  height: 100%; display: flex; align-items: center;
}
.marquee-track { flex: 1; overflow: hidden; }
.marquee-inner {
  display: flex; animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  color: rgba(255,255,255,.58); font-size: 12px;
  padding: 0 22px; display: inline-flex;
  align-items: center; gap: 10px;
  transition: color .2s;
}
.marquee-item:hover { color: rgba(255,255,255,.78); }
.marquee-sep { opacity: .25; font-size: 7px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════════════════
   CATEGORY CHIPS
══════════════════════════════════════════════════════════════════════════ */
.category-strip {
  background: rgba(11,11,20,.97);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px 0;
  position: sticky; top: var(--header-h); z-index: 50;
  backdrop-filter: blur(16px);
}

.category-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0; }
.category-chips::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  background: rgba(255,255,255,.04);
  transition: all .18s; cursor: pointer;
  letter-spacing: .1px;
}
.chip:hover { border-color: rgba(232,66,10,.5); color: rgba(255,255,255,.85); background: rgba(232,66,10,.07); }
.chip-active {
  background: var(--accent); border-color: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(232,66,10,.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   ARTICLES GRID
══════════════════════════════════════════════════════════════════════════ */
.articles-section { padding: 52px 0 80px; }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-header h2 { font-size: 26px; font-weight: 700; color: var(--text); }
.section-count { background: var(--surface-2); color: var(--muted); font-size: 13px; padding: 4px 12px; border-radius: 20px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Article Card ───────────────────────────────────────────────────────── */
.article-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.card-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 3/2;
  background: #0d0d0d;
}

.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .card-img-wrap img { transform: scale(1.02); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}

.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(8px);
}
.badge-type { background: var(--accent); color: #fff; }
.badge-new  { background: rgba(34,197,94,.9); color: #fff; }

.card-body { padding: 18px 20px 20px; }
.card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 7px;
}
.card-title {
  font-size: 16px; font-weight: 700; line-height: 1.32;
  margin-bottom: 9px; color: var(--text);
}
.card-excerpt { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 12px;
}
.card-date { font-size: 11px; color: var(--muted); }
.card-read {
  font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: .2px;
  transition: color .2s, opacity .2s;
  text-decoration: none;
}
.article-card:hover .card-read { opacity: .8; }

/* ── Empty State ────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { color: var(--muted); margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION (SEO / GEO)
══════════════════════════════════════════════════════════════════════════ */
.about-section {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.about-title {
  font-size: 22px; font-weight: 800; color: var(--text);
  margin-bottom: 16px; letter-spacing: -.3px;
}
.about-text {
  color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8;
  margin-bottom: 28px;
}
.about-text strong { color: #fff; font-weight: 600; }
.about-cats {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.about-cat-pill {
  border: 1px solid var(--border);
  color: rgba(255,255,255,.62); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  transition: all .2s; letter-spacing: .1px;
}
.about-cat-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,66,10,.06); }

/* ══════════════════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: #030309; padding: 56px 0;
  position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(232,66,10,.08), transparent);
}
.trust-inner {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.trust-item { display: flex; align-items: center; gap: 16px; padding: 20px 44px; }
.trust-icon { font-size: 34px; filter: drop-shadow(0 0 12px rgba(232,66,10,.38)); }
.trust-item strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }
.trust-item span { display: block; color: rgba(255,255,255,.62); font-size: 13px; margin-top: 2px; }
.trust-divider { width: 1px; height: 56px; background: rgba(255,255,255,.06); }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.site-footer { background: #0d0d1a; padding: 52px 0 36px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand .logo { display: inline-block; margin-bottom: 10px; }
.footer-brand .logo-find { color: rgba(255,255,255,.65); }
.footer-brand p { color: rgba(255,255,255,.72); font-size: 15px; max-width: 420px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.affiliate-note { color: rgba(255,255,255,.65); font-size: 13px; max-width: 540px; line-height: 1.7; padding: 16px 20px; background: rgba(255,255,255,.04); border-radius: 12px; border: 1px solid rgba(255,255,255,.06); }
.footer-copy { color: rgba(255,255,255,.55); font-size: 13px; }

/* ══════════════════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 999; width: calc(100% - 40px); max-width: 600px;
  transition: opacity .35s, transform .35s;
}
.cookie-banner.cookie-hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.cookie-inner {
  background: rgba(8,8,15,.96); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  padding: 16px 20px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.cookie-inner span { color: rgba(255,255,255,.75); font-size: 13px; flex: 1; line-height: 1.5; }
.cookie-inner a { color: var(--accent); }
#cookieAccept {
  background: var(--accent); color: #fff; border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
#cookieAccept:hover { background: var(--accent-h); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 24px 32px; }
  .hero-cards { width: 290px; height: 440px; }
  .hc-card { width: 225px; }
  .hc-card-2 { left: 6px; }
  .hc-card-3 { left: 48px; top: 230px; }
}

@media (max-width: 840px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; gap: 0; min-height: auto; padding-bottom: 20px; }
  .hero-right { display: none; }
  .hero-heading { font-size: clamp(44px, 9vw, 70px); }
  .hero-scroll-hint { display: none; }

  /* Mobile Nav – vollbild Overlay */
  .main-nav {
    display: none; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(6,6,15,.98); backdrop-filter: blur(20px);
    padding: 24px 20px; gap: 4px; overflow-y: auto;
    z-index: 110; /* über allem */
  }
  .main-nav.nav-open { display: flex; }
  .nav-link { font-size: 16px; padding: 13px 16px; color: rgba(255,255,255,.8); }
  .nav-link:hover, .nav-link.active { color: #fff; background: rgba(232,66,10,.18); }
  .menu-toggle { display: flex; }

  /* Breadcrumb-Nav in Artikel-Header auf Mobile ausblenden */
  .breadcrumb-nav { display: none; }

  /* Header Actions auf Mobile */
  .search-shortcut { display: none; }

  .trust-item { padding: 16px 20px; }
  .trust-divider { display: none; }
  .about-section { padding: 44px 0; }
}

@media (max-width: 620px) {
  .articles-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
  .hs-sep { display: none; }
  .hs-item { padding: 0 12px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-bar { padding: 36px 0; }
  .trust-inner { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 24px; }
  .category-strip { top: var(--header-h); }
}

/* ══════════════════════════════════════════════════════════════════════════
   KATEGORIE-SEITE – Kompakter Header
══════════════════════════════════════════════════════════════════════════ */
.cat-hero {
  position: relative;
  background: #07070f;
  padding: calc(var(--header-h) + 48px) 0 44px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cat-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cat-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.cat-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,66,10,.2) 0%, transparent 70%);
  top: -200px; left: -150px;
}
.cat-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(42,95,255,.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.cat-hero-inner { position: relative; z-index: 2; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.60);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.bc-sep { font-size: 12px; opacity: .4; }

.cat-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 12px;
}
.cat-desc {
  color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7;
  max-width: 560px; margin-bottom: 20px;
}
.cat-meta { display: flex; align-items: center; gap: 12px; }
.cat-count-badge {
  background: rgba(232,66,10,.12); border: 1px solid rgba(232,66,10,.25);
  color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; letter-spacing: .3px;
}

@media (max-width: 600px) {
  .hero-heading { font-size: 40px; letter-spacing: -1.5px; }
  .hero-marquee { height: 38px; }
  .about-text { font-size: 14px; }
  .container { padding: 0 16px; }
}

/* ── FAQ Section ────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0 60px;
  background: var(--bg-alt);
  text-align: center;
}
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: #fff; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 40px;
}
.faq-list { max-width: 780px; margin: 0 auto; text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 0; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--text); line-height: 1.4;
  transition: color .2s;
}
.faq-question:hover { color: #fff; }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; font-weight: 400;
  color: var(--muted);
  transition: transform .25s, background .2s, color .2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.faq-answer {
  padding: 0 0 20px 0;
  color: var(--muted); font-size: 14px; line-height: 1.75;
}
.faq-answer p { margin: 0; }

/* Article-level FAQ (inside article-content) */
.article-faq {
  margin-top: 40px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.article-faq-heading {
  font-size: 20px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
}

/* ── Author Block ────────────────────────────────────────────────────────────── */
.author-block {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.author-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
}
.author-info { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-size: 14px; font-weight: 700; color: #fff; }
.author-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Footer contact ──────────────────────────────────────────────────────────── */
.footer-contact {
  font-size: 12px; color: var(--muted);
  margin-top: 8px;
}
.footer-contact a { color: var(--muted); transition: color .2s; }
.footer-contact a:hover { color: var(--accent); }
