#landing-screen {
  --lp-sec-bg-a: #05070d;
  --lp-sec-bg-b: #090b15;
  --lp-sec-bg-c: #0d1020;
  --lp-sec-cyan: #00d1ff;
  --lp-sec-violet: #7c6af7;
  --lp-sec-ink: #eef2ff;
  --lp-sec-ink-soft: rgba(238, 242, 255, 0.72);
  --lp-sec-ink-dim: rgba(238, 242, 255, 0.5);
  --lp-sec-line: rgba(120, 106, 255, 0.18);
  --lp-sec-line-soft: rgba(255, 255, 255, 0.08);
  --lp-sec-panel: linear-gradient(180deg, rgba(11, 14, 26, 0.88), rgba(7, 10, 18, 0.92));
  --lp-sec-panel-soft: linear-gradient(180deg, rgba(16, 19, 33, 0.8), rgba(10, 12, 22, 0.84));
  --lp-sec-shadow: 0 32px 90px -56px rgba(0, 0, 0, 0.95), 0 0 72px rgba(124, 106, 247, 0.08);
}

#landing-screen .lp-premium-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 209, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(124, 106, 247, 0.12), transparent 34%),
    linear-gradient(180deg, var(--lp-sec-bg-a) 0%, var(--lp-sec-bg-b) 100%);
}

#landing-screen .lp-premium-section--alt {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 209, 255, 0.07), transparent 30%),
    radial-gradient(circle at 15% 82%, rgba(124, 106, 247, 0.11), transparent 30%),
    linear-gradient(180deg, var(--lp-sec-bg-b) 0%, var(--lp-sec-bg-c) 100%);
}

#landing-screen .lp-section-head {
  max-width: 780px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

#landing-screen .lp-section-head .lp-sub {
  max-width: 64ch;
  margin-inline: auto;
}

#landing-screen .lp-hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

#landing-screen .lp-hero-stage::before,
#landing-screen .lp-hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
}

#landing-screen .lp-hero-stage::before {
  background:
    radial-gradient(circle at 20% 22%, rgba(0, 209, 255, 0.13), transparent 20%),
    radial-gradient(circle at 76% 24%, rgba(124, 106, 247, 0.18), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(0, 209, 255, 0.08), transparent 18%);
  filter: blur(10px);
  opacity: 0.95;
}

#landing-screen .lp-hero-stage::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 52% 44%, black 28%, transparent 78%);
  opacity: 0.36;
}

#landing-screen .lp-hero-orbit {
  position: absolute;
  right: clamp(4%, 7vw, 10%);
  top: 14%;
  width: min(34vw, 380px);
  aspect-ratio: 1 / 1.08;
  pointer-events: none;
  z-index: 0;
}

#landing-screen .lp-hero-orbit::before,
#landing-screen .lp-hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 10%;
  border: 1px solid rgba(0, 209, 255, 0.14);
  box-shadow: inset 0 0 40px rgba(0, 209, 255, 0.04), 0 0 40px rgba(0, 209, 255, 0.08);
  animation: lpOrbitSpin 18s linear infinite;
}

#landing-screen .lp-hero-orbit::after {
  inset: 0;
  border-color: rgba(124, 106, 247, 0.16);
  animation-direction: reverse;
  animation-duration: 26s;
}

#landing-screen .lp-hero-device {
  position: absolute;
  inset: 12% 14% 14%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 24, 42, 0.9), rgba(9, 12, 22, 0.96)),
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(124, 106, 247, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px -48px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(0, 209, 255, 0.08),
    0 0 80px rgba(124, 106, 247, 0.12);
  transform-style: preserve-3d;
  overflow: hidden;
  animation: lpFloatDevice 9s ease-in-out infinite;
}

#landing-screen .lp-hero-device::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(0, 209, 255, 0.08), transparent 54%);
  pointer-events: none;
}

#landing-screen .lp-hero-device-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.6);
}

#landing-screen .lp-hero-device-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  border: 1px solid rgba(0, 209, 255, 0.16);
  color: #8defff;
}

#landing-screen .lp-hero-device-stack {
  display: grid;
  gap: 14px;
  padding: 0 20px 20px;
}

#landing-screen .lp-hero-mini-card {
  position: relative;
  border-radius: 20px;
  padding: 16px 17px 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: grid;
  align-content: start;
}

