/* Streamovo immersive creator — layout & theme */
:root {
  --bg-deep: #0b0914;
  --bg-card: #161022;
  --bg-card-elevated: #1a1628;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --accent-pink: #ec4899;
  --accent-purple: #8b5cf6;
  --accent-orange: #f97316;
  --gradient-cta: linear-gradient(90deg, #8b5cf6 0%, #ec4899 45%, #f97316 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.35) 0%, transparent 65%);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --hero-tile-radius: clamp(20px, 2.5vw, 30px);
  --hero-float-gap: clamp(22px, 3vw, 36px);
  --hero-float-pad: clamp(20px, 4vw, 44px);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1200px;
  /* Scrollbar (Desktop) */
  --scroll-track: #0f0a18;
  --scroll-thumb: #6d28d9;
  --scroll-thumb-hover: #a855f7;
  --scroll-border: rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  line-height: 1.5;
}

/* Scrollbar: Chrome / Edge / Safari (WebKit) + Firefox — nicht auf schmalen Viewports */
@media (min-width: 768px) {
  html {
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  }

  html::-webkit-scrollbar {
    width: 11px;
    height: 11px;
  }

  html::-webkit-scrollbar-track {
    background: var(--scroll-track);
    border-left: 1px solid var(--scroll-border);
  }

  html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6 0%, #c026d3 55%, #ea580c 100%);
    border-radius: 999px;
    border: 2px solid var(--scroll-track);
    min-height: 48px;
  }

  html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a78bfa 0%, #e879f9 50%, #fb923c 100%);
    border-color: #1a1225;
  }

  html::-webkit-scrollbar-corner {
    background: var(--scroll-track);
  }
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(236, 72, 153, 0.08), transparent 45%),
    var(--bg-deep);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Sticky-Block: Ankündigung + Nav */
.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  overflow: visible;
}

.landing-announcement-bar {
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #4c1d95, #6d28d9 45%, #8b5cf6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-announcement-bar .fa-bullhorn {
  margin-right: 0.35rem;
  opacity: 0.92;
}

/* Header */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to bottom, rgba(11, 9, 20, 0.95), rgba(11, 9, 20, 0.75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  /* visible: Sprach-Dropdown darf unterhalb der Header-Kante ausklappen */
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2.25rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent-pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
  overflow: visible;
}

.landing-logout-form {
  display: inline;
  margin: 0;
}

.landing-logout-form .btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

/* Sprache: Dropdown ohne JS (details/summary) */
.landing-lang {
  position: relative;
  z-index: 20;
}

.landing-lang__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  user-select: none;
}

.landing-lang__summary::-webkit-details-marker {
  display: none;
}

.landing-lang__summary::marker {
  content: "";
}

.landing-lang__summary:hover {
  border-color: rgba(236, 72, 153, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.landing-lang__globe {
  display: flex;
  opacity: 0.85;
}

.landing-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  min-width: 10rem;
  list-style: none;
  background: rgba(22, 16, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 250;
}

.landing-lang__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.15s, color 0.15s;
}

.landing-lang__link:hover {
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
}

.landing-lang__link.is-current {
  color: #e9d5ff;
}

.landing-lang__check {
  color: #34d399;
  font-weight: 700;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.link-login {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.link-login:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-gradient {
  background: var(--gradient-cta);
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
}

.btn-hero {
  padding: 0.95rem 2.5rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/*
 * Hero: äußeres Raster = gleiche Spalten/Zeilen wie Collage.
 * .hero-inner liegt in Zelle (2,2) = freie Mitte unten — nicht im oberen Bild.
 */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--hero-float-gap);
  padding: var(--hero-float-pad);
  min-height: min(78vh, 640px);
  overflow: hidden;
  align-items: stretch;
  min-width: 0;
}

.hero-collage {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--hero-float-gap);
  min-height: 0;
  min-width: 0;
  align-content: stretch;
  filter: brightness(0.88) saturate(1.05);
}

/* Freie Mitte unten — nur Rasterplatz, kein „Kasten“ */
.hero-collage-spacer {
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  pointer-events: none;
}

/* Schwebende Karten: Abstand durch Grid-Gap, weiche Kanten, Schatten */
.hero-tile {
  border-radius: var(--hero-tile-radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 0;
  isolation: isolate;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.45),
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 48px rgba(139, 92, 246, 0.22),
    0 48px 96px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

/* Portrait links: hohe Kachel + etwas stärkerer Glow */
.hero-tile--person {
  background: #120a18;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 28px 56px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 56px rgba(236, 72, 153, 0.28),
    0 0 100px rgba(139, 92, 246, 0.15),
    0 52px 100px rgba(0, 0, 0, 0.4);
}

@media (hover: hover) and (pointer: fine) {
  .hero-tile:hover {
    box-shadow:
      0 6px 12px rgba(0, 0, 0, 0.25),
      0 22px 48px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 40px 80px rgba(139, 92, 246, 0.18);
    transform: translateY(-2px);
  }

  .hero-tile--person:hover {
    box-shadow:
      0 6px 12px rgba(0, 0, 0, 0.28),
      0 24px 52px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.11),
      0 44px 88px rgba(236, 72, 153, 0.2),
      0 0 100px rgba(139, 92, 246, 0.12);
    transform: translateY(-3px);
  }
}

.hero-tile__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: blur(3.5px) saturate(1.06);
}

