/* ============================================================
   style.css — Pixel River Studio Homepage
   CI v1.0.0 — Syne + JetBrains Mono — Dark Only
   ============================================================ */

/* CUSTOM PROPERTIES */
:root {
  --bg:         #0b1016;
  --surface:    #11181f;
  --surface-2:  #18212b;
  --surface-3:  #222d39;
  --border:     #243140;
  --border-lit: #354759;

  --blue:       #3b96ff;
  --green:      #10d972;
  --purple:     #a78bfa;
  --orange:     #f59e0b;
  --red:        #f87171;
  --cyan:       #22d3ee;

  --text:       #e2e8f0;
  --text-2:     #94a3b8;
  --text-3:     #475569;

  --blue-dim:   rgba(59,150,255,0.10);
  --green-dim:  rgba(16,217,114,0.12);
  --purple-dim: rgba(167,139,250,0.10);
  --orange-dim: rgba(245,158,11,0.10);
  --cyan-dim:   rgba(34,211,238,0.10);

  --font-body:  'Syne', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;
  --max-w:      860px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Ambient depth — turns the flat-black canvas into layered space */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(62% 42% at 50% -6%, rgba(59,150,255,0.12), transparent 70%),
    radial-gradient(46% 36% at 102% 6%, rgba(34,211,238,0.07), transparent 70%),
    radial-gradient(42% 32% at -4% 26%, rgba(167,139,250,0.06), transparent 72%);
  animation: ambientDrift 42s ease-in-out infinite;
}
/* the glow field breathes very slowly — barely conscious, keeps the canvas alive */
@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 1; }
  50%      { transform: translate3d(0,-2.5%,0) scale(1.04); opacity: 0.82; }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── DETAIL POLISH (selection · focus · scrollbar) ── */
::selection { background: rgba(59,150,255,0.28); color: var(--text); }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}
html { scrollbar-color: var(--surface-3) var(--bg); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--border-lit); }

/* ── SCROLL PROGRESS (blue→cyan hairline above the header) ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 300;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9,13,18,0.92);
  backdrop-filter: blur(12px);
}
nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
}
.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.logo-text em {
  font-style: normal;
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  position: relative;
  font-size: 0.8rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
/* animated underline — slides in from the left, CI blue→cyan */
.nav-links a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1);
}
.nav-links a:not(.btn-cta):hover::after,
.nav-links a:not(.btn-cta):focus-visible::after { transform: scaleX(1); }
.btn-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 3.5rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(16,217,114,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.75rem;
}
.dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero h1 .ghost {
  color: rgba(59,150,255,0.35);
  -webkit-text-stroke: 0px transparent;
}
.hero h1 .accent {
  color: var(--blue); /* fallback */
  background: linear-gradient(92deg, var(--blue) 15%, var(--cyan) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59,150,255,0.3);
}
/* sheen sweep on hover — same motif as the device mockups */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-outline {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border-lit);
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--text);
}