#landing-screen .lp-hero-mini-card::after {
  content: '';
  position: absolute;
  inset: auto -15% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.6), transparent);
  opacity: 0.45;
}

#landing-screen .lp-hero-mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.54);
}

#landing-screen .lp-hero-mini-title {
  margin-top: 10px;
  color: var(--lp-sec-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.28;
  max-width: 18ch;
}

#landing-screen .lp-hero-mini-copy {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.68;
  color: var(--lp-sec-ink-soft);
  max-width: 28ch;
  text-wrap: pretty;
}

#landing-screen .lp-hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

#landing-screen .lp-hero-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(124, 106, 247, 0.12);
  border: 1px solid rgba(124, 106, 247, 0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #d7ceff;
}

#landing-screen .lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
}

#landing-screen .lp-hero-orb--a {
  width: 88px;
  height: 88px;
  left: -10px;
  top: 18px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(0, 209, 255, 0.34) 42%, rgba(0, 209, 255, 0.04) 72%, transparent 100%);
  box-shadow: 0 0 42px rgba(0, 209, 255, 0.3);
}

#landing-screen .lp-hero-orb--b {
  width: 62px;
  height: 62px;
  right: -8px;
  bottom: 14px;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.65), rgba(124, 106, 247, 0.34) 46%, rgba(124, 106, 247, 0.06) 76%, transparent 100%);
  box-shadow: 0 0 38px rgba(124, 106, 247, 0.28);
}

#landing-screen .lp-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

#landing-screen .lp-panel {
  position: relative;
  background: var(--lp-sec-panel);
  border: 1px solid var(--lp-sec-line);
  border-radius: 28px;
  box-shadow: var(--lp-sec-shadow);
  overflow: hidden;
}

#landing-screen .lp-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(124, 106, 247, 0.18), transparent 28%);
  pointer-events: none;
}

#landing-screen .lp-panel-soft {
  position: relative;
  background: var(--lp-sec-panel-soft);
  border: 1px solid var(--lp-sec-line-soft);
  border-radius: 24px;
  overflow: hidden;
}

#landing-screen .lp-panel-body {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 32px);
}

#landing-screen .lp-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

#landing-screen .lp-chip-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.58);
}

#landing-screen .lp-chip-secure::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-sec-cyan);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.55);
}

#landing-screen .lp-feature-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

#landing-screen .lp-feature-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#landing-screen .lp-feature-point i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(124, 106, 247, 0.16));
  font-style: normal;
  font-size: 18px;
}

#landing-screen .lp-feature-point strong {
  display: block;
  color: var(--lp-sec-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#landing-screen .lp-feature-point span {
  display: block;
  margin-top: 5px;
  color: var(--lp-sec-ink-soft);
  font-size: 13px;
  line-height: 1.66;
}

#landing-screen .lp-flow-visual,
#landing-screen .lp-shield-visual,
#landing-screen .lp-seizure-visual,
#landing-screen .lp-device-visual,
#landing-screen .lp-meta-visual,
#landing-screen .lp-support-visual,
#landing-screen .lp-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CTA Visual: SchutzEnde.png floating image ── */
#landing-screen .cta-visual {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: cta-float 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes cta-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  #landing-screen .cta-visual {
    animation: none;
  }
}

#landing-screen .lp-flow-visual::before,
#landing-screen .lp-shield-visual::before,
#landing-screen .lp-seizure-visual::before,
#landing-screen .lp-device-visual::before,
#landing-screen .lp-meta-visual::before,
#landing-screen .lp-support-visual::before,
#landing-screen .lp-cta-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.42;
}

#landing-screen .lp-flow-lines {
  position: absolute;
  inset: 16% 10% 12%;
}

#landing-screen .lp-flow-node,
#landing-screen .lp-flow-dot {
  position: absolute;
  border-radius: 999px;
}

#landing-screen .lp-flow-node {
  width: 108px;
  height: 108px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 46px -26px rgba(0, 0, 0, 0.8);
  text-align: center;
  line-height: 1.34;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#landing-screen .lp-flow-node--a { left: 2%; top: 8%; }
#landing-screen .lp-flow-node--b { left: calc(50% - 54px); top: 45%; }
#landing-screen .lp-flow-node--c { right: 2%; top: 10%; }

