/*Hero Section CSS by Rishabh Starts*/

/* ═══════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════ */
:root {
  --void:        #03040a;
  --deep:        #060810;
  --panel:       #0c0e18;
  --border:      rgba(100,210,255,.1);
  --cyan:        #64d2ff;
  --cyan-dim:    rgba(100,210,255,.55);
  --cyan-glow:   rgba(100,210,255,.18);
  --lime:        #b6ff4e;
  --lime-dim:    rgba(182,255,78,.45);
  --white:       #f0f4ff;
  --muted:       rgba(240,244,255,.45);
  --dimmer:      rgba(240,244,255,.22);
  --ff-display:  'Bebas Neue', sans-serif;
  --ff-ui:       'Syne', sans-serif;
  --ff-mono:     'DM Mono', monospace;
  --ease-out:    cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--ff-ui);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* ═══ CUSTOM CURSOR ═══ */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .08s, width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--cyan-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease-out), width .25s, height .25s, border-color .2s;
}
body:has(a:hover) #cursor       { width: 20px; height: 20px; background: var(--lime); }
body:has(a:hover) #cursor-ring  { width: 52px; height: 52px; border-color: var(--lime-dim); }

/* ═══ HERO WRAPPER ═══ */
#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

/* ═══ NEURAL CANVAS ═══ */
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* ═══ DEEP GRADIENT VEIL ═══ */
.veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(100,210,255,.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%,  rgba(182,255,78,.04) 0%, transparent 55%),
    linear-gradient(180deg, rgba(3,4,10,.3) 0%, transparent 40%, rgba(3,4,10,.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ═══ VERTICAL SCAN LINE ═══ */
.v-scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--cyan) 30%, var(--lime) 70%, transparent 100%);
  z-index: 3;
  opacity: 0;
  animation: vscan 7s var(--ease-out) 1.4s infinite;
  filter: blur(1px);
}
@keyframes vscan {
  0%  { left: -2%; opacity:0; }
  5%  { opacity: .6; }
  95% { opacity: .6; }
  100%{ left: 102%; opacity: 0; }
}

/* ═══ NOISE TEXTURE ═══ */
.noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ═══ TOP NAV STRIP ═══ */
.nav-strip {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  animation: slideDown .8s var(--ease-out) both;
}
@keyframes slideDown {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 32px; height: 32px;
  position: relative;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  letter-spacing: .12em;
  color: var(--white);
}
.logo-text span { color: var(--cyan); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .25s var(--ease-out);
}
.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: rgba(100,210,255,.05);
  border-radius: 4px;
  text-decoration: none;
  transition: all .22s;
}
.nav-cta:hover {
  background: var(--cyan);
  color: var(--void);
}

/* ═══ HERO BODY ═══ */
.hero-body {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 6vh 5vw 4vh;
  min-height: 0;
}

/* ═══ LEFT COLUMN ═══ */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 6vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: fadeIn .7s .3s var(--ease-out) both;
}
.eyebrow-line {
  width: 36px; height: 1px;
  background: var(--cyan);
  position: relative;
}
.eyebrow-line::before {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px 3px var(--cyan-glow);
}
.eyebrow-text {
  font-family: var(--ff-mono);
  font-size: .64rem;
  letter-spacing: .22em;
  color: var(--cyan);
  text-transform: uppercase;
}
.eyebrow-badge {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--void);
  background: var(--lime);
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ MEGA HEADLINE ═══ */
.mega-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 8.5vw, 9rem);
  line-height: .92;
  letter-spacing: .02em;
  margin-bottom: 0;
  overflow: hidden;
}
.title-row {
  display: block;
  overflow: hidden;
}
.title-row .inner {
  display: inline-block;
  animation: slideUp .9s var(--ease-out) both;
}
.title-row:nth-child(1) .inner { animation-delay: .35s; color: var(--white); }
.title-row:nth-child(2) .inner { animation-delay: .5s;  color: var(--cyan); text-shadow: 0 0 60px rgba(100,210,255,.35); }
.title-row:nth-child(3) .inner { animation-delay: .65s; color: var(--white); }

@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ═══ TYPED SUBTITLE ═══ */
.typed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 36px;
  animation: fadeIn .7s 1s var(--ease-out) both;
}
.typed-label {
  font-family: var(--ff-mono);
  font-size: .7rem;
  color: var(--dimmer);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.typed-value {
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--lime);
  letter-spacing: .08em;
  min-width: 240px;
}
.typed-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--lime);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink .65s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══ DESCRIPTION ═══ */
.hero-desc {
  font-size: clamp(.88rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 44px;
  animation: fadeIn .7s 1.1s var(--ease-out) both;
  font-weight: 400;
  letter-spacing: .01em;
}

/* ═══ CTA ROW ═══ */
.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeIn .7s 1.2s var(--ease-out) both;
}
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--cyan);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.btn-main:hover { box-shadow: 0 0 40px rgba(100,210,255,.45); transform: translateY(-2px); }
.btn-main:hover::before { transform: translateX(100%); }
.btn-arrow {
  width: 16px; height: 16px;
  transition: transform .2s;
}
.btn-main:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.btn-ghost:hover .btn-ghost-dot { background: var(--white); transform: scale(1.3); }