/* ── HERO ENTRANCE (staggered rise, JS-gated → no-JS shows everything) ── */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.js .hero-copy > * {
  opacity: 0;
  animation: heroRise 0.65s cubic-bezier(.22,.61,.36,1) forwards;
}
.js .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.js .hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.js .hero-copy > *:nth-child(3) { animation-delay: 0.26s; }
.js .hero-copy > *:nth-child(4) { animation-delay: 0.38s; }
.js .hero-copy > *:nth-child(5) { animation-delay: 0.50s; }
.js .hero-visual {
  opacity: 0;
  animation: heroRise 0.8s cubic-bezier(.22,.61,.36,1) 0.4s forwards;
}

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.65rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-inner {
  display: flex;
  gap: 2.5rem;
  animation: tick 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tick-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tick-item b {
  color: rgba(59,150,255,0.35);
  margin-right: 0.4rem;
  font-weight: 400;
}

/* ── GENERIC SECTION ── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  flex-shrink: 0;
}
.section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
/* large section opener headline (e.g. above "Was wir bauen") */
.section h2.section-lead {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* ── USP GRID (energized cards) ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.85rem;
  margin-bottom: 4rem;
}
/* 4-up variant for the "Wo wir helfen" grid — auto-fit so it wraps 4→2→1 */
.section .usp-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.usp-item {
  --accent: var(--blue);
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1),
              border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
/* big faint watermark number */
.usp-item::after {
  content: attr(data-wm);
  position: absolute;
  right: -4px;
  bottom: -20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
/* accent corner bracket */
.usp-item::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  opacity: 0.3;
  transition: opacity 0.28s ease;
}
.usp-item:hover {
  transform: translateY(-5px);
  background: var(--surface-2);
  border-color: var(--border-lit);
  border-left-color: var(--accent);
  box-shadow: 0 18px 42px rgba(0,0,0,0.5);
}
.usp-item:hover::after  { opacity: 0.15; transform: translateY(-4px); }
.usp-item:hover::before { opacity: 0.95; }
/* accent-tinted hover glow — each card glows in its own CI accent */
@supports (color: color-mix(in srgb, red 10%, transparent)) {
  .usp-item:hover,
  .price-card:hover {
    box-shadow: 0 18px 42px rgba(0,0,0,0.5),
                0 0 30px color-mix(in srgb, var(--accent) 13%, transparent);
  }
}
.usp-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
}
.usp-title, .usp-desc { position: relative; z-index: 1; }
.usp-gain {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--green);
}
.usp-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.usp-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── CONTENT BOT TEASER ── */
.bot-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}
.bot-pricing {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.9rem 0;
}
.price-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  border: 1px solid var(--border-lit);
  color: var(--text-2);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
}
.price-pill.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.bot-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 1.25rem;
  font-family: var(--font-mono);
}
.mockup-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  font-size: 0.7rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 11px;
  background: var(--blue);
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.mock-out {
  padding: 0.75rem;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.mock-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.mock-label.blog  { color: rgba(59,150,255,0.6); }
.mock-label.insta { color: rgba(34,211,238,0.6); }
.mock-text {
  font-size: 0.7rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── CASES ── */
.cases {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}
.case {
  background: var(--surface);
  padding: 1.5rem;
  border-left: 3px solid transparent;
}
.case.live   { border-left-color: var(--green); }
.case.wip    { border-left-color: var(--blue); }
.case.next   { border-left-color: var(--purple); }

.case-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.85rem;
}
.tag-live   { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(16,217,114,0.2); }
.tag-wip    { background: var(--blue-dim);   color: var(--blue);   border: 1px solid rgba(59,150,255,0.2); }
.tag-next   { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(167,139,250,0.2); }

.case-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.case-desc {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.case-stack { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tag-tech {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 0.12rem 0.45rem;
}

/* ── PREISE (energized cards) ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.price-card {
  --accent: var(--blue);
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1),
              border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  background: var(--surface-2);
  border-color: var(--border-lit);
  border-top-color: var(--accent);
  box-shadow: 0 18px 42px rgba(0,0,0,0.5);
}
.price-card.highlight {
  background: var(--surface-2);
  border-top-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(59,150,255,0.18), 0 14px 36px rgba(0,0,0,0.4);
  animation: highlightBreath 6s ease-in-out infinite;
}
/* the recommended tier breathes gently — draws the eye without shouting */
@keyframes highlightBreath {
  0%, 100% { box-shadow: 0 0 0 1px rgba(59,150,255,0.18), 0 14px 36px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 0 1px rgba(59,150,255,0.36), 0 14px 40px rgba(0,0,0,0.45),
                         0 0 26px rgba(59,150,255,0.12); }
}
.price-card.highlight::after {
  content: 'Beliebt';
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(59,150,255,0.3);
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
}
.price-name  { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.45rem; }
.price-desc  { font-size: 0.72rem; color: var(--text-2); line-height: 1.6; margin-bottom: 0.85rem; }
.price-val   { font-family: var(--font-mono); font-size: 0.95rem; color: var(--blue); font-weight: 600; }
.price-note  { font-family: var(--font-mono); font-size: 0.58rem; color: var(--text-3); display: block; margin-top: 0.2rem; }

/* ── CTA STRIP (animated CI gradient ring: blue→cyan→purple) ── */
@property --cta-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.cta-strip {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--cta-angle),
      rgba(59,150,255,0.55), rgba(34,211,238,0.30),
      var(--purple), rgba(59,150,255,0.55)) border-box;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  animation: ctaBorder 9s linear infinite;
}
/* browsers without @property keep a static gradient ring — still on-brand */
@keyframes ctaBorder { to { --cta-angle: 360deg; } }
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% -10%, rgba(59,150,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.cta-strip p  { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1.5rem; }

/* ── GAMING STRIP ── */
.gaming-bar {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gaming-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(34,211,238,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.gaming-title { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.gaming-desc  { font-size: 0.75rem; color: var(--text-2); margin-top: 0.25rem; }
.btn-gaming {
  flex-shrink: 0;
  border: 1px solid rgba(34,211,238,0.2);
  color: var(--cyan);
  padding: 0.55rem 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.btn-gaming:hover {
  background: rgba(34,211,238,0.05);
  border-color: rgba(34,211,238,0.4);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.foot-copy  { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-3); }
.foot-links { display: flex; gap: 1.4rem; }
.foot-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--text-2); }

/* ── GENERIC PAGES (Impressum, Datenschutz, Gaming, Post) ── */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.page-back {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 2rem;
}
.page-back:hover { color: var(--text-2); }
.page-h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.prose {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.8;
}
.prose h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.5rem;
}
.prose p  { margin-bottom: 1rem; }
.prose a  { color: var(--blue); }
.prose a:hover { text-decoration: underline; }
.prose ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.3rem; }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.78em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--cyan);
}
.prose .footnote {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* ── DEVLOG POST ── */
.prose-devlog {
  color: var(--text-2);
  line-height: 1.8;
  max-width: 68ch;
  font-size: 0.9rem;
}
.prose-devlog h1,
.prose-devlog h2,
.prose-devlog h3 { color: var(--text); font-weight: 700; margin: 1.75rem 0 .5rem; font-family: var(--font-body); }
.prose-devlog h1 { font-size: 1.5rem; }
.prose-devlog h2 { font-size: 1.15rem; }
.prose-devlog h3 { font-size: 1rem; }
.prose-devlog p  { margin-bottom: 1rem; }
.prose-devlog a  { color: var(--blue); }
.prose-devlog a:hover { text-decoration: underline; }
.prose-devlog code {
  font-family: var(--font-mono);
  font-size: .8em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 5px;
  color: var(--cyan);
}
.prose-devlog pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.25rem 0;
}
.prose-devlog pre code { background: transparent; border: none; padding: 0; font-size: .82rem; color: var(--text); }
.prose-devlog ul,
.prose-devlog ol   { padding-left: 1.4rem; margin-bottom: 1rem; list-style: disc; }
.prose-devlog li   { margin-bottom: .35rem; }
.prose-devlog hr   { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.prose-devlog blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 1rem;
  color: var(--text-3);
  font-style: italic;
  margin: 1.25rem 0;
}
.prose-devlog img  { max-width: 100%; border-radius: 6px; margin: 1.25rem 0; }