#landing-screen .lp-flow-path {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.18), rgba(124, 106, 247, 0.65), rgba(0, 209, 255, 0.18));
  filter: drop-shadow(0 0 12px rgba(124, 106, 247, 0.32));
}

#landing-screen .lp-flow-path::before {
  content: '';
  position: absolute;
  inset: -10px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  transform: translateX(-34%);
  animation: lpBeamSlide 3.8s linear infinite;
  opacity: 0.75;
}

#landing-screen .lp-flow-dot {
  width: 12px;
  height: 12px;
  top: calc(50% - 5px);
  left: 16%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(0, 209, 255, 0.45));
  box-shadow: 0 0 16px rgba(0, 209, 255, 0.55);
  animation: lpPacket 4.2s linear infinite;
}

#landing-screen .lp-flow-chip {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(238, 242, 255, 0.6);
  box-shadow: 0 14px 36px -28px rgba(0, 0, 0, 0.82);
}

#landing-screen .lp-flow-chip--a { left: 8%; bottom: 16%; }
#landing-screen .lp-flow-chip--b { left: 40%; top: 16%; }
#landing-screen .lp-flow-chip--c { right: 8%; bottom: 18%; }

#landing-screen .lp-truth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#landing-screen .lp-truth-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 24px;
  background: var(--lp-sec-panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--lp-sec-shadow);
}

#landing-screen .lp-truth-card strong {
  display: block;
  margin-top: 12px;
  color: var(--lp-sec-ink);
  font-size: 16px;
  font-weight: 700;
}

#landing-screen .lp-truth-card p {
  margin-top: 8px;
  color: var(--lp-sec-ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

#landing-screen .lp-truth-list {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

#landing-screen .lp-truth-list li {
  position: relative;
  padding-left: 16px;
  color: var(--lp-sec-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

#landing-screen .lp-truth-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-sec-cyan);
  box-shadow: 0 0 10px rgba(0, 209, 255, 0.46);
}

#landing-screen .lp-shield-core {
  position: absolute;
  inset: 16% 24%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 22px 20px 20px;
}

#landing-screen .lp-shield-core::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px dashed rgba(0, 209, 255, 0.14);
}

#landing-screen .lp-shield-lock {
  font-size: clamp(38px, 5vw, 56px);
  filter: drop-shadow(0 0 24px rgba(0, 209, 255, 0.22));
}

#landing-screen .lp-shield-core strong {
  color: var(--lp-sec-ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

#landing-screen .lp-shield-core span {
  display: block;
  max-width: 24ch;
  color: var(--lp-sec-ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

#landing-screen .lp-shield-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(124, 106, 247, 0.12);
  animation: lpOrbitSpin 28s linear infinite;
}

#landing-screen .lp-shield-ring::before,
#landing-screen .lp-shield-ring::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(0, 209, 255, 0.12);
}

#landing-screen .lp-shield-pill {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(238, 242, 255, 0.66);
}

#landing-screen .lp-shield-pill--a { left: 6%; top: 18%; }
#landing-screen .lp-shield-pill--b { right: 8%; top: 38%; }
#landing-screen .lp-shield-pill--c { left: 18%; bottom: 10%; }

#landing-screen .lp-seizure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#landing-screen .lp-seizure-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

#landing-screen .lp-mini-metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#landing-screen .lp-mini-metric strong {
  display: block;
  margin-top: 10px;
  color: var(--lp-sec-ink);
  font-size: 14px;
  font-weight: 700;
}

#landing-screen .lp-mini-metric span {
  display: block;
  margin-top: 6px;
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.62;
}

#landing-screen .lp-seizure-server {
  position: absolute;
  inset: 12% 14%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

#landing-screen .lp-server-stack {
  position: relative;
  border-radius: 24px;
  padding: 16px 14px;
  background: linear-gradient(180deg, rgba(20, 24, 38, 0.94), rgba(10, 12, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 48px -32px rgba(0, 0, 0, 0.9);
}

#landing-screen .lp-server-stack::before {
  content: '';
  position: absolute;
  inset: auto 14px 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.12), rgba(124, 106, 247, 0.52), rgba(0, 209, 255, 0.12));
}