/* ═══ RIGHT COLUMN — BRAIN VISUAL ═══ */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
  animation: fadeIn 1s .5s var(--ease-out) both;
}

.brain-wrap {
  position: relative;
  width: min(520px, 45vw);
  aspect-ratio: 1;
}

/* ─ Central orb ─ */
.orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(100,210,255,.35) 0%, rgba(100,210,255,.08) 50%, transparent 70%);
  border: 1px solid rgba(100,210,255,.3);
  box-shadow: 0 0 60px rgba(100,210,255,.2), inset 0 0 30px rgba(100,210,255,.08);
  animation: orbPulse 3s ease-in-out infinite;
}
.orb-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(100,210,255,.6) 0%, rgba(100,210,255,.2) 60%, transparent 100%);
  animation: orbPulse 2s .5s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:.85; }
  50%    { transform: translate(-50%,-50%) scale(1.06); opacity:1; }
}

/* ─ SVG Brain canvas ─ */
#brain-svg {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

/* ─ Floating data chips ─ */
.data-chip {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  color: var(--cyan-dim);
  background: rgba(100,210,255,.06);
  border: 1px solid rgba(100,210,255,.18);
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  animation: chipFloat var(--dur,5s) var(--del,0s) ease-in-out infinite alternate;
  backdrop-filter: blur(4px);
}
.data-chip.lime {
  color: var(--lime-dim);
  background: rgba(182,255,78,.05);
  border-color: rgba(182,255,78,.2);
}
@keyframes chipFloat {
  from { transform: translateY(0) translateX(0); opacity: .5; }
  to   { transform: translateY(-12px) translateX(4px); opacity: 1; }
}

/* ─ Stat callout ─ */
.stat-callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: chipFloat 4s ease-in-out infinite alternate;
}
.stat-callout .num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
}
.stat-callout .unit { color: var(--cyan); }
.stat-callout .lbl {
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ═══ BOTTOM BAR ═══ */
.hero-bottom {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
  animation: fadeIn .8s 1.4s var(--ease-out) both;
}

.bottom-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
  gap: 4px;
  transition: background .2s;
}
.bottom-stat:last-child { border-right: none; }
.bottom-stat:hover { background: rgba(100,210,255,.03); }

.bs-num {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  letter-spacing: .05em;
  color: var(--white);
}
.bs-num .accent { color: var(--cyan); }
.bs-lbl {
  font-family: var(--ff-mono);
  font-size: .55rem;
  letter-spacing: .14em;
  color: var(--dimmer);
  text-transform: uppercase;
}

/* ═══ LIVE TICKER ═══ */
.ticker-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28px;
  background: rgba(100,210,255,.05);
  border-top: 1px solid rgba(100,210,255,.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 5;
}
.ticker-tag {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--void);
  background: var(--cyan);
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  gap: 50px;
  animation: tick 28s linear infinite;
  white-space: nowrap;
}
.ticker-inner > span {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  color: rgba(100,210,255,.5);
  flex-shrink: 0;
}
.ticker-inner > span b { color: rgba(182,255,78,.7); font-weight: 400; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ VERTICAL LABEL ═══ */
.vert-label {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: center center;
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .3em;
  color: var(--dimmer);
  text-transform: uppercase;
  z-index: 8;
  white-space: nowrap;
  pointer-events: none;
}

/* ═══ KEYFRAMES ═══ */
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:900px){
  .hero-body {
    grid-template-columns: 1fr;
    padding: 5vh 6vw 3vh;
  }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; align-items: flex-start; }
  .nav-right .nav-link { display: none; }
  .vert-label { display: none; }
  .mega-title { font-size: clamp(3.5rem,14vw,6rem); }
}
@media (max-width:560px){
  .hero-desc { max-width: 100%; }
  .nav-right { gap: 14px; }
  .bottom-stat .bs-lbl { display: none; }
}
/*Hero Section CSS By Rishabh ENds*/

/*Second Section CSS BY Rishabh Starts*/

/* ============================================================
   LOGIZENT — NLP SECTION CSS
   Prefix: lgnlp__   (collision-safe)
   Font stack: matches Logizent site (Barlow / sans-serif)
   Theme: #000 bg, #FFA500 accent, #fff text
   ============================================================ */

