/* ================================================================
   ПСИХОКОД БИЗНЕСА — Landing Page CSS
   Neural network theme: dark, glowing, interactive
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #050714;
  --bg-card:    #0A0E27;
  --bg-border:  #131B3F;
  --cyan:       #00F0FF;
  --violet:     #7B2FFF;
  --magenta:    #FF00E5;
  --glow-soft:  #B8B5FF;
  --text-white: #FFFFFF;
  --text-main:  #B4B7D4;
  --text-muted: #6E7299;
  --error-red:  #FF4560;
  --success:    #00F064;
  --nav-h:      64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(123,47,255,0.4); border-radius: 3px; }

/* ─── CANVAS BACKGROUND ─────────────────────────────────────── */
#neural-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.ln-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(5,7,20,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,47,255,0.18);
  transition: background 0.3s;
}
.ln-nav.scrolled {
  background: rgba(5,7,20,0.96);
  border-bottom-color: rgba(123,47,255,0.3);
}

.ln-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.ln-nav-logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(123,47,255,0.3), rgba(0,240,255,0.15));
  border: 1px solid rgba(123,47,255,0.4);
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.ln-nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7B2FFF, #00F0FF);
  opacity: 0;
  transition: opacity 0.3s;
}
.ln-nav-logo:hover .ln-nav-logo-icon::after { opacity: 0.15; }
.ln-nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ln-nav-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.3px;
}
.ln-nav-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.ln-nav-auth { display: flex; align-items: center; gap: 10px; }

.ln-btn-ghost {
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(123,47,255,0.28);
  transition: all 0.2s;
  background: none;
  cursor: pointer;
}
.ln-btn-ghost:hover {
  border-color: var(--violet);
  color: var(--text-white);
  background: rgba(123,47,255,0.1);
}
.ln-btn-primary {
  color: var(--text-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7B2FFF, #5B1FCC);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ln-btn-primary:hover { box-shadow: 0 0 20px rgba(123,47,255,0.5); }

.ln-auth-name {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── SECTION WRAPPER ───────────────────────────────────────── */
.ln-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.ln-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION LABEL ─────────────────────────────────────────── */
.ln-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(0,240,255,0.25);
  border-radius: 20px;
  background: rgba(0,240,255,0.05);
}
.ln-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ─── HERO SECTION ───────────────────────────────────────────── */
.ln-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.ln-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.ln-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 2.5s forwards;
}
.ln-hero-eyebrow span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  margin-right: 10px;
  vertical-align: middle;
  animation: blink 1.5s infinite;
}

.ln-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 2.8s forwards;
}

.ln-hero-title .grad-text {
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ln-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-main);
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 3s forwards;
}

.ln-hero-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 3.15s forwards;
}

.ln-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 3.3s forwards;
}

.ln-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(90deg, var(--cyan), #00C8FF);
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0,240,255,0.35);
}
.ln-cta-main:hover {
  box-shadow: 0 0 50px rgba(0,240,255,0.6);
  transform: translateY(-2px) scale(1.02);
}
.ln-cta-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ln-cta-main:hover::after { opacity: 1; }

.ln-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.ln-cta-secondary:hover {
  border-color: rgba(123,47,255,0.5);
  background: rgba(123,47,255,0.1);
  transform: translateY(-2px);
}

/* counter strip */
.ln-hero-counter {
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 0.8s 3.5s forwards;
}
.ln-counter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ln-counter-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 40px;
  background: rgba(0,240,255,0.04);
}
.ln-counter-num strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,240,255,0.5);
}
.ln-counter-num span {
  font-size: 14px;
  color: var(--text-main);
}
.ln-counter-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0,240,100,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(0,240,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,240,100,0); }
}

/* ─── SCROLL INDICATOR ──────────────────────────────────────── */
.ln-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 4s forwards;
}
.ln-scroll-hint span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.ln-scroll-arrow {
  width: 24px; height: 38px;
  border: 2px solid rgba(123,47,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.ln-scroll-dot {
  width: 4px; height: 8px;
  background: var(--violet);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100%{ transform: translateY(0); opacity: 1; }
  50%{ transform: translateY(10px); opacity: 0.3; }
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── SECTION TITLES ────────────────────────────────────────── */
.ln-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.ln-section-sub {
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── DIVIDER ────────────────────────────────────────────────── */
.ln-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,47,255,0.3), rgba(0,240,255,0.3), transparent);
  margin: 0;
}

/* ─── PAIN SECTION ──────────────────────────────────────────── */
.ln-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.ln-err-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(255,69,96,0.25);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ln-err-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--error-red), transparent);
  animation: errScan 3s infinite;
}
@keyframes errScan {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
.ln-err-card:hover {
  border-color: rgba(255,69,96,0.5);
  background: rgba(255,69,96,0.05);
  transform: translateY(-4px);
}
.ln-err-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--error-red);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ln-err-code-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--error-red);
  animation: blink 1s infinite;
}
.ln-err-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ln-err-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.ln-pain-conclusion {
  margin-top: 48px;
  padding: 28px 36px;
  border: 1px solid rgba(123,47,255,0.3);
  border-radius: 20px;
  background: rgba(123,47,255,0.05);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--text-white);
  line-height: 1.5;
}
.ln-pain-conclusion em { color: var(--cyan); font-style: normal; font-weight: 700; }

