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

html { overflow-x: hidden; overflow-x: clip; max-width: 100%; }

:root {
  --bg:        #000000;
  --surface:   #111111;
  --border:    #222222;
  --border-md: #2e2e2e;
  --text:      #ffffff;
  --muted:     #e4e4e4;
  --dim:       #888888;
  --accent:    #ffffff;
  --accent-lt: rgba(255,255,255,0.07);
  --radius:    12px;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.5), 0 1px 2px -1px rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 24px -4px rgb(0 0 0 / 0.7), 0 2px 8px -2px rgb(0 0 0 / 0.5);
  /* dot colors */
  --red:    #ef4444;
  --blau:   #ffffff;
  --gelb:   #f59e0b;
  --orange: #f97316;
  --grün:   #22c55e;
}

/* ── LANGUAGE ── */
html:not([data-lang="en"]) .lang-en { display: none !important; }
html:not([data-lang="de"]) .lang-de { display: none !important; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-space, 'Manrope', system-ui, sans-serif);
  background: #000000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip; /* stronger than hidden on iOS — prevents bounce/scroll into overflow */
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.6s ease;
  will-change: opacity, transform, filter;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-56px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.6s ease;
  will-change: opacity, transform, filter;
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(56px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.6s ease;
  will-change: opacity, transform, filter;
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    transition: opacity 0.3s ease;
    transform: none;
    filter: none;
  }
}

/* ── GLOW ORBS ── */

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; z-index: 1; }

/* ── NAVBAR ── */
/* ── NAVBAR (Framer-style floating pill) ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 860px;
  pointer-events: none;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  padding: 0 8px 0 16px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  pointer-events: all;
  transition: background 0.3s, border-color 0.3s;
}

.navbar--scrolled .nav-pill {
  background: rgba(10, 10, 10, 0.88);
  border-color: rgba(255, 255, 255, 0.13);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 8px;
}
.nav-logo img { height: 22px; width: auto; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.07);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: #fff;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.15s, opacity 0.15s;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: #e0e0e0; }

.nav-user-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: block;
  transition: border-color 0.15s;
}
.nav-user-link:hover .nav-avatar { border-color: rgba(255,255,255,0.6); }
.nav-avatar-placeholder {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-login-link {
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 10px;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-login-link:hover { color: rgba(255,255,255,0.85); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
.nav-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

.nav-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: nav-menu-in 0.15s ease;
}
@keyframes nav-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-link {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-mobile-cta {
  display: block;
  text-decoration: none;
  text-align: center;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 10px;
  margin-top: 6px;
  transition: background 0.15s;
}
.nav-mobile-cta:hover { background: #e0e0e0; }

.powered { font-size: 0.75rem; color: var(--dim); white-space: nowrap; }
.powered strong { color: var(--muted); font-weight: 600; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  padding: 4px 0;
}
.btn-ghost:hover { color: var(--text); }

/* ── DOTS ── */
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.dot--red    { background: var(--red); }
.dot--blau   { background: var(--blau); }
.dot--gelb   { background: var(--gelb); }
.dot--orange { background: var(--orange); }
.dot--grün   { background: var(--grün); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* ── SECTION LABEL ── */
.section-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-label-row .dot { display: none; }
.section-label-row::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--border-md);
  flex-shrink: 0;
}
.section-label-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── HERO ── */
.above-fold-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: calc(100svh - 100px);
  display: flex;
  flex-direction: column;
  background-color: #000;
}
.above-fold-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #000000);
  pointer-events: none;
  z-index: 2;
}
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 100px 0 140px;
  position: relative;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.above-fold-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.above-fold-bg canvas,
.hero-dither-bg canvas,
.liquidChrome-container canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Hero left layout */
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
.hero-sub { text-align: left; max-width: 560px; }

/* Hero Visual — Terminal + Floating Cards */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hv-scene {
  position: relative;
  width: 100%;
  max-width: 680px;
}


/* Website Preview Card */
.wp-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #06060a;
  box-shadow: 0 32px 72px -16px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  will-change: transform;
  cursor: default;
}
.wp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.11) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 10;
}
.wp-card:hover::after { opacity: 1; }
.wp-card:hover {
  box-shadow: 0 40px 90px -16px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.1);
}
.wp-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0f0f14;
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.wp-url {
  flex: 1; text-align: center;
  font-size: 0.68rem; color: var(--dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 2px 8px; margin: 0 6px;
}
.wp-body { padding: 26px 28px; display: flex; flex-direction: column; gap: 22px; }

/* mini nav */
.wp-nav { display: flex; align-items: center; gap: 10px; }
.wp-nav-logo { width: 40px; height: 7px; background: rgba(255,255,255,0.25); border-radius: 3px; }
.wp-nav-links { display: flex; gap: 6px; flex: 1; }
.wp-nl { width: 24px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; }
.wp-nav-btn { width: 46px; height: 18px; border-radius: 4px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); }

/* mini hero */
.wp-hero { position: relative; padding: 16px 0 8px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.wp-glow {
  position: absolute; inset: -40px -60px;
  background: radial-gradient(ellipse at 30% 50%, rgba(120,80,255,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 70% 30%, rgba(0,160,120,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.wp-label { width: 64px; height: 14px; border-radius: 99px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.wp-h1 { height: 22px; background: rgba(255,255,255,0.28); border-radius: 5px; width: 78%; }
.wp-h1--b { width: 58%; background: rgba(255,255,255,0.18); }
.wp-sub { height: 10px; background: rgba(255,255,255,0.08); border-radius: 3px; width: 88%; }
.wp-sub--s { width: 66%; }
.wp-ctas { display: flex; gap: 12px; margin-top: 8px; }
.wp-btn { height: 34px; width: 100px; border-radius: 7px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.wp-btn--p { background: rgba(255,255,255,0.88); border-color: transparent; width: 116px; }

/* mini cards */
.wp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.wp-mc { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 9px; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
.wp-mc-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(255,255,255,0.1); }
.wp-mc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); width: 72%; }
.wp-mc-line--s { width: 48%; background: rgba(255,255,255,0.05); }

/* Floating chips */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.5);
}
.hv-card-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hv-card--tl { top: -18px; right: -10px; }
.hv-card--br { bottom: -18px; left: -10px; }

@keyframes float-a {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
.float-a { animation: float-a 4s ease-in-out infinite; }
.float-b { animation: float-b 5s ease-in-out infinite; }

/* ── TEXT EFFECTS ── */

/* Hero h1 sehr subtiler Glow */
/* Typewriter */
.hero h1 .typewriter {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
.hero h1 .typewriter::after {
  content: '|';
  display: inline-block;
  margin-left: 1px;
  color: rgba(255,255,255,0.5);
  -webkit-text-fill-color: rgba(255,255,255,0.5);
  animation: tw-blink 0.65s step-end infinite;
}
.typewriter.done::after { display: none; }
@keyframes tw-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Scroll indicator (desktop) */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: si-bounce 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes si-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.55; }
}

/* Scroll hint (mobile, under CTAs) */
.hero-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-decoration: none;
  width: 100%;
  animation: hint-bounce 2s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%,100% { transform: translateY(0);   opacity: 0.3;  }
  50%      { transform: translateY(5px); opacity: 0.55; }
}

/* ── CARD EFFECTS ── */

/* Feature cards — white glow border + lift */
.feature-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 32px -8px rgba(255,255,255,0.08);
  transform: translateY(-2px);
  background: var(--surface);
}

/* Paket cards — glow + lift */
.paket-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.paket-card:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 12px 40px -8px rgba(255,255,255,0.07);
  transform: translateY(-3px);
  background: var(--surface);
}
.paket-card--highlight {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 32px -8px rgba(255,255,255,0.06);
}
.paket-card--highlight:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 16px 48px -8px rgba(255,255,255,0.1);
}