/* Person1: volle Höhe links (Portrait), andere Kacheln rechteckig */
.hero-tile--1 {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
}

/* Unsplash-Kacheln: Bild in ::before mit Blur + leichter Transparenz (Person1 bleibt <img>) */
.hero-tile--2,
.hero-tile--3,
.hero-tile--4,
.hero-tile--5 {
  position: relative;
  background-image: none;
  background-color: rgba(18, 12, 28, 0.35);
}

.hero-tile--2::before,
.hero-tile--3::before,
.hero-tile--4::before,
.hero-tile--5::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(1.05);
  opacity: 0.82;
  transform: scale(1.06);
  z-index: 0;
  pointer-events: none;
}

.hero-tile--2::before {
  background-image: url("https://images.unsplash.com/photo-1511512578047-dfb367046420?w=800&q=80");
}

.hero-tile--3::before {
  background-image: url("https://images.unsplash.com/photo-1593305841991-05c297ba4575?w=800&q=80");
}

.hero-tile--4::before {
  background-image: url("https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?w=600&q=80");
}

.hero-tile--5::before {
  background-image: url("https://images.unsplash.com/photo-1538481199705-c710c4e965fc?w=600&q=80");
}

.hero-tile--2 {
  grid-column: 2;
  grid-row: 1;
}

.hero-tile--3 {
  display: none;
  grid-column: 1;
  grid-row: 2;
}

.hero-tile--4 {
  grid-column: 3;
  grid-row: 1;
}

.hero-tile--5 {
  grid-column: 3;
  grid-row: 2;
}

.hero-inner {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  text-align: center;
  padding: 0.35rem 0.75rem 0.75rem;
  max-width: min(900px, 100%);
  width: 100%;
  pointer-events: none;
}

.hero-inner .hero-title,
.hero-inner .btn-hero {
  pointer-events: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 1.75rem;
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 4px 24px rgba(0, 0, 0, 0.9),
    0 12px 48px rgba(11, 9, 20, 0.95),
    0 0 80px rgba(11, 9, 20, 0.8);
}

.hero .btn-hero {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* Features grid — asymmetrical */
.section-pad {
  padding: 3.5rem 1.5rem 5rem;
}

.features-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  grid-template-rows: auto auto auto auto;
  align-items: stretch;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}

.card-glow-orange {
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.12), 0 0 80px rgba(236, 72, 153, 0.08);
}

.card-glow-mixed {
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.15), 0 0 70px rgba(249, 115, 22, 0.1);
}

.card-dashboard {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 300px;
}

.features-copy {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  align-self: center;
}

.features-headline {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.card-sidebar-preview {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(165deg, #1c1528 0%, #120e1c 100%);
  min-height: 200px;
}

.mock-mini-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.mock-mini-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.mock-mini-chart {
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.2));
  position: relative;
}

.mock-mini-chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  height: 40px;
  background: linear-gradient(to top, rgba(249, 115, 22, 0.6), transparent);
  border-radius: 4px 4px 0 0;
}

.card-content-mgmt {
  grid-column: 3;
  grid-row: 2;
}

.ecm-icon {
  margin-bottom: 0.75rem;
}

.ecm-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.mock-file-row {
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
  max-width: 100%;
}

.mock-file-row.short {
  max-width: 65%;
}

.card-schedule {
  grid-column: 1;
  grid-row: 3;
}

.card-stream {
  grid-column: 2;
  grid-row: 2 / 4;
  min-height: 280px;
  position: relative;
}

.card-schedule-tall {
  grid-column: 3;
  grid-row: 3 / 5;
  min-height: 340px;
}

/* Dashboard mock */
.mock-dashboard {
  padding: 0.5rem;
}

.mock-dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.mock-dot:nth-child(2) {
  background: #fbbf24;
}

.mock-dot:nth-child(3) {
  background: #22c55e;
}

.mock-dash-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}