/* ─── FOR WHOM SECTION ──────────────────────────────────────── */
.ln-nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ln-node-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(123,47,255,0.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}
.ln-node-card:hover {
  border-color: rgba(123,47,255,0.5);
  background: rgba(123,47,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(123,47,255,0.15);
}
.ln-node-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--violet);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.ln-node-icon { font-size: 32px; margin-bottom: 12px; }
.ln-node-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ln-node-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.ln-node-match {
  display: inline-block;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--success);
  background: rgba(0,240,100,0.08);
  border: 1px solid rgba(0,240,100,0.2);
  border-radius: 6px;
  padding: 4px 10px;
}

.ln-access-denied {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(255,69,96,0.2);
  border-radius: 20px;
  background: rgba(255,69,96,0.03);
}
.ln-access-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--error-red);
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ln-access-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.ln-access-item {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ln-access-item .code { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,69,96,0.6); }

/* ─── DECODED / WHAT YOU GET ────────────────────────────────── */
.ln-decoded-wrap {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.ln-decoded-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(0,240,255,0.15);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ln-decoded-card:hover {
  border-color: rgba(0,240,255,0.4);
  background: rgba(0,240,255,0.04);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0,240,255,0.08);
}
.ln-decoded-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ln-decoded-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1.5px;
}
.ln-decoded-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--success);
}
.ln-decoded-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.ln-decoded-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: 1px;
  transition: width 1.5s ease;
  width: 0;
}
.ln-decoded-card.visible .ln-decoded-bar-fill { width: 100%; }
.ln-decoded-icon { font-size: 28px; margin-bottom: 10px; }
.ln-decoded-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ln-decoded-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ln-decoded-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ln-decoded-list li::before { content: '→'; color: var(--cyan); flex-shrink: 0; }
.ln-decoded-status {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--success);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ln-decoded-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  flex-shrink: 0;
}

/* New card sub-elements */
.ln-decoded-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 6px 0 10px;
  line-height: 1.5;
}
.ln-decoded-conclusion {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.5;
  border-top: 1px solid rgba(0,240,255,0.1);
  padding-top: 10px;
}

/* В ИТОГЕ block */
.ln-decoded-итого {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,240,255,0.04), rgba(123,47,255,0.04));
  text-align: center;
}
.ln-итого-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ln-итого-sub {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 28px;
}
.ln-итого-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.ln-итого-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,240,255,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (max-width: 700px) {
  .ln-итого-grid { grid-template-columns: repeat(2, 1fr); }
  .ln-decoded-итого { padding: 28px 20px; }
}

.ln-decoded-complete {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid rgba(0,240,100,0.2);
  border-radius: 20px;
  background: rgba(0,240,100,0.03);
  text-align: center;
}
.ln-dc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--success);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.ln-dc-checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
}
.ln-dc-check {
  font-size: 14px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ln-dc-check::before { content: '✓'; color: var(--success); font-weight: 700; }
.ln-dc-footer {
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── HOW TO USE ─────────────────────────────────────────────── */
.ln-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.ln-signal-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(123,47,255,0.15);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ln-signal-card:hover {
  border-color: rgba(123,47,255,0.4);
  background: rgba(123,47,255,0.07);
  transform: translateY(-4px);
}
.ln-signal-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--violet);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.ln-signal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.ln-signal-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ln-signal-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ln-signal-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 8px;
}

.ln-signal-conclusion {
  margin-top: 32px;
  padding: 24px 32px;
  border: 1px solid rgba(123,47,255,0.2);
  border-radius: 16px;
  background: rgba(123,47,255,0.04);
  text-align: center;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
}
.ln-signal-conclusion strong { color: var(--violet); }