/* ── DEVLOG HUB ── */
.devlog-post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s,
              transform 0.28s cubic-bezier(.22,.61,.36,1), box-shadow 0.28s ease;
}
.devlog-post:hover {
  border-left-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.devlog-post time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
}
.devlog-post h3   { font-size: 0.95rem; font-weight: 700; margin: 0.25rem 0 0.3rem; }
.devlog-post h3 a { transition: color 0.2s; }
.devlog-post h3 a:hover { color: var(--blue); }
.devlog-post p    { font-size: 0.78rem; color: var(--text-2); line-height: 1.6; }

/* ── COMMENTS ── */
.comments-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  border-top: 1px solid var(--border);
}
.comments-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}

/* ── LOKAL CONTENT BOT PAGE ── */
.lcb-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.lcb-input-wrap { display: flex; gap: 0.75rem; }
.lcb-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.lcb-input::placeholder { color: var(--text-3); }
.lcb-input:focus { border-color: var(--blue); }
.lcb-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.lcb-btn:hover   { opacity: 0.88; }
.lcb-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.lcb-error {
  background: var(--orange-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--orange);
  display: none;
}
.lcb-loading {
  display: none;
  padding: 2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-3);
}
.lcb-output { display: none; }
.lcb-out-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.lcb-out-box.blog  { border-left: 3px solid var(--blue); }
.lcb-out-box.insta { border-left: 3px solid var(--cyan); }
.lcb-out-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.lcb-out-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lcb-out-box.blog  .lcb-out-label { color: rgba(59,150,255,0.6); }
.lcb-out-box.insta .lcb-out-label { color: rgba(34,211,238,0.6); }
.lcb-copy-btn {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  background: none;
  border: 1px solid var(--border);
  padding: 0.15rem 0.55rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lcb-copy-btn:hover { color: var(--text-2); border-color: var(--border-lit); }
.lcb-out-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.75;
  white-space: pre-wrap;
}

