/* ============================================================
   learning.css — TechVahni Learning Page
   Extends style.css tokens. All class names prefixed lp-
   ============================================================ */

/* =========================================
   SECTION : CONTAINER & SHARED LAYOUT
========================================= */

.lp-container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.lp-section {
  padding: 96px 0;
}

.lp-section-tinted {
  background:
    radial-gradient(circle at 14% 50%, rgba(37,99,235,.06), transparent 42%),
    radial-gradient(circle at 86% 50%, rgba(6,182,212,.05), transparent 40%),
    rgba(247,250,255,.72);
}

.lp-section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.lp-section-head h2 { margin-bottom: 14px; }
.lp-section-head p  { max-width: 560px; }

.nav-active { color: var(--blue) !important; }

/* =========================================
   SECTION : HERO BACKGROUND
========================================= */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 72px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 10%, transparent 80%);
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.lp-orb-1 {
  width: 560px; height: 560px;
  top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%);
  animation: lpOrbDrift 15s ease-in-out infinite;
}

.lp-orb-2 {
  width: 420px; height: 420px;
  top: 10%; right: -90px;
  background: radial-gradient(circle, rgba(6,182,212,.18), transparent 70%);
  animation: lpOrbDrift 20s ease-in-out infinite reverse;
  animation-delay: -7s;
}

.lp-orb-3 {
  width: 360px; height: 360px;
  bottom: 0; left: 30%;
  background: radial-gradient(circle, rgba(124,58,237,.14), transparent 70%);
  animation: lpOrbDrift 24s ease-in-out infinite;
  animation-delay: -13s;
}

@keyframes lpOrbDrift {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(32px,-24px); }
  66%      { transform: translate(-20px,28px); }
}

/* =========================================
   SECTION : HERO INNER LAYOUT
========================================= */

.lp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* =========================================
   SECTION : HERO COPY
========================================= */

.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.lp-breadcrumb a { color: var(--muted); transition: color 180ms; }
.lp-breadcrumb a:hover { color: var(--blue); }
.lp-breadcrumb span[aria-current] { color: var(--blue); }

.lp-hero-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-desc {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.lp-hero-trust span {
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  padding: 9px 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

/* =========================================
   SECTION : HERO VISUAL — ECO CARD
========================================= */

.lp-hero-visual {
  position: relative;
}

.lp-eco-card {
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(150%);
  overflow: hidden;
  animation: lpEcoFloat 7s ease-in-out infinite;
}

@keyframes lpEcoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ── Eco header bar ────────────────────────────────────────── */
.lp-eco-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(15,23,42,.07);
  background: rgba(255,255,255,.5);
}

.lp-eco-dots {
  display: flex;
  gap: 5px;
}

.lp-eco-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.lp-eco-dots span:nth-child(1) { background: #f43f5e; }
.lp-eco-dots span:nth-child(2) { background: #f59e0b; }
.lp-eco-dots span:nth-child(3) { background: #10b981; }

.lp-eco-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex: 1;
}

.lp-eco-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.04em;
}

.lp-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: lpLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lpLivePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* ── 2x2 stage grid ────────────────────────────────────────── */
.lp-stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}

.lp-stage {
  position: relative;
  padding: 18px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.56);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.lp-stage:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,23,42,.12);
}

.lp-stage::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--stage-color, var(--blue));
  opacity: 0.9;
}

.lp-stage-learn   { --stage-color: var(--blue);   border-color: rgba(37,99,235,.16); }
.lp-stage-build   { --stage-color: var(--cyan);   border-color: rgba(6,182,212,.16); }
.lp-stage-certify { --stage-color: var(--green);  border-color: rgba(16,185,129,.16); }
.lp-stage-deploy  { --stage-color: var(--violet); border-color: rgba(124,58,237,.16); }

/* ── Stage icon ────────────────────────────────────────────── */
.lp-stage-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  margin-bottom: 10px;
}