#landing-screen .lp-server-slot {
  height: 18px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#landing-screen .lp-seizure-alert {
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 71, 87, 0.11);
  border: 1px solid rgba(255, 71, 87, 0.26);
  color: #ffc2c9;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SERVER VISUAL (3D Image Replacement) ──────────────────────────────────── */
#landing-screen .server-visual {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: ecServerFloat 6s ease-in-out infinite;
}

@keyframes ecServerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  #landing-screen .server-visual {
    animation: none;
  }
}

#landing-screen .lp-device-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

#landing-screen .lp-device-rings {
  position: absolute;
  inset: 10%;
}

#landing-screen .lp-device-ring,
#landing-screen .lp-device-ring::before {
  position: absolute;
  border-radius: 50%;
}

#landing-screen .lp-device-ring {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(124, 106, 247, 0.14);
  animation: lpOrbitSpin 18s linear infinite;
}

#landing-screen .lp-device-ring::before {
  content: '';
  inset: 14px;
  border: 1px solid rgba(0, 209, 255, 0.12);
}

#landing-screen .lp-device-ring--a { width: 82%; aspect-ratio: 1 / 1; }
#landing-screen .lp-device-ring--b { width: 62%; aspect-ratio: 1 / 1; animation-direction: reverse; animation-duration: 22s; }
#landing-screen .lp-device-ring--c { width: 42%; aspect-ratio: 1 / 1; animation-duration: 26s; }

#landing-screen .lp-device-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(15, 20, 34, 0.96), rgba(8, 11, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px -40px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

#landing-screen .lp-device-core::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.1), transparent 34%);
}

#landing-screen .lp-device-status {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 12px;
  text-align: center;
}

#landing-screen .lp-device-status strong {
  color: var(--lp-sec-ink);
  font-size: 15px;
  font-weight: 700;
}

#landing-screen .lp-device-status span {
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

#landing-screen .lp-device-pill {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(238, 242, 255, 0.68);
  white-space: nowrap;
}

#landing-screen .lp-device-pill--pin { left: 6%; top: 16%; }
#landing-screen .lp-device-pill--lock { right: 6%; top: 22%; }
#landing-screen .lp-device-pill--panic { left: 10%; bottom: 14%; }
#landing-screen .lp-device-pill--timeout { right: 8%; bottom: 18%; }

#landing-screen .lp-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

#landing-screen .lp-meta-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#landing-screen .lp-meta-card strong {
  display: block;
  margin-top: 10px;
  color: var(--lp-sec-ink);
  font-size: 14px;
  font-weight: 700;
}

#landing-screen .lp-meta-card span {
  display: block;
  margin-top: 6px;
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.62;
}

#landing-screen .lp-meta-files {
  position: absolute;
  inset: 15% 14%;
}

#landing-screen .lp-meta-file {
  position: absolute;
  min-width: 128px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(8, 12, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, 0.9);
}

#landing-screen .lp-meta-file strong {
  display: block;
  color: var(--lp-sec-ink);
  font-size: 13px;
  font-weight: 700;
}

#landing-screen .lp-meta-file span {
  display: block;
  margin-top: 6px;
  color: var(--lp-sec-ink-dim);
  font-size: 11px;
  line-height: 1.55;
}

#landing-screen .lp-meta-file--a { left: 0; top: 8%; }
#landing-screen .lp-meta-file--b { right: 0; top: 24%; }
#landing-screen .lp-meta-file--c { left: 18%; bottom: 0; }

#landing-screen .lp-meta-cleaner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 209, 255, 0.18), rgba(0, 209, 255, 0.04) 48%, transparent 70%);
  border: 1px solid rgba(0, 209, 255, 0.16);
  box-shadow: 0 0 54px rgba(0, 209, 255, 0.18);
}

#landing-screen .lp-meta-cleaner::before,
#landing-screen .lp-meta-cleaner::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#landing-screen .lp-meta-cleaner::before {
  width: 110px;
  height: 110px;
  border: 1px dashed rgba(124, 106, 247, 0.22);
  animation: lpOrbitSpin 16s linear infinite;
}

#landing-screen .lp-meta-cleaner::after {
  width: 66px;
  height: 66px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(0, 209, 255, 0.24) 44%, transparent 76%);
}

#landing-screen .lp-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

#landing-screen .lp-permission-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

#landing-screen .lp-permission {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#landing-screen .lp-permission i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 106, 247, 0.14), rgba(0, 209, 255, 0.12));
  font-style: normal;
  font-size: 17px;
}