/* ── SPINNER ── */
.spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(59,150,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to{transform:rotate(360deg)} }

/* ── DEVICE MOCKUP MOTION (Ambient Glow · Float · Hover-Tilt) ── */
.device-stage {
  position: relative;
  perspective: 1100px;
  animation: stageFloat 7s ease-in-out infinite;
  will-change: transform;
}
.bot-section:nth-child(even) .device-stage { animation-delay: -3.5s; }
.stage-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
    rgba(59,150,255,0.28) 0%,
    rgba(34,211,238,0.10) 38%,
    transparent 72%);
  filter: blur(34px);
  z-index: 0;
  pointer-events: none;
  animation: stagePulse 7s ease-in-out infinite;
}
.device-float {
  position: relative;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), box-shadow 0.45s ease;
}
.device-stage:hover .device-float {
  transform: rotateX(3deg) rotateY(-3deg) translateY(-5px) scale(1.018);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(59,150,255,0.25);
}
@keyframes stageFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@keyframes stagePulse {
  0%,100% { opacity: 0.65; transform: translate(-50%,-50%) scale(0.96); }
  50%     { opacity: 1;    transform: translate(-50%,-50%) scale(1.04); }
}

/* ── SCROLL REVEAL (only when JS is active → graceful no-JS fallback) ── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* stagger variant: the container stays put, its children cascade in.
   Uses a keyframe with backwards-fill (not a transition) so the cards'
   own hover transforms keep working after the reveal. */
.js [data-reveal="stagger"] {
  opacity: 1;
  transform: none;
  transition: none;
}
.js [data-reveal="stagger"]:not(.is-visible) > * { opacity: 0; }
.js [data-reveal="stagger"].is-visible > * {
  animation: riseIn 0.6s cubic-bezier(.22,.61,.36,1) backwards;
}
.js [data-reveal="stagger"].is-visible > *:nth-child(2) { animation-delay: 0.08s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
}