.lp-stage-learn   .lp-stage-icon { background: rgba(37,99,235,.1); }
.lp-stage-build   .lp-stage-icon { background: rgba(6,182,212,.1); }
.lp-stage-certify .lp-stage-icon { background: rgba(16,185,129,.1); }
.lp-stage-deploy  .lp-stage-icon { background: rgba(124,58,237,.1); }

.lp-stage-icon svg {
  width: 15px; height: 15px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-stage-learn   .lp-stage-icon svg { stroke: var(--blue); }
.lp-stage-build   .lp-stage-icon svg { stroke: var(--cyan); }
.lp-stage-certify .lp-stage-icon svg { stroke: var(--green); }
.lp-stage-deploy  .lp-stage-icon svg { stroke: var(--violet); }

.lp-stage-num {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3px;
}

.lp-stage strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.lp-stage-learn   strong { color: var(--blue); }
.lp-stage-build   strong { color: var(--cyan); }
.lp-stage-certify strong { color: var(--green); }
.lp-stage-deploy  strong { color: var(--violet); }

.lp-stage p {
  margin: 0 0 10px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* ── Animated stage progress bar ───────────────────────────── */
.lp-stage-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(15,23,42,.07);
  overflow: hidden;
}

.lp-stage-bar::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--stage-color, var(--blue));
  animation: lpStageBar 3s ease-in-out infinite;
}

.lp-stage-learn   .lp-stage-bar::after { animation-delay: 0s; }
.lp-stage-build   .lp-stage-bar::after { animation-delay: -0.75s; }
.lp-stage-certify .lp-stage-bar::after { animation-delay: -1.5s; }
.lp-stage-deploy  .lp-stage-bar::after { animation-delay: -2.25s; }

@keyframes lpStageBar {
  0%,100% { width: 55%; }
  50%      { width: 90%; }
}

/* ── Progress bar ───────────────────────────────────────────── */
.lp-eco-progress {
  padding: 0 18px 16px;
}

.lp-eco-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 7px;
}

.lp-eco-bar-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(37,99,235,.1);
  overflow: hidden;
}

.lp-eco-bar-fill {
  height: 100%;
  width: 78%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: lpBarShimmer 2.5s ease-in-out infinite;
}

@keyframes lpBarShimmer {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.82; }
}

/* ── Eco footer stats ───────────────────────────────────────── */
.lp-eco-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(15,23,42,.07);
  padding: 14px 18px;
}

.lp-eco-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lp-eco-stat + .lp-eco-stat {
  border-left: 1px solid rgba(15,23,42,.07);
}

.lp-eco-stat strong {
  font-size: 1.05rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.lp-eco-stat span {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

/* =========================================
   SECTION : HERO FLOATING CHIPS
========================================= */

.lp-hchip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 8px 32px rgba(15,23,42,.12);
  backdrop-filter: blur(20px);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-soft);
  white-space: nowrap;
  z-index: 10;
}

.lp-hchip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.lp-hchip-green  { background: var(--green); }
.lp-hchip-violet { background: var(--violet); }

.lp-hchip-1 {
  top: -18px; right: 24px;
  animation: lpChipFloat 6s ease-in-out infinite;
}

.lp-hchip-2 {
  bottom: 80px; left: -24px;
  animation: lpChipFloat 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.lp-hchip-3 {
  bottom: -18px; right: 52px;
  animation: lpChipFloat 7s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes lpChipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* =========================================
   SECTION : WHO WE EMPOWER
========================================= */

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

.lp-empower-card {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  cursor: default;
}

.lp-empower-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 280ms ease;
}

.lp-empower-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,.22);
  box-shadow: var(--shadow-hover);
}

.lp-empower-card:hover::after { opacity: 1; }

.lp-empower-num {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.65;
  margin-bottom: 10px;
}

.lp-empower-content h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--ink);
}

.lp-empower-block {
  padding: 16px;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px;
  margin-bottom: 12px;
}

.lp-empower-block:last-child { margin-bottom: 0; }

.lp-empower-challenge {
  background: rgba(255,255,255,.62);
}

.lp-empower-outcome {
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(6,182,212,.04));
  border-color: rgba(16,185,129,.14);
}