#landing-screen .lp-permission strong {
  display: block;
  color: var(--lp-sec-ink);
  font-size: 14px;
  font-weight: 700;
}

#landing-screen .lp-permission span {
  display: block;
  margin-top: 6px;
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.62;
}

#landing-screen .lp-support-card {
  position: absolute;
  inset: 13% 14%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 18, 30, 0.96), rgba(8, 11, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.92);
  overflow: hidden;
}

#landing-screen .lp-support-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(0, 209, 255, 0.14), transparent 28%);
}

#landing-screen .lp-support-head,
#landing-screen .lp-support-row,
#landing-screen .lp-support-foot {
  position: relative;
  z-index: 1;
}

#landing-screen .lp-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.6);
}

#landing-screen .lp-support-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#landing-screen .lp-support-row strong {
  display: block;
  color: var(--lp-sec-ink);
  font-size: 14px;
  font-weight: 700;
}

#landing-screen .lp-support-row span {
  display: block;
  margin-top: 5px;
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

#landing-screen .lp-support-token {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  border: 1px solid rgba(0, 209, 255, 0.16);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #9aeeff;
  white-space: nowrap;
}

#landing-screen .lp-support-foot {
  padding: 18px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#landing-screen .lp-support-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(238, 242, 255, 0.62);
}

#landing-screen .lp-compare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 2rem;
}

#landing-screen .lp-compare-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--lp-sec-shadow);
  text-align: left;
}

#landing-screen .lp-compare-card strong {
  display: block;
  margin-top: 10px;
  color: var(--lp-sec-ink);
  font-size: 14px;
  font-weight: 700;
}

#landing-screen .lp-compare-card span {
  display: block;
  margin-top: 6px;
  color: var(--lp-sec-ink-soft);
  font-size: 12px;
  line-height: 1.62;
}

#landing-screen .lp-roadmap-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

#landing-screen .lp-roadmap-line {
  position: absolute;
  left: 32px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.55), rgba(124, 106, 247, 0.32), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 16px rgba(0, 209, 255, 0.2);
}

#landing-screen .lp-roadmap-list {
  display: grid;
  gap: 18px;
}

#landing-screen .lp-roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 18px 18px 0;
}

#landing-screen .lp-roadmap-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin: 6px 0 0 23px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(0, 209, 255, 0.55));
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.4);
}

#landing-screen .lp-roadmap-dot--future {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(124, 106, 247, 0.46));
  box-shadow: 0 0 18px rgba(124, 106, 247, 0.32);
}

#landing-screen .lp-roadmap-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--lp-sec-panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--lp-sec-shadow);
}

#landing-screen .lp-roadmap-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.58);
}

#landing-screen .lp-roadmap-card strong {
  display: block;
  margin-top: 14px;
  color: var(--lp-sec-ink);
  font-size: 16px;
  font-weight: 700;
}

#landing-screen .lp-roadmap-card p {
  margin-top: 8px;
  color: var(--lp-sec-ink-soft);
  font-size: 13px;
  line-height: 1.72;
}

#landing-screen .lp-roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

#landing-screen .lp-roadmap-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.06);
  border: 1px solid rgba(0, 209, 255, 0.14);
  font-size: 11px;
  color: #9cecff;
}

#landing-screen .lp-faq-premium {
  max-width: 940px;
  margin: 0 auto;
}

#landing-screen .lp-final-cta {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 209, 255, 0.1), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(124, 106, 247, 0.14), transparent 30%),
    linear-gradient(180deg, #05070d 0%, #070910 100%);
}

#landing-screen .lp-cta-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.92), rgba(6, 8, 16, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px -60px rgba(0, 0, 0, 0.95),
    0 0 80px rgba(0, 209, 255, 0.08),
    0 0 100px rgba(124, 106, 247, 0.12);
  overflow: hidden;
}

#landing-screen .lp-cta-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(124, 106, 247, 0.16), transparent 28%);
  pointer-events: none;
}

#landing-screen .lp-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: center;
}

#landing-screen .lp-cta-copy {
  display: grid;
  gap: 16px;
}

#landing-screen .lp-cta-copy .lp-title {
  margin-bottom: 0;
}