.mock-chart--main {
  min-height: 100px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.25) 0%, rgba(11, 9, 20, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.mock-chart--main::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 20%;
  height: 45%;
  background: linear-gradient(to top, rgba(236, 72, 153, 0.7), rgba(139, 92, 246, 0.3));
  border-radius: 4px 4px 0 0;
  clip-path: polygon(0 100%, 0 40%, 15% 55%, 30% 25%, 45% 60%, 60% 20%, 75% 45%, 90% 30%, 100% 50%, 100% 100%);
}

.mock-chart--side {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 4px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-bar {
  width: 18%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #f97316, #ec4899);
}

.mock-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.65rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.pill-twitch {
  background: rgba(145, 70, 255, 0.35);
  color: #e9d5ff;
}

/* Calendar mock */
.mock-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.mock-cal-nav {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
}

.mock-cal-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.mock-cal-cell.filled {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.55), rgba(236, 72, 153, 0.45));
}

.mock-cal-cell.filled.alt {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.55), rgba(236, 72, 153, 0.4));
}

.mock-cal--tall .mock-cal-weeks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}

.mock-week-row {
  display: flex;
  gap: 6px;
  min-height: 36px;
  align-items: stretch;
}

.mock-week-row .block {
  border-radius: 8px;
  flex: 1;
}

.mock-week-row .b1 {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.65), rgba(236, 72, 153, 0.4));
  flex: 1.2;
}

.mock-week-row .b2 {
  background: rgba(139, 92, 246, 0.45);
  flex: 0.8;
}

.mock-week-row .b3 {
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), rgba(249, 115, 22, 0.35));
}

/* Stream mock */
.mock-stream {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
  height: 100%;
  min-height: 180px;
}

.mock-stream-video {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a12;
  position: relative;
}

.mock-game {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #0f172a 100%);
}

.mock-game::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
}

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}

.mock-chat-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-chat-line.short {
  width: 70%;
}

.mock-toast {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: auto;
  font-size: 0.7rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(22, 16, 34, 0.95);
  border: 1px solid rgba(236, 72, 153, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* Offline / not live */
.mock-toast--offline {
  border-color: rgba(148, 163, 184, 0.45);
  color: rgba(226, 232, 240, 0.92);
}

.mock-toast-dot--offline {
  background: #64748b;
  box-shadow:
    0 0 0 2px rgba(30, 41, 59, 0.9),
    0 0 6px rgba(100, 116, 139, 0.5);
}

/* Community */
.community {
  text-align: center;
}

.community-label {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-pink);
  text-transform: capitalize;
  letter-spacing: 0.06em;
}

.community-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 auto 2.5rem;
  max-width: 720px;
  text-transform: uppercase;
  line-height: 1.05;
}

.community-placeholder {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  text-align: center;
  background: var(--bg-card-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.06);
}

.community-placeholder__lead {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.community-placeholder__note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem 2rem;
  margin-top: 1rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-brand {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.social-link:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .card-dashboard {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .features-copy {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .card-sidebar-preview {
    grid-column: 1;
    grid-row: auto;
  }

  .card-content-mgmt {
    grid-column: 2;
    grid-row: auto;
  }

  .card-schedule {
    grid-column: 1;
    grid-row: auto;
  }

  .card-stream {
    grid-column: 2;
    grid-row: auto;
  }

  .card-schedule-tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(12px, 4vw, 22px);
    padding-bottom: clamp(3.5rem, 14vh, 8rem);
    min-height: min(72vh, 600px);
    gap: 0;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    grid-column: unset;
    grid-row: unset;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(100px, 1fr));
    gap: clamp(10px, 3vw, 18px);
    padding: clamp(12px, 4vw, 22px);
  }

  .hero-inner {
    grid-column: unset;
    grid-row: unset;
    align-self: stretch;
    justify-self: center;
    position: relative;
    z-index: 2;
    pointer-events: none;
  }

  .hero-inner .hero-title,
  .hero-inner .btn-hero {
    pointer-events: auto;
  }

  .hero-collage-spacer {
    display: none;
  }

  .hero-tile--1 {
    grid-row: 1;
    grid-column: 1;
    align-self: stretch;
  }

  .hero-tile--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-tile--3 {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 140px;
  }

  .hero-tile--4 {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-tile--5 {
    grid-column: 2;
    grid-row: 3;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .card-sidebar-preview,
  .card-content-mgmt,
  .card-stream,
  .card-schedule,
  .card-schedule-tall {
    grid-column: 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Preis-Bereich (#pricing) — verweist auf /plans */
.landing-pricing-teaser {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.landing-pricing-teaser p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}