/* ─── METHODOLOGY LAYERS ────────────────────────────────────── */
.ln-layers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.ln-layer-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  background: rgba(10,14,39,0.8);
}
.ln-layer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.ln-layer-card.l1 { border-color: rgba(0,240,255,0.2); }
.ln-layer-card.l1:hover { border-color: rgba(0,240,255,0.5); box-shadow: 0 0 30px rgba(0,240,255,0.08); }
.ln-layer-card.l2 { border-color: rgba(123,47,255,0.2); }
.ln-layer-card.l2:hover { border-color: rgba(123,47,255,0.5); box-shadow: 0 0 30px rgba(123,47,255,0.08); }
.ln-layer-card.l3 { border-color: rgba(255,0,229,0.2); }
.ln-layer-card.l3:hover { border-color: rgba(255,0,229,0.5); box-shadow: 0 0 30px rgba(255,0,229,0.08); }
.ln-layer-card.l4 { border-color: rgba(255,165,0,0.2); }
.ln-layer-card.l4:hover { border-color: rgba(255,165,0,0.5); box-shadow: 0 0 30px rgba(255,165,0,0.08); }
.ln-layer-card.l5 { border-color: rgba(184,181,255,0.2); }
.ln-layer-card.l5:hover { border-color: rgba(184,181,255,0.5); box-shadow: 0 0 30px rgba(184,181,255,0.08); }

.ln-layer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ln-layer-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
}
.l1 .ln-layer-id { color: var(--cyan); }
.l2 .ln-layer-id { color: var(--violet); }
.l3 .ln-layer-id { color: var(--magenta); }
.l4 .ln-layer-id { color: #FFA500; }
.l5 .ln-layer-id { color: var(--glow-soft); }

.ln-layer-depth {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
}
.ln-layer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.ln-layer-full { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.ln-layer-what {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ln-layer-what strong { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }

.ln-progress-bar {
  height: 3px;
  border-radius: 2px;
  margin: 14px 0 0;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.ln-progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.5s ease;
  width: 0;
}
.ln-layer-card.visible .ln-progress-fill { width: var(--fill-w, 80%); }
.l1 .ln-progress-fill { background: var(--cyan); }
.l2 .ln-progress-fill { background: var(--violet); }
.l3 .ln-progress-fill { background: var(--magenta); }
.l4 .ln-progress-fill { background: #FFA500; }
.l5 .ln-progress-fill { background: var(--glow-soft); }

/* ─── WHY NOT CHATGPT ───────────────────────────────────────── */
.ln-split-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 32px;
  text-align: center;
}
.ln-split-side {
  padding: 16px;
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.ln-split-side.left {
  background: rgba(255,69,96,0.06);
  border: 1px solid rgba(255,69,96,0.2);
  color: var(--error-red);
}
.ln-split-side.right {
  background: rgba(0,240,255,0.06);
  border: 1px solid rgba(0,240,255,0.2);
  color: var(--cyan);
}
.ln-split-vs {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
}

.ln-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.ln-problem-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.ln-problem-card:hover {
  border-color: rgba(0,240,255,0.25);
  transform: translateY(-3px);
}
.ln-prob-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.ln-prob-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ln-prob-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.ln-prob-solution {
  font-size: 13px;
  color: var(--success);
  padding-top: 12px;
  border-top: 1px solid rgba(0,240,100,0.15);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ln-prob-solution::before { content: '✓'; flex-shrink: 0; font-weight: 700; }

/* ─── PRICING / HOW IT WORKS ────────────────────────────────── */
.ln-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 64px;
  position: relative;
}
.ln-steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,47,255,0.4), rgba(0,240,255,0.4), transparent);
}
.ln-step-item { text-align: center; position: relative; z-index: 1; }
.ln-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(123,47,255,0.2), rgba(0,240,255,0.1));
  border: 1px solid rgba(123,47,255,0.4);
  color: var(--text-white);
  position: relative;
}
.ln-step-num.active-step {
  background: linear-gradient(135deg, var(--violet), #00C8FF);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(123,47,255,0.4);
  color: var(--bg-deep);
}
.ln-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.ln-step-body { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* PRICING CARDS */
.ln-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.ln-price-card {
  background: rgba(10,14,39,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
}
.ln-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123,47,255,0.4);
}
.ln-price-card.featured {
  border-color: rgba(0,240,255,0.4);
  background: linear-gradient(160deg, rgba(0,240,255,0.05), rgba(123,47,255,0.05));
  box-shadow: 0 0 40px rgba(0,240,255,0.1);
}
.ln-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  color: var(--bg-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.ln-price-plan {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ln-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1;
}
.ln-price-amount span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.ln-price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.ln-price-sub-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ln-price-result {
  font-size: 13px;
  color: var(--cyan);
  font-style: italic;
  margin-top: 14px;
  margin-bottom: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,240,255,0.12);
  line-height: 1.5;
}
.ln-price-list-emoji {
  list-style: none !important;
  padding-left: 0 !important;
}
.ln-price-list-emoji li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 4px 0;
}
.ln-price-list-emoji li::before {
  display: none !important;
}
.pli-icon {
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}
.ln-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.ln-price-list li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ln-price-list li.off { color: var(--text-muted); }
.ln-price-list li::before { content: '✓'; color: var(--success); flex-shrink: 0; }
.ln-price-list li.off::before { content: '—'; color: var(--text-muted); }