.lp-empower-block strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lp-empower-challenge strong { color: var(--muted); }
.lp-empower-outcome  strong  { color: var(--green); }

.lp-empower-block p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--muted);
}

.lp-empower-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.14), transparent 70%);
  pointer-events: none;
  filter: blur(28px);
  transition: transform 400ms ease;
}

.lp-empower-card:hover .lp-empower-glow { transform: scale(1.5); }

.lp-empower-glow-cyan   { background: radial-gradient(circle, rgba(6,182,212,.14),  transparent 70%); }
.lp-empower-glow-green  { background: radial-gradient(circle, rgba(16,185,129,.14), transparent 70%); }
.lp-empower-glow-violet { background: radial-gradient(circle, rgba(124,58,237,.14), transparent 70%); }

/* =========================================
   SECTION : CAPABILITY LEARNING PATHS
========================================= */

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

.lp-path-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.lp-path-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* ── Top accent line per path ───────────────────────────────── */
.lp-path-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--path-color, var(--blue)), rgba(255,255,255,0));
}

.lp-path-ai    { --path-color: var(--blue);   }
.lp-path-se    { --path-color: var(--cyan);   }
.lp-path-data  { --path-color: var(--green);  }
.lp-path-cloud { --path-color: var(--violet); }

.lp-path-ai:hover    { border-color: rgba(37,99,235,.22); }
.lp-path-se:hover    { border-color: rgba(6,182,212,.22); }
.lp-path-data:hover  { border-color: rgba(16,185,129,.22); }
.lp-path-cloud:hover { border-color: rgba(124,58,237,.22); }

/* ── Path header (icon + tag) ───────────────────────────────── */
.lp-path-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lp-path-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.lp-path-ai    .lp-path-icon { background: rgba(37,99,235,.1); }
.lp-path-se    .lp-path-icon { background: rgba(6,182,212,.1); }
.lp-path-data  .lp-path-icon { background: rgba(16,185,129,.1); }
.lp-path-cloud .lp-path-icon { background: rgba(124,58,237,.1); }

.lp-path-icon svg {
  width: 20px; height: 20px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-path-ai    .lp-path-icon svg { stroke: var(--blue); }
.lp-path-se    .lp-path-icon svg { stroke: var(--cyan); }
.lp-path-data  .lp-path-icon svg { stroke: var(--green); }
.lp-path-cloud .lp-path-icon svg { stroke: var(--violet); }

.lp-path-tag {
  display: inline-flex;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(37,99,235,.09);
  border: 1px solid rgba(37,99,235,.18);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-path-tag-cyan   { color: var(--cyan);   background: rgba(6,182,212,.09);  border-color: rgba(6,182,212,.2); }
.lp-path-tag-green  { color: var(--green);  background: rgba(16,185,129,.09); border-color: rgba(16,185,129,.2); }
.lp-path-tag-violet { color: var(--violet); background: rgba(124,58,237,.09); border-color: rgba(124,58,237,.2); }

/* ── Path content ───────────────────────────────────────────── */
.lp-path-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.lp-path-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--muted);
  flex: 1;
}

.lp-path-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lp-path-skills span {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-soft);
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.12);
}

/* ── Real projects sub-block ────────────────────────────────── */
.lp-path-projects {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.07);
  background: rgba(255,255,255,.62);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lp-path-projects > strong {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-path-project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lp-path-project-list span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.14);
}

.lp-path-project-list span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Industry relevance ─────────────────────────────────────── */
.lp-path-industry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-industry-label {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-path-industry span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ── Path glow ──────────────────────────────────────────────── */
.lp-path-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.14), transparent 70%);
  pointer-events: none;
  filter: blur(28px);
  transition: transform 400ms ease;
}

.lp-path-card:hover .lp-path-glow { transform: scale(1.5); }

.lp-path-glow-cyan   { background: radial-gradient(circle, rgba(6,182,212,.14),  transparent 70%); }
.lp-path-glow-green  { background: radial-gradient(circle, rgba(16,185,129,.14), transparent 70%); }
.lp-path-glow-violet { background: radial-gradient(circle, rgba(124,58,237,.14), transparent 70%); }