/* Community cards */
.community-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.community-card:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 32px -8px rgba(255,255,255,0.07);
  transform: translateY(-2px);
  background: var(--surface);
}

/* Product cards — glow on hover */
.product-card {
  transition: background 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}


/* FAQ items */
.faq-item {
  transition: background 0.15s;
}
.faq-item summary:hover { background: rgba(255,255,255,0.03); }
.faq-item[open] { background: rgba(255,255,255,0.02); }

/* Logo cloud items — lift */
.logo-cloud-item {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.logo-cloud-item:hover {
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 4px 20px -4px rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* Addon items */
.addon-item {
  transition: background 0.15s, box-shadow 0.15s;
}
.addon-item:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* ── SECTION GLOW EFFECTS ── */
/* Ambient-Glow direkt im body-background — kein Clipping, keine Artefakte */

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-lt);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 13px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-inter, 'Inter', system-ui, sans-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-sub {
  font-family: var(--font-inter, 'Inter', system-ui, sans-serif);
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── GLASS BUTTONS (hero only) ── */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
}
.btn-glass-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn-glass-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
.feature-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.feature-card--accent:hover {
  border-color: #e4e4e4;
  box-shadow: 0 8px 24px -4px rgba(255,255,255,0.3);
}
.feature-card--accent h3 { color: #fff; }
.feature-card--accent p  { color: rgba(255,255,255,0.8); }
.feature-card--accent .feature-list li { color: rgba(255,255,255,0.7); }
.feature-card--accent .feature-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: #fff; }

.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-lt);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-icon--yellow { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); color: #d97706; }
.feature-icon--blue   { background: rgba(255,255,255,0.1);  border-color: rgba(255,255,255,0.25);  color: var(--accent); }
.feature-icon--green  { background: rgba(34,197,94,0.1);   border-color: rgba(34,197,94,0.25);   color: #16a34a; }

.feature-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.feature-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 20px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.feature-list li {
  font-size: 0.82rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before { content: '—'; font-size: 0.75rem; opacity: 0.5; }

/* ── CTA ── */
.cta-inner { max-width: 520px; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.cta-inner p { color: var(--muted); margin-bottom: 28px; }

/* ── FOOTER ── */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 56px;
}
.footer-logo-link { display: inline-block; text-decoration: none; margin-bottom: 16px; }
.footer-logo-img { height: 22px; width: auto; display: block; }
.footer-tagline {
  font-size: 0.84rem; color: var(--muted);
  line-height: 1.7; margin: 0 0 22px;
  max-width: 220px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-col-title {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.84rem; color: var(--muted);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--dim); }
.footer-powered { font-size: 0.76rem; color: var(--dim); }

/* Socials */
.footer-socials a, .socials a {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.footer-socials a:hover, .socials a:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.footer-socials svg, .socials svg { width: 15px; height: 15px; fill: var(--muted); }
.footer-socials a:hover svg, .socials a:hover svg { fill: rgba(255,255,255,0.85); }

/* ── PRODUCT SPOTLIGHT (LumaSpace / FlowWave) ── */
.product-spotlight {}
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-split--reverse .product-split-visual { order: -1; }
.product-split-text { display: flex; flex-direction: column; gap: 0; }
.product-split-text .section-title { margin-top: 14px; }
.product-split-text .section-sub { margin-top: 14px; }
.feature-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--muted);
}
.feature-list li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .product-split { grid-template-columns: 1fr; gap: 40px; }
  .product-split--reverse .product-split-visual { order: 0; }
}

/* LumaSpace Mockup */
.luma-mock {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(8,8,8,0.9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.luma-mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.luma-mock-url {
  font-size: 0.7rem; color: var(--dim);
  margin-left: 8px;
}
.luma-mock-body {
  display: flex; height: 240px;
}
.luma-mock-sidebar {
  width: 130px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.luma-mock-sidebar-title {
  font-size: 0.65rem; font-weight: 700;
  color: var(--dim); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.luma-mock-proj {
  font-size: 0.72rem; color: var(--muted);
  padding: 5px 8px; border-radius: 6px;
  cursor: default; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.luma-mock-proj.active {
  background: rgba(255,255,255,0.08); color: var(--text);
}
.luma-mock-ai-hint {
  font-size: 0.68rem; color: #a78bfa;
  margin-top: auto; padding: 6px 8px;
  background: rgba(139,92,246,0.1);
  border-radius: 6px; border: 1px solid rgba(139,92,246,0.2);
}
.luma-mock-main {
  flex: 1; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.luma-mock-day {
  font-size: 0.68rem; font-weight: 700;
  color: var(--dim); letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 2px;
}
.luma-mock-task {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.luma-mock-task.done { opacity: 0.45; }
.luma-mock-check { font-size: 0.72rem; color: #4ade80; width: 14px; flex-shrink: 0; }
.luma-mock-task.done .luma-mock-check { color: #4ade80; }
.luma-mock-task-label { font-size: 0.75rem; color: var(--text); flex: 1; }
.luma-mock-task.done .luma-mock-task-label { text-decoration: line-through; color: var(--dim); }
.luma-mock-tag { font-size: 0.62rem; font-weight: 600; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; }
.luma-tag-done  { background: rgba(34,197,94,0.12);  color: #4ade80; }
.luma-tag-wip   { background: rgba(251,191,36,0.1);  color: #fbbf24; }
.luma-tag-open  { background: rgba(148,163,184,0.08); color: #94a3b8; }
.luma-mock-suggestion {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; color: #a78bfa;
  margin-top: auto;
  padding: 8px 10px;
  background: rgba(139,92,246,0.07);
  border-radius: 8px;
  border: 1px solid rgba(139,92,246,0.15);
}

/* FlowWave Mockup */
.flow-mock {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(8,8,8,0.9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.flow-mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.flow-mock-url { font-size: 0.7rem; color: var(--dim); margin-left: 8px; }
.flow-mock-body {
  display: flex; height: 240px;
}
.flow-mock-sidebar {
  width: 110px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 3px;
}
.flow-mock-sidebar-title {
  font-size: 0.65rem; font-weight: 700;
  color: var(--dim); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.flow-mock-cmd {
  font-size: 0.72rem; color: var(--muted);
  padding: 5px 8px; border-radius: 6px; font-family: monospace;
}
.flow-mock-cmd.active { background: rgba(255,255,255,0.08); color: #60a5fa; }
.flow-mock-add {
  font-size: 0.7rem; color: var(--dim);
  margin-top: auto; padding: 5px 8px;
  border: 1px dashed rgba(255,255,255,0.12); border-radius: 6px;
  text-align: center;
}
.flow-mock-editor {
  flex: 1; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.flow-mock-cmd-title {
  font-size: 0.88rem; font-weight: 700; color: var(--text); font-family: monospace;
}
.flow-mock-cmd-sub { font-size: 0.7rem; color: var(--dim); }
.flow-mock-embed {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.flow-mock-embed-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: #5865f2;
}
.flow-mock-embed-name { font-size: 0.78rem; font-weight: 600; color: #ffffff; padding-left: 4px; }
.flow-mock-embed-row { font-size: 0.7rem; color: var(--muted); padding-left: 4px; }
.flow-mock-trigger {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding: 7px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.flow-mock-trigger-label { font-size: 0.68rem; color: var(--dim); }
.flow-mock-trigger-val { font-size: 0.7rem; color: #60a5fa; font-weight: 600; }

/* Early Access Form */
.ea-form {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-top: 20px;
  width: 100%; max-width: 400px;
}
.ea-input {
  flex: 1; min-width: 200px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.15s;
}
.ea-input:focus { border-color: rgba(255,255,255,0.35); }
.ea-input::placeholder { color: var(--dim); }
.ea-btn {
  padding: 11px 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.ea-btn:hover { opacity: 0.88; }
.ea-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ea-success {
  display: flex; align-items: center; gap: 10px;
  color: #4ade80; font-size: 0.9rem; margin-top: 20px;
}
.ea-success-icon {
  width: 24px; height: 24px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.ea-error { font-size: 0.78rem; color: #f87171; width: 100%; text-align: center; }
.cta-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 16px; width: 100%; max-width: 400px;
  color: var(--dim); font-size: 0.78rem;
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border);
}

/* ── STATS STRIP ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  background: rgba(255,255,255,0.015);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stats-strip-item:last-child { border-right: none; }
.stats-strip-val {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stats-strip-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 640px) {
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item:nth-child(2) { border-right: none; }
  .stats-strip-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stats-strip-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stats-strip-val { font-size: 1.35rem; }
}

/* ── ROADMAP ── */
.roadmap-section {}
.roadmap-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.roadmap-item:last-child { border-bottom: none; }
.roadmap-item:hover { background: rgba(255,255,255,0.03); }
.roadmap-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}
.roadmap-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.roadmap-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.roadmap-desc {
  font-size: 0.8rem;
  color: var(--muted);
}
.roadmap-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.rm-live  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.rm-beta  { background: rgba(251,191,36,0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.rm-dev   { background: rgba(148,163,184,0.1); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }
.rm-soon  { background: rgba(139,92,246,0.1);  color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }
@media (max-width: 640px) {
  .roadmap-item { padding: 16px 18px; gap: 12px; }
  .roadmap-desc { display: none; }
}

/* ── COOKIE NOTICE ── */
.cookie-notice {
  position: fixed;
  bottom: 16px; left: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  max-width: 420px;
}
.cookie-notice p { margin: 0; line-height: 1.4; color: var(--muted); }
.cookie-notice p a { color: var(--accent); text-decoration: none; }
.cookie-notice p a:hover { text-decoration: underline; }
.cookie-notice-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.cookie-accept { background: #ffffff; color: #000000; border: none; border-radius: 7px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.cookie-accept:hover { opacity: 0.88; }
.cookie-close { cursor: pointer; color: var(--dim); font-weight: 700; font-size: 0.9rem; line-height: 1; background: none; border: none; padding: 0; }
.cookie-close:hover { color: var(--text); }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }

.faq-item { background: transparent; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dim);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--surface); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item[open] summary { color: var(--accent); }
.faq-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.faq-link:hover { text-decoration: underline; }

/* ── DOCS ── */
.docs-body { background: var(--bg); }

.docs-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(7,7,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.docs-header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; gap: 20px;
}
.docs-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.docs-logo-text { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.02em; }
.docs-logo-sep { color: var(--border-md); margin: 0 4px; font-weight: 300; }

.docs-header-search { flex: 1; max-width: 320px; margin: 0 24px; }
.docs-search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 12px;
  font-size: 0.82rem; color: var(--dim); cursor: pointer;
  transition: border-color 0.15s;
}
.docs-search-box:hover { border-color: var(--border-md); }
.docs-search-box span { flex: 1; }
kbd {
  font-size: 0.7rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 5px; color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
}

.docs-header-nav { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.docs-header-link { font-size: 0.85rem; color: var(--muted); text-decoration: none; font-weight: 500; }
.docs-header-link:hover { color: var(--text); }

.docs-layout { display: flex; padding-top: 56px; min-height: 100vh; }

.docs-sidebar {
  width: 256px; flex-shrink: 0;
  position: fixed; top: 56px; bottom: 0; left: 0;
  overflow-y: auto; border-right: 1px solid var(--border);
  background: var(--surface);
}
.docs-sidebar-inner { padding: 24px 16px 48px; }

.docs-nav-group { margin-bottom: 28px; }
.docs-nav-group-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim); padding: 0 8px;
  display: block; margin-bottom: 6px;
}
.docs-nav-product-badge {
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 10px; border-radius: 8px; margin-bottom: 6px;
  display: block;
}
.docs-nav-product-badge--luma { background: rgba(245,158,11,0.1); color: #d97706; }
.docs-nav-product-badge--flow { background: rgba(255,255,255,0.12); color: var(--accent); }
.docs-nav-product-badge--lyq  { background: rgba(255,255,255,0.1); color: var(--accent); }

.docs-nav-link {
  display: block; padding: 5px 10px; border-radius: 7px;
  font-size: 0.85rem; color: var(--muted); text-decoration: none;
  font-weight: 500; transition: color 0.15s, background 0.15s;
  margin-bottom: 1px;
}
.docs-nav-link:hover { color: var(--text); background: var(--border); }
.docs-nav-link--active { color: var(--accent); background: var(--accent-lt); font-weight: 600; }

.docs-main { margin-left: 256px; flex: 1; min-width: 0; }
.docs-content { max-width: 760px; padding: 48px 48px 80px; }

.docs-section { margin-bottom: 48px; }
.docs-breadcrumb { font-size: 0.75rem; color: var(--dim); margin-bottom: 16px; font-weight: 500; }
.docs-h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.docs-h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; padding-top: 32px; border-top: 1px solid var(--border); }
.docs-h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; margin-top: 24px; }
.docs-lead { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.docs-section p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 16px; }

.docs-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

.docs-callout {
  border-radius: 10px; padding: 14px 18px;
  font-size: 0.875rem; line-height: 1.65; margin: 16px 0;
}
.docs-callout--info { background: var(--accent-lt); border: 1px solid rgba(255,255,255,0.3); color: #ffffff; }
.docs-callout--warn { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); color: #fbbf24; }

.docs-list { padding-left: 20px; color: var(--muted); font-size: 0.9rem; line-height: 2; }

.docs-step { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.docs-step-num {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}
.docs-step strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.docs-step p { margin: 0; font-size: 0.875rem; }

.docs-feature-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.docs-feature-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }
.docs-feature-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.docs-feature-item strong { color: var(--text); }

.docs-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 28px 0; }
.docs-quick-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.docs-quick-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.docs-quick-icon { font-size: 1.4rem; flex-shrink: 0; }
.docs-quick-icon--logo {
  width: 36px; height: 36px; font-size: 0;
  border-radius: 8px; overflow: hidden; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.docs-quick-card strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.docs-quick-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.docs-product-header {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 0 20px; border-top: 1px solid var(--border); margin-bottom: 8px;
}
.docs-product-icon { font-size: 2rem; }
.docs-product-icon--logo {
  width: 52px; height: 52px; font-size: 0;
  border-radius: 14px; overflow: hidden; background: #000;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.docs-product-header--luma .docs-product-icon { color: #d97706; }
.docs-product-header--flow .docs-product-icon { color: var(--accent); }
.docs-product-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px; margin-top: 4px;
}
.docs-product-tag--live { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.docs-product-tag--dev  { background: rgba(245,158,11,0.1); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }

/* Code blocks */
.code-block { background: #0f0f0f; border-radius: 12px; overflow: hidden; margin: 16px 0; border: 1px solid #262626; }
.code-header { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid #1f1f1f; }
.code-lang { font-size: 0.72rem; font-weight: 600; color: #525252; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.code-filename { font-size: 0.75rem; color: #525252; font-family: 'JetBrains Mono', monospace; flex: 1; }
.code-copy { margin-left: auto; font-size: 0.75rem; color: #525252; background: none; border: none; cursor: pointer; font-family: inherit; transition: color 0.15s; padding: 2px 6px; border-radius: 4px; }
.code-copy:hover { color: #a1a1aa; background: #1a1a1a; }
.code-block pre { padding: 18px; overflow-x: auto; margin: 0; }
.code-block code { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; line-height: 1.75; color: #d4d4d8; }
.inline-code { font-family: 'JetBrains Mono', monospace; font-size: 0.82em; background: var(--surface); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; color: var(--accent); }
.docs-link { color: var(--accent); text-decoration: none; font-weight: 500; }
.docs-link:hover { text-decoration: underline; }

.code-kw  { color: #ffffff; }
.code-str { color: #86efac; }
.code-fn  { color: #67e8f9; }
.code-deco{ color: #fbbf24; }
.code-comment { color: #4b5563; font-style: italic; }

/* API table */
.docs-api-table { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin: 16px 0; }
.docs-api-row { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.85rem; align-items: center; }
.docs-api-row:last-child { border-bottom: none; }
.docs-api-row--header { background: var(--surface); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.docs-api-row span { color: var(--muted); }

.docs-footer { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 48px; }
.docs-footer p { font-size: 0.875rem; color: var(--muted); margin-bottom: 8px; }
.docs-footer-copy { font-size: 0.78rem; color: var(--dim) !important; }

/* docs mobile drawer + overlay styles (always present, controlled by media + JS) */
.docs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 140;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
}
.docs-overlay--visible { display: block; }

.docs-mobile-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
  flex-shrink: 0;
}
.docs-mobile-toggle:hover { border-color: var(--border-md); color: var(--text); }

.docs-sidebar-close {
  display: none;
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 20px;
  font-family: inherit;
  transition: color 0.15s, background 0.15s;
}
.docs-sidebar-close:hover { color: var(--text); background: var(--border); }

/* ── SECTION INTRO ── */
.section-intro { margin-bottom: 40px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 0.95rem; max-width: 540px; }

/* ── COMMUNITY GRID ── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.community-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
}
.community-card--tall { grid-row: span 1; }
.community-card--yellow,
.community-card--purple,
.community-card--blue,
.community-card--green  { background: var(--bg); border-color: var(--border); }

.feature-icon--purple { background: var(--accent-lt); border: 1px solid #ddd6fe; color: var(--accent); }

.community-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-lt);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.community-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.community-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }

/* ── PRODUCT CARDS ── */
.products-list { display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.product-card {
  background: var(--bg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.product-card:last-child { border-bottom: none; }

.product-card-left { display: flex; align-items: center; gap: 16px; min-width: 200px; }
.product-logo-icon {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.product-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--accent-lt);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  overflow: hidden;
}
.product-icon:has(.product-logo-icon) { background: #000; border-color: var(--border); }
.product-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
}
.product-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.product-status {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 99px;
}
.product-status--live { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.product-status--dev  { background: rgba(245,158,11,0.1); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }

.product-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; justify-content: flex-end; }
.product-tags li {
  font-size: 0.72rem; font-weight: 600;
  color: var(--dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 99px;
}

/* ── IMPRESSUM ── */
.impressum-layout { max-width: 680px; display: flex; flex-direction: column; gap: 40px; }
.impressum-block { padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.impressum-block:last-child { border-bottom: none; padding-bottom: 0; }
.impressum-h2 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.impressum-block p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.impressum-link { color: var(--accent); text-decoration: none; font-weight: 500; }
.impressum-link:hover { text-decoration: underline; }

/* ── MARKETPLACE TEASER (landing page) ── */
.mkt-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mkt-teaser-left .section-title { margin-bottom: 14px; }
.mkt-teaser-left .section-sub   { margin-bottom: 24px; }

.mkt-teaser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mkt-teaser-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}
.mkt-teaser-tag--soon {
  background: var(--accent-lt);
  border-color: #ddd6fe;
  color: var(--accent);
}

.mkt-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mkt-teaser-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px -8px rgba(255,255,255,0.12);
}
.mkt-teaser-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mkt-teaser-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.mkt-teaser-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.mkt-teaser-list li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  align-items: flex-start;
}
.mkt-teaser-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .mkt-teaser { grid-template-columns: 1fr; gap: 32px; }
}

/* ── STATS / COUNTER ── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stats-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* ── LOGO CLOUD ── */
.logo-cloud-section {
  padding: 40px 0;
}
.logo-cloud-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-cloud-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.logo-cloud-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.discord-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.logo-cloud-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.logo-cloud-avatar-fallback {
  display: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-cloud-item--add {
  border-style: dashed;
  color: var(--dim);
}
.logo-cloud-item--add:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.logo-cloud-plus {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}

/* ── REFERENZEN ── */
.ref-item { align-items: center; gap: 12px; padding: 10px 16px; }
.ref-item:hover { border-color: var(--accent); color: var(--text); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.ref-favicon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}
.ref-info { display: flex; flex-direction: column; gap: 1px; }
.ref-name { font-size: 0.85rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.ref-url { font-size: 0.72rem; color: var(--dim); font-weight: 400; font-family: 'JetBrains Mono', monospace; }

/* ── UPDATE CARDS (news page) ── */
.update-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.update-card:hover { border-color: var(--border-md); box-shadow: var(--shadow-sm); }
.update-card:last-child { margin-bottom: 0; }
.update-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.update-meta-left { display: flex; align-items: center; gap: 12px; }
.update-meta time { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--muted); }
.update-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; background: var(--accent-lt); color: var(--accent); }
.update-tag--updates { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.update-tag--news    { background: rgba(255,255,255,0.12); color: var(--accent); }
.update-tag--event   { background: rgba(34,197,94,0.1);  color: #16a34a; }
.update-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.update-body { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.update-body code { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; background: var(--surface); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; color: var(--text); }
.update-card--featured { background: linear-gradient(135deg, var(--accent-lt) 0%, #fff 100%); border-color: #ddd6fe; }
.update-card--featured .update-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.update-card--event { border-color: rgba(34,197,94,0.3); background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, var(--surface) 100%); }
.update-section { margin-top: 24px; }
.update-section-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
.update-prize-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.update-prize-list li { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.88rem; }
.prize-rank { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; white-space: nowrap; }
.prize-rank--gold   { background: rgba(234,179,8,0.12);  color: #b45309; border: 1px solid rgba(234,179,8,0.3); }
.prize-rank--silver { background: rgba(148,163,184,0.12); color: #475569; border: 1px solid rgba(148,163,184,0.3); }
.prize-rank--bronze { background: rgba(180,83,9,0.1);    color: #92400e; border: 1px solid rgba(180,83,9,0.2); }
.prize-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.prize-badge { font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 6px; background: var(--accent-lt); color: var(--accent); border: 1px solid #ddd6fe; font-family: 'JetBrains Mono', monospace; }
.update-rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.update-rules li { font-size: 0.88rem; color: var(--muted); padding-left: 16px; position: relative; line-height: 1.6; }
.update-rules li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; }
.news-empty { text-align: center; padding: 64px 0; color: var(--dim); font-size: 0.9rem; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── HERO SMALL (sub-pages) ── */
.hero--small { min-height: unset; padding: 110px 0 56px; }

/* ── DASHBOARD ── */
.dash-login-card {
  max-width: 380px; width: 100%;
  margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.dash-login-card h2 { font-size: 1.3rem; font-weight: 800; margin: 0 0 6px; }
.dash-login-card > p { color: var(--muted); font-size: 0.84rem; margin: 0 0 24px; line-height: 1.5; }
.dash-login-input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  color: #ffffff !important; font-size: 0.88rem;
  outline: none; transition: border-color 0.15s, background 0.15s;
  box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
}
.dash-login-input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
}
.dash-login-input::placeholder { color: rgba(255,255,255,0.4); }
.dash-login-email-btn {
  width: 100%; padding: 13px;
  background: #ffffff !important; color: #000000 !important;
  border: none; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.15s;
  letter-spacing: -0.01em;
  -webkit-appearance: none; appearance: none;
  display: block;
}
.dash-login-email-btn:hover { opacity: 0.88; }
.dash-login-email-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.dash-login-divider {
  display: flex; align-items: center; gap: 10px;
  width: 100%; margin: 20px 0;
  color: rgba(255,255,255,0.25); font-size: 0.75rem;
}
.dash-login-divider::before, .dash-login-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1);
}
.dash-login-note { font-size: 0.78rem; color: var(--dim); margin-top: 20px; }
.dash-login-note code { font-family: 'JetBrains Mono', monospace; background: var(--surface); border: 1px solid var(--border); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }

.dash-profile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; gap: 20px; margin-bottom: 24px; position: relative; box-shadow: var(--shadow-sm); }
.dash-avatar { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.dash-avatar-placeholder { width: 64px; height: 64px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.dash-profile-info h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.dash-id { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--dim); }
.dash-logout { position: absolute; top: 20px; right: 20px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.dash-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); }
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.stat-value { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.stat-value--green { color: #16a34a; }
.stat-value--red   { color: var(--red); }
.stat-value--mono  { font-family: 'JetBrains Mono', monospace; font-size: 1rem; }

.dash-notice { border-radius: var(--radius); padding: 18px 24px; margin-bottom: 24px; font-size: 0.88rem; line-height: 1.6; }
.dash-notice--warn { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: #d97706; }
.dash-notice--info { background: var(--accent-lt); border: 1px solid #ddd6fe; color: var(--accent); }
.dash-notice code { font-family: 'JetBrains Mono', monospace; background: rgba(255,255,255,0.15); padding: 2px 8px; border-radius: 4px; font-size: 0.95em; }

/* ── CONNECTIONS SECTION ── */
.dash-connections { margin-top: 32px; }
.dash-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.dash-conn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── PRODUCT CONNECTION CARD ── */
.dash-fw-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.dash-fw-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.dash-fw-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: #000;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  overflow: hidden;
}
.dash-fw-header-info strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.dash-fw-header-info span { font-size: 0.78rem; color: var(--muted); }

.dash-fw-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.dash-fw-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.dash-fw-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dash-fw-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px; }
.dash-fw-tag { font-size: 0.78rem; font-family: 'JetBrains Mono', monospace; color: var(--dim); }
.dash-fw-badge {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 99px;
}
.dash-fw-badge--connected { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.dash-fw-badge--waiting   { background: rgba(245,158,11,0.1); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }

.dash-fw-fields {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.dash-fw-field {
  padding: 18px 24px;
  border-right: 1px solid var(--border);
}
.dash-fw-field:last-child { border-right: none; }
.dash-fw-field-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.dash-fw-field-value { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }

.dash-fw-callout {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-size: 0.82rem; color: var(--muted); line-height: 1.6;
}
.dash-fw-callout svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.dash-fw-empty {
  padding: 40px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.dash-fw-empty-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--accent);
  margin-bottom: 4px;
}
.dash-fw-empty strong { font-size: 0.95rem; font-weight: 700; }
.dash-fw-empty p { font-size: 0.85rem; color: var(--muted); max-width: 340px; line-height: 1.65; }
.dash-fw-empty code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: var(--surface); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; color: var(--accent); }

/* ── DASHBOARD: PROJEKT-STATUS ── */
.dash-projekt { margin-bottom: 32px; }
.dash-projekt-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.dash-projekt-empty-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  margin-bottom: 16px;
}
.dash-projekt-empty-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.dash-projekt-empty-sub { font-size: 0.875rem; color: var(--muted); max-width: 440px; line-height: 1.65; margin-bottom: 16px; }
.dash-projekt-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 28px;
}
.dash-projekt-name { font-size: 1rem; font-weight: 700; margin-right: 10px; }
.dash-projekt-paket {
  font-size: 0.72rem; font-weight: 700;
  padding: 2px 10px; border-radius: 99px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--accent);
}
.dash-projekt-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 20px;
}
.dash-pstep {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 0 0 auto;
}
.dash-pstep span { font-size: 0.78rem; font-weight: 600; color: var(--dim); white-space: nowrap; }
.dash-pstep-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--border-md); border: 2px solid var(--border-md);
  transition: background 0.2s, border-color 0.2s;
}
.dash-pstep--done .dash-pstep-dot { background: var(--accent); border-color: var(--accent); }
.dash-pstep--done span { color: var(--accent); }
.dash-pstep--active .dash-pstep-dot { background: var(--bg); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
.dash-pstep--active span { color: var(--text); font-weight: 700; }
.dash-pstep-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px; margin-bottom: 22px; min-width: 32px; }
.dash-projekt-note { font-size: 0.82rem; color: var(--muted); }

/* ── DASHBOARD: ANFRAGE ── */
.dash-anfrage-section { margin-bottom: 32px; }
.dash-anfrage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.dash-anfrage-paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.dash-paket-option { cursor: pointer; }
.dash-paket-option input { display: none; }
.dash-paket-option-inner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s;
}
.dash-paket-option.selected .dash-paket-option-inner {
  border-color: var(--accent);
  background: rgba(255,255,255,0.04);
}
.dash-paket-option-name { font-size: 0.9rem; font-weight: 700; }
.dash-paket-option-price { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.dash-paket-option-desc { font-size: 0.75rem; color: var(--muted); }
.dash-anfrage-field { margin-bottom: 16px; }
.dash-anfrage-field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text);
}
.dash-anfrage-optional { font-weight: 400; color: var(--dim); }
.dash-anfrage-field textarea,
.dash-anfrage-field input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.15s;
  outline: none;
}
.dash-anfrage-field textarea:focus,
.dash-anfrage-field input[type="text"]:focus { border-color: var(--accent); }
.dash-anfrage-success {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  margin-bottom: 20px;
}
.dash-anfrage-success strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.dash-anfrage-success p { font-size: 0.845rem; color: var(--muted); }
.dash-anfrage-success svg { flex-shrink: 0; margin-top: 2px; }

/* ── DASHBOARD: DOKUMENTE ── */
.dash-dokumente { margin-bottom: 32px; }
.dash-dok-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.dash-dok-empty {
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
}
.dash-dok-empty-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  margin-bottom: 8px;
}
.dash-dok-empty p { font-size: 0.875rem; color: var(--muted); max-width: 320px; }
.dash-dok-empty p strong { display: block; color: var(--text); margin-bottom: 4px; }
.dash-dok-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.dash-dok-row:last-child { border-bottom: none; }
.dash-dok-icon { color: var(--accent); flex-shrink: 0; }
.dash-dok-info { flex: 1; }
.dash-dok-name { font-size: 0.875rem; font-weight: 600; }
.dash-dok-meta { font-size: 0.75rem; color: var(--dim); }

/* ── ERROR PAGE ── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
  color: #f5f5f5;
}
.error-page::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .03;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.error-glow {
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(40px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  animation: errorGlow 5s ease infinite;
}
@keyframes errorGlow {
  0%,100%{ opacity:.7; transform:translate(-50%,-50%) scale(1); }
  50%{ opacity:1; transform:translate(-50%,-50%) scale(1.08); }
}
.error-card {
  position: relative; z-index: 2;
  width: min(720px,92%);
  background: #171717;
  border: 1px solid #262626;
  border-radius: 24px;
  padding: 56px;
  overflow: hidden;
}
.error-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: var(--accent);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.error-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 2s ease infinite; }
.error-code { font-size: clamp(5rem,12vw,8rem); line-height: .9; font-weight: 900; letter-spacing: -0.08em; margin-bottom: 16px; }
.error-title { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.error-text { max-width: 540px; color: #737373; line-height: 1.8; font-size: .95rem; }
.error-progress { width: 100%; height: 12px; margin-top: 32px; border-radius: 999px; overflow: hidden; background: #121212; border: 1px solid #262626; }
.error-progress-bar { width: 68%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #ffffff); animation: loading 3s ease infinite; }
@keyframes loading { 0%{width:58%} 50%{width:74%} 100%{width:58%} }
.error-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.error-terminal { margin-top: 32px; padding: 16px 18px; border-radius: 12px; background: #121212; border: 1px solid #262626; font-family: 'JetBrains Mono', monospace; font-size: .82rem; color: #525252; overflow: auto; }

/* ── VEX0 SECTION ── */
.vex0-section {
  border-top: 1px solid var(--border);
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  overflow: hidden;
}
.vex0-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vex0-split > * { min-width: 0; }
.code-block {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: #111;
}
.code-block-filename {
  font-size: 0.74rem;
  color: var(--dim);
  font-family: 'JetBrains Mono', 'Fira Code', 'Menlo', monospace;
}
.code-block-dots {
  display: flex;
  gap: 6px;
}
.code-block-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-md);
}
.code-block pre {
  padding: 22px 20px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Fira Code', 'Menlo', monospace;
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 860px) {
  .vex0-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .vex0-split > * { width: 100%; max-width: 100%; overflow: hidden; }
  .code-block pre { font-size: 0.72rem; }
}

/* ── VYLDER CARD ── */
.vylder-card-wrap {
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}
.vylder-card {
  width: 100%;
  max-width: 780px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 20px 24px;
}
.vylder-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vylder-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 3px 8px;
}
.vylder-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.vylder-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.vylder-notify {
  display: inline-flex;
  align-self: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
  flex-shrink: 0;
}
.vylder-notify:hover { color: #ffffff; }
@media (max-width: 640px) {
  .vylder-card-wrap { padding: 20px 16px; }
  .vylder-card { flex-direction: column; align-items: flex-start; padding: 16px 18px; gap: 12px; }
  .vylder-desc { min-width: 0; flex: unset; }
  .vylder-notify { align-self: flex-start; }
}

/* ── DASHBOARD SECTION ── */
.dashboard-section {
  border-top: 1px solid var(--border);
}
.dashboard-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dashboard-split > * { min-width: 0; }
.dashboard-text { display: flex; flex-direction: column; align-items: flex-start; }

/* Mockup */
.dmock {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  width: 100%;
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.7);
}
.dmock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid var(--border);
}
.dmock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dmock-url {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
}
.dmock-body {
  display: flex;
  height: 260px;
}
.dmock-sidebar {
  width: 120px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dmock-nav {
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  cursor: default;
}
.dmock-nav--active {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.dmock-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.dmock-welcome {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.dmock-stats {
  display: flex;
  gap: 10px;
}
.dmock-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dmock-stat-val { font-size: 1.1rem; font-weight: 800; color: #fff; }
.dmock-stat-label { font-size: 0.65rem; color: var(--dim); }
.dmock-list { display: flex; flex-direction: column; gap: 6px; }
.dmock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 7px;
}
.dmock-row-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dmock-row-name { flex: 1; font-size: 0.74rem; color: rgba(255,255,255,0.7); }
.dmock-row-status { font-size: 0.65rem; color: var(--dim); }

@media (max-width: 860px) {
  .dashboard-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .dmock-sidebar { width: 90px; }
  .dmock-nav { font-size: 0.65rem; padding: 6px 8px; }
  .dmock-body { height: 220px; }
}

/* ── PAKETE ── */
.paket-individuell-wrap {
  margin-bottom: 20px;
}
.paket-card--wide {
  max-width: 680px;
  margin: 0 auto;
}
.paket-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
@media (max-width: 540px) {
  .paket-list--two-col { grid-template-columns: 1fr; }
}
.paket-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.paket-card--highlight {
  border-color: rgba(255,255,255,0.3);
}
.paket-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.paket-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}
.paket-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.paket-tagline {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.5;
}
.paket-price {
  text-align: right;
  flex-shrink: 0;
}
.paket-price-from {
  display: block;
  font-size: 0.72rem;
  color: var(--dim);
  font-weight: 500;
  margin-bottom: 2px;
}
.paket-price-value {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.paket-price-tax {
  display: block;
  font-size: 0.7rem;
  color: var(--dim);
  font-weight: 500;
  text-align: right;
  margin-top: 2px;
}
.paket-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.paket-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.paket-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}
.paket-check {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  width: 16px;
}
.paket-check--accent { color: var(--accent); }
.paket-check--dim { color: var(--dim); }
.pakete-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.pakete-note a { color: var(--accent); text-decoration: none; font-weight: 500; }
.pakete-note a:hover { text-decoration: underline; }

/* ── ADD-ONS ── */
.addons-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.15s;
}
.addon-item:last-child { border-bottom: none; }
.addon-item:hover { background: var(--surface); }
.addon-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.addon-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.addon-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.addon-desc {
  font-size: 0.82rem;
  color: var(--muted);
}
.addon-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover { border-color: var(--border-md); box-shadow: var(--shadow-md); }
.portfolio-card--soon {
  background: var(--surface);
  min-height: 240px;
}
.portfolio-soon-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
}
.portfolio-soon-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px dashed var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
}
.portfolio-soon-inner p { font-size: 0.9rem; color: var(--muted); }

.portfolio-browser {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.portfolio-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.portfolio-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-md);
  flex-shrink: 0;
}
.portfolio-url {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--dim);
  margin-left: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 10px;
}
.portfolio-preview-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-preview-nav {
  height: 18px;
  border-radius: 4px;
  background: var(--border);
  width: 70%;
}
.portfolio-preview-hero {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.portfolio-preview-line {
  height: 10px;
  border-radius: 3px;
  background: var(--border-md);
  width: 55%;
}
.portfolio-preview-line--lg { width: 80%; height: 14px; background: var(--border); }
.portfolio-preview-btn {
  height: 22px;
  width: 80px;
  border-radius: 6px;
  background: rgba(255,255,255,0.25);
  margin-top: 4px;
}
.portfolio-preview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.portfolio-preview-card {
  height: 40px;
  border-radius: 6px;
  background: var(--border);
}

.portfolio-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.portfolio-card-meta h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.portfolio-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.portfolio-card-info p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.portfolio-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── PROZESS ── */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.prozess-step {
  background: transparent;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prozess-step:last-child { border-right: none; }
.prozess-step-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.prozess-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.prozess-step p {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.prozess-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}
.prozess-step-note {
  font-size: 0.75rem;
  color: var(--dim);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

/* ── RESPONSIVE ── */

/* Tablet (641px – 900px) */
@media (max-width: 900px) {
  /* docs: sidebar becomes a slide-in drawer */
  .docs-sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 150;
    box-shadow: none;
  }
  .docs-sidebar.docs-sidebar--open {
    transform: translateX(0);
    box-shadow: 8px 0 32px rgba(0,0,0,0.12);
  }
  .docs-main { margin-left: 0; }
  .docs-content { padding: 32px 24px 60px; }
  .docs-cards-row { grid-template-columns: repeat(2,1fr); }
  .docs-api-row { grid-template-columns: 1fr 1fr; }
  .docs-api-row > *:last-child { display: none; }
  .docs-mobile-toggle { display: inline-flex; }
  .docs-header-search { display: none; }
  .docs-sidebar-close { display: block; }

  /* stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item:nth-child(1),
  .stats-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* main grids */
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-step:nth-child(2n) { border-right: none; }
  .prozess-step:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border); }
  .product-card {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 24px;
  }
  .product-card-left { grid-column: 1; }
  .product-desc { grid-column: 1 / -1; }
  .product-tags { justify-content: flex-start; grid-column: 1 / -1; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .nav-desktop-links { display: none !important; }

  /* navbar — flat full-width bar on mobile, like Framer */
  .navbar {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    pointer-events: all;
  }
  .nav-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    height: 60px;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0.92);
    gap: 0;
  }
  .nav-logo { margin-right: auto; }
  .nav-links { display: none; }
  .nav-end { gap: 10px; margin-left: 0; }
  .nav-toggle { display: flex; }
  .nav-login-link { font-size: 0.82rem; padding: 6px 8px; }
  .nav-cta { font-size: 0.78rem; padding: 7px 12px; }

  /* hero */
  .above-fold-wrapper { min-height: calc(100dvh - 80px); }
  .hero { min-height: 0; padding: 80px 0 48px; align-items: flex-start; justify-content: flex-start; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .scroll-indicator { display: none; }
  .hero-label { font-size: 0.65rem; padding: 5px 10px; gap: 7px; }
  .hero h1 { font-size: clamp(1.5rem, 6.5vw, 2.2rem); letter-spacing: -0.03em; word-break: break-word; overflow-wrap: break-word; }
  .hero-sub { font-size: 1rem; text-align: center; }
  .hero-text { text-align: center; align-items: center; }
  .hero-ctas { justify-content: center; }

  /* early access form */
  .ea-form { flex-direction: column; max-width: 100%; }
  .ea-input { min-width: 0; width: 100%; }
  .ea-btn { width: 100%; }
  .cta-divider { max-width: 100%; }

  /* sections */
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* grids */
  .features-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .pakete-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: 1fr; }
  .prozess-step { border-right: none; border-bottom: 1px solid var(--border); }
  .prozess-step:last-child { border-bottom: none; }

  /* product cards: single-column stack */
  .product-card { grid-template-columns: 1fr; padding: 20px; gap: 14px; }
  .product-card-left { min-width: unset; }
  .product-card > .btn-primary,
  .product-card > .btn-ghost { align-self: flex-start; }

  /* faq */
  .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item p { padding: 0 18px 16px; }

  /* stats mobile */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stats-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* logo cloud */
  .logo-cloud-item { padding: 8px 12px; font-size: 0.8rem; }

  /* news */
  .update-card { padding: 20px 18px; }
  .update-meta { flex-wrap: wrap; gap: 8px; }
  .update-meta .powered { display: none; }
  .update-title { font-size: 1.2rem; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* docs mobile */
  .docs-content { padding: 24px 16px 60px; }
  .docs-header-inner { padding: 0 16px; gap: 10px; }
  .docs-cards-row { grid-template-columns: 1fr; }
  .docs-h2 { padding-top: 24px; }

  /* dashboard */
  .dash-stats { grid-template-columns: 1fr; }
  .dash-profile { flex-direction: column; }
  .dash-logout { top: 16px; right: 16px; }
  .dash-conn-grid { grid-template-columns: 1fr; }
  .dash-fw-fields { grid-template-columns: 1fr 1fr; }
  .dash-fw-field:nth-child(2) { border-right: none; }
  .dash-fw-field:nth-child(3) { border-top: 1px solid var(--border); grid-column: 1 / -1; border-right: none; }
  .dash-fw-profile { flex-wrap: wrap; }
  .dash-fw-header { flex-wrap: wrap; }

  /* error page */
  .error-card { padding: 32px 20px; }
  .error-actions { flex-direction: column; }
  .error-actions .btn-primary,
  .error-actions .btn-ghost { width: 100%; justify-content: center; }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .hero-label { font-size: 0.6rem; }
  .product-icon { width: 40px; height: 40px; font-size: 1rem; }
  .docs-mobile-toggle span { display: none; }
}

/* ── MARKETPLACE ── */
.mkt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.mkt-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mkt-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px -8px rgba(255,255,255,0.12); }

.mkt-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mkt-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-lt);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.mkt-badge {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
  background: rgba(34,197,94,0.1); color: #16a34a;
  border: 1px solid rgba(34,197,94,0.2);
}
.mkt-badge--unavail {
  background: rgba(113,113,122,0.1); color: var(--dim);
  border-color: rgba(113,113,122,0.2);
}

.mkt-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.mkt-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.mkt-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.mkt-features-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.mkt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mkt-features li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  align-items: flex-start;
}
.mkt-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mkt-price { display: flex; flex-direction: column; gap: 2px; }
.mkt-price-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }
.mkt-price-value { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; color: var(--text); }

.mkt-soon {
  background: var(--surface);
  border: 1px dashed var(--border-md);
  border-radius: 20px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.mkt-soon-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  margin-bottom: 4px;
}
.mkt-soon strong { font-size: 1rem; font-weight: 700; }
.mkt-soon p { font-size: 0.875rem; color: var(--muted); max-width: 260px; line-height: 1.65; }

@media (max-width: 860px) {
  .mkt-grid { grid-template-columns: 1fr; }
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.theme-toggle:hover { border-color: var(--border-md); color: var(--text); background: var(--surface); }
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* ── HERO ── */
.hero { position: relative; }


/* ── DESIGN STUDIO ── */
.design-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}
.design-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
}
.design-card:last-child {
  border-right: none;
}
.design-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.design-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.design-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.design-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  align-self: flex-start;
}
@media (max-width: 900px) {
  .design-services-grid { grid-template-columns: repeat(2, 1fr); }
  .design-card:nth-child(2n) { border-right: none; }
  .design-card:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .design-services-grid { grid-template-columns: 1fr; }
  .design-card { border-right: none; border-bottom: 1px solid var(--border); }
  .design-card:last-child { border-bottom: none; }
}

/* ── COMMUNITY PAGE ── */
.comm-hero { padding: 100px 0 64px; text-align: center; border-bottom: 1px solid var(--border); }
.comm-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px; }
.comm-hero p { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }
.comm-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.comm-section:last-of-type { border-bottom: none; }
.comm-section-label { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.comm-section-title { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.comm-section-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 540px; margin-bottom: 32px; }
.discord-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; align-items: center; gap: 32px; max-width: 680px; }
.discord-card-icon { width: 64px; height: 64px; border-radius: 16px; background: #5865f2; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.discord-card-icon svg { width: 36px; height: 36px; fill: #fff; }
.discord-card-body { flex: 1; }
.discord-card-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.discord-card-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.discord-card-stats { display: flex; gap: 20px; margin-bottom: 20px; }
.discord-stat { display: flex; flex-direction: column; gap: 2px; }
.discord-stat-val { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; }
.discord-stat-label { font-size: 0.72rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
.discord-stat-online .discord-stat-val { color: #22c55e; }
@media (max-width: 560px) { .discord-card { flex-direction: column; align-items: flex-start; gap: 20px; } }
.mc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; max-width: 680px; }
.mc-card-header { background: #1a1a1a; padding: 20px 28px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mc-card-icon { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%); display: flex; align-items: center; justify-content: center; }
.mc-card-icon svg { width: 26px; height: 26px; fill: #fff; }
.mc-card-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.mc-card-version { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-family: 'JetBrains Mono', monospace; }
.mc-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; margin-left: auto; flex-shrink: 0; }
.mc-card-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.mc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mc-info-item { display: flex; flex-direction: column; gap: 3px; }
.mc-info-label { font-size: 0.7rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; }
.mc-info-val { font-size: 0.9rem; font-weight: 600; font-family: 'JetBrains Mono', monospace; }
.mc-ip-row { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mc-ip-label { font-size: 0.72rem; color: var(--dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.mc-ip-val { font-family: 'JetBrains Mono', monospace; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.mc-copy-btn { background: none; border: 1px solid var(--border); border-radius: 7px; padding: 6px 12px; font-size: 0.78rem; font-weight: 600; color: var(--muted); cursor: pointer; white-space: nowrap; transition: border-color 0.15s, color 0.15s; flex-shrink: 0; }
.mc-copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.mc-copy-btn.copied { border-color: #22c55e; color: #22c55e; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 99px; background: var(--bg); border: 1px solid var(--border); font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.mc-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@media (max-width: 480px) { .mc-info-grid { grid-template-columns: 1fr; } }

/* ── IMPRESSUM PAGE ── */
.impressum-layout { max-width: 720px; display: flex; flex-direction: column; gap: 48px; }
.impressum-block h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.impressum-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }
.impressum-link { color: var(--accent); text-decoration: none; font-weight: 500; }
.impressum-link:hover { text-decoration: underline; }