/* ── HERO SPLIT + KEY-VISUAL (Automations-Pipeline) ── */
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: center;
}
.hero-split .hero-tag { margin-bottom: 1.5rem; }
.hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.hv-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 86%; height: 82%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
    rgba(59,150,255,0.26) 0%, rgba(34,211,238,0.08) 40%, transparent 72%);
  filter: blur(42px);
  animation: stagePulse 7s ease-in-out infinite;
  pointer-events: none;
}
.hv-compare {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hv-lane {
  background: linear-gradient(158deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
}
.hv-lane--now { opacity: 0.7; border-style: dashed; }
.hv-lane--auto {
  border: 1px solid var(--border-lit);
  border-left: 3px solid var(--blue);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  animation: stageFloat 7s ease-in-out infinite;
}
.hv-lane-tag {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 8px;
}
.hv-lane-tag--accent { color: var(--blue); }
.hv-steps { display: flex; flex-wrap: wrap; gap: 5px; }
.hv-step {
  font-size: 0.6rem;
  color: var(--text-2);
  background: rgba(148,163,184,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 7px;
}
.hv-flow-mini { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
.hv-pill {
  font-size: 0.6rem;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(59,150,255,0.25);
  border-radius: 4px;
  padding: 3px 7px;
}
.hv-arrow { color: rgba(59,150,255,0.5); font-size: 0.6rem; }
.hv-metric {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.02em;
}
.hv-metric--slow { color: var(--text-3); }
.hv-metric--fast { color: var(--blue); }
.hv-vs {
  align-self: center;
  font-size: 0.8rem;
  line-height: 1;
  color: rgba(59,150,255,0.55);
}
.hv-payoff {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  line-height: 1.45;
  color: var(--text-2);
  border-left: 2px solid var(--green);
  padding-left: 9px;
}
.hv-payoff-plus { color: var(--green); font-weight: 600; }

/* ── HERO CINEMA (erzaehlter 12s-Loop: Zeitverlust vs. Zeitgewinn) ──
   Alle Animationen teilen einen 12s-Master-Takt; die Fenster liegen in den
   Keyframe-Prozenten (keine Delays) → dauerhaft synchron. Der Basiszustand
   OHNE Animation ist das fertige Vergleichsbild — reduced-motion und No-JS
   zeigen die volle Botschaft statisch.
   Dramaturgie: 0% Auslöser · ab 5% ackert die Hand-Spur Task für Task und
   die Uhr heizt auf Orange hoch · die KI-Spur ist bei 24% fertig und ruht ·
   88% Payoff-Stempel · 93% Jahresprojektion. */
.hv-cine { max-width: 322px; }

.hvc-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 9px;
  background: rgba(59,150,255,0.04);
  animation: hvcTrigger 12s infinite;
}
.hvc-trigger-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: hvcTriggerDot 12s infinite;
}
@keyframes hvcTrigger {
  0%       { border-color: rgba(59,150,255,0.55); color: var(--text); }
  6%, 100% { border-color: var(--border); color: var(--text-2); }
}
@keyframes hvcTriggerDot {
  0%       { box-shadow: 0 0 0 0 rgba(59,150,255,0.5); }
  6%, 100% { box-shadow: 0 0 0 9px rgba(59,150,255,0); }
}

/* lane head: tag left, big clock right — die Zahlen sind die Botschaft */
.hvc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.hvc-head .hv-lane-tag { margin-bottom: 0; }
.hvc-clock {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.hvc-clock b { font-size: 0.52rem; font-weight: 600; opacity: 0.75; }
.hvc-clock--slow { color: var(--orange); animation: hvcSlowHeat 12s infinite; }
.hvc-clock--fast { color: var(--green); }
/* die Hand-Uhr heizt von neutral auf Warn-Orange hoch */
@keyframes hvcSlowHeat {
  0%, 30%  { color: var(--text-2); }
  60%, 100%{ color: var(--orange); }
}

/* stacked count-up: genau ein Wert sichtbar; t-5 haelt statisch die Box */
.hvc-ticks { position: relative; display: inline-block; min-width: 3.2ch; text-align: right; }
.hvc-t   { position: absolute; right: 0; top: 0; opacity: 0; }
.hvc-t-5 { position: static; opacity: 1; }
.hvc-t-1 { animation: hvcT1 12s infinite; }
.hvc-t-2 { animation: hvcT2 12s infinite; }
.hvc-t-3 { animation: hvcT3 12s infinite; }
.hvc-t-4 { animation: hvcT4 12s infinite; }
.hvc-t-5 { animation: hvcT5 12s infinite; }
@keyframes hvcT1 { 0%,4%{opacity:0} 5%,21%{opacity:1} 22%,100%{opacity:0} }
@keyframes hvcT2 { 0%,22%{opacity:0} 23%,42%{opacity:1} 43%,100%{opacity:0} }
@keyframes hvcT3 { 0%,43%{opacity:0} 44%,63%{opacity:1} 64%,100%{opacity:0} }
@keyframes hvcT4 { 0%,64%{opacity:0} 65%,84%{opacity:1} 85%,100%{opacity:0} }
@keyframes hvcT5 { 0%,85%{opacity:0} 86%,100%{opacity:1} }

/* Hand-Spur: Tasks arbeiten sich sequenziell ab (Fortschritts-Unterstrich) */
.hvc-task { position: relative; overflow: hidden; }
.hvc-task::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), rgba(245,158,11,0.35));
  transform-origin: 0 50%;
}
.hvc-task-1 { animation: hvcTask1 12s infinite; }
.hvc-task-2 { animation: hvcTask2 12s infinite; }
.hvc-task-3 { animation: hvcTask3 12s infinite; }
.hvc-task-4 { animation: hvcTask4 12s infinite; }
.hvc-task-1::after { animation: hvcTaskBar1 12s infinite; }
.hvc-task-2::after { animation: hvcTaskBar2 12s infinite; }
.hvc-task-3::after { animation: hvcTaskBar3 12s infinite; }
.hvc-task-4::after { animation: hvcTaskBar4 12s infinite; }
@keyframes hvcTask1 {
  0%,4%    { opacity: .38; color: var(--text-3); border-color: var(--border); background: rgba(148,163,184,0.03); }
  5%,23%   { opacity: 1; color: var(--text); border-color: rgba(245,158,11,0.55); background: rgba(245,158,11,0.08); }
  25%,100% { opacity: .78; color: var(--text-2); border-color: var(--border); background: rgba(148,163,184,0.07); }
}
@keyframes hvcTask2 {
  0%,24%   { opacity: .38; color: var(--text-3); border-color: var(--border); background: rgba(148,163,184,0.03); }
  25%,43%  { opacity: 1; color: var(--text); border-color: rgba(245,158,11,0.55); background: rgba(245,158,11,0.08); }
  45%,100% { opacity: .78; color: var(--text-2); border-color: var(--border); background: rgba(148,163,184,0.07); }
}
@keyframes hvcTask3 {
  0%,44%   { opacity: .38; color: var(--text-3); border-color: var(--border); background: rgba(148,163,184,0.03); }
  45%,63%  { opacity: 1; color: var(--text); border-color: rgba(245,158,11,0.55); background: rgba(245,158,11,0.08); }
  65%,100% { opacity: .78; color: var(--text-2); border-color: var(--border); background: rgba(148,163,184,0.07); }
}
@keyframes hvcTask4 {
  0%,64%   { opacity: .38; color: var(--text-3); border-color: var(--border); background: rgba(148,163,184,0.03); }
  65%,83%  { opacity: 1; color: var(--text); border-color: rgba(245,158,11,0.55); background: rgba(245,158,11,0.08); }
  85%,100% { opacity: .78; color: var(--text-2); border-color: var(--border); background: rgba(148,163,184,0.07); }
}
@keyframes hvcTaskBar1 { 0%,4%{transform:scaleX(0)} 24%,100%{transform:scaleX(1)} }
@keyframes hvcTaskBar2 { 0%,24%{transform:scaleX(0)} 44%,100%{transform:scaleX(1)} }
@keyframes hvcTaskBar3 { 0%,44%{transform:scaleX(0)} 64%,100%{transform:scaleX(1)} }
@keyframes hvcTaskBar4 { 0%,64%{transform:scaleX(0)} 84%,100%{transform:scaleX(1)} }

