/* ============================================================
   CatchDip Landing — Apple-style premium
   Reuse brandbook tokens z app.css (--accent, --bg, fonty)
   ============================================================ */

.landing-page {
  background: var(--surface-0);
  color: var(--text-strong);
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.landing-page * { box-sizing: border-box; }

/* --- TOP NAV --- */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  /* brandbook-allow: fixed nav intentional frosted glass (Apple-style) */
  backdrop-filter: blur(8px) saturate(1.2); /* brandbook-allow: modal/overlay glass — intentional */
  /* brandbook-allow: webkit prefix dla Safari */
  -webkit-backdrop-filter: blur(8px) saturate(1.2); /* brandbook-allow: modal/overlay glass — intentional */
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-strong); text-decoration: none;
}
.landing-brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em;
}
.landing-nav-actions { display: flex; align-items: center; gap: 14px; }
.landing-nav-link {
  color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.18s;
}
.landing-nav-link:hover { color: var(--accent); }
.landing-nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.landing-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  min-height: 44px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  border-radius: 8px; border: 0; cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.landing-cta-btn--primary {
  background: linear-gradient(135deg, #88CE02 0%, #22d3ee 100%);
  color: #0a0a0a;
}
.landing-cta-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(136, 206, 2, 0.35);
}
.landing-cta-btn--primary:active { transform: translateY(0); }
.landing-cta-btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.landing-cta-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.landing-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.landing-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-strong);
}

/* --- HERO --- */
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.landing-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.landing-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* --- 3D dip-surface (landing3d.js) --- */
.landing-hero-3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 90% 80% at center, black 35%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at center, black 35%, transparent 92%);
}
/* Grid fallback gaśnie TYLKO gdy WebGL faktycznie wystartował (JS dodaje klasę) */
.landing-hero-bg.landing-3d-on .landing-hero-grid { display: none; }
.landing-hero-glow {
  position: absolute;
  top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(136, 206, 2, 0.18) 0%, rgba(34, 211, 238, 0.10) 30%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  animation: hero-glow-pulse 8s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* --- HERO STORYTELLING SPARKLINE --- */
/* Wrap zapewnia layout dla SVG line + HTML marker labels (text overlay).
   Bez wrap'a markery z preserveAspectRatio="none" rozciagaly text. */
.landing-hero-chart-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 64%;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 82% 75% at center, black 38%, transparent 94%);
  -webkit-mask-image: radial-gradient(ellipse 82% 75% at center, black 38%, transparent 94%);
}
.landing-hero-chart {
  width: 100%; height: 100%;
  opacity: 0.8;
  display: block;
}
.landing-hero-chart-line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 12px rgba(136, 206, 2, 0.25));
}
.landing-hero-chart-area {
  opacity: 0;
}
/* Single-play, forwards: po jednym wykonaniu zostaje statyczny end-state.
   Total cycle 6.5s — komfortowo widoczne ale nie meczy w kolko. */
.landing-hero-chart.is-drawn .landing-hero-chart-line {
  animation: hero-chart-draw 6.5s ease-in-out forwards;
}
.landing-hero-chart.is-drawn .landing-hero-chart-area {
  animation: hero-chart-fill 6.5s ease-in-out forwards;
}
@keyframes hero-chart-draw {
  0%       { stroke-dashoffset: 1600; }
  40%      { stroke-dashoffset: 850; }   /* dip reached */
  52%      { stroke-dashoffset: 800; }   /* BUY pulse pause */
  90%      { stroke-dashoffset: 0; }     /* SELL reached */
  100%     { stroke-dashoffset: 0; }
}
@keyframes hero-chart-fill {
  0%, 30%  { opacity: 0; }
  90%, 100% { opacity: 0.9; }
}

/* SVG markers — single-play, koncza widoczne (opacity 1 forwards) */
.landing-hero-marker { opacity: 0; }
.landing-hero-marker--buy {
  animation: hero-marker-buy 6.5s ease-in-out forwards;
}
.landing-hero-marker--sell {
  animation: hero-marker-sell 6.5s ease-in-out forwards;
}
@keyframes hero-marker-buy {
  0%, 40%  { opacity: 0; }
  45%      { opacity: 1; }
  100%     { opacity: 1; }  /* zostaje widoczny */
}
@keyframes hero-marker-sell {
  0%, 88%  { opacity: 0; }
  92%      { opacity: 1; }
  100%     { opacity: 1; }  /* zostaje widoczny */
}
/* Pulse ring — krotki "ping" raz kiedy marker pojawia sie, potem znika */
.landing-hero-marker-pulse {
  transform-origin: center center;
  opacity: 0;
}
.landing-hero-marker--buy .landing-hero-marker-pulse {
  animation: hero-pulse-ring 1.5s ease-out 2.9s 2 forwards;
}
.landing-hero-marker--sell .landing-hero-marker-pulse {
  animation: hero-pulse-ring 1.4s ease-out 5.9s 1 forwards;
}
@keyframes hero-pulse-ring {
  0%   { r: 8; opacity: 0.9; }
  100% { r: 26; opacity: 0; }
}