.ln-price-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.ln-price-btn.ghost {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-white);
  background: none;
}
.ln-price-btn.ghost:hover { background: rgba(255,255,255,0.05); }
.ln-price-btn.accent {
  background: linear-gradient(135deg, var(--violet), #5B1FCC);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(123,47,255,0.3);
}
.ln-price-btn.accent:hover { box-shadow: 0 0 35px rgba(123,47,255,0.5); }
.ln-price-btn.cyan {
  background: linear-gradient(90deg, var(--cyan), #00C8FF);
  color: var(--bg-deep);
  box-shadow: 0 0 20px rgba(0,240,255,0.3);
}
.ln-price-btn.cyan:hover { box-shadow: 0 0 35px rgba(0,240,255,0.55); }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.ln-final {
  text-align: center;
  padding: 120px 24px;
}
.ln-final-glow {
  display: inline-block;
  padding: 80px 48px;
  border: 1px solid rgba(123,47,255,0.25);
  border-radius: 32px;
  background: rgba(123,47,255,0.04);
  max-width: 700px;
  position: relative;
  overflow: hidden;
}
.ln-final-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0,240,255,0.15), transparent, rgba(123,47,255,0.15));
  z-index: -1;
}
.ln-final-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.ln-final-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.ln-final-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ln-final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.ln-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.ln-footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.ln-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.ln-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.ln-footer-links a:hover { color: var(--text-main); }
.ln-footer-copy { margin-top: 20px; font-size: 12px; color: var(--text-muted); }

/* ─── GLITCH CURSOR TRAIL ───────────────────────────────────── */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.1s, top 0.1s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ln-nav { padding: 0 16px; }
  .ln-nav-logo-sub { display: none; }
  .ln-hero { min-height: 100svh; }
  .ln-nodes-grid { grid-template-columns: 1fr; }
  .ln-pricing-grid { grid-template-columns: 1fr; }
  .ln-steps-row { grid-template-columns: repeat(2,1fr); }
  .ln-steps-row::before { display: none; }
  .ln-split-header { grid-template-columns: 1fr; gap: 8px; }
  .ln-split-vs { display: none; }
  .ln-final-glow { padding: 48px 24px; }
  .ln-section { padding: 72px 0; }
  .ln-hero-counter { margin-top: 48px; }
}
@media (max-width: 480px) {
  .ln-cta-main, .ln-cta-secondary { width: 100%; justify-content: center; }
  .ln-hero-ctas { flex-direction: column; }
  .ln-steps-row { grid-template-columns: 1fr; }
}

/* ─── SCROLL CANVAS HERO ANIMATION ──────────────────────────── */
.ln-hero-track {
  position: relative;
  height: 500vh;
  background: transparent;
  z-index: 10;
}
.ln-hero-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ln-hero-sticky #scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.ln-hero-slides {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 60vh;
  pointer-events: none;
  z-index: 5;
}
.ln-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.4s ease;
  transform: translateY(20px);
  pointer-events: none;
}
.ln-hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ln-hero-slide .ln-hero-content {
  pointer-events: auto;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- MONITOR BOTTOM PANEL & TICKER --- */
.ln-hero-monitor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(5,7,20,0.9), transparent);
  border-top: 1px solid rgba(123,47,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.ln-monitor-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
}
.ln-monitor-ticker {
  overflow: hidden;
  width: 50%;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}
.ln-ticker-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  color: var(--text-muted);
}
.ln-ticker-track span {
  text-transform: uppercase;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes cta-glow-pulse {
  0% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.35); }
  50% { box-shadow: 0 0 35px rgba(0, 240, 255, 0.65); }
  100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.35); }
}

.ln-cta-main {
  animation: cta-glow-pulse 3s infinite ease-in-out;
}

/* --- PAIN SECTION INTERACTIVE STYLING --- */
.text-glitch-error {
  position: relative;
  color: var(--error-red);
  text-shadow: 0 0 10px rgba(255, 69, 96, 0.5);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
}
.text-glitch-error::before,
.text-glitch-error::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #050714;
  clip: rect(0, 900px, 0, 0); 
}
.text-glitch-error::before {
  left: 2px;
  text-shadow: -1px 0 var(--cyan);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}
