/* Landing + public news pages - "AI terminal" theme */

:root {
  /* tmavé nativní prvky (scrollbary apod.) i na landing stránkách */
  color-scheme: dark;
  --brand-dark: #101827;
  --brand-mid: #162033;
  --brand-green: #0f5132;
  --brand-accent: #20c997;
  --brand-accent-hover: #17b08a;
  --accent-indigo: #6366f1;
  --bg-deep: #0a0f1c;
  --bg-panel: #0e1626;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.4);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

body.landing-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e2e8f0;
  background: var(--bg-deep);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(10, 15, 28, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}
.landing-brand-mark {
  background: var(--brand-accent);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(32, 201, 151, 0.35);
}
.landing-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-accent {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #06121f;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(32, 201, 151, 0.25);
}
.btn-accent:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: #06121f;
  box-shadow: 0 0 32px rgba(32, 201, 151, 0.4);
}
.btn-accent::after {
  content: "";
  position: absolute;
  top: -50%; left: -100%;
  width: 55%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.32) 50%, transparent 60%);
  transform: skewX(-15deg);
  pointer-events: none;
}
.btn-accent:hover::after { animation: btn-shimmer 0.55s ease forwards; }
@keyframes btn-shimmer { to { left: 145%; } }

/* ── Aurora background ── */
.fx-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.fx-aurora::before,
.fx-aurora::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  min-width: 480px;
  min-height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
}
.fx-aurora::before {
  background: radial-gradient(circle, rgba(32, 201, 151, 0.5), transparent 62%);
  top: -22%;
  left: -12%;
  animation: aurora-drift-a 26s ease-in-out infinite alternate;
}
.fx-aurora::after {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), transparent 62%);
  bottom: -30%;
  right: -14%;
  animation: aurora-drift-b 32s ease-in-out infinite alternate;
}
@keyframes aurora-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(9vw, 6vh) scale(1.15); }
  100% { transform: translate(3vw, 12vh) scale(0.95); }
}
@keyframes aurora-drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-8vw, -8vh) scale(1.12); }
  100% { transform: translate(-2vw, -14vh) scale(1.02); }
}