/* HTML marker labels — positioned by % matching SVG viewBox (1400x380).
   BUY: SVG (700, 262) = 50% / 69% — label below
   SELL: SVG (1160, 72) = 82.86% / 18.95% — label above */
.landing-hero-marker-label {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.landing-hero-marker-label--buy {
  left: 50%; top: 69%;
  transform: translate(-50%, 20px);
  color: var(--accent);
  animation: hero-marker-buy 6.5s ease-in-out forwards;
}
.landing-hero-marker-label--sell {
  left: 82.86%; top: 18.95%;
  transform: translate(-50%, -28px);
  color: var(--accent-cyan);
  animation: hero-marker-sell 6.5s ease-in-out forwards;
}

/* --- HERO TITLE — kinetic typography --- */
.landing-hero-title {
  position: relative; z-index: 3;
}
.landing-hero-line {
  display: block;
  perspective: 600px;
  perspective-origin: 50% 100%;
}
.landing-hero-line .split-char {
  display: inline-block;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}
/* Pre-animation state — JS clears po DOMContentLoaded. Line 1 ma chars,
   line 2 (gradient) animowana jako calosc bo background-clip:text nie
   propaguje przez split spans. */
.landing-hero-title.is-split .landing-hero-line--1 .split-char {
  opacity: 0;
}
.landing-hero-title.is-split .landing-hero-line--2 {
  opacity: 0;
}
.landing-hero-line {
  display: block;
  will-change: transform, opacity;
}
.landing-hero-inner {
  position: relative; z-index: 5;
  max-width: 1100px; width: 100%;
  text-align: center;
}
.landing-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.landing-hero-dot {
  width: 6px; height: 6px;
  background: #88CE02; border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(136, 206, 2, 0.6);
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.landing-hero-title {
  margin: 28px 0 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}
.landing-hero-grad {
  /* brandbook v2: solid lime zamiast gradient text (impeccable ban).
     Brand mark intensity via large size + weight, nie color fill. */
  color: var(--accent);
}
.landing-hero-sub {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-muted);
}
.landing-hero-sub strong { color: var(--text); font-weight: 600; }

.landing-hero-stats {
  display: inline-flex; align-items: center;
  margin: 0 auto 48px;
  padding: 16px 28px;
  background: color-mix(in srgb, var(--surface-1) 60%, transparent); /* = rgba(22,27,34,0.6) */
  backdrop-filter: blur(8px); /* brandbook-allow: modal/overlay glass — intentional */
  -webkit-backdrop-filter: blur(8px); /* brandbook-allow: modal/overlay glass — intentional */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.landing-hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 100px; }
.landing-hero-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.landing-hero-stat-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.landing-hero-stat-divider {
  width: 1px; height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-hero-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.landing-cta-btn--primary, .landing-cta-btn--secondary {
  padding: 14px 28px;
  font-size: 15px;
}

/* --- SECTIONS (shared layout) --- */
.landing-section {
  padding: 120px 24px;
  position: relative;
}
.landing-section--alt {
  background: linear-gradient(180deg, var(--surface-0) 0%, color-mix(in srgb, var(--surface-1) 40%, var(--surface-0)) 50%, var(--surface-0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.landing-section-eyebrow {
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.landing-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 0 0 20px;
}
.landing-section-sub {
  max-width: 640px;
  font-size: 17px; line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 64px;
}
.landing-section-sub strong { color: var(--text); font-weight: 600; }

/* Reveal-on-scroll (gsap will animate) — blur-in dla "drogiego" feelu */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
}

/* --- TICKER TAPE (universe 50 spółek, CSS marquee, 2 kopie = seamless) --- */
.landing-tape {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.landing-tape-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: tape-scroll 70s linear infinite;
  will-change: transform;
}
.landing-tape:hover .landing-tape-track { animation-play-state: paused; }
.landing-tape-sym {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  transition: color 0.18s;
}
.landing-tape-sym:hover { color: var(--accent); }
@keyframes tape-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- BEZPIECZNIKI (guardrails grid) --- */
.landing-guards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.landing-guard {
  padding: 28px 26px;
  background: color-mix(in srgb, var(--surface-1) 40%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.landing-guard:hover {
  border-color: rgba(136, 206, 2, 0.3);
  background: color-mix(in srgb, var(--surface-1) 70%, transparent);
  transform: translateY(-3px);
}
.landing-guard-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.landing-guard-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.landing-guard-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* --- NAV: scrolled state (JS toggluje .is-scrolled) --- */
.landing-nav { transition: background 0.25s, border-color 0.25s; }
.landing-nav.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* --- Magnetic CTA: JS steruje transformem, transition daje płynność --- */
.landing-cta-btn--primary { transition: transform 0.16s ease-out, box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1); }

/* --- 3-STEP FLOW (Section 1) --- */
.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.landing-step {
  position: relative;
  padding: 32px 28px;
  background: color-mix(in srgb, var(--surface-1) 40%, transparent); /* = rgba(22,27,34,0.4) */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.landing-step:hover {
  border-color: rgba(136, 206, 2, 0.3);
  background: color-mix(in srgb, var(--surface-1) 70%, transparent); /* = rgba(22,27,34,0.7) */
  transform: translateY(-4px);
}
.landing-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.landing-step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(136, 206, 2, 0.12) 0%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid rgba(136, 206, 2, 0.18);
  color: var(--accent);
  margin-bottom: 20px;
}
.landing-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--text-strong);
}
.landing-step-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* --- CHART CARD (Section 2) --- */
/* Brandbook chart-card spec: solid bg, no blur (chart-card to NIE floating layer).
   Border 0.06 faint per brandbook. Radius 10px (sharper, technical). */
.landing-chart-card {
  background: var(--surface-0, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 40px;
  transition: border-color 150ms ease;
  margin-top: 32px;
}
.landing-chart-card:hover { border-color: rgba(255, 255, 255, 0.12); }
.landing-chart-wrap {
  height: 360px;
  position: relative;
  margin-bottom: 32px;
}
.landing-chart-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-chart-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.landing-chart-stat-label {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* --- MANIFESTO (Section 3) — 3 zasady + final CTA --- */
.landing-manifesto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.landing-principle {
  padding: 36px 32px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}
.landing-principle:first-child { border-left-color: transparent; }
.landing-principle:hover { border-left-color: rgba(136, 206, 2, 0.4); }
.landing-principle-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  font-weight: 600;
}
.landing-principle-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-strong);
  margin: 0 0 14px;
}
.landing-principle-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Final CTA — closing punchline */
.landing-final-cta {
  margin-top: 96px;
  padding: 56px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-final-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.landing-final-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.landing-cta-btn--xl {
  padding: 16px 32px;
  font-size: 16px;
}

/* --- FOOTER --- */
.landing-footer {
  padding: 56px 24px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--surface-0, #0a0a0a);
}
.landing-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.landing-footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600;
}
.landing-footer-tagline {
  font-size: 13px; color: var(--text-muted);
  font-style: italic;
}
.landing-footer-links {
  display: flex; gap: 24px;
  align-items: center;
}
.landing-footer-links a,
.landing-footer-link-btn {
  background: none; border: 0; cursor: pointer;
  color: var(--text-muted); text-decoration: none;
  font-family: inherit; font-size: 14px;
  transition: color 0.18s;
  padding: 0;
}
.landing-footer-links a:hover,
.landing-footer-link-btn:hover { color: var(--accent); }
.landing-footer-links a:focus-visible,
.landing-footer-link-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .landing-nav { padding: 14px 20px; }
  .landing-section { padding: 80px 20px; }
  .landing-hero { padding: 100px 20px 60px; min-height: auto; }
  .landing-hero-stats { padding: 14px 20px; gap: 14px; }
  .landing-hero-stat-divider { display: none; }
  .landing-chart-card { padding: 24px; }
  .landing-chart-wrap { height: 280px; }
  .landing-section-sub { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .landing-nav-link { display: none; }
  .landing-hero-title { font-size: 48px; }
  .landing-hero-stat-val { font-size: 22px; }
}

/* Sparkline na malych ekranach: jeszcze bardziej subdued */
@media (max-width: 768px) {
  .landing-hero-chart-wrap {
    height: 50%;
  }
  .landing-hero-chart { opacity: 0.55; }
  .landing-hero-marker-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .landing-hero-chart-wrap {
    height: 40%;
  }
  .landing-hero-chart { opacity: 0.4; }
  .landing-hero-marker-label { display: none; }
}

/* prefers-reduced-motion: respect — disable looping animations */
@media (prefers-reduced-motion: reduce) {
  .landing-hero-chart.is-drawn .landing-hero-chart-line,
  .landing-hero-chart.is-drawn .landing-hero-chart-area,
  .landing-hero-marker--buy,
  .landing-hero-marker--sell,
  .landing-hero-marker-label--buy,
  .landing-hero-marker-label--sell,
  .landing-hero-marker-pulse,
  .landing-hero-glow,
  .landing-tape-track,
  .landing-hero-dot {
    animation: none !important;
  }
  .landing-hero-chart-line { stroke-dashoffset: 0; }
  .landing-hero-chart-area { opacity: 0.9; }
  .landing-hero-marker,
  .landing-hero-marker-label { opacity: 1; }
  /* JS (landing.js REDUCED gate) pokazuje [data-reveal] bez animacji;
     CSS fallback gdyby JS nie wstał: */
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}