#landing-screen .lp-cta-copy p {
  color: var(--lp-sec-ink-soft);
  font-size: 15px;
  line-height: 1.78;
  max-width: 58ch;
}

#landing-screen .lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

#landing-screen .lp-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#landing-screen .lp-cta-point {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.66);
}

#landing-screen .lp-cta-device {
  position: absolute;
  inset: 12% 14%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 22, 34, 0.95), rgba(7, 10, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px -44px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

#landing-screen .lp-cta-device::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(0, 209, 255, 0.16), transparent 26%);
}

#landing-screen .lp-cta-device-top {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.6);
}

#landing-screen .lp-cta-device-body {
  position: relative;
  z-index: 1;
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
}

#landing-screen .lp-cta-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.62;
}

#landing-screen .lp-cta-bubble--in {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--lp-sec-ink-soft);
}

#landing-screen .lp-cta-bubble--out {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(124, 106, 247, 0.16));
  border: 1px solid rgba(0, 209, 255, 0.16);
  color: var(--lp-sec-ink);
}

#landing-screen .lp-cta-tail {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(238, 242, 255, 0.62);
  line-height: 1.45;
  text-align: center;
  white-space: pre-line;
  max-width: 190px;
}

#landing-screen .lp-motion-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#landing-screen .lp-motion-dust span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: lpDust 14s linear infinite;
}

#landing-screen .lp-motion-dust span:nth-child(1) { left: 10%; top: 18%; animation-delay: 0s; --dx: 32px; --dy: 90px; }
#landing-screen .lp-motion-dust span:nth-child(2) { left: 82%; top: 12%; animation-delay: 2s; --dx: -26px; --dy: 110px; }
#landing-screen .lp-motion-dust span:nth-child(3) { left: 74%; top: 68%; animation-delay: 4s; --dx: -40px; --dy: -84px; }
#landing-screen .lp-motion-dust span:nth-child(4) { left: 22%; top: 72%; animation-delay: 6s; --dx: 44px; --dy: -66px; }
#landing-screen .lp-motion-dust span:nth-child(5) { left: 52%; top: 26%; animation-delay: 8s; --dx: 18px; --dy: 82px; }
#landing-screen .lp-motion-dust span:nth-child(6) { left: 40%; top: 84%; animation-delay: 10s; --dx: -14px; --dy: -74px; }

#landing-screen .lp-depth-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

#landing-screen [data-lp-parallax] {
  will-change: transform;
}

@keyframes lpOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lpFloatDevice {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

@keyframes lpBeamSlide {
  0% { transform: translateX(-36%); opacity: 0; }
  12% { opacity: 0.82; }
  52% { opacity: 0.82; }
  100% { transform: translateX(150%); opacity: 0; }
}

@keyframes lpPacket {
  0% { left: 16%; opacity: 0; }
  8% { opacity: 1; }
  48% { opacity: 1; }
  100% { left: 84%; opacity: 0; }
}

@keyframes lpDust {
  0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  10% { opacity: 0.65; }
  80% { opacity: 0.28; }
  100% { transform: translate3d(var(--dx), var(--dy), 0) scale(0.2); opacity: 0; }
}

@media (max-width: 1080px) {
  #landing-screen .lp-grid-two,
  #landing-screen .lp-seizure-grid,
  #landing-screen .lp-device-grid,
  #landing-screen .lp-support-grid,
  #landing-screen .lp-cta-grid,
  #landing-screen .lp-truth-grid {
    grid-template-columns: 1fr;
  }

  #landing-screen .lp-compare-cards {
    grid-template-columns: 1fr;
  }

  #landing-screen .lp-hero-orbit {
    right: 2%;
    top: 18%;
    width: min(36vw, 310px);
    opacity: 0.7;
  }
}