/* =========================================
   SECTION : FROM LEARNING TO CAPABILITY — BG
========================================= */

.lp-cap-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  isolation: isolate;
}

.lp-cap-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 22%,  rgba(37,99,235,.08),   transparent 38%),
    radial-gradient(circle at 92% 78%, rgba(124,58,237,.06),  transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,.04),   transparent 52%),
    rgba(249,251,255,.94);
}

.lp-cap-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lp-cap-orb-1 {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,.13), transparent 70%);
  animation: lpOrbDrift 18s ease-in-out infinite;
}

.lp-cap-orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(124,58,237,.09), transparent 70%);
  animation: lpOrbDrift 24s ease-in-out infinite reverse;
  animation-delay: -8s;
}

.lp-cap-orb-3 {
  width: 260px; height: 260px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(6,182,212,.07), transparent 70%);
  animation: lpOrbDrift 20s ease-in-out infinite;
  animation-delay: -14s;
}

.lp-cap-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
}

/* =========================================
   SECTION : FROM LEARNING TO CAPABILITY — LAYOUT
========================================= */

.lp-cap-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
  margin-bottom: 0;
}

/* =========================================
   SECTION : CAPABILITY — LEFT COLUMN
========================================= */

.lp-cap-left {
  position: sticky;
  top: 120px;
}

.lp-cap-left h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.lp-cap-sub {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 44px;
}

/* ── Vertical timeline ──────────────────────────────────────── */
.lp-timeline {
  display: flex;
  flex-direction: column;
}

.lp-tl-item {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.lp-tl-item.lp-tl-visible {
  opacity: 1;
  transform: translateX(0);
}

.lp-tl-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: rgba(37,99,235,.18);
  border: 2px solid rgba(37,99,235,.28);
  flex-shrink: 0;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.lp-tl-first .lp-tl-dot {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(37,99,235,.14);
}

.lp-tl-dot-final {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  border-color: transparent !important;
  box-shadow: 0 0 0 5px rgba(6,182,212,.14) !important;
}

.lp-tl-item span {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  transition: color 280ms ease;
}

.lp-tl-first span { color: var(--blue); }
.lp-tl-last  span { color: var(--cyan); }

.lp-tl-connector {
  width: 2px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37,99,235,.32), rgba(37,99,235,.08));
  margin-left: calc(13px / 2 - 1px); /* align with dot centre */
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.lp-tl-connector.lp-tl-conn-visible {
  transform: scaleY(1);
  opacity: 1;
}

/* =========================================
   SECTION : CAPABILITY — RIGHT BLOCKS
========================================= */

.lp-cap-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ── Individual capability block ────────────────────────────── */
.lp-cap-block {
  position: relative;
  padding: 30px 40px 30px 0;
  border-top: 1px solid rgba(15,23,42,.09);
  overflow: hidden;
  cursor: default;
  transition: padding-left 340ms cubic-bezier(.4,0,.2,1);
}

.lp-cap-block:last-child {
  border-bottom: 1px solid rgba(15,23,42,.09);
}

/* Slide-in glass highlight on hover */
.lp-cap-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: linear-gradient(135deg, rgba(37,99,235,.055), rgba(255,255,255,.26));
  border-left: 3px solid var(--blue);
  z-index: -1;
  transition: width 360ms cubic-bezier(.4,0,.2,1);
}

.lp-cap-block:hover::before { width: 100%; }
.lp-cap-block:hover         { padding-left: 22px; }

/* Arrow reveal on hover */
.lp-cap-block::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%) translateX(10px);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.lp-cap-block:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.lp-cap-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 280ms ease;
}

.lp-cap-block:hover .lp-cap-label { color: var(--blue); }

