/* ============================================================
   DynamicSOC — Public Landing Page
   Yeapdata Brand Identity
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --lp-dark:       #0B0A16;
  --lp-dark-2:     #100e20;
  --lp-primary:    #E61667;
  --lp-secondary:  #4B509C;
  --lp-accent:     #6DC0AA;
  --lp-warning:    #FFE205;
  --lp-surface:    rgba(255, 255, 255, 0.04);
  --lp-surface-2:  rgba(255, 255, 255, 0.07);
  --lp-border:     rgba(255, 255, 255, 0.08);
  --lp-border-h:   rgba(255, 255, 255, 0.16);
  --lp-text:       #f1f5f9;
  --lp-muted:      #8892a4;
  --lp-muted-2:    #64748b;
  --lp-radius:     12px;
  --lp-radius-sm:  8px;
  --lp-t:          0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--lp-dark);
  color: var(--lp-text);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Eurostile', 'Exo 2', system-ui, sans-serif;
  line-height: 1.15;
  color: var(--lp-text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ─────────────────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--lp-t), backdrop-filter var(--lp-t), border-color var(--lp-t);
  border-bottom: 1px solid transparent;
}

.lp-header.scrolled {
  background: rgba(11, 10, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--lp-border);
}

.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #E61667, #4B509C);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 20px rgba(230, 22, 103, 0.4);
  flex-shrink: 0;
}

.lp-logo-icon--sm { width: 28px; height: 28px; font-size: 14px; border-radius: 7px; }

.lp-logo-text { display: flex; flex-direction: column; }

.lp-brand-name {
  font-family: 'Eurostile', 'Exo 2', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1;
}

.lp-brand-sub {
  font-size: 10px;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* Nav */
.lp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--lp-muted);
  transition: color var(--lp-t);
}

.lp-nav-link:hover { color: var(--lp-text); }

.lp-nav-link--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--lp-primary);
  padding: 8px 18px;
  border-radius: 6px;
  transition: background var(--lp-t), box-shadow var(--lp-t), transform var(--lp-t);
  box-shadow: 0 0 20px rgba(230, 22, 103, 0.25);
}

.lp-nav-cta:hover {
  background: #c01055;
  box-shadow: 0 0 30px rgba(230, 22, 103, 0.45);
  transform: translateY(-1px);
  color: #fff;
}

/* Mobile toggle */
.lp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lp-border);
  color: var(--lp-muted);
  border-radius: var(--lp-radius-sm);
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: color var(--lp-t), border-color var(--lp-t);
  flex-shrink: 0;
}

.lp-nav-toggle:hover { color: var(--lp-text); border-color: var(--lp-border-h); }

/* ── Buttons ─────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', system-ui, sans-serif;
  text-decoration: none;
  transition: all var(--lp-t);
  cursor: pointer;
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 0 30px rgba(230, 22, 103, 0.3);
}

.lp-btn--primary:hover {
  background: #c01055;
  box-shadow: 0 0 50px rgba(230, 22, 103, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: var(--lp-border-h);
  background: var(--lp-surface);
  color: var(--lp-text);
}

.lp-btn--lg { padding: 16px 36px; font-size: 15px; }

/* ── Language Switcher ───────────────────────────────────────── */
.lp-lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.lp-lang-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 11px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: var(--lp-muted);
  cursor: pointer;
  transition: color var(--lp-t), background var(--lp-t), box-shadow var(--lp-t);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1;
}

.lp-lang-btn:hover:not(.active) {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.06);
}

.lp-lang-btn.active {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 0 12px rgba(230, 22, 103, 0.4);
}

/* ── Hero ────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(160deg, #0B0A16 0%, #0f0e1f 50%, #0B0A16 100%);
}

/* Radial glow overlay */
.lp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(75,80,156,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(230,22,103,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#lp-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Eyebrow label */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-primary);
  background: rgba(230, 22, 103, 0.1);
  border: 1px solid rgba(230, 22, 103, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.lp-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f1f5f9 40%, #8892a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 16px;
  color: var(--lp-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.lp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero stats */
.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--lp-border);
  flex-wrap: wrap;
}

.lp-stat { display: flex; flex-direction: column; }

.lp-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-accent);
  letter-spacing: 0.02em;
}