@media (max-width: 820px) {
  #landing-screen .lp-hero-orbit {
    display: none;
  }

  #landing-screen .lp-flow-node {
    width: 92px;
    height: 92px;
    font-size: 10px;
  }

  #landing-screen .lp-flow-node--b {
    left: calc(50% - 46px);
  }

  #landing-screen .lp-cta-tail {
    right: 12px;
    bottom: 12px;
    max-width: 142px;
    font-size: 9px;
    padding: 8px 10px;
  }

  #landing-screen .lp-meta-grid,
  #landing-screen .lp-seizure-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #landing-screen .lp-flow-visual,
  #landing-screen .lp-shield-visual,
  #landing-screen .lp-seizure-visual,
  #landing-screen .lp-device-visual,
  #landing-screen .lp-meta-visual,
  #landing-screen .lp-support-visual,
  #landing-screen .lp-cta-visual {
    min-height: 300px;
    border-radius: 26px;
  }

  #landing-screen .lp-panel,
  #landing-screen .lp-panel-soft,
  #landing-screen .lp-roadmap-card,
  #landing-screen .lp-truth-card {
    border-radius: 22px;
  }

  #landing-screen .lp-roadmap-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  #landing-screen .lp-roadmap-line {
    left: 22px;
  }

  #landing-screen .lp-roadmap-dot {
    margin-left: 14px;
  }

  #landing-screen .lp-device-core {
    width: 150px;
    height: 194px;
  }

  #landing-screen .lp-cta-actions {
    flex-direction: column;
  }

  #landing-screen .lp-cta-actions > * {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #landing-screen .lp-hero-orbit::before,
  #landing-screen .lp-hero-orbit::after,
  #landing-screen .lp-hero-device,
  #landing-screen .lp-device-ring,
  #landing-screen .lp-flow-path::before,
  #landing-screen .lp-flow-dot,
  #landing-screen .lp-motion-dust span {
    animation: none !important;
  }

  #landing-screen .lp-depth-tilt,
  #landing-screen [data-lp-parallax] {
    transform: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   HERO 3D ARTWORK — final raster hero rendered as a real asset.
   Lives inside the existing .lp-hero-device frame so the floating
   animation, glass border and glow keep working. The desktop card
   stays in the upper-right of #lp-hero; on mobile the orbit is
   surfaced as a flow element below the hero text card so the
   image is still visible and never overlaps the copy.
   ───────────────────────────────────────────────────────────── */
#landing-screen .lp-hero-device-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Tablet (≤1080px): tighten the orbit container so the image stays
   crisp without overlapping the text card. */
@media (max-width: 1080px) {
  #landing-screen .lp-hero-orbit {
    width: min(38vw, 340px);
    opacity: 0.96;
  }
}

/* Mobile (≤820px): bring the orbit into normal flow under the
   hero card instead of hiding it. Floating animation is kept on
   the device wrapper but the absolute corner anchoring is lifted. */
@media (max-width: 820px) {
  #landing-screen .lp-hero-stage {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: auto;
    margin: 28px auto 0;
    overflow: visible;
    pointer-events: auto;
    order: 5;
  }
  #landing-screen .lp-hero-stage::before,
  #landing-screen .lp-hero-stage::after {
    display: none;
  }
  #landing-screen .lp-hero-orbit {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    top: auto !important;
    width: min(94%, 460px);
    margin: 0 auto;
    aspect-ratio: 1 / 1.05;
    opacity: 1;
  }
  #landing-screen .lp-hero-device {
    border-radius: 28px;
  }
}

/* Very small screens: keep the asset readable without stretching. */
@media (max-width: 480px) {
  #landing-screen .lp-hero-orbit {
    width: min(96%, 380px);
  }
  #landing-screen .lp-hero-device {
    border-radius: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCHUTZ VISUAL — Device Protection Section Image
   Pure CSS animation only. No JS libraries. No external CDNs.
   ═══════════════════════════════════════════════════════════════ */

#landing-screen .schutz-visual {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: schutz-float 5s ease-in-out infinite;
}

@keyframes schutz-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #landing-screen .schutz-visual {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   4K-ASSETS RUNDE 2 + BLEND-FIX   §LP-ASSETS-4K-R2-2026-07-22
   1) Sizing für die neuen Support-/Metadaten-Bilder (ersetzen die
      alten CSS-Bastelgrafiken; die Support-Karte kollabierte auf
      Höhe 0 → Sektion war leer).
   2) mix-blend-mode: screen auf ALLEN Sektions-Assets: die Bilder
      sind auf Tiefschwarz isoliert — screen lässt den schwarzen
      Bildhintergrund mathematisch im Sektions-Verlauf verschwinden
      (kein sichtbarer Kasten mehr), Neon-Motive bleiben unverändert
      hell. (Owner-Meldung: „Hintergrund nicht transparent".)
   ═══════════════════════════════════════════════════════════════ */
#landing-screen .support-visual-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: cta-float 5.5s ease-in-out infinite;
}