/* ── Google Font (matches Logizent bold condensed style) ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── CSS Variables ── */
.lgnlp__root {
  --lgnlp-bg:        #000000;
  --lgnlp-bg2:       #0d0d0d;
  --lgnlp-accent:    #FFA500;
  --lgnlp-accent2:   #FF8C00;
  --lgnlp-white:     #ffffff;
  --lgnlp-muted:     rgba(255,255,255,0.55);
  --lgnlp-border:    rgba(255,165,0,0.18);
  --lgnlp-font:      'Barlow', sans-serif;
  --lgnlp-mono:      'JetBrains Mono', monospace;
}

/* ── Root ── */
.lgnlp__root {
  position: relative;
  width: 100%;
  background: var(--lgnlp-bg);
  overflow: hidden;
  padding: 100px 0 0;
  font-family: var(--lgnlp-font);
  box-sizing: border-box;
}

/* ── Background layer ── */
.lgnlp__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lgnlp__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 1;
}

/* Floating glow orbs */
.lgnlp__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}
.lgnlp__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FFA500, transparent 70%);
  top: -150px; right: -120px;
  animation: lgnlp-float 8s ease-in-out infinite;
}
.lgnlp__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #FF6600, transparent 70%);
  bottom: 60px; left: -80px;
  animation: lgnlp-float 11s ease-in-out infinite reverse;
}
.lgnlp__orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #FFA500, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: lgnlp-float 6s ease-in-out infinite 2s;
}
@keyframes lgnlp-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

/* Scan line */
.lgnlp__scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,165,0,0.25), transparent);
  animation: lgnlp-scan 5s linear infinite;
  top: 0;
}
@keyframes lgnlp-scan {
  0%   { top: -2px; }
  100% { top: 100%; }
}

/* ── Inner grid ── */
.lgnlp__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT ── */
.lgnlp__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,165,0,0.08);
  border: 1px solid var(--lgnlp-border);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lgnlp-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lgnlp__badge svg { animation: lgnlp-pulse-dot 2s ease-in-out infinite; }
@keyframes lgnlp-pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.lgnlp__heading {
  margin: 0 0 22px;
  line-height: 1.05;
  font-family: var(--lgnlp-font);
  font-weight: 900;
}
.lgnlp__heading-line {
  display: block;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.02em;
}
.lgnlp__heading-line--white  { color: var(--lgnlp-white); }
.lgnlp__heading-line--orange {
  color: var(--lgnlp-accent);
  /* italic slant, matching hero style */
  font-style: italic;
}

.lgnlp__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--lgnlp-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Pills */
.lgnlp__pills {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lgnlp__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lgnlp-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lgnlp-white);
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s;
}
.lgnlp__pill:hover {
  border-color: var(--lgnlp-accent);
  background: rgba(255,165,0,0.07);
}
.lgnlp__pill-icon {
  width: 20px; height: 20px;
  color: var(--lgnlp-accent);
  flex-shrink: 0;
}
.lgnlp__pill-icon svg { width: 100%; height: 100%; }