/* Uebergabe-Moment: der Pfeil blitzt kurz auf, wenn die Aufgabe verteilt wird */
.hvc-vs { animation: hvcVs 12s infinite; }
@keyframes hvcVs {
  0%,2%   { opacity: .4; }
  3%,5%   { opacity: 1; color: var(--cyan); }
  8%,100% { opacity: .55; }
}

/* KI-Spur: Pipeline zuendet Knoten fuer Knoten, ist bei 24% fertig — und ruht */
.hvc-node-1 { animation: hvcNode1 12s infinite; }
.hvc-node-2 { animation: hvcNode2 12s infinite; }
.hvc-node-3 { animation: hvcNode3 12s infinite; }
@keyframes hvcNode1 {
  0%,4%    { opacity: .45; box-shadow: none; }
  6%,10%   { opacity: 1; box-shadow: 0 0 12px rgba(59,150,255,0.4); }
  12%,100% { opacity: 1; box-shadow: none; }
}
@keyframes hvcNode2 {
  0%,9%    { opacity: .45; box-shadow: none; }
  11%,18%  { opacity: 1; box-shadow: 0 0 12px rgba(34,211,238,0.4); }
  20%,100% { opacity: 1; box-shadow: none; }
}
@keyframes hvcNode3 {
  0%,18%   { opacity: .45; border-color: rgba(59,150,255,0.25); box-shadow: none; }
  20%,23%  { opacity: 1; border-color: rgba(16,217,114,0.6); box-shadow: 0 0 14px rgba(16,217,114,0.35); }
  26%,100% { opacity: 1; border-color: rgba(59,150,255,0.25); box-shadow: none; }
}
.hvc-seg-1 { animation: hvcSeg1 12s infinite; }
.hvc-seg-2 { animation: hvcSeg2 12s infinite; }
@keyframes hvcSeg1 { 0%,5%{opacity:.25} 7%,9%{opacity:1;color:var(--cyan)} 11%,100%{opacity:.6} }
@keyframes hvcSeg2 { 0%,12%{opacity:.25} 14%,17%{opacity:1;color:var(--cyan)} 19%,100%{opacity:.6} }