.text-glitch-error::after {
  left: -2px;
  text-shadow: -1px 0 var(--magenta);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
@keyframes glitch-anim-1 {
  0% { clip: rect(20px, 9999px, 66px, 0); }
  100% { clip: rect(44px, 9999px, 12px, 0); }
}
@keyframes glitch-anim-2 {
  0% { clip: rect(76px, 9999px, 5px, 0); }
  100% { clip: rect(10px, 9999px, 90px, 0); }
}
.ln-err-card {
  animation: errCardBlink 6s infinite alternate ease-in-out;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.ln-err-card:hover {
  animation: none !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3) !important;
  background: rgba(0, 240, 255, 0.04) !important;
  transform: translateY(-5px);
}
@keyframes errCardBlink {
  0%, 93%, 97% { border-color: rgba(255,69,96,0.25); }
  94%, 96% { border-color: rgba(255,69,96,0.85); box-shadow: 0 0 10px rgba(255,69,96,0.3); }
  95% { border-color: rgba(255,69,96,0.1); }
}
.ln-err-wave {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 35px;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ln-err-card:hover .ln-err-wave {
  opacity: 0.1;
}
.wave-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: waveMove 3s linear infinite;
}
@keyframes waveMove {
  to { stroke-dashoffset: 0; }
}

/* --- AUDIENCE NODES MATCHING --- */
.ln-node-card {
  transition: all 0.3s ease;
  cursor: pointer;
}
.ln-node-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  transform: translateY(-4px);
  background: rgba(0, 240, 255, 0.05);
}
.ln-node-card:hover .ln-node-match {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  font-weight: 700;
}

/* --- DECODED SECTION LAYOUT (CENTERED SKULL) --- */
.ln-decoded-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 48px;
}
.ln-decoded-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.ln-decoded-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}
.ln-decoded-left-col {
  align-items: flex-end;
}
.ln-decoded-right-col {
  align-items: flex-start;
}

/* Card Status styling updates */
.ln-decoded-status {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #ffaa00; /* Waiting state: amber */
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.65;
  transition: all 0.3s ease;
}
.ln-decoded-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffaa00;
  box-shadow: 0 0 8px #ffaa00;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.ln-decoded-card.active-card .ln-decoded-status {
  color: var(--success);
  opacity: 1;
}
.ln-decoded-card.active-card .ln-decoded-status::before {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-green-dot 1.5s infinite;
}
@keyframes pulse-green-dot {
  0% { transform: scale(1); box-shadow: 0 0 4px var(--success); }
  50% { transform: scale(1.3); box-shadow: 0 0 10px var(--success); }
  100% { transform: scale(1); box-shadow: 0 0 4px var(--success); }
}

/* --- PAIN SECTION STICKY TRACK & AUDIENCE OVERLAP --- */
.ln-pain-track {
  position: relative;
  height: 200vh; /* 100vh for reading + 100vh for scroll-overlap */
}
.ln-pain-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 8;
  background: transparent;
}
#audience {
  position: relative;
  z-index: 10;
  background-color: #040613;
  overflow: hidden;
}
.ln-section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12; /* faint background layout podlozhka */
  pointer-events: none;
  z-index: 0;
}
.silhouette-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-silhouette {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.15));
}
.head-silhouette path {
  transition: stroke 0.5s, stroke-width 0.5s;
}
.silhouette-container:hover .head-silhouette path {
  stroke: rgba(0, 240, 255, 0.5);
  stroke-width: 2px;
}
#brain-canvas {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  pointer-events: none;
}
.ln-decoded-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.3;
  transform: scale(0.95);
  flex-shrink: 0; /* prevent cards from squishing under flex container */
}
.ln-decoded-card.active-card {
  opacity: 1;
  transform: scale(1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,240,255,0.15);
  background: rgba(0,240,255,0.03);
}