/* Stats */
.lgnlp__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.lgnlp__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lgnlp__stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--lgnlp-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lgnlp__stat-unit {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--lgnlp-accent);
  margin-left: 2px;
}
.lgnlp__stat-label {
  font-size: 12px;
  color: var(--lgnlp-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}
.lgnlp__stat-divider {
  width: 1px;
  height: 50px;
  background: var(--lgnlp-border);
  margin: 0 28px;
}

/* ── RIGHT ── */
.lgnlp__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── Robot ── */
.lgnlp__robot-wrap {
  position: relative;
  width: 200px;
  flex-shrink: 0;
}
.lgnlp__robot {
  width: 200px;
  height: auto;
  animation: lgnlp-hover 4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(255,165,0,0.25));
}
@keyframes lgnlp-hover {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Eye blink */
.lgnlp__r-eye { rx: 5; }
.lgnlp__r-pupil--left,
.lgnlp__r-pupil--right {
  animation: lgnlp-blink 5s ease-in-out infinite;
  transform-origin: center;
}
.lgnlp__r-pupil--right { animation-delay: 0.05s; }
@keyframes lgnlp-blink {
  0%,45%,55%,100% { transform: scaleY(1); }
  50%              { transform: scaleY(0.08); }
}

/* Eye scan left-right */
.lgnlp__r-pupil--left  { animation: lgnlp-blink 5s ease-in-out infinite, lgnlp-scan-eye 3s ease-in-out infinite; }
.lgnlp__r-pupil--right { animation: lgnlp-blink 5s ease-in-out infinite 0.05s, lgnlp-scan-eye 3s ease-in-out infinite 0.1s; }
@keyframes lgnlp-scan-eye {
  0%,100% { transform: translateX(0); }
  25%     { transform: translateX(4px); }
  75%     { transform: translateX(-4px); }
}

/* LED pulse */
.lgnlp__r-led {
  animation: lgnlp-led 1.4s ease-in-out infinite;
}
@keyframes lgnlp-led {
  0%,100% { opacity: 1; filter: drop-shadow(0 0 4px #FFA500); }
  50%      { opacity: 0.2; filter: none; }
}

/* Chest waveform */
.lgnlp__r-wave {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lgnlp-wave-draw 2s linear infinite;
}
@keyframes lgnlp-wave-draw {
  0%   { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: -200; }
}

/* Signal rings */
.lgnlp__signal {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--lgnlp-accent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.lgnlp__signal--1 { animation: lgnlp-ring 3s ease-out infinite 0s; }
.lgnlp__signal--2 { animation: lgnlp-ring 3s ease-out infinite 1s; }
.lgnlp__signal--3 { animation: lgnlp-ring 3s ease-out infinite 2s; }
@keyframes lgnlp-ring {
  0%   { width: 60px; height: 60px; transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  100% { width: 260px; height: 260px; transform: translate(-50%,-50%) scale(1); opacity: 0; }
}

/* ── Terminal ── */
.lgnlp__terminal {
  width: 100%;
  background: #090909;
  border: 1px solid var(--lgnlp-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,165,0,0.08), 0 20px 60px rgba(0,0,0,0.6);
}

.lgnlp__terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lgnlp__tb-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.lgnlp__tb-dot--r { background: #ff5f57; }
.lgnlp__tb-dot--y { background: #ffbd2e; }
.lgnlp__tb-dot--g { background: #28c941; }
.lgnlp__tb-title {
  flex: 1;
  font-family: var(--lgnlp-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.lgnlp__tb-live {
  font-family: var(--lgnlp-mono);
  font-size: 10px;
  font-weight: 700;
  color: #28c941;
  letter-spacing: 0.1em;
  animation: lgnlp-pulse-dot 1.5s ease-in-out infinite;
}

.lgnlp__terminal-body {
  padding: 16px 20px;
  min-height: 180px;
  font-family: var(--lgnlp-mono);
  font-size: 12.5px;
  line-height: 1.9;
  overflow: hidden;
}

/* Token stream */
.lgnlp__token-stream {
  padding: 8px 20px 16px;
  font-family: var(--lgnlp-mono);
  font-size: 11px;
  color: var(--lgnlp-muted);
  min-height: 32px;
  letter-spacing: 0.05em;
  border-top: 1px dashed rgba(255,255,255,0.06);
}

/* Terminal line colours injected via JS */
.lgnlp-tl-cmd   { color: #FFA500; }
.lgnlp-tl-ok    { color: #28c941; }
.lgnlp-tl-info  { color: rgba(255,255,255,0.7); }
.lgnlp-tl-val   { color: #60b8ff; }
.lgnlp-tl-warn  { color: #ffbd2e; }
.lgnlp-tl-dim   { color: rgba(255,255,255,0.3); }
.lgnlp-tl-token { color: #ff79c6; }

/* cursor blink at line end */
.lgnlp-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--lgnlp-accent);
  vertical-align: middle;
  margin-left: 3px;
  animation: lgnlp-cursor-blink 1s step-end infinite;
}
@keyframes lgnlp-cursor-blink {
  0%,100% { opacity: 1; } 50% { opacity: 0; }
}

/* ── Ticker ── */
.lgnlp__ticker {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: rgba(255,165,0,0.07);
  border-top: 1px solid var(--lgnlp-border);
  padding: 14px 0;
}
.lgnlp__ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 0;
  animation: lgnlp-ticker 28s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgnlp-accent);
}
.lgnlp__ticker-track span { padding: 0 20px; }
.lgnlp__tick-sep { color: rgba(255,165,0,0.4) !important; padding: 0 4px !important; }
@keyframes lgnlp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .lgnlp__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 28px 60px;
  }
  .lgnlp__right { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
  .lgnlp__robot-wrap { width: 140px; }
  .lgnlp__robot { width: 140px; }
  .lgnlp__terminal { flex: 1; min-width: 280px; }
}
@media (max-width: 640px) {
  .lgnlp__root { padding: 60px 0 0; }
  .lgnlp__inner { padding: 0 20px 40px; gap: 36px; }
  .lgnlp__right { flex-direction: column; align-items: center; }
  .lgnlp__robot-wrap { width: 120px; }
  .lgnlp__robot { width: 120px; }
  .lgnlp__pills { grid-template-columns: 1fr; }
  .lgnlp__stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .lgnlp__stat-divider { width: 60px; height: 1px; margin: 0; }
  .lgnlp__terminal { width: 100%; }
}


/*Second Section CSS By Rishabh Ends*/

/*Third Section CSS BY Rishabh Starts*/
/* ============================================================
   LOGIZENT — NLP SECTION v2 CSS
   Prefix: lgx9__   (collision-safe)
   Theme:  #000 bg · #FFA500 accent · #fff text
   Font:   Barlow 900 display · JetBrains Mono terminal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800;1,900&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── Variables ── */
.lgx9__root {
  --lgx9-bg:        #000000;
  --lgx9-panel:     #080808;
  --lgx9-accent:    #FFA500;
  --lgx9-accent2:   #FF8C00;
  --lgx9-white:     #ffffff;
  --lgx9-muted:     rgba(255,255,255,0.5);
  --lgx9-border:    rgba(255,165,0,0.15);
  --lgx9-font:      'Barlow', sans-serif;
  --lgx9-mono:      'JetBrains Mono', monospace;
}

/* ── Root ── */
.lgx9__root {
  position: relative;
  width: 100%;
  background: var(--lgx9-bg);
  overflow: hidden;
  padding: 110px 0 0;
  font-family: var(--lgx9-font);
  box-sizing: border-box;
}

/* ── Background ── */
.lgx9__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lgx9__hexgrid {
  position: absolute;
  inset: 0;
}
.lgx9__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255,140,0,0.06), transparent 70%);
}
.lgx9__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Data lines */
.lgx9__dataline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,165,0,0.12) 30%, rgba(255,165,0,0.3) 50%, rgba(255,165,0,0.12) 70%, transparent 100%);
  animation: lgx9-dataline-sweep 6s ease-in-out infinite;
}
.lgx9__dataline--1 { top: 25%; animation-delay: 0s; }
.lgx9__dataline--2 { top: 55%; animation-delay: 2s; }
.lgx9__dataline--3 { top: 80%; animation-delay: 4s; }
@keyframes lgx9-dataline-sweep {
  0%,100% { opacity: 0; transform: scaleX(0.3); }
  50%      { opacity: 1; transform: scaleX(1); }
}

/* ── Inner ── */
.lgx9__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ════ LEFT ════ */
.lgx9__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Brain wrap */
.lgx9__brain-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* Glow rings */
.lgx9__glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,165,0,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: lgx9-ring-pulse 4s ease-in-out infinite;
}
.lgx9__glow-ring--outer { width: 420px; height: 420px; animation-delay: 0s; }
.lgx9__glow-ring--mid   { width: 320px; height: 320px; animation-delay: 0.8s; border-color: rgba(255,165,0,0.18); }
.lgx9__glow-ring--inner { width: 220px; height: 220px; animation-delay: 1.6s; border-color: rgba(255,165,0,0.25); }
@keyframes lgx9-ring-pulse {
  0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.03); }
}

/* Neural SVG */
.lgx9__neural {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Synapse flash animations */
.lgx9__synapse--a { animation: lgx9-syn-flash 2.4s ease-in-out infinite; }
.lgx9__synapse--b { animation: lgx9-syn-flash 3.1s ease-in-out infinite 0.7s; }
.lgx9__synapse--c { animation: lgx9-syn-flash 1.9s ease-in-out infinite 1.3s; }
@keyframes lgx9-syn-flash {
  0%,100% { opacity: 0.15; }
  50%      { opacity: 0.75; }
}

/* Node pulse */
.lgx9__node--in  { animation: lgx9-node-glow 2.5s ease-in-out infinite; }
.lgx9__node--hid { animation: lgx9-node-glow 3.2s ease-in-out infinite 0.5s; }
.lgx9__node--out { animation: lgx9-node-glow 2.8s ease-in-out infinite 1s; }
.lgx9__node--final { animation: lgx9-node-final 1.8s ease-in-out infinite; }
@keyframes lgx9-node-glow {
  0%,100% { filter: drop-shadow(0 0 3px rgba(255,165,0,0.3)); }
  50%      { filter: drop-shadow(0 0 12px rgba(255,165,0,0.8)); }
}
@keyframes lgx9-node-final {
  0%,100% { filter: drop-shadow(0 0 6px rgba(255,165,0,0.5)); }
  50%      { filter: drop-shadow(0 0 20px rgba(255,165,0,1)); }
}

/* Node core pulse */
.lgx9__node-core        { animation: lgx9-core 2s ease-in-out infinite; }
.lgx9__node-core--d1    { animation-delay: 0.3s; }
.lgx9__node-core--d2    { animation-delay: 0.6s; }
.lgx9__node-core--d3    { animation-delay: 0.9s; }
.lgx9__node-core--d4    { animation-delay: 1.2s; }
.lgx9__node-core--d5    { animation-delay: 1.5s; }
@keyframes lgx9-core {
  0%,100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Halo pulse */
.lgx9__halo--pulse1 { animation: lgx9-halo 2.5s ease-in-out infinite; }
.lgx9__halo--pulse2 { animation: lgx9-halo 3s   ease-in-out infinite 0.6s; }
.lgx9__halo--pulse3 { animation: lgx9-halo 2.8s ease-in-out infinite 1.2s; }
@keyframes lgx9-halo {
  0%,100% { opacity: 0.05; r: 18; }
  50%      { opacity: 0.18; r: 26; }
}

/* Travelling signal dots — defined via JS (SMIL-like via CSS motion) */
.lgx9__sigdot--1 {
  offset-path: path('M70,200 C120,160 140,100 180,160 C220,220 250,130 290,210 C320,270 340,200 370,200');
  animation: lgx9-sigtravel 2.2s linear infinite;
}
.lgx9__sigdot--2 {
  offset-path: path('M70,100 C110,90 140,80 180,80 C230,80 250,130 290,130 C330,130 350,170 370,200');
  animation: lgx9-sigtravel 3.1s linear infinite 0.8s;
}
.lgx9__sigdot--3 {
  offset-path: path('M70,310 C110,300 140,320 180,320 C230,320 255,310 290,300 C330,290 350,240 370,200');
  animation: lgx9-sigtravel 2.7s linear infinite 1.5s;
}
@keyframes lgx9-sigtravel {
  0%   { offset-distance: 0%;   opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Hex chips */
.lgx9__chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  z-index: 3;
}
.lgx9__chip svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lgx9__chip span {
  position: relative;
  font-family: var(--lgx9-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--lgx9-accent);
  letter-spacing: 0.05em;
  z-index: 1;
}
.lgx9__chip--1 { top: 2%;  left: 0%;   animation: lgx9-chip-drift 5s ease-in-out infinite 0s; }
.lgx9__chip--2 { top: 60%; left: 2%;   animation: lgx9-chip-drift 6s ease-in-out infinite 1s; }
.lgx9__chip--3 { top: 5%;  right: 2%;  animation: lgx9-chip-drift 4.5s ease-in-out infinite 2s; }
.lgx9__chip--4 { top: 65%; right: 0%;  animation: lgx9-chip-drift 7s ease-in-out infinite 0.5s; }
@keyframes lgx9-chip-drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-8px) rotate(5deg); }
  66%     { transform: translateY(5px) rotate(-4deg); }
}

/* Word cloud */
.lgx9__wordcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  max-width: 420px;
  min-height: 54px;
  padding: 0 10px;
}
.lgx9__wtoken {
  font-family: var(--lgx9-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,165,0,0.07);
  border: 1px solid rgba(255,165,0,0.2);
  color: var(--lgx9-accent);
  animation: lgx9-token-pop 0.4s cubic-bezier(.175,.885,.32,1.275) both;
  white-space: nowrap;
}
@keyframes lgx9-token-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.lgx9__wtoken--fade { animation: lgx9-token-fade 0.4s ease forwards; }
@keyframes lgx9-token-fade {
  to { opacity: 0; transform: scale(0.8); }
}