/* „12 Min ✓" stempelt, sobald die Pipeline durch ist */
.hvc-stamp { display: inline-block; animation: hvcStamp 12s infinite; }
@keyframes hvcStamp {
  0%,21%   { opacity: 0; transform: scale(0.8); }
  23%      { opacity: 1; transform: scale(1.14); }
  25%,100% { opacity: 1; transform: scale(1); }
}
.hvc-done {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  line-height: 1.45;
  color: var(--green);
  border-left: 2px solid var(--green);
  padding-left: 8px;
  animation: hvcDone 12s infinite;
}
@keyframes hvcDone {
  0%,21%   { opacity: 0; transform: translateY(3px); }
  24%,100% { opacity: 1; transform: none; }
}

/* Payoff: waehrend des Loops gedimmt lesbar, am Ende der Stempel */
.hvc-payoff { animation: hvcPayoff 12s infinite; }
@keyframes hvcPayoff {
  0%,84%   { opacity: 0.3; }
  88%,100% { opacity: 1; }
}
.hvc-payoff .hv-payoff-plus { display: inline-block; animation: hvcPayoffPop 12s infinite; }
@keyframes hvcPayoffPop {
  0%,84%   { transform: scale(1); }
  88%      { transform: scale(1.07); }
  91%,100% { transform: scale(1); }
}
.hvc-payoff-year {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--green);
  animation: hvcYear 12s infinite;
}
@keyframes hvcYear {
  0%,89%   { opacity: 0; transform: translateY(4px); }
  93%,100% { opacity: 1; transform: none; }
}

/* hero thesis line — the core message */
.hero-thesis {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--blue);
}
.hero-thesis strong { color: var(--blue); font-weight: 700; }

/* ── DEVICE SHEEN SWEEP ── */
.device-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 38%,
    rgba(255,255,255,0.05) 47%,
    rgba(255,255,255,0.11) 50%,
    rgba(255,255,255,0.05) 53%,
    transparent 62%);
  transform: translateX(-130%);
  animation: sheenSweep 7s ease-in-out infinite;
}
.pa-phone .device-sheen { animation-delay: -3.5s; }
@keyframes sheenSweep {
  0%, 70%   { transform: translateX(-130%); }
  86%, 100% { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
  .device-stage, .stage-glow,
  .hv-glow, .hv-lane--auto, .device-sheen { animation: none !important; }
  .device-stage:hover .device-float { transform: none; box-shadow: none; }
  .device-sheen { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  [data-reveal] > * { opacity: 1 !important; transform: none !important; transition: none; animation: none !important; }
  /* elevate-visual-polish additions */
  body::before, .cta-strip, .price-card.highlight { animation: none !important; }
  /* hero-timegain-cinema: Loop einfrieren → statisches Endbild bleibt komplett lesbar */
  [class*="hvc-"], [class*="hvc-"]::before, [class*="hvc-"]::after { animation: none !important; }
  .js .hero-copy > *, .js .hero-visual { animation: none !important; opacity: 1; }
  .ticker-inner { animation: none; }
  .ticker-wrap { -webkit-mask-image: none; mask-image: none; }
  .scroll-progress { display: none; }
  .btn-primary::after, .nav-links a:not(.btn-cta)::after { display: none; }
  .devlog-post:hover { transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .hero-split   { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-visual  { min-height: 300px; }
}
@media (max-width: 680px) {
  .usp-grid     { grid-template-columns: 1fr; }
  .cases        { grid-template-columns: 1fr; }
  .price-grid   { grid-template-columns: 1fr 1fr; }
  .bot-section  { grid-template-columns: 1fr; }
  .gaming-bar   { flex-direction: column; align-items: flex-start; }
  nav           { padding: 0.85rem 1rem; }
  .nav-links li:not(:last-child) { display: none; }
  footer        { flex-direction: column; align-items: flex-start; }
}