/* --- SIGNALS INTERACTIVE LAYOUT --- */
.ln-signals-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
.ln-signals-hub {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ln-hub-core {
  position: relative;
  width: 150px;
  height: 150px;
  background: rgba(10,14,39,0.9);
  border: 2px solid var(--violet);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 20px rgba(123,47,255,0.3);
  z-index: 5;
  transition: all 0.3s;
}
.ln-hub-core:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 35px rgba(0,240,255,0.5);
  transform: scale(1.05);
}
.ln-hub-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, transparent 70%);
  animation: hubPulse 3s infinite ease-in-out;
}
@keyframes hubPulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.5; }
}
.ln-hub-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1.5px;
  z-index: 1;
}
.ln-signals-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.ln-signal-card {
  transition: all 0.3s;
  cursor: pointer;
}
.ln-signal-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0,240,255,0.2);
  transform: translateX(5px);
  background: rgba(0,240,255,0.03);
}
.axon-pulse-path {
  stroke: var(--cyan);
  stroke-width: 2px;
  stroke-dasharray: 20 80;
  stroke-dashoffset: 100;
  animation: axonPulse 1.5s linear infinite;
  filter: drop-shadow(0 0 4px var(--cyan));
}
@keyframes axonPulse {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

/* --- METHODOLOGY INTERACTIVE LAYOUT --- */
.ln-methodology-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 47, 255, 0.05);
  border: 1px solid rgba(123, 47, 255, 0.15);
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-main);
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 0 15px rgba(123, 47, 255, 0.03);
}
.ln-methodology-badge strong {
  color: var(--violet);
  letter-spacing: 0.5px;
}
.ln-methodology-container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.ln-methodology-left {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  position: relative;
}
.methodology-silhouette {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  position: relative;
}
.silhouette-svg {
  width: 100%;
  height: 100%;
}
.layer-svg-group {
  opacity: 0.1;
  transition: opacity 0.5s ease;
}
.layer-svg-group.active-layer {
  opacity: 0.95 !important;
}
.ln-methodology-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ln-layer-card {
  cursor: pointer;
  transition: all 0.3s ease;
}
.ln-layer-card:hover, .ln-layer-card.active-card {
  transform: translateX(6px);
  background: rgba(255,255,255,0.03);
}
.ln-layer-card.l1:hover, .ln-layer-card.l1.active-card { border-color: var(--cyan); }
.ln-layer-card.l2:hover, .ln-layer-card.l2.active-card { border-color: var(--violet); }
.ln-layer-card.l3:hover, .ln-layer-card.l3.active-card { border-color: var(--magenta); }
.ln-layer-card.l4:hover, .ln-layer-card.l4.active-card { border-color: #FFA500; }
.ln-layer-card.l5:hover, .ln-layer-card.l5.active-card { border-color: #B8B5FF; }

/* --- COMPARISON SPLIT SCREEN --- */
.ln-why-not-summary {
  display: flex;
  gap: 40px;
  background: linear-gradient(135deg, rgba(123, 47, 255, 0.05) 0%, rgba(0, 240, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ln-why-not-summary .summary-left {
  flex: 1.2;
}
.ln-why-not-summary .summary-right {
  flex: 0.8;
}
.ln-why-not-summary .summary-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.ln-why-not-summary .summary-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-white);
  margin-bottom: 20px;
}
.ln-why-not-summary .summary-text strong {
  color: var(--cyan);
}
.ln-why-not-summary .summary-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.ln-why-not-summary .summary-list li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ln-why-not-summary .summary-list li span {
  color: var(--cyan);
  font-weight: 700;
}
.ln-why-not-summary .summary-cta-box {
  background: rgba(10, 14, 39, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.03);
}
.ln-why-not-summary .summary-cta-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-white);
}
.ln-why-not-summary .summary-cta-box p strong {
  color: var(--cyan);
}
.ln-why-not-summary .summary-cta-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
  margin: 16px 0;
}
.ln-why-not-summary .summary-cta-sub {
  font-size: 12px;
  color: var(--text-muted) !important;
}

@media (max-width: 768px) {
  .ln-why-not-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .ln-why-not-summary .summary-list {
    grid-template-columns: 1fr;
  }
}

.ln-split-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.ln-split-pane {
  flex: 1;
  background: rgba(10,14,39,0.85);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.chatgpt-pane {
  border-color: rgba(255,69,96,0.15);
  box-shadow: 0 0 25px rgba(255,69,96,0.02);
}
.psychocode-pane {
  border-color: rgba(0,240,255,0.15);
  box-shadow: 0 0 25px rgba(0,240,255,0.02);
}
.chatgpt-pane:hover {
  border-color: rgba(255,69,96,0.3);
  box-shadow: 0 0 35px rgba(255,69,96,0.05);
}
.psychocode-pane:hover {
  border-color: rgba(0,240,255,0.3);
  box-shadow: 0 0 35px rgba(0,240,255,0.05);
}
.pane-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatgpt-pane .pane-title { color: var(--error-red); }
.psychocode-pane .pane-title { color: var(--cyan); }
.pane-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pane-item {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.chatgpt-pane .pane-item {
  border-left: 3px solid var(--error-red);
}
.psychocode-pane .pane-item {
  border-left: 3px solid var(--cyan);
}
.pane-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(4px);
}
.item-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-white);
}
.item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =================================================================
   CUSTOM INTERACTIVE HERO DASHBOARD & SECTION LAYOUTS
   ================================================================= */

/* Hero Slide 1 Dashboard Grid */
.ln-hero-dashboard {
  /* Break out of the 1000px / 60vh slides container — span the full viewport */
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
}