#landing-screen .meta-visual-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: ec-flow-float 5s ease-in-out infinite alternate;
}

#landing-screen .krypto-visual,
#landing-screen .flow-visual,
#landing-screen .grenzen-visual,
#landing-screen .server-visual,
#landing-screen .schutz-visual,
#landing-screen .cta-visual,
#landing-screen .support-visual-img,
#landing-screen .meta-visual-img {
  mix-blend-mode: screen;
  /* Blend allein reicht nicht überall: Ancestor-Stacking-Contexts (z.B.
     .lp-cta-grid z-index:1) kapseln den Backdrop — dort bleibt der schwarze
     Bildkasten sichtbar. Die radiale Alpha-Maske faded die Bildränder zu
     ECHTEM Transparent, unabhängig von Stacking/Hintergrund — kein Kasten. */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0) 86%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0) 86%);
}

/* Das feine ::before-Gitter-Overlay dieser Container stammt aus der Zeit der
   CSS-Bastelgrafiken — mit echtem Bild darin liest es sich als sichtbarer
   Kasten um das Asset. Für alle Container mit realen Bildern abschalten. */
#landing-screen .lp-seizure-visual::before,
#landing-screen .lp-device-visual::before,
#landing-screen .lp-meta-visual::before,
#landing-screen .lp-support-visual::before,
#landing-screen .lp-cta-visual::before {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  #landing-screen .support-visual-img,
  #landing-screen .meta-visual-img {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ENTRANCE + SIDE-SLIDE REVEAL MOTION   §LP-ANIM-2026-07-20
   Lightweight, CSP-safe landing motion.
     • Zero external egress — local CSS only, no libraries/CDNs.
     • Hardware-accelerated only — animates opacity + transform;
       never left/top/margin (no layout thrash / reflow).
     • No canvas frame sampling / image sequences → no hardware
       fingerprinting vector.
   Reuses the existing reveal contract (.lp-reveal → .lp-visible,
   the single IntersectionObserver in ui-render.js) — this only
   adds a horizontal FLAVOUR; it does not add a second observer.
   ═══════════════════════════════════════════════════════════════ */

/* ── TASK 1 — Hero entrance: fade + upward rise, staggered, on load ── */
@keyframes lpHeroRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#landing-screen .lp-hero-left > * {
  animation: lpHeroRise 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#landing-screen .lp-hero-left > .lp-hero-badges { animation-delay: 0.05s; }
#landing-screen .lp-hero-left > .lp-h1          { animation-delay: 0.15s; }
#landing-screen .lp-hero-left > .lp-hero-sub    { animation-delay: 0.28s; }
#landing-screen .lp-hero-left > .lp-ctas        { animation-delay: 0.40s; }
#landing-screen .lp-hero-left > .lp-hero-note   { animation-delay: 0.52s; }

/* ── TASK 2 — Directional side-slide flavour for the shared reveal ──
   Overrides ONLY the initial transform of .lp-reveal. The revealed
   state (translate → origin) and the 2.5s safety-net fallback are
   inherited unchanged from app.css / landing-layout-fix.css. */
#landing-screen .lp-reveal.lp-reveal-left  { transform: translateX(-30px); }
#landing-screen .lp-reveal.lp-reveal-right { transform: translateX(30px); }

/* Subtle cascade when several directional cards share one grid. */
#landing-screen .lp-reveal-left:nth-child(2),
#landing-screen .lp-reveal-right:nth-child(2) { transition-delay: 0.07s; }
#landing-screen .lp-reveal-left:nth-child(3),
#landing-screen .lp-reveal-right:nth-child(3) { transition-delay: 0.14s; }
#landing-screen .lp-reveal-left:nth-child(4),
#landing-screen .lp-reveal-right:nth-child(4) { transition-delay: 0.21s; }

/* Accessibility — honour reduced-motion: no entrance keyframe and no
   horizontal travel (content stays visible; gentle opacity settle only). */
@media (prefers-reduced-motion: reduce) {
  #landing-screen .lp-hero-left > * {
    animation: none !important;
  }
  #landing-screen .lp-reveal.lp-reveal-left,
  #landing-screen .lp-reveal.lp-reveal-right {
    transform: none !important;
  }
}