/* ════ RIGHT ════ */
.lgx9__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.lgx9__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--lgx9-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--lgx9-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lgx9__eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--lgx9-accent), transparent);
}
.lgx9__eyebrow-line:last-child {
  background: linear-gradient(270deg, var(--lgx9-accent), transparent);
}

/* Heading */
.lgx9__heading {
  margin: 0 0 20px;
  line-height: 1.02;
  font-family: var(--lgx9-font);
  font-weight: 900;
}
.lgx9__h-line {
  display: block;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.025em;
}
.lgx9__h-line--white  { color: var(--lgx9-white); }
.lgx9__h-line--orange {
  color: var(--lgx9-accent);
  font-style: italic;
}

/* Body text */
.lgx9__body {
  font-size: clamp(14px, 1.4vw, 16.5px);
  color: var(--lgx9-muted);
  line-height: 1.8;
  margin: 0 0 34px;
  max-width: 500px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Bars ── */
.lgx9__bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.lgx9__bar-item { display: flex; flex-direction: column; gap: 6px; }
.lgx9__bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.lgx9__bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--lgx9-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lgx9__bar-val {
  font-family: var(--lgx9-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--lgx9-accent);
}
.lgx9__bar-track {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.lgx9__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg, #FF6600, #FFA500, #FFD700);
  box-shadow: 0 0 8px rgba(255,165,0,0.6);
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
  position: relative;
}
/* Shimmer on fill */
.lgx9__bar-fill::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: lgx9-bar-shimmer 2s ease-in-out infinite;
}
@keyframes lgx9-bar-shimmer {
  0%   { transform: translateX(30px); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateX(-60px); opacity: 0; }
}