/* Left block: Lab Dashboard */
.ln-dash-left {
  position: absolute;
  bottom: 108px;
  left: 72px;
  width: 280px;
  max-width: 280px;
}
.ln-dash-card {
  background: rgba(10, 14, 39, 0.75);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.05), inset 0 0 15px rgba(0, 240, 255, 0.02);
  border-radius: 12px;
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ln-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.ln-dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: bold;
}
.ln-dash-live-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: blink 1.2s infinite;
}
.ln-dash-stats {
  margin-bottom: 15px;
}
.ln-dash-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-bottom: 10px;
  color: var(--text-main);
}
.ln-dash-stat-row strong {
  color: var(--cyan);
  font-size: 14px;
}
.ln-dash-progress-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 15px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.ln-dash-progress-bar {
  position: relative;
  height: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ln-dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.3), var(--cyan));
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  transition: width 1.8s cubic-bezier(0.1, 0.8, 0.25, 1);
}
.ln-dash-progress-pct {
  position: absolute;
  right: 8px;
  font-size: 11px;
  font-weight: bold;
  color: var(--text-white);
  z-index: 2;
}
.ln-dash-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 15px 0;
}
.ln-dash-meth-title {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.ln-dash-meth-list {
  list-style: none;
  font-size: 11px;
  color: var(--text-main);
}
.ln-dash-meth-list li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ln-dash-status {
  margin-top: 15px;
  font-size: 10px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ln-dash-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 1s infinite;
}

/* Right block: Large stats */
.ln-dash-right {
  position: absolute;
  top: 108px;
  right: 72px;
  width: 260px;
  max-width: 260px;
  text-align: left;
}
.ln-result-item {
  margin-bottom: 25px;
}
.ln-result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px; /* Slightly smaller for elegant look */
  font-weight: 800;
  line-height: 1;
  color: #FFD700; /* Gold color */
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.ln-result-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  line-height: 1.4;
}
.ln-result-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
}

/* Title block bottom-left */
.ln-dash-title-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 500px;
  max-width: 55vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}
.ln-dash-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.ln-dash-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.ln-dash-cta-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}
.ln-dash-strategy-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  padding: 0 24px;
  background: var(--bg-deep);
  z-index: 2;
}
.ln-dash-strategy-btn:hover {
  color: var(--cyan);
  transform: scale(1.05);
}
.ln-dash-strategy-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* stretches all the way to the right of the screen */
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(0, 240, 255, 0.25) 30%, rgba(123, 47, 255, 0.3) 50%, rgba(0, 240, 255, 0.25) 70%, rgba(255, 255, 255, 0.02));
  z-index: 1;
}

/* Bottom Fact Strip */
.ln-dash-bottom-strip {
  /* now inside .ln-dash-title-block — no grid-area needed */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  margin-top: 28px;
}
.ln-dash-fact {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ln-dash-fact strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--text-white);
}
.ln-dash-fact span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ln-dash-fact-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* Pain Section Layout */
.ln-pain-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}
.ln-pain-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ln-pain-right {
  flex: 0.8;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ln-err-card {
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(255, 69, 96, 0.15);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateX(-40px);
}
.ln-err-card.visible {
  opacity: 1;
  transform: translateX(0);
}
.ln-err-card.glitch-flash {
  animation: errFlash 0.4s ease 3;
}
@keyframes errFlash {
  0%, 100% { border-color: rgba(255, 69, 96, 0.15); background: rgba(10,14,39,0.6); }
  50% { border-color: var(--error-red); background: rgba(255, 69, 96, 0.08); box-shadow: 0 0 15px rgba(255, 69, 96, 0.15); }
}
.ln-err-card:hover {
  border-color: rgba(255, 69, 96, 0.5);
  box-shadow: 0 0 20px rgba(255, 69, 96, 0.08);
}
.ln-err-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ln-err-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--error-red);
  font-weight: bold;
}
.ln-err-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--error-red);
  letter-spacing: 1.5px;
  animation: blink 1.5s infinite;
}
.ln-err-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ln-err-body {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 15px;
}
.ln-err-footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
.ln-pain-diagnosis-box {
  margin-top: 30px;
  background: rgba(255, 69, 96, 0.04);
  border: 1px dashed rgba(255, 69, 96, 0.22);
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  text-align: left;
}
.ln-pain-big-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--error-red);
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 69, 96, 0.2);
}
.ln-pain-big-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 5px;
}
.ln-pain-conclusion-card {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
  border-left: 2px solid var(--error-red);
  padding-left: 20px;
}

/* Audience Cards Grid */
.ln-nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 60px;
}
.ln-node-card {
  background: rgba(10, 14, 39, 0.65);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ln-node-card::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s;
}
.ln-node-card:hover::before {
  opacity: 1;
  transform: scale(1.3);
}
.ln-node-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
  transform: translateY(-5px);
}
.ln-node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ln-node-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  font-weight: bold;
}
.ln-node-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
.ln-node-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.ln-node-match {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--success);
  margin-bottom: 12px;
  background: rgba(0, 240, 100, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}