.lp-stat-lbl { font-size: 11px; color: var(--lp-muted-2); margin-top: 1px; }

.lp-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--lp-border);
  flex-shrink: 0;
}

/* Scroll hint */
.lp-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: var(--lp-muted-2);
  animation: lp-bounce 2s ease-in-out infinite;
  z-index: 1;
  transition: color var(--lp-t);
}

.lp-scroll-hint:hover { color: var(--lp-primary); }

@keyframes lp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── UI Mockup ───────────────────────────────────────────────── */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-mockup {
  width: 100%;
  max-width: 520px;
  background: #0d1117;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(230, 22, 103, 0.12),
    0 0 40px rgba(75, 80, 156, 0.15),
    0 30px 80px rgba(0,0,0,0.6);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  animation: lp-float 5s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(0); }
  50%       { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(-10px); }
}

.lp-mockup-bar {
  background: #161b22;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-dot--red    { background: #ef4444; }
.lp-dot--yellow { background: #eab308; }
.lp-dot--green  { background: #10b981; }

.lp-mockup-url {
  font-size: 10.5px;
  color: #4b5563;
  margin-left: 8px;
  font-family: 'Poppins', monospace;
}

.lp-mockup-screen {
  display: flex;
  height: 300px;
}

/* Mini sidebar */
.lp-mock-sidebar {
  width: 44px;
  background: #080c14;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lp-mock-brand {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E61667, #4B509C);
  border-radius: 6px;
  margin-bottom: 4px;
}

.lp-mock-nav-item {
  width: 22px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.lp-mock-nav-item--active {
  background: rgba(230, 22, 103, 0.5);
  box-shadow: 0 0 8px rgba(230,22,103,0.3);
}

/* Mock content */
.lp-mock-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.lp-mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-mock-topbar-title {
  width: 100px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.lp-mock-topbar-badge {
  width: 40px;
  height: 14px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(16,185,129,0.3);
}

.lp-mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.lp-mock-kpi {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 6px;
  border-left: 2px solid transparent;
}

.lp-mock-kpi--cyan   { border-left-color: #06b6d4; }
.lp-mock-kpi--amber  { border-left-color: #eab308; }
.lp-mock-kpi--red    { border-left-color: #ef4444; }
.lp-mock-kpi--green  { border-left-color: #10b981; }

.lp-mock-kpi-val {
  width: 24px;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-bottom: 3px;
}

.lp-mock-kpi-lbl {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* Mini chart */
.lp-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  padding: 6px;
}

.lp-mock-chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(75,80,156,0.6), rgba(75,80,156,0.2));
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}

/* Mock table rows */
.lp-mock-rows { display: flex; flex-direction: column; gap: 5px; }

.lp-mock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.lp-mock-row-sev {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-mock-row-sev--high { background: #f97316; }
.lp-mock-row-sev--med  { background: #eab308; }
.lp-mock-row-sev--low  { background: #3b82f6; }

.lp-mock-row-text {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.lp-mock-row-badge {
  width: 28px;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

/* Floating accent cards */
.lp-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11,10,22,0.9);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  color: var(--lp-text);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.lp-float-card i { font-size: 14px; }

.lp-float-card--1 {
  top: 12%;
  right: -8%;
  border-color: rgba(230, 22, 103, 0.3);
  animation: lp-float-card-1 4s ease-in-out infinite;
}

.lp-float-card--1 i { color: var(--lp-primary); }

.lp-float-card--2 {
  bottom: 15%;
  left: -6%;
  border-color: rgba(109, 192, 170, 0.3);
  animation: lp-float-card-2 4.5s ease-in-out infinite 0.5s;
}

.lp-float-card--2 i { color: var(--lp-accent); }

@keyframes lp-float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes lp-float-card-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(8px) rotate(2deg); }
}

/* ── Section base ────────────────────────────────────────────── */
.lp-section { padding: 100px 0; }

.lp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin: 10px 0 14px;
}

.lp-section-sub {
  font-size: 15px;
  color: var(--lp-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Capabilities ────────────────────────────────────────────── */
.lp-capabilities { background: var(--lp-dark-2); }

.lp-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-cap-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: border-color var(--lp-t), box-shadow var(--lp-t), transform var(--lp-t), background var(--lp-t);
  cursor: default;
}

.lp-cap-card:hover {
  border-color: rgba(230, 22, 103, 0.35);
  box-shadow: 0 0 32px rgba(230, 22, 103, 0.08), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

/* Center the 7th card */
.lp-cap-card--center {
  grid-column: 2;
}

.lp-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.lp-cap-icon--primary   { background: rgba(230,22,103,0.12);  color: var(--lp-primary);   border: 1px solid rgba(230,22,103,0.2); }
.lp-cap-icon--secondary { background: rgba(75,80,156,0.15);   color: #818cf8;             border: 1px solid rgba(75,80,156,0.25); }
.lp-cap-icon--accent    { background: rgba(109,192,170,0.12); color: var(--lp-accent);    border: 1px solid rgba(109,192,170,0.2); }

.lp-cap-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--lp-text);
  font-family: 'Poppins', system-ui, sans-serif;
}

.lp-cap-desc {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* ── AI SOC Section ─────────────────────────────────────────── */
.lp-ai-soc {
  background: linear-gradient(180deg, var(--lp-dark) 0%, rgba(75,80,156,0.06) 50%, var(--lp-dark) 100%);
  position: relative;
  overflow: hidden;
}

.lp-ai-soc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-ai-text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 800;
  margin: 10px 0 18px;
}

.lp-ai-desc {
  font-size: 14.5px;
  color: var(--lp-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.lp-ai-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-ai-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text);
}

.lp-ai-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(230, 22, 103, 0.1);
  color: var(--lp-primary);
  border: 1px solid rgba(230, 22, 103, 0.18);
  flex-shrink: 0;
  transition: background var(--lp-t), box-shadow var(--lp-t);
}

.lp-ai-feature:hover .lp-ai-feature-icon {
  background: rgba(230, 22, 103, 0.18);
  box-shadow: 0 0 12px rgba(230,22,103,0.2);
}

/* Neural SVG */
.lp-neural-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-neural-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: visible;
}

.lp-neural-line {
  stroke: rgba(75, 80, 156, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  animation: lp-dash-flow 3s linear infinite;
}

.lp-neural-node {
  fill: rgba(75, 80, 156, 0.15);
  stroke: var(--lp-secondary);
  stroke-width: 1.5;
  animation: lp-node-pulse 3s ease-in-out infinite;
}

.lp-neural-icon {
  font-size: 12px;
  dominant-baseline: middle;
  text-anchor: middle;
}

.lp-neural-label {
  fill: var(--lp-muted);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.lp-neural-center-ring {
  fill: none;
  stroke: rgba(230, 22, 103, 0.2);
  stroke-width: 1;
  animation: lp-pulse-ring 2.5s ease-in-out infinite;
}

.lp-neural-center {
  fill: rgba(230, 22, 103, 0.12);
  stroke: var(--lp-primary);
  stroke-width: 1.5;
}

.lp-neural-center-label {
  fill: var(--lp-text);
  font-family: 'Eurostile', 'Exo 2', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  dominant-baseline: middle;
}

.lp-neural-center-sub {
  fill: var(--lp-muted);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  dominant-baseline: middle;
}

/* ── Integrations ────────────────────────────────────────────── */
.lp-integrations { background: rgba(11, 10, 22, 0.7); }

.lp-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-vendor-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color var(--lp-t), box-shadow var(--lp-t), transform var(--lp-t);
  cursor: default;
}

.lp-vendor-card:hover {
  border-color: rgba(109, 192, 170, 0.35);
  box-shadow: 0 0 20px rgba(109, 192, 170, 0.08);
  transform: translateY(-2px);
}

.lp-vendor-icon {
  font-size: 26px;
  color: var(--lp-muted-2);
  transition: color var(--lp-t);
}

.lp-vendor-card:hover .lp-vendor-icon { color: var(--lp-accent); }

.lp-vendor-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Platform Showcase ───────────────────────────────────────── */
.lp-showcase { background: var(--lp-dark-2); }

.lp-tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--lp-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lp-tab-btn {
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--lp-muted);
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--lp-t), border-color var(--lp-t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.lp-tab-btn:hover { color: var(--lp-text); }

.lp-tab-btn--active {
  color: var(--lp-primary);
  border-bottom-color: var(--lp-primary);
}

.lp-tab-panel { display: none; }
.lp-tab-panel--active { display: block; animation: lp-fade-up 0.3s ease; }

/* Showcase frame */
.lp-showcase-frame {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-showcase-screen { padding: 20px; }

.lp-showcase-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.lp-showcase-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
  font-family: 'Exo 2', system-ui, sans-serif;
}

.lp-showcase-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.lp-showcase-badge--green { background: rgba(16,185,129,0.1); color: #10b981; border-color: rgba(16,185,129,0.25); }
.lp-showcase-badge--amber { background: rgba(234,179,8,0.1);  color: #eab308; border-color: rgba(234,179,8,0.25); }
.lp-showcase-badge--cyan  { background: rgba(6,182,212,0.1);  color: #06b6d4; border-color: rgba(6,182,212,0.25); }

/* Dashboard tab */
.lp-showcase-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.lp-showcase-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 12px;
  border-left: 3px solid transparent;
}

.lp-showcase-kpi--cyan  { border-left-color: #06b6d4; }
.lp-showcase-kpi--amber { border-left-color: #eab308; }
.lp-showcase-kpi--red   { border-left-color: #ef4444; }
.lp-showcase-kpi--green { border-left-color: #10b981; }

.lp-showcase-kpi-n {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Exo 2', system-ui, sans-serif;
  color: var(--lp-text);
}

.lp-showcase-kpi-l {
  font-size: 11px;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp-showcase-row-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-muted-2);
  margin-bottom: 8px;
}

.lp-showcase-table { border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); overflow: hidden; }

.lp-showcase-tr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  padding: 10px 14px;
  border-bottom: 1px solid var(--lp-border);
  font-size: 12.5px;
  align-items: center;
  gap: 8px;
}

.lp-showcase-tr:last-child { border-bottom: none; }

.lp-showcase-tr--head {
  background: rgba(255,255,255,0.03);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-muted);
}

.lp-c--red   { color: #ef4444; font-weight: 700; }
.lp-c--amber { color: #eab308; font-weight: 700; }

.lp-showcase-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.lp-showcase-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #E61667, #4B509C);
  border-radius: 3px;
}

/* Incidents tab */
.lp-showcase-incident-list { display: flex; flex-direction: column; gap: 8px; }

.lp-showcase-incident {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
}

.lp-sev-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-sev-pill--high { background: rgba(249,115,22,0.15); color: #f97316; }
.lp-sev-pill--med  { background: rgba(234,179,8,0.15);  color: #eab308; }
.lp-sev-pill--low  { background: rgba(59,130,246,0.15); color: #3b82f6; }

.lp-inc-rule { font-size: 13px; font-weight: 600; color: var(--lp-text); }
.lp-inc-meta { font-size: 11.5px; color: var(--lp-muted); margin-top: 2px; }

/* Playbooks tab */
.lp-showcase-playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-showcase-pb-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 14px;
}

.lp-pb-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  margin-bottom: 8px;
}

.lp-pb-tag--high { background: rgba(249,115,22,0.15); color: #f97316; }
.lp-pb-tag--med  { background: rgba(234,179,8,0.15);  color: #eab308; }

.lp-pb-title { font-size: 12.5px; font-weight: 600; color: var(--lp-text); margin-bottom: 4px; }
.lp-pb-meta  { font-size: 11px; color: var(--lp-muted); }

/* ADA tab */
.lp-showcase-ada {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.lp-ada-nodes-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-ada-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(75,80,156,0.12);
  border: 1px solid rgba(75,80,156,0.25);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-muted);
  transition: border-color var(--lp-t), background var(--lp-t);
}

.lp-ada-node i { font-size: 16px; color: var(--lp-secondary); }

.lp-ada-node--central {
  background: rgba(230,22,103,0.1);
  border-color: rgba(230,22,103,0.3);
  padding: 14px 20px;
}

.lp-ada-node--central i { color: var(--lp-primary); font-size: 20px; }
.lp-ada-node--central   { color: var(--lp-text); font-size: 12px; }

.lp-ada-node--db {
  background: rgba(109,192,170,0.1);
  border-color: rgba(109,192,170,0.25);
}

.lp-ada-node--db i { color: var(--lp-accent); }

/* ── CTA ─────────────────────────────────────────────────────── */
.lp-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--lp-dark);
}

.lp-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(230, 22, 103, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(75, 80, 156, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-cta-inner .lp-eyebrow { margin-bottom: 20px; }

.lp-cta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f1f5f9 40%, var(--lp-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-cta p {
  font-size: 16px;
  color: var(--lp-muted);
  margin-bottom: 36px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 32px 0;
  background: var(--lp-dark);
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-footer-links a {
  font-size: 13px;
  color: var(--lp-muted);
  transition: color var(--lp-t);
}

.lp-footer-links a:hover { color: var(--lp-text); }

.lp-footer-copy {
  font-size: 12px;
  color: var(--lp-muted-2);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes lp-pulse-ring {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

@keyframes lp-node-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@keyframes lp-dash-flow {
  to { stroke-dashoffset: -20; }
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-visual { display: none; }
  .lp-hero-sub    { margin: 0 auto 32px; }
  .lp-hero-btns   { justify-content: center; }
  .lp-hero-stats  { justify-content: center; }

  .lp-ai-soc-inner   { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .lp-neural-wrap    { max-width: 340px; margin: 0 auto; }
  .lp-ai-features    { align-items: center; }

  .lp-caps-grid          { grid-template-columns: repeat(2, 1fr); }
  .lp-cap-card--center   { grid-column: auto; }
  .lp-integrations-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .lp-nav { display: none; position: fixed; top: 68px; left: 0; right: 0;
            flex-direction: column; align-items: stretch; padding: 16px;
            background: rgba(11,10,22,0.97); backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--lp-border); gap: 4px; z-index: 99; }
  .lp-nav.open { display: flex; }
  .lp-nav-link,
  .lp-nav-cta  { padding: 12px 16px; border-radius: var(--lp-radius-sm); }
  .lp-nav-cta  { text-align: center; justify-content: center; }
  .lp-nav-toggle    { display: flex; }
  .lp-lang-switcher { align-self: center; margin: 4px 16px; }

  .lp-showcase-kpi-row   { grid-template-columns: repeat(2, 1fr); }
  .lp-showcase-tr        { grid-template-columns: 2fr 1fr 1fr; }
  .lp-showcase-tr > span:last-child { display: none; }

  .lp-footer-inner { flex-direction: column; text-align: center; }
  .lp-footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .lp-section          { padding: 70px 0; }
  .lp-caps-grid        { grid-template-columns: 1fr; }
  .lp-integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-title       { font-size: 2rem; }
  .lp-tab-btn          { padding: 8px 14px; font-size: 12.5px; }
  .lp-showcase-pb-card { }
  .lp-showcase-playbook-grid { grid-template-columns: 1fr; }
  .lp-ada-nodes-row    { gap: 8px; }
  .lp-ada-node         { padding: 8px 10px; }
}