/* ── Feature grid ── */
.lgx9__fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.lgx9__fcard {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--lgx9-border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}
.lgx9__fcard:hover {
  border-color: var(--lgx9-accent);
  background: rgba(255,165,0,0.05);
  transform: translateY(-2px);
}
.lgx9__fcard-icon {
  width: 28px; height: 28px;
  color: var(--lgx9-accent);
  margin-bottom: 10px;
}
.lgx9__fcard-icon svg { width: 100%; height: 100%; }
.lgx9__fcard h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--lgx9-white);
  letter-spacing: 0.03em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.lgx9__fcard p {
  font-size: 12px;
  color: var(--lgx9-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── CTA row ── */
.lgx9__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lgx9__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lgx9-font);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  padding: 13px 30px;
  transition: all 0.3s;
  cursor: pointer;
}
.lgx9__btn--primary {
  background: var(--lgx9-accent);
  color: #000;
  border: 2px solid var(--lgx9-accent);
  box-shadow: 0 0 20px rgba(255,165,0,0.25);
}
.lgx9__btn--primary:hover {
  background: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 0 32px rgba(255,215,0,0.4);
  transform: translateY(-2px);
}
.lgx9__btn--ghost {
  background: transparent;
  color: var(--lgx9-white);
  border: 2px solid rgba(255,255,255,0.18);
}
.lgx9__btn--ghost:hover {
  border-color: var(--lgx9-accent);
  color: var(--lgx9-accent);
  transform: translateY(-2px);
}