.lp-cap-title {
  font-size: clamp(1.12rem, 1.8vw, 1.65rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 280ms ease;
}

.lp-cap-block:hover .lp-cap-title { color: var(--blue); }

.lp-cap-outcome {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.68;
  color: var(--muted);
  max-width: 380px;
  transition: color 280ms ease;
}

.lp-cap-block:hover .lp-cap-outcome { color: var(--ink-soft); }

/* ── Timeline keyframes ─────────────────────────────────────── */
@keyframes lpTlItemIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes lpTlConnGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

/* =========================================
   SECTION : PREMIUM CTA
========================================= */

.lp-cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,30,.99), rgba(12,34,76,.96), rgba(6,14,38,.99));
  pointer-events: none;
}

.lp-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.lp-cta-orb-1 {
  width: 360px; height: 360px;
  background: rgba(37,99,235,.26);
  top: -100px; left: -80px;
  animation: lpOrbDrift 14s ease-in-out infinite;
}

.lp-cta-orb-2 {
  width: 280px; height: 280px;
  background: rgba(6,182,212,.2);
  bottom: -80px; right: -60px;
  animation: lpOrbDrift 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.lp-cta-orb-3 {
  width: 200px; height: 200px;
  background: rgba(124,58,237,.16);
  top: 40%; right: 30%;
  animation: lpOrbDrift 22s ease-in-out infinite;
  animation-delay: -10s;
}

.lp-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 52px 52px;
}

.lp-cta-beam {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(108deg, transparent, rgba(255,255,255,.04) 50%, transparent);
  animation: lpCtaBeam 9s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

@keyframes lpCtaBeam {
  0%,75%,100% { transform: translateX(-150%); opacity: 0; }
  5%           { opacity: 1; }
  60%          { opacity: 1; transform: translateX(320%); }
  61%          { opacity: 0; }
}

.lp-cta-keywords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-cta-keywords span {
  position: absolute;
  left: var(--kx);
  top: var(--ky);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.1);
  white-space: nowrap;
  animation: lpKeyFloat 9s ease-in-out var(--kd, 0s) infinite;
}

@keyframes lpKeyFloat {
  0%,100% { transform: translateY(0);   opacity: .1; }
  50%      { transform: translateY(-8px); opacity: .2; }
}

/* ── CTA content ────────────────────────────────────────────── */
.lp-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.lp-cta-inner h2 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.lp-cta-inner > p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, border-color 220ms ease, gap 220ms ease;
}

.lp-cta-secondary span { display: inline-block; transition: transform 220ms ease; }

.lp-cta-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  gap: 10px;
}

.lp-cta-secondary:hover span { transform: translateX(4px); }

/* =========================================
   SECTION : RESPONSIVE — TABLET (≤980px)
========================================= */

@media (max-width: 980px) {
  .lp-section { padding: 72px 0; }

  .lp-hero-inner     { grid-template-columns: 1fr; }
  .lp-hero-visual    { display: none; }

  .lp-empower-grid   { grid-template-columns: 1fr 1fr; }
  .lp-paths-grid     { grid-template-columns: 1fr 1fr; }

  .lp-cap-inner      { grid-template-columns: 1fr; gap: 48px; }
  .lp-cap-left       { position: static; }
}

/* =========================================
   SECTION : RESPONSIVE — MOBILE (≤720px)
========================================= */

@media (max-width: 720px) {
  .lp-section { padding: 56px 0; }
  .lp-container { width: min(calc(100% - 28px), var(--max)); }

  .lp-empower-grid   { grid-template-columns: 1fr; gap: 14px; }
  .lp-paths-grid     { grid-template-columns: 1fr; gap: 14px; }

  .lp-cap-section    { padding: 64px 0; }
  .lp-cap-block      { padding: 24px 32px 24px 0; }

  .lp-empower-card   { padding: 28px 24px 24px; }
  .lp-path-card      { padding: 28px 24px; }

  .lp-cta-inner h2   { font-size: clamp(1.9rem, 7vw, 2.8rem); }
}

/* =========================================
   SECTION : RESPONSIVE — SMALL (≤480px)
========================================= */

@media (max-width: 480px) {
  .lp-empower-block { padding: 12px; }
}

/* =========================================
   SECTION : REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