/* ── Hero ── */
.landing-hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--brand-mid) 65%, #0d2b1e 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 46%;
  pointer-events: none;
  opacity: 0.5;
}
.hero-chart-line {
  stroke: var(--brand-accent);
  stroke-width: 2;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 6px rgba(32, 201, 151, 0.65));
  animation: chart-draw 3.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.hero-chart-fill {
  fill: url(#heroChartGradient);
  opacity: 0;
  animation: chart-fill-in 1.4s ease 2.4s forwards;
}
@keyframes chart-draw { to { stroke-dashoffset: 0; } }
@keyframes chart-fill-in { to { opacity: 1; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(32, 201, 151, 0.12);
  border: 1px solid rgba(32, 201, 151, 0.3);
  border-radius: 999px;
  color: var(--brand-accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--brand-accent) 0%, var(--accent-indigo) 50%, var(--brand-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-slide 6s linear infinite;
}
@keyframes gradient-slide { to { background-position: 200% center; } }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Live dot ── */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-accent);
  flex-shrink: 0;
  position: relative;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.5;
  animation: live-ping 1.4s ease-out infinite;
}
@keyframes live-ping {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Signal demo (hero card) ── */
.signal-card {
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.signal-row:last-child { border-bottom: none; }
.signal-ticker {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  min-width: 60px;
}
.signal-action {
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.05em;
}
.signal-buy { background: rgba(32, 201, 151, 0.2); color: #20c997; }
.signal-sell { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.signal-no-trade { background: rgba(148, 163, 184, 0.2); color: #94a3b8; }
.signal-confidence {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.confidence-bar-wrap {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.confidence-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--brand-accent);
}

/* ── Float animation (hero card) ── */
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.float-anim { animation: float-bob 4.5s ease-in-out infinite; }

/* ── Ticker tape ── */
.ticker-tape {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.ticker-tape::before,
.ticker-tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
.ticker-tape::before { left: 0;  background: linear-gradient(90deg, var(--bg-deep), transparent); }
.ticker-tape::after  { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}
.ticker-tape:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.ticker-item .tt-symbol { color: #fff; font-weight: 700; }
.ticker-item .tt-buy  { color: var(--brand-accent); font-weight: 600; }
.ticker-item .tt-sell { color: #f87171; font-weight: 600; }
.ticker-item .tt-conf { color: var(--text-faint); }

/* ── Dark sections & titles ── */
.dark-section {
  background: var(--bg-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.dark-section-alt {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d1524 50%, var(--bg-deep) 100%);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--text-dim);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--bg-panel);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, var(--brand-accent), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Feature cards ── */
.feature-card {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(32, 201, 151, 0.5);
  box-shadow: 0 12px 44px rgba(32, 201, 151, 0.14);
  transform: translateY(-4px);
}
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(32, 201, 151, 0.13), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.spotlight-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand-accent);
  font-size: 1.4rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 24px rgba(32, 201, 151, 0.3);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-desc {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── Steps ── */
.steps-section {
  background: linear-gradient(160deg, var(--brand-mid) 0%, var(--bg-deep) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(32, 201, 151, 0.15);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: step-glow 3s ease-in-out infinite;
}
@keyframes step-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(32, 201, 151, 0); }
  50%      { box-shadow: 0 0 22px rgba(32, 201, 151, 0.45); }
}
.step-text {
  color: var(--text-dim);
  font-size: 0.93rem;
}

/* ── Animated fill bars ── */
.bar-anim {
  width: 0;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.bar-anim.filled { width: var(--bar-w, 0%); }

/* ── Recent signals ── */
.live-signal-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.live-signal-card:hover {
  border-color: rgba(32, 201, 151, 0.5);
  box-shadow: 0 8px 32px rgba(32, 201, 151, 0.12);
  transform: translateY(-3px);
}
.lsc-ticker {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.lsc-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
}
.lsc-conf {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
}
.result-badge {
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.result-hit { background: rgba(32,201,151,0.15); color: #20c997; }
.result-partial { background: rgba(251,191,36,0.15); color: #fbbf24; }
.result-miss { background: rgba(239,68,68,0.15); color: #f87171; }
.result-unknown { background: rgba(148,163,184,0.15); color: #94a3b8; }
.reveal.revealed .result-badge { animation: badge-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes badge-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
.lsc-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.lsc-bar { height: 100%; border-radius: 4px; }
.lsc-bar-buy { background: var(--brand-accent); }
.lsc-bar-sell { background: #f87171; }

/* ── Pricing ── */
.pricing-section {
  padding: 5rem 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.pricing-card {
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.25rem;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(255, 255, 255, 0.18);
}
@keyframes pro-glow {
  0%, 100% { box-shadow: 0 0 28px rgba(32, 201, 151, 0.12); }
  50%      { box-shadow: 0 0 52px rgba(32, 201, 151, 0.28); }
}
.pricing-card.pricing-pro:hover {
  transform: translateY(-5px);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: rgba(32, 201, 151, 0.1);
  color: var(--brand-accent);
  border: 1px solid rgba(32, 201, 151, 0.25);
}
.pricing-badge-popular {
  background: var(--brand-accent);
  color: #06121f;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(32, 201, 151, 0.4);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.pricing-price {
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-per {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-faint);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.45;
}
.pricing-features li i {
  font-size: 0.82rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}
.pricing-features li i.fa-check  { color: var(--brand-accent); }
.pricing-features li i.fa-times  { color: rgba(255, 255, 255, 0.2); }
.pricing-features li.pf-muted   { color: var(--text-faint); }

/* ── CTA sections ── */
.cta-section {
  background: linear-gradient(160deg, var(--bg-deep) 0%, #0d2b1e 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band {
  background: linear-gradient(135deg, var(--brand-mid) 0%, #0d2b1e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-kicker {
  color: var(--brand-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Footer ── */
.landing-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-faint);
  font-size: 0.85rem;
  padding: 2rem 0;
}
.landing-footer a { color: var(--text-faint); }

/* ── News index ── */
.news-hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--brand-mid) 70%, #0d2b1e 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.news-list-section {
  background: var(--bg-deep);
  padding: 3rem 0 4rem;
}
.news-card {
  --glow: rgba(148, 163, 184, 0.14);
  --glow-border: rgba(255, 255, 255, 0.18);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.news-card:hover {
  border-color: var(--glow-border);
  box-shadow: 0 10px 40px var(--glow);
  transform: translateY(-3px);
}
.news-card.sent-positive { --glow: rgba(32, 201, 151, 0.22); --glow-border: rgba(32, 201, 151, 0.5); }
.news-card.sent-negative { --glow: rgba(239, 68, 68, 0.2);  --glow-border: rgba(239, 68, 68, 0.45); }
.news-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.news-card-title a { color: inherit; text-decoration: none; }
.news-card-title a:hover { color: var(--brand-accent); }
.news-card-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}
.news-card-reason {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}
.news-card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.news-card-relevance {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
}
.news-card-link {
  font-size: 0.8rem;
  color: var(--brand-accent);
  text-decoration: none;
  font-weight: 600;
}
.importance-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.importance-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-accent), #7dd3fc);
}

/* ── Badges (news) ── */
.badge-news {
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}
.badge-sentiment-positive { background: rgba(32,201,151,0.15); color: #2dd4a8; }
.badge-sentiment-negative { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-sentiment-neutral  { background: rgba(148,163,184,0.15); color: #94a3b8; }
.badge-sentiment-unknown  { background: rgba(148,163,184,0.15); color: #94a3b8; }
.badge-catalyst,
.badge-neutral {
  background: rgba(255, 255, 255, 0.07);
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
}

/* ── Pagination (pagy bootstrap on dark) ── */
.news-list-section .pagination .page-link,
.results-list-section .pagination .page-link {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--text-dim);
}
.news-list-section .pagination .page-link:hover,
.results-list-section .pagination .page-link:hover {
  background: rgba(32, 201, 151, 0.12);
  border-color: rgba(32, 201, 151, 0.4);
  color: var(--brand-accent);
}
.news-list-section .pagination .page-item.active .page-link,
.results-list-section .pagination .page-item.active .page-link {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #06121f;
}
.news-list-section .pagination .page-item.disabled .page-link,
.results-list-section .pagination .page-item.disabled .page-link {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
}

/* ── News show ── */
.news-show-hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--brand-mid) 100%);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.news-show-body {
  background: var(--bg-deep);
  padding: 3rem 0 4rem;
}
.news-back-link {
  color: var(--text-faint);
  font-size: 0.85rem;
  text-decoration: none;
}
.news-back-link:hover { color: var(--brand-accent); }
.news-show-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: #fff;
}
.news-show-meta {
  color: var(--text-faint);
  font-size: 0.82rem;
}
.news-show-meta a { color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; text-decoration: none; }
.ai-analysis-box {
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.ai-analysis-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(32, 201, 151, 0.06), transparent);
  animation: scanline 7s linear infinite;
  pointer-events: none;
}
@keyframes scanline { to { transform: translateY(450%); } }
.ai-analysis-box .label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.ai-analysis-box .reason-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Confidence gauge ── */
.ai-gauge {
  position: relative;
  width: 74px;
  height: 74px;
  flex-shrink: 0;
}
.ai-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 6;
}
.gauge-fill {
  fill: none;
  stroke: var(--brand-accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 213.63;
  filter: drop-shadow(0 0 4px rgba(32, 201, 151, 0.6));
  animation: gauge-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
@keyframes gauge-in { from { stroke-dashoffset: 213.63; } }
.gauge-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.gauge-value small {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ── Article content ── */
.article-heading {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
}
.content-section {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.85;
}
.content-section p { margin-bottom: 1rem; }
.content-missing { color: var(--text-faint); }

/* ── Legal pages ── */
.legal-page {
  background: var(--bg-deep);
  min-height: 80vh;
}
.legal-page h1 {
  font-family: var(--font-display);
  color: #fff;
}
.legal-page h5 { color: #e2e8f0; }
.legal-page p, .legal-page li {
  color: #94a3b8;
  line-height: 1.75;
  font-size: 0.95rem;
}
.legal-page a { color: var(--brand-accent); }
.legal-section {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-page .border-top { border-color: rgba(255, 255, 255, 0.08) !important; }
.legal-notice {
  background: rgba(251, 191, 36, 0.08);
  border-left: 4px solid #fbbf24;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.legal-notice .notice-title { font-weight: 600; color: #fbbf24; }
.legal-notice .notice-text { color: #cbd5e1; font-size: 0.93rem; }

/* ── Animated gradient border ──
   Kept after all card definitions: the double background must win the
   cascade over per-card `background` rules of equal specificity. */
@property --gb-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.gradient-border {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(14, 22, 38, 0.92), rgba(14, 22, 38, 0.92)) padding-box,
    conic-gradient(from var(--gb-angle),
      rgba(32, 201, 151, 0.6),
      rgba(99, 102, 241, 0.45) 25%,
      rgba(255, 255, 255, 0.06) 50%,
      rgba(99, 102, 241, 0.45) 75%,
      rgba(32, 201, 151, 0.6)) border-box;
  animation: gb-rotate 7s linear infinite;
}
@keyframes gb-rotate { to { --gb-angle: 360deg; } }
.gradient-border.float-anim {
  animation: float-bob 4.5s ease-in-out infinite, gb-rotate 7s linear infinite;
}
.pricing-card.pricing-pro.gradient-border {
  animation: gb-rotate 7s linear infinite, pro-glow 4s ease-in-out infinite;
}
.pricing-card.pricing-pro.gradient-border:hover {
  border-color: transparent;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }
.reveal-d4 { transition-delay: 0.36s; }
.reveal-d5 { transition-delay: 0.45s; }
.reveal-d6 { transition-delay: 0.54s; }

/* ── Landing hamburger ── */
.landing-hamburger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  transition: border-color 0.15s, color 0.15s;
}
.landing-hamburger:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.landing-mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.75rem;
  padding: 0.75rem 0 0.75rem;
}
.landing-mobile-link {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 0.25rem;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s;
}
.landing-mobile-link:hover {
  color: var(--brand-accent);
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .fx-aurora::before, .fx-aurora::after { filter: blur(60px); opacity: 0.22; }
  .hero-chart { opacity: 0.3; }

  .landing-hero { padding: 3.5rem 0 3rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem !important; }
  .dark-section,
  .pricing-section,
  .steps-section,
  .cta-section,
  .news-list-section,
  .results-list-section { padding: 3.25rem 0; }
  .cta-band { padding: 3rem 0; }
  .news-hero,
  .results-hero { padding: 3rem 0 2.25rem; }

  .stat-number { font-size: 1.5rem; }
  .ticker-item { padding: 0.6rem 1rem; font-size: 0.74rem; }
  .feature-card { padding: 1.5rem; }
  .pricing-card { padding: 1.6rem; }
  .pricing-price { font-size: 2.2rem; }
  .ai-analysis-box { padding: 1.4rem; }
  .result-stat-value { font-size: 2rem; }

  /* live signal cards — kompaktnější na mobile (2 sloupce) */
  .live-signal-card { padding: 1rem; }
  .lsc-ticker { font-size: 1rem; }
  .lsc-conf { font-size: 0.72rem; }

  /* hero subtitle max-width */
  .hero-subtitle { max-width: 100%; }
}

/* ── Results pages ── */
.results-hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--brand-mid) 70%, #0d2b1e 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.results-stats-section {
  background: var(--bg-deep);
  padding: 2.5rem 0 0;
}
.results-list-section {
  background: var(--bg-deep);
  padding: 2rem 0 4rem;
}
.results-cta-section {
  background: var(--bg-deep);
  padding: 2rem 0 4rem;
}
.results-cta-box {
  background: linear-gradient(135deg, rgba(32,201,151,0.07) 0%, rgba(99,102,241,0.07) 100%);
  border: 1px solid rgba(32,201,151,0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.result-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem 1rem;
  text-align: center;
  height: 100%;
}
.result-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.result-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.2rem;
}
.result-stat-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
}
.result-card {
  --glow: rgba(148,163,184,0.1);
  --glow-border: rgba(255,255,255,0.15);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  color: inherit;
}
.result-card:hover {
  border-color: var(--glow-border);
  box-shadow: 0 10px 40px var(--glow);
  transform: translateY(-3px);
}
.result-card.result-hit    { --glow: rgba(32,201,151,0.18); --glow-border: rgba(32,201,151,0.45); }
.result-card.result-partial { --glow: rgba(251,191,36,0.15); --glow-border: rgba(251,191,36,0.4); }
.result-card.result-miss   { --glow: rgba(148,163,184,0.1);  --glow-border: rgba(255,255,255,0.12); }
.result-card-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.result-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.result-card-reason {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0;
}
.result-card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
/* Result badges */
.badge-result {
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.03em;
}
.result-buy           { background: rgba(32,201,151,0.15); color: #2dd4a8; }
.result-sell          { background: rgba(239,68,68,0.15);  color: #f87171; }
.result-badge-hit     { background: rgba(32,201,151,0.15); color: #2dd4a8; }
.result-badge-partial { background: rgba(251,191,36,0.15); color: #fbbf24; }
.result-badge-miss    { background: rgba(148,163,184,0.12); color: #94a3b8; }

@media (max-width: 575.98px) {
  /* CTA tlačítka v hero a sekcích přes celou šířku */
  .landing-hero .btn-lg,
  .cta-section .btn-lg,
  .cta-band .btn-lg {
    width: 100%;
  }

  /* brand v navbaru */
  .landing-nav .fs-5 { font-size: 1rem !important; }

  /* stats bar — 2 sloupce (výchozí col-6) jsou OK */
  .stat-number { font-size: 1.35rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bar-anim { width: var(--bar-w, 0%); }
  .hero-chart-line { stroke-dashoffset: 0; }
  .hero-chart-fill { opacity: 1; }
  .ticker-track { animation: none; }
  .float-anim { animation: none; }
}