/* ── Bottom strip ── */
.lgx9__strip {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--lgx9-border);
  background: rgba(255,165,0,0.04);
}
.lgx9__strip-track {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  animation: lgx9-strip 32s linear infinite;
  font-size: 11px;
  font-family: var(--lgx9-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lgx9__strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  padding: 0 18px;
}
.lgx9__strip-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lgx9-accent);
  animation: lgx9-dot-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.lgx9__strip-item:nth-child(4n) .lgx9__strip-dot { animation-delay: 0.4s; }
.lgx9__strip-item:nth-child(4n+1) .lgx9__strip-dot { animation-delay: 0.8s; }
.lgx9__strip-item:nth-child(4n+2) .lgx9__strip-dot { animation-delay: 1.2s; }
@keyframes lgx9-dot-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.lgx9__strip-sep {
  color: rgba(255,165,0,0.25);
  padding: 0 4px;
}
@keyframes lgx9-strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lgx9__inner { grid-template-columns: 1fr; gap: 50px; padding: 0 30px 70px; }
  .lgx9__left  { order: 2; }
  .lgx9__right { order: 1; }
  .lgx9__brain-wrap { max-width: 380px; margin: 0 auto; }
  .lgx9__glow-ring--outer { width: 360px; height: 360px; }
  .lgx9__glow-ring--mid   { width: 280px; height: 280px; }
  .lgx9__glow-ring--inner { width: 190px; height: 190px; }
}
@media (max-width: 640px) {
  .lgx9__root { padding: 70px 0 0; }
  .lgx9__inner { padding: 0 20px 50px; gap: 36px; }
  .lgx9__fgrid { grid-template-columns: 1fr; }
  .lgx9__brain-wrap { max-width: 300px; }
  .lgx9__glow-ring--outer { width: 290px; height: 290px; }
  .lgx9__glow-ring--mid   { width: 220px; height: 220px; }
  .lgx9__glow-ring--inner { width: 150px; height: 150px; }
  .lgx9__cta-row { flex-direction: column; align-items: flex-start; }
}

/*Third Section CSS BY Rishabh Ends*/