.ln-node-body {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}
.ln-node-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ln-node-req {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
}
.ln-node-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.2s, transform 0.2s;
}
.ln-node-btn:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

/* System Restrictions styling */
.ln-restrictions-section {
  background: rgba(255, 69, 96, 0.02);
  border: 1px solid rgba(255, 69, 96, 0.12);
  border-radius: 14px;
  padding: 40px;
  margin-top: 40px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.ln-restrictions-section:hover {
  opacity: 1;
}
.ln-restrictions-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 30px;
}
.ln-restrictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.ln-rest-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ln-rest-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--error-red);
  opacity: 0.6;
  line-height: 1;
}
.ln-rest-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.ln-rest-content p {
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.5;
}

/* Signals Section Timing Tags */
.ln-signal-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.05);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .ln-hero-dashboard {
    /* Reset full-viewport absolute — go back to normal flex column */
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    transform: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    min-height: 100vh;
  }
  .ln-dash-left, .ln-dash-right, .ln-dash-title-block, .ln-dash-bottom-strip {
    position: relative;
    left: auto; right: auto; top: auto; bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    align-self: auto;
  }
  .ln-dash-left {
    order: 2;
    max-width: 450px;
    margin: 0 auto 30px;
  }
  .ln-dash-right {
    order: 3;
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
  .ln-result-item {
    margin-bottom: 0;
    flex: 1;
    text-align: center;
  }
  .ln-result-divider { display: none; }
  .ln-result-num { font-size: 44px; }
  .ln-dash-title-block {
    order: 1;
    margin-top: 60px;
    transform: none; /* reset absolute center transform */
  }
  .ln-dash-headline { font-size: 40px; }
  .ln-dash-bottom-strip {
    /* Inside title block — just adjust spacing */
    margin-top: 20px;
    gap: 16px;
  }
  .ln-dash-fact-divider { display: none; }

  .ln-pain-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .ln-pain-right {
    position: relative;
    top: auto;
    width: 100%;
  }

  /* Mobile/Tablet decoded grid override */
  .ln-decoded-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ln-decoded-center-col {
    order: -1;
    margin: 0 auto;
    max-width: 280px;
  }
  
  /* Mobile/Tablet pain sticky override */
  .ln-pain-track {
    height: auto !important;
  }
  .ln-pain-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding: 60px 0 !important;
    z-index: 1 !important;
  }
  #audience {
    z-index: 2 !important;
  }
}





/* --- COMPARISON TABLE SECTION --- */
.ln-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 14, 39, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.ln-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
.ln-comparison-table th, 
.ln-comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ln-comparison-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(10, 14, 39, 0.8);
  font-size: 15px;
  letter-spacing: 0.5px;
}
.ln-comparison-table td {
  color: var(--text-main);
  line-height: 1.4;
}
.ln-comparison-table tr:hover td:not(.active-column) {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.01);
}
.col-metric {
  font-weight: 600;
  width: 25%;
  color: var(--text-white) !important;
}
.col-agency {
  width: 25%;
}
.col-chatgpt {
  width: 25%;
}
.col-service {
  width: 25%;
}
.active-column {
  background: rgba(0, 240, 255, 0.025);
  border-left: 1px solid rgba(0, 240, 255, 0.08);
  border-right: 1px solid rgba(0, 240, 255, 0.08);
}
th.active-column {
  color: var(--cyan) !important;
  background: rgba(0, 240, 255, 0.05) !important;
  border-top: 2px solid var(--cyan);
}
tr:last-child td.active-column {
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}
.highlight-text {
  color: var(--text-white) !important;
  font-weight: 600;
}
.highlight-text-cyan {
  color: var(--cyan) !important;
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.text-red {
  color: #ff5b60 !important;
}
.text-green {
  color: var(--success) !important;
  font-weight: 500;
}

.ln-comparison-quote {
  margin-top: 30px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ln-comparison-quote .quote-icon {
  font-size: 18px;
}

@media (max-width: 900px) {
  .ln-comparison-table th, 
  .ln-comparison-table td {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* --- FAQ SECTION --- */
.ln-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ln-faq-card {
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.ln-faq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ln-faq-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  background: rgba(10, 14, 39, 0.7);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.03);
  transform: translateY(-2px);
}
.ln-faq-card:hover::before {
  opacity: 1;
}
.faq-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.faq-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.faq-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s ease;
}
.ln-faq-card:hover .faq-card-dot {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.faq-card-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}
.faq-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
  margin: 16px 0;
}
.faq-card-answer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
}
.faq-card-answer strong {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .ln-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ln-faq-card {
    padding: 24px;
  }
}