/*Fourth Section CSS bY Rishabh Starts*/
/* NODE STYLE ENHANCED */
.nxp9_qrNodes circle {
  fill: #ffb400;
  filter: drop-shadow(0 0 10px #ffb400);
  transition: 0.2s;
}

/* ACTIVE NODE */
.nxp9_activeNode {
  transform: scale(1.8);
  filter: drop-shadow(0 0 20px #ffcc00);
}

/* ENERGY DOT */
.nxp9_energyDot {
  fill: #fff3c0;
  r: 3;
}

/* CARD HOVER 3D */
.nxp9_qrCard {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

/* RIPPLE EFFECT */
.nxp9_ripple {
  position: absolute;
  border: 1px solid rgba(255,180,0,0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: rippleAnim 1s linear;
}

@keyframes rippleAnim {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* MAIN WRAPPER */
.nxp9_qrWrap {
  width: 100%;
  background: #050505;
  padding: 80px 5%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* GRID BG */
.nxp9_qrWrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,180,0,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  top: 0;
  left: 0;
  z-index: 0;
}

/* CONTAINER */
.nxp9_qrContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* LEFT VISUAL */
.nxp9_qrVisual {
  width: 50%;
  position: relative;
}

.nxp9_qrSvg {
  width: 100%;
  height: auto;
}

/* NODES */
.nxp9_qrNode {
  fill: #ffb400;
  filter: drop-shadow(0 0 8px #ffb400);
  animation: nxp9_pulse 2s infinite alternate;
}

/* LINES */
.nxp9_qrLine {
  stroke: #ffb400;
  stroke-width: 1;
  opacity: 0.4;
}

/* FLOATING TEXT */
.nxp9_qrFloatingText {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #ffb400;
  letter-spacing: 2px;
  animation: nxp9_typing 4s infinite;
}

/* RIGHT CONTENT */
.nxp9_qrContent {
  width: 50%;
}

.nxp9_qrTitle {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.nxp9_qrTitle span {
  color: #ffb400;
}

.nxp9_qrDesc {
  margin: 20px 0;
  color: #aaa;
  line-height: 1.6;
}

/* CARDS */
.nxp9_qrCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.nxp9_qrCard {
  border: 1px solid rgba(255,180,0,0.2);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.nxp9_qrCard:hover {
  border-color: #ffb400;
  box-shadow: 0 0 15px rgba(255,180,0,0.3);
}

.nxp9_qrCard h4 {
  margin-bottom: 8px;
  color: #ffb400;
}

/* BUTTON */
.nxp9_qrBtn {
  padding: 12px 25px;
  background: linear-gradient(90deg, #ffb400, #ff8800);
  border: none;
  border-radius: 25px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.nxp9_qrBtn:hover {
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes nxp9_pulse {
  from { transform: scale(1); }
  to { transform: scale(1.4); }
}

@keyframes nxp9_typing {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* RESPONSIVE */
@media(max-width: 992px){
  .nxp9_qrContainer {
    flex-direction: column;
  }

  .nxp9_qrVisual,
  .nxp9_qrContent {
    width: 100%;
  }

  .nxp9_qrTitle {
    font-size: 36px;
  }
}

@media(max-width: 600px){
  .nxp9_qrCards {
    grid-template-columns: 1fr;
  }
}

.uix7_nlpWarp {
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* GRID BG */
.uix7_nlpWarp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,180,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.uix7_nlpContainer {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

/* CANVAS */
.uix7_canvasWrap {
  width: 55%;
  height: 100%;
}

#uix7_brainCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* CONTENT */
.uix7_content {
  width: 45%;
  color: #fff;
}

.uix7_title {
  font-size: 52px;
}

.uix7_title span {
  color: #ffb400;
}

.uix7_desc {
  margin: 20px 0;
  color: #aaa;
}

/* CARDS */
.uix7_cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.uix7_card {
  padding: 18px;
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 12px;
  transition: 0.3s;
}

.uix7_card:hover {
  box-shadow: 0 0 20px rgba(255,180,0,0.4);
  transform: translateY(-5px);
}

/* BUTTON */
.uix7_btn {
  margin-top: 25px;
  padding: 12px 28px;
  background: linear-gradient(90deg,#ffb400,#ff7a00);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .uix7_nlpContainer {
    flex-direction: column;
  }

  .uix7_canvasWrap,
  .uix7_content {
    width: 100%;
  }

  .uix7_title {
    font-size: 36px;
  }
}
/*Fourth Section CSS bY Rishabh ENds*/

/*Fifth CTA Section CSS BY Rishabh Starts */
.zxr9_ctaWrap {
  width: 100%;
  padding: 100px 5%;
  background: #050505;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* GRID BACKGROUND */
.zxr9_ctaWrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,180,0,0.06) 1px, transparent 1px);
  background-size: 35px 35px;
  top: 0;
  left: 0;
}

/* CONTAINER */
.zxr9_ctaContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* VISUAL */
.zxr9_ctaVisual {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CORE */
.zxr9_coreWrap {
  position: relative;
  width: 200px;
  height: 200px;
}

.zxr9_core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb400, #ff7a00);
  box-shadow: 0 0 40px #ffb400;
  animation: zxr9_pulse 2s infinite alternate;
}

/* RINGS */
.zxr9_ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,180,0,0.3);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  animation: zxr9_rotate 8s linear infinite;
}

.zxr9_ring2 {
  width: 320px;
  height: 320px;
  top: -60px;
  left: -60px;
  animation-duration: 12s;
}

/* SCAN LINE */
.zxr9_scanLine {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffb400, transparent);
  animation: zxr9_scan 3s linear infinite;
}

/* CONTENT */
.zxr9_ctaContent {
  width: 50%;
  color: #fff;
}

.zxr9_ctaTitle {
  font-size: 48px;
}

.zxr9_ctaTitle span {
  color: #ffb400;
}

.zxr9_ctaDesc {
  margin: 20px 0;
  color: #aaa;
}

/* BUTTONS */
.zxr9_ctaActions {
  display: flex;
  gap: 20px;
}

.zxr9_mainBtn {
  padding: 14px 30px;
  background: linear-gradient(90deg,#ffb400,#ff7a00);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.zxr9_mainBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffb400;
}

.zxr9_altBtn {
  padding: 14px 30px;
  border: 1px solid rgba(255,180,0,0.4);
  background: transparent;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes zxr9_rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes zxr9_pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@keyframes zxr9_scan {
  from { top: 0; }
  to { top: 100%; }
}

/* RESPONSIVE */
@media(max-width: 900px){
  .zxr9_ctaContainer {
    flex-direction: column;
  }

  .zxr9_ctaVisual,
  .zxr9_ctaContent {
    width: 100%;
    text-align: center;
  }

  .zxr9_ctaActions {
    justify-content: center;
  }
}
/*Fifth CTA Section CSS BY Rishabh Ends*/