﻿/* ===================================================================
   10X Business Solutions â€” Global stylesheet
   =================================================================== */

/* --- Tokens ---------------------------------------------------------*/
:root {
  --bg: #ffffff;
  --bg-warm: #f0f4f8;
  --bg-cream: #e8f0f8;
  --accent: #844fc1;
  --accent-hover: #6e3da8;
  --accent-soft: rgba(132, 79, 193, 0.10);
  --accent-tint: rgba(132, 79, 193, 0.05);
  --text: #0d1117;
  --text-2: #1e2a38;
  --dim: #5a6a7e;
  --dim-2: #8898aa;
  --line: #dce4ee;
  --line-strong: #b8c8da;
  --card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(10, 20, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 20, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 20, 40, 0.10);
  /* UI-refresh extras */
  --radius-btn: 8px;
  --radius-card: 14px;
  --accent-grad: linear-gradient(135deg, #844fc1 0%, #9c6fd4 100%);
  --serif: "Instrument Serif", "Times New Roman", serif;
}

/* --- Reset & base --------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
img { touch-action: pan-y; -webkit-user-drag: none; } /* allow scroll when touching images on mobile */
::selection { background: var(--accent); color: white; }

/* --- Typography ----------------------------------------------------*/
.display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0;
}
.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* --- Layout helpers ------------------------------------------------*/
.container       { max-width: 1480px; margin: 0px auto; margin-bottom: 20px; margin-top: 20px;}
.container-wide  { max-width: 1480px; margin: 0 auto; padding: 0 48px; }
.container-courses { max-width: 1760px; margin: 0 auto; padding: 0 48px; margin-bottom: 20px; }
@media (max-width: 640px) {
  .container-courses { padding: 0 20px; }
}

/* Edge-to-edge side spacing for nav, hero, and footer.
   Fluid gutter: 14px on a 320px phone → 30px from ~600px up, so the
   nav toggle never gets pushed off-screen on small handsets. */
.nav-inner,
.hero-inner,
.footer .container-wide {
  padding-left: clamp(14px, 5vw, 30px) !important;
  padding-right: clamp(14px, 5vw, 30px) !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.section         { padding: 0; position: relative; }
.section-warm    { background: var(--bg-warm); }
.section-white   { background: white; }
.section-dark    { background: #0a0a0a; color: #f5f3ef; overflow: hidden; margin-bottom: 20px;}

.row             { display: flex; }
.grid            { display: grid; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; } .gap-60 { gap: 60px; } .gap-80 { gap: 80px; }
.flex-wrap       { flex-wrap: wrap; }
.items-center    { align-items: center; }
.items-end       { align-items: flex-end; }
.items-start     { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-col        { flex-direction: column; }

/* --- Buttons -------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s, border-color .2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px rgba(132, 79, 193, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(132, 79, 193, 0.32);
  color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-warm); border-color: var(--line-strong); }
/* Ghost button on dark hero background */
.hero .btn-ghost {
  color: rgba(240,246,255,0.90);
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.08);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.50);
}
.hero .btn-text {
  color: rgba(240,246,255,0.75);
}
.btn-text {
  background: transparent;
  color: var(--text-2);
  padding: 13px 8px;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* Login nav button — visible on both transparent (dark) and scrolled (light) nav */
.btn-login-nav {
  color: rgba(250,250,247,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-login-nav:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.nav.scrolled .btn-login-nav {
  color: var(--text-2);
  border-color: var(--line);
  background: transparent;
}
.nav.scrolled .btn-login-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Locked login — keeps the full button look; the "Coming Soon" message lives
   in a tooltip that appears on hover instead of cluttering the pill. */
.btn-login-nav.is-locked {
  position: relative;
  cursor: default;
  opacity: 1;
}
.btn-login-nav.is-locked::before { content: none; }

/* Tooltip bubble, anchored under the button */
.btn-login-nav.is-locked::after {
  content: "Coming Soon";
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px) scale(.96);
  transform-origin: top center;
  padding: 7px 13px;
  border-radius: 9px;
  background: #16181f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(12,14,20,.30), 0 2px 6px rgba(12,14,20,.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(.2,.9,.3,1.2), visibility .2s;
  z-index: 60;
}
.btn-login-nav.is-locked:hover::after,
.btn-login-nav.is-locked:focus-visible::after,
.btn-login-nav.is-locked.tip-open::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
/* Little arrow pointing back up at the button */
.btn-login-nav.is-locked .tip-arrow {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  background: #16181f;
  border-radius: 2px;
  transform: rotate(45deg) scale(.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 61;
}
.btn-login-nav.is-locked:hover .tip-arrow,
.btn-login-nav.is-locked:focus-visible .tip-arrow,
.btn-login-nav.is-locked.tip-open .tip-arrow {
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg) scale(1);
}

/* --- Locked CTAs (Enroll / Reserve Seat) ----------------------------
   Same treatment as the locked Login button, applied to the enrol and
   reserve actions across courses, workshops, live cohorts and events.
   Kept clickable (not [disabled]) so :hover still fires the tooltip —
   the click itself is swallowed in main.js. */
.cta-locked {
  position: relative;
  cursor: not-allowed !important;
  opacity: .55;
  filter: grayscale(.4);
}
.cta-locked::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 6px;
  vertical-align: -1px;
  background: currentColor;
  -webkit-mask: var(--lock-icon) center / contain no-repeat;
  mask: var(--lock-icon) center / contain no-repeat;
  --lock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 9V7a5 5 0 0 0-10 0v2H5v13h14V9h-2zM9 7a3 3 0 0 1 6 0v2H9V7z'/%3E%3C/svg%3E");
}
.cta-locked::after {
  content: "Coming Soon";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 11px;
  border-radius: 7px;
  background: #14171f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
  filter: grayscale(0);
}
.cta-locked:hover::after,
.cta-locked:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- Section label (ribbon flag) ------------------------------------*/
.eyebrow, .sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0;
  background: var(--accent);
  border: none;
  padding: 7px 32px 7px 16px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
}
.eyebrow::before, .sec-label::before {
  content: none;
}
.eyebrow.on-dark, .sec-label.on-dark {
  color: var(--text);
  background: #fff;
}
/* Keep eyebrow-dot & badge for hero only */
.eyebrow-dot { display: none; }

/* Title spacing below the new label */
.sec-label + h2,
.sec-label + .display,
.eyebrow + h2,
.eyebrow + .display {
  margin-top: 20px !important;
}
.eyebrow-badge {
  background: var(--accent);
  color: white;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Card ----------------------------------------------------------*/
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-dark {
  background: #0a0a0a; color: #f5f3ef; border-color: #1a1a1a;
}

/* --- Stat ----------------------------------------------------------*/
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-num-accent { color: var(--accent); }
.stat-num-lg     { font-size: 56px; }
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stats-cell { text-align: center; padding: 16px 8px; }
.stats-cell-label {
  margin: 10px 0 0; font-size: 14px; color: var(--text-2); font-weight: 500;
}
@media (max-width: 700px) {
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
}

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: background .3s, border-color .3s, color .3s, top .3s, left .3s, right .3s, border-radius .3s;
  transform: translateZ(0);
  will-change: background;
}
.nav.transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; 
}
.nav-brand {
  display: flex; flex-direction: column;
  align-items: center;
  color: var(--text);
}
/* Top row: icon + divider + Business Solutions */
.nav-brand-main {
  display: flex; align-items: center; gap: 9px; margin:10px;
}
/* Logo image in nav */
.nav-logo-img {
  height: 40px; width: auto;
  min-width: 40px;
  display: block; flex-shrink: 0;
  align-self: center;
  object-fit: contain;
  transition: filter .3s;
}
/* Vertical divider between logo icon and text */
.nav-brand-divider {
  display: block;
  width: 1.5px;
  height: 44px;
  background: rgba(26, 58, 110, 0.30);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
}
/* Brand text beside logo */
.nav-brand-text {
  display: flex; flex-direction: column;
  line-height: 1.15; gap: 0;
  align-self: center;
  justify-content: center;
}
.nav-brand-line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a3a6e;
  white-space: nowrap;
  transition: font-size .3s ease, line-height .3s ease;
}
/* Second line ("Deep Learner Academy") — slides out left & collapses on scroll */
.nav-brand-line + .nav-brand-line {
  overflow: hidden;
  max-height: 24px;
  transform: translateX(0);
  transition: max-height .3s ease, opacity .3s ease, transform .35s ease;
}
.nav.scrolled .nav-brand-line + .nav-brand-line {
  max-height: 0;
  opacity: 0;
  transform: translateX(-100%);
}
/* "DLA" grows to match the logo / divider height once collapsed */
.nav.scrolled .nav-brand-text > .nav-brand-line:first-child {
  font-size: 30px;
  line-height: 40px;
}
.nav-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.03em;
  color: #6b7a99;
  text-align: center;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}
/* On dark/transparent nav — white text & lighter divider */
.nav.transparent:not(.scrolled) .nav-brand-divider { background: rgba(255,255,255,0.35); }
.nav.transparent:not(.scrolled) .nav-brand-line    { color: #ffffff; }
.nav.transparent:not(.scrolled) .nav-brand-tag     { color: rgba(255,255,255,0.55); }
/* Make logo visible on dark hero background */
.nav.transparent:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}

/* Hide tagline when nav is scrolled */
.nav-brand-tag {
  max-height: 20px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .3s ease, opacity .3s ease;
}
.nav.scrolled .nav-brand-tag {
  max-height: 0;
  opacity: 0;
}
/* No background on nav brand â€” logo already has transparent bg */
.nav.transparent:not(.scrolled) .nav-brand {
  background: none;
  border-radius: 0;
  padding: 0;
}

/* Logo image in footer */
.footer-logo-img {
  height: 29px; width: auto; display: block; flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.footer-brand-row {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 4px;
  margin-bottom: 20px;
}
.footer-brand-main {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand-divider {
  display: block;
  width: 1.5px; height: 44px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px; flex-shrink: 0;
  align-self: center;
}
.footer-brand-text {
  display: flex; flex-direction: column;
  line-height: 1.15; gap: 0;
  align-self: center;
}
.footer-brand-line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.footer-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.45);
  text-align: left;
  width: 100%;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px;
}
.nav-link {
  color: var(--text-2); font-weight: 500;
  padding: 6px 0; position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* nav over dark video (home) */
.nav.transparent:not(.scrolled) .nav-link      { color: rgba(250,250,247,0.72); }
.nav.transparent:not(.scrolled) .nav-link:hover { color: #f5f8fb; }
.nav.transparent:not(.scrolled) .nav-link.active { color: var(--accent); }

/* Mobile menu toggle (hidden by default) */
.nav-toggle { display: none; }
/* CTA mirror row inside the mobile dropdown (injected by main.js) —
   only shown ≤640px, where the header bar hides its CTA buttons. */
.nav-menu-ctas { display: none; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: #0a0a0a;
  color: #f5f3ef;
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}.footer-glow {
  position: absolute; top: -200px; right: 10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 79, 193, 0.18), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.footer-cta-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  padding-bottom: 60px; align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-cta-eyebrow {
  font-size: 12px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-cta-headline {
  font-size: clamp(26px, 3.2vw, 44px); color: #f5f8fb;
}
.footer-cta-headline .serif-italic { color: var(--accent); }
.footer-cta-actions {
  display: flex; flex-direction: row; flex-wrap: wrap;
  gap: 12px; align-items: center;
}
/* Ghost button on dark footer */
.btn-footer-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.06);
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-footer-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
}

.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 0;
}
.footer-brand-row { display: block; margin-bottom: 20px; }
.footer-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 320px; margin: 0; }
.footer-col-title {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px; font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  color: rgba(255,255,255,0.75); font-size: 14px;
  transition: color .2s;
}
.footer-link:hover { color: var(--accent); }
.footer-link.is-soon {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); cursor: default;
}
.footer-link.is-soon em {
  font-style: normal; font-size: 10.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 99px;
  background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.6);
}
/* Social media icons */
.footer-social {
  display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap;
}
.footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}


.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-legal-links { display: flex; gap: 24px; }

/* ===================================================================
   PAGE INTRO (inner page hero)
   =================================================================== */
.page-intro {
  padding-top: 160px; padding-bottom: 100px;
  background: var(--bg-warm);
  position: relative; overflow: hidden;
}
.page-intro-blob {
  position: absolute; top: -30%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 79, 193, 0.10), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.page-intro-title { font-size: clamp(30px, 4vw, 56px); max-width: 980px; }
.page-intro-body  {
  font-size: 19px; line-height: 1.55; color: var(--text-2);
  max-width: 720px; margin-top: 28px;
}
.page-intro-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ===================================================================
   HERO (home)
   =================================================================== */
.hero {
  padding-top: 130px; padding-bottom: 60px;
  position: relative; overflow: hidden;
  background: #0a0a0a;
}
.hero-video {
  position: absolute; inset: -2px;
  width: calc(100% + 4px); height: calc(100% + 4px); object-fit: cover;
  z-index: 0;
  filter: saturate(1.0) contrast(1.0) brightness(1.0);
  pointer-events: none; /* prevent video from blocking touch/scroll on mobile */
}
.hero-overlay-v {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(5,10,20,0.45) 0%,
    rgba(5,10,20,0.35) 40%,
    rgba(5,10,20,0.55) 100%);
}
.hero-overlay-h {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(5,10,20,0.72) 0%,
    rgba(5,10,20,0.45) 45%,
    rgba(5,10,20,0.20) 70%);
}
.hero-overlay-tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(5,10,20,0.25);
  mix-blend-mode: multiply;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.hero-blob-warm {
  position: absolute; bottom: -20%; right: 5%; z-index: 2;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,90,0.16), transparent 60%);
  filter: blur(50px);
  animation: blobDrift2 24s ease-in-out infinite;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100vh - 200px);
  padding-bottom: 60px;
}
.hero-headline {
  font-size: clamp(32px, 3.8vw, 58px);
  margin: 0 0 28px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-10x {
  display: inline-flex; align-items: center; gap: 0.15em;
}
.hero-10x-big {
  font-size: 1.18em; font-weight: 700;
  color: var(--accent);
  position: relative; line-height: 0.85;
}
.hero-logo-img {
  height: 100px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  image-rendering: -webkit-optimize-contrast;
}
.hero-10x-big::after {
  content: ''; position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(132, 79, 193, 0.35), transparent 65%);
  filter: blur(20px); z-index: -1;
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: rgba(240,246,255,0.82);
  max-width: 580px; margin: 0 0 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* AI hero variant — centered copy + full-bleed circuit diagram instead of video */
.hero-ai {
  background: #0a0a0a;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 90px; padding-bottom: 0;
  overflow: hidden;
}

.hero-ai .hero-inner { min-height: 0; padding-bottom: 0; width: 100%; margin-bottom: 560px; }
.hero-inner-center { align-items: center; text-align: center; }
.hero-inner-center .hero-headline {
  max-width: 700px; margin-left: auto; margin-right: auto;
  font-size: clamp(28px, 4vw, 50px) !important;
  margin-bottom: 12px;
  line-height: 1.14;
}
.hero-inner-center .hero-sub {
  font-size: 15px; line-height: 1.5; max-width: 500px;
  margin-left: auto; margin-right: auto; margin-bottom: 16px;
}
.hero-inner-center .hero-ctas { margin-bottom: 0; justify-content: center; }
.hero-inner-center .hero-points { margin-left: auto; margin-right: auto; justify-items: center; }
.hero-inner-center .hero-points li { justify-content: center; }

/* --- Editorial serif hero (home) ----------------------------------- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(240,246,255,0.88);
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; line-height: 1;
  margin-bottom: 26px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-eyebrow-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; padding: 0 9px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
}
.hero-serif {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
.hero-serif .accent-italic {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  color: var(--accent);
}
.hero-inner-center .hero-headline.hero-serif {
  font-size: clamp(42px, 6.6vw, 60px) !important;
  max-width: 30ch;
  margin: 0 auto 22px !important;
}
.hero-sub-serif {
  font-size: 17px; line-height: 1.6; color: rgba(240,246,255,0.80);
}
.hero-inner-center .hero-sub-serif { max-width: 640px; }

/* Left-aligned hero variant — align to the same 1320px column the rest of the page uses */
.hero-inner-left {
  align-items: flex-start; text-align: center;
  width: 100%;
  max-width: 1700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}
@media (max-width: 1360px) {
  .hero-inner-left { padding-left: 24px !important; padding-right: 24px !important; }
}
.hero-inner-left .hero-headline.hero-serif {
  font-size: clamp(42px, 6.6vw, 92px) !important;
  max-width: 16ch;
  margin: 0 0 18px !important;
}
.hero-inner-left .hero-sub-serif { max-width: 640px; }
.hero-inner-left .hero-ctas { justify-content: flex-start !important; margin-bottom: 0; }

/* Light image hero — dark copy over a bright hero background image */
.hero-light { background: #ffffff; }
.hero-light .hero-headline,
.hero-light .hero-serif { color: #101426; text-shadow: none; }
.hero-light .hero-sub,
.hero-light .hero-sub-serif { color: rgba(16,20,38,0.72); text-shadow: none; }
.hero-light .hero-points li { color: rgba(16,20,38,0.78); }
.hero-light .btn-ghost {
  color: var(--text);
  border-color: rgba(16,20,38,0.22);
  background: rgba(255,255,255,0.65);
}
.hero-light .btn-ghost:hover {
  background: rgba(16,20,38,0.06);
  border-color: rgba(16,20,38,0.35);
}

/* Nav over light hero — dark links/logo instead of white */
.nav.transparent.nav-on-light:not(.scrolled) .nav-link { color: rgba(16,20,38,0.70); }
.nav.transparent.nav-on-light:not(.scrolled) .nav-link:hover { color: #101426; }
.nav.transparent.nav-on-light:not(.scrolled) .nav-link.active { color: var(--accent); }
.nav.transparent.nav-on-light:not(.scrolled) .nav-brand-line { color: #101426; }
.nav.transparent.nav-on-light:not(.scrolled) .nav-brand-tag { color: rgba(16,20,38,0.55); }
.nav.transparent.nav-on-light:not(.scrolled) .nav-brand-divider { background: rgba(16,20,38,0.25); }
.nav.transparent.nav-on-light:not(.scrolled) .nav-logo-img { filter: none; }
.nav.transparent.nav-on-light:not(.scrolled) .btn-login-nav {
  color: var(--text-2);
  border-color: rgba(16,20,38,0.25);
  background: transparent;
}
.nav.transparent.nav-on-light:not(.scrolled) .btn-login-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav.transparent.nav-on-light:not(.scrolled) .nav-toggle { border-color: rgba(16,20,38,0.25); color: #101426; }

/* hero feature points */
.hero-points {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px; max-width: 620px;
}
.hero-points li {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px; line-height: 1.35; color: rgba(240,246,255,0.86);
}
.hero-point-ico {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent);
  background: rgba(132,79,193,0.18);
  border: 1px solid rgba(132,79,193,0.45);
}
@media (max-width: 560px) {
  .hero-points { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 640px) {
  .hero-inner-left { padding: 0 20px; }
  .hero-inner-left .hero-headline.hero-serif { font-size: clamp(38px, 12vw, 58px) !important; }
}

/* Two-column hero (copy left, image right) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr minmax(0, 540px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-media, .code-card { min-width: 0; }
.hero-split .hero-headline.hero-serif { max-width: 30ch; font-size: clamp(38px, 5vw, 66px) !important; line-height: 1.05; }
.hero-media { position: relative; isolation: isolate; }

/* ---- Hero code showcase (tabbed) ---- */
.code-card {
  position: relative; z-index: 1;
  width: 100%; border-radius: 16px; overflow: hidden;
  background: #14101c;
  border: 1px solid rgba(132,79,193,0.28);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(132,79,193,0.10);
  font-family: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
}
.code-tabs {
  display: flex; gap: 2px; overflow-x: auto;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(132,79,193,0.18);
  scrollbar-width: none;
}
.code-tabs::-webkit-scrollbar { display: none; }
.code-tab {
  flex: 0 0 auto; cursor: pointer;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 500;
  color: rgba(240,246,255,0.52);
  background: transparent; border: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.code-tab:hover { color: rgba(240,246,255,0.85); }
.code-tab.is-active {
  color: #fff; background: rgba(255,255,255,0.04);
  border-bottom-color: var(--accent);
}
.code-panels { position: relative; }
.code-panel {
  margin: 0; padding: 14px 18px;
  overflow: auto; min-height: 300px; max-height: 380px;
  font-size: 11.5px; line-height: 1.5; color: #d7d2e6;
  tab-size: 2; white-space: pre;
}
.code-panel[hidden] { display: none; }
.code-panel code { font: inherit; color: inherit; background: none; }
.code-panel::-webkit-scrollbar { height: 8px; width: 8px; }
.code-panel::-webkit-scrollbar-thumb { background: rgba(132,79,193,0.28); border-radius: 8px; }
.code-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 18px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(132,79,193,0.18);
  font-family: 'Inter', sans-serif;
}
.code-lang { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; color: rgba(240,246,255,0.5); }
.code-copy {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  color: rgba(240,246,255,0.75);
  background: rgba(132,79,193,0.14);
  border: 1px solid rgba(132,79,193,0.32);
  border-radius: 8px; padding: 6px 10px;
  transition: background .15s, color .15s, border-color .15s;
}
.code-copy:hover { background: rgba(132,79,193,0.26); color: #fff; border-color: rgba(132,79,193,0.5); }
.code-copy svg { width: 14px; height: 14px; }
.code-copy.is-copied { color: #f0a35c; border-color: rgba(240,163,92,0.5); background: rgba(240,163,92,0.12); }

/* DLA-brand syntax tokens (purple + teal + warm, matching the hero) */
.c-com { color: #736e86; font-style: italic; }
.c-key { color: #b892f5; }
.c-fn  { color: #f0a35c; }
.c-str { color: #7fd1c0; }
.c-num { color: #e58bb6; }
.c-esc { color: #e9b878; }
.c-teal{ color: #6fc3d9; }

/* soft accent glow behind the portrait */
.hero-media-glow {
  position: absolute; z-index: -1; pointer-events: none;
  inset: -14% -10% -14% -6%;
  background:
    radial-gradient(60% 55% at 68% 32%, rgba(132,79,193,0.42), transparent 70%),
    radial-gradient(55% 50% at 30% 80%, rgba(255,150,80,0.20), transparent 72%);
  filter: blur(46px);
  animation: heroGlowPulse 9s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}

/* framed portrait */
.hero-media-frame {
  position: relative; border-radius: 22px; padding: 6px;
  background: linear-gradient(150deg, rgba(255,255,255,0.20), rgba(255,255,255,0.02) 42%, rgba(132,79,193,0.28));
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-media-img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
}

/* floating glass info cards */
.hero-fcard {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 15px; border-radius: 14px;
  background: rgba(18,18,26,0.62);
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
          backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.7);
  font-family: 'Inter', sans-serif;
  color: rgba(240,246,255,0.92); font-size: 12.5px; line-height: 1.3;
  animation: heroCardFloat 6s ease-in-out infinite;
}
.hero-fcard strong { color: #fff; font-weight: 700; }
.hero-fcard-rating {
  top: 8%; right: -22px; flex-direction: column; align-items: flex-start; gap: 3px;
}
.hero-fcard-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.hero-fcard-rating-row { color: rgba(240,246,255,0.72); }
.hero-fcard-live {
  bottom: 9%; left: -26px; animation-delay: -3s;
}
.hero-fcard-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,0.22);
  animation: heroDotPulse 1.8s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,211,153,0.28); }
  50%      { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
}

/* left-column trust stats */
.hero-stat-row {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 480px;
}
.hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1; color: #fff;
}
.hero-stat-star { color: var(--accent); font-size: 0.62em; }
.hero-stat-cap {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(240,246,255,0.52);
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .hero-stat-row { margin-top: 30px; }
}

/* stats row */
.hero-stats {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: clamp(26px, 5vw, 68px);
  margin-top: 48px;
}
.hero-inner-center .hero-stats { justify-content: center; }
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.hero-inner-center .hero-stat { align-items: center; text-align: center; }
.hero-stat-n {
  font-family: var(--serif);
  font-weight: 400; font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1; color: #fff; letter-spacing: 0;
}
.hero-stat-l {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(240,246,255,0.55);
}
@media (max-width: 640px) {
  .hero-inner-center .hero-headline.hero-serif { font-size: clamp(38px, 12vw, 58px) !important; }
  .hero-stats { gap: 22px 34px; margin-top: 36px; }
  .hero-eyebrow { font-size: 12px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(240,246,255,0.85); font-size: 12px; font-weight: 500;
  margin-bottom: 14px;
}
.hero-badge-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 11px; line-height: 1;
}
.hero-corner-beam {
  position: absolute; top: -120px; right: -160px; z-index: 0; pointer-events: none;
  width: 560px; height: 560px;
  background: conic-gradient(from 220deg at 30% 30%, rgba(255,138,61,0.55), transparent 35%);
  filter: blur(30px);
  transform: rotate(0deg);
}
/* AI circuit board (procedurally-drawn SVG, see js/ai-circuit.js) */
.ai-board-wrap {
  --ab-bg: #030a0d;
  --ab-board-1: #071014;
  --ab-board-2: #040b0f;
  --ab-trace: #0e2a32;
  --ab-trace-lit: #1a6070;
  --ab-via: #1a4a56;
  --ab-core: #a0eaf5;
  --ab-flame: #2ab8d4;
  --ab-ember: #00c8e0;
  --ab-key-1: #091820;
  --ab-key-2: #050f14;
  --ab-key-edge: #123040;
  --ab-ink: #cdeef5;
  --ab-ink-dim: #4a8898;
  --ab-chip-1: #0d2530;
  --ab-chip-2: #060f14;
  --ab-chip-edge: #1a4050;
  width: 100%; max-width: 1500px; margin: 26px auto 0 ;
  font-family: 'Inter', system-ui, sans-serif;
}
.ai-board-wrap .board {
  position: relative; width: 100%; border-radius: 20px; overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.ai-board-wrap svg { display: block; width: 100%; height: auto; }
.ai-board-wrap .trace {
  fill: none; stroke: var(--ab-trace); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .25s ease, stroke-width .25s ease;
}
.ai-board-wrap .trace.lit { stroke: var(--ab-trace-lit); stroke-width: 1.9; }
.ai-board-wrap .pk-core {
  fill: none; stroke: var(--ab-core); stroke-width: 1px;
  stroke-linecap: round; stroke-linejoin: round;
}
.ai-board-wrap .pk-halo {
  fill: none; stroke: var(--ab-ember); stroke-width: 8;
  stroke-linecap: round; stroke-linejoin: round; filter: url(#glowSoft); opacity: .55;
}
.ai-board-wrap .node { cursor: pointer; }
.ai-board-wrap .node .cap {
  transition: transform .22s cubic-bezier(.2,.8,.2,1), filter .22s ease;
  transform-box: fill-box; transform-origin: center;
}
.ai-board-wrap .node:hover .cap, .ai-board-wrap .node:focus-visible .cap {
  transform: translateY(-2.5px) scale(1.045); filter: brightness(1.3);
}
.ai-board-wrap .node .glyph { font-weight: 650; fill: var(--ab-ink); font-size: 20px; letter-spacing: -.02em; }
.ai-board-wrap .node:hover .glyph, .ai-board-wrap .node:focus-visible .glyph { fill: #fff; }
.ai-board-wrap .node:focus-visible { outline: none; }
.ai-board-wrap .node:focus-visible .ring-focus { opacity: 1; }
.ai-board-wrap .ring-focus { opacity: 0; transition: opacity .15s; }
.ai-board-wrap .chip { cursor: pointer; }
.ai-board-wrap .chip:focus-visible { outline: none; }
.ai-board-wrap .chip-label {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
  font-weight: 700; font-size: 25px; letter-spacing: .06em; fill: #a0eaf5;
}
.ai-board-wrap .legend {
  display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap;
  margin-top: 18px; color: var(--ab-ink-dim); font-size: 13px;
}
.ai-board-wrap .legend .dot {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 7px;
  vertical-align: middle; background: radial-gradient(circle at 40% 35%, var(--ab-core), var(--ab-ember));
  box-shadow: 0 0 11px 1px rgba(255,77,0,.75);
}
.ai-board-wrap .legend kbd {
  font-family: inherit; background: #181513; border: 1px solid #2c2824; border-radius: 6px;
  padding: 2px 7px; color: var(--ab-ink);
}
@media (max-width: 640px) {
  .ai-board-wrap .legend { display: none; }
}

.hero-stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 600px;
}
.hero-stat { padding: 0; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 24px; }
.hero-stat-strip .stat-num { color: rgba(255,255,255,0.92); }
.hero-stat-label {
  font-size: 12px; color: rgba(240,246,255,0.65); line-height: 1.4; margin-top: 6px;
}

/* Phone stage */
.phone-stage {
  position: relative; height: 720px;
  display: flex; align-items: center; justify-content: center;
}
.phone-halo {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 79, 193, 0.22), transparent 65%);
  filter: blur(40px); animation: pulseHalo 6s ease-in-out infinite;
  pointer-events: none;
}
.phone-orbit-svg, .phone-dots-svg {
  position: absolute; width: 600px; height: 700px; pointer-events: none;
}
.phone-3d-wrap { position: relative; z-index: 5; }
.phone-cards-wrap { position: absolute; inset: 0; }

/* ===================================================================
   PHONE
   =================================================================== */
.phone {
  position: relative;
  width: 310px; height: 640px;
  transform: perspective(1800px) rotateX(7deg) rotateY(-16deg) rotateZ(2deg);
  transform-style: preserve-3d;
  filter:
    drop-shadow(0 50px 70px rgba(10, 20, 40,0.18))
    drop-shadow(0 0 50px rgba(132, 79, 193, 0.18));
}
.phone-body {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #2a2620 0%, #0c0a07 60%, #2a2620 100%);
  border-radius: 46px;
  padding: 7px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 0 0 2.5px rgba(0,0,0,0.5);
}
.phone-screen {
  position: absolute; inset: 7px;
  background: #fffdf8;
  border-radius: 40px;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #000; border-radius: 14px; z-index: 10;
}
.phone-status {
  position: absolute; top: 16px; left: 22px; right: 22px;
  display: flex; justify-content: space-between;
  color: #0a0a0a; font-size: 12px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif; z-index: 11;
}
.phone-status-icons { display: flex; gap: 5px; align-items: center; }
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 124px; height: 4px; background: rgba(0,0,0,0.35);
  border-radius: 4px; z-index: 12;
}
.phone-side-btn {
  position: absolute; background: #1a1a18; border-radius: 2px; width: 3px;
}
.phone-screens {
  position: absolute; inset: 0; padding-top: 52px;
}
.phone-screen-pane {
  position: absolute; inset: 0; padding-top: 52px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.phone-screen-pane.active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

.scr-pad { padding: 14px 18px; color: #0a0a0a; font-family: 'Inter', sans-serif; }
.scr-eyebrow { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }
.scr-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; font-family: 'Plus Jakarta Sans', sans-serif; margin-top: 2px; }
.scr-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#844fc1,#b08fd9); display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; color:white; }

.kpi-mini { background: #f5f8fb; border-radius: 12px; padding: 8px 10px; border: 1px solid #dce4ee; }
.kpi-mini-label { font-size: 9px; color: #999; text-transform: uppercase; letter-spacing: .06em; }
.kpi-mini-value { font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: #844fc1; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.1; }
.kpi-mini-sub { font-size: 9px; color: #bbb; }

.scr-chart-box { background: #f0f4f8; border-radius: 12px; padding: 12px; border: 1px solid #dce4ee; margin-bottom: 10px; }
.scr-chart-head { display: flex; justify-content: space-between; margin-bottom: 8px; }
.scr-chart-axis { display: flex; justify-content: space-between; font-size: 8px; color: #bbb; margin-top: 4px; }

.scr-alert {
  background: rgba(132, 79, 193, 0.08); border-radius: 12px; padding: 10px;
  border: 1px solid rgba(132, 79, 193, 0.20);
  display: flex; align-items: center; gap: 8px;
}
.scr-alert-icon {
  width: 26px; height: 26px; border-radius: 7px; background: #844fc1;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.scr-pills { margin-top: 10px; display: flex; gap: 6px; }
.scr-pill {
  flex: 1; padding: 7px 4px; border-radius: 9px;
  background: #f5f8fb; border: 1px solid #dce4ee;
  font-size: 9px; text-align: center; color: #555; font-weight: 500;
}

.scr-list-item {
  background: #f5f8fb; border-radius: 11px; padding: 9px 11px;
  border: 1px solid #dce4ee; margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.phone-screen-pane.active .scr-list-item { opacity: 1; transform: translateX(0); }
.phone-screen-pane.active .scr-list-item:nth-child(1) { transition-delay: 0s; }
.phone-screen-pane.active .scr-list-item:nth-child(2) { transition-delay: .08s; }
.phone-screen-pane.active .scr-list-item:nth-child(3) { transition-delay: .16s; }
.phone-screen-pane.active .scr-list-item:nth-child(4) { transition-delay: .24s; }
.phone-screen-pane.active .scr-list-item:nth-child(5) { transition-delay: .32s; }

.scr-bars { display: flex; align-items: flex-end; gap: 8px; height: 200px; margin-bottom: 10px; }
.scr-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.scr-bar-pair { display: flex; align-items: flex-end; gap: 3px; height: 170px; }
.scr-bar-a, .scr-bar-b {
  width: 11px; border-radius: 3px 3px 0 0; height: 0;
  transition: height .9s cubic-bezier(.2,.7,.2,1);
}
.scr-bar-a { background: #b8c8da; }
.scr-bar-b { background: #844fc1; box-shadow: 0 0 10px rgba(132, 79, 193, 0.4); }

/* ===================================================================
   FLOATING CARDS
   =================================================================== */
.fc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  box-shadow:
    0 20px 50px rgba(10, 20, 40,0.10),
    0 4px 12px rgba(10, 20, 40,0.05);
}
.fc-wrap {
  position: absolute;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.fc-wrap.in {
  opacity: 1;
  animation: floatside 6s ease-in-out infinite;
}
.fc-wrap.side-left  { left: -10px; transform: translateX(-30px); }
.fc-wrap.side-right { right: -10px; transform: translateX(30px); }
.fc-wrap.in.side-left, .fc-wrap.in.side-right { transform: translateX(0); }

.fc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fc-dot { width: 7px; height: 7px; border-radius: 50%; background: #844fc1; box-shadow: 0 0 0 4px rgba(132, 79, 193, 0.18); }
.fc-label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.fc-title { font-size: 13px; font-weight: 500; line-height: 1.3; color: #0a0a0a; }
.fc-big { font-size: 24px; font-weight: 700; color: #844fc1; font-family: 'Plus Jakarta Sans'; letter-spacing: -.02em; line-height: 1; }
.fc-tag {
  background: #844fc1; color: white;
  border-radius: 999px; padding: 10px 18px;
  font-family: 'Plus Jakarta Sans'; font-size: 13px; font-weight: 600;
  box-shadow: 0 12px 30px rgba(132, 79, 193, 0.35);
  display: flex; align-items: center; gap: 8px;
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  border-radius: 18px;
  padding: 28px 0;
  overflow: hidden;
  background: #ffffff;
  position: relative; z-index: 5;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite reverse;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  font-size: 26px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  color: var(--text);
  opacity: 0.45;
  filter: grayscale(1);
  padding: 0 40px;
  transition: opacity .25s, filter .25s;
}
.marquee-logo {
  display: flex; align-items: center;
  height: 36px;
  padding: 0 40px;
  flex-shrink: 0;
}
.marquee-logo img {
  height: 100%; width: auto; object-fit: contain;
}
.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--accent);
}

/* ===================================================================
   FIELD GALLERY
   =================================================================== */
.field-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: 16px;
}
.field-cell {
  border-radius: 18px; overflow: hidden; position: relative;
}
.field-cell-big { grid-row: span 2; }
.field-caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  padding: 12px 16px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(12px);
  color: #f5f8fb; border-radius: 12px;
  pointer-events: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; z-index: 2;
}
.field-caption-label {
  font-family: 'Plus Jakarta Sans'; font-size: 11px; color: var(--accent);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.field-caption-sub { font-size: 12px; color: rgba(255,255,255,0.75); text-align: right; }

/* ===================================================================
   PROCESS FLOW — interactive stepper
   =================================================================== */

/* stepper tabs */
.jrny-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 0;
}
.jrny-tab {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 16px 8px;
  background: #f7f7f5; border: 1.5px solid var(--line);
  border-radius: 14px; cursor: pointer;
  transition: all .22s; position: relative;
  font-family: 'Plus Jakarta Sans';
}
.jrny-tab:hover { background: #fff; border-color: #aaa; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.jrny-tab-num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--text-2);
}
.jrny-tab-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  text-align: center; line-height: 1.3;
}

/* active tab gets the step colour via inline --sc on the panel (set via JS) */
.jrny-tab.active {
  background: #fff;
  border-color: var(--tab-sc, #844fc1);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.jrny-tab.active .jrny-tab-num { color: var(--tab-sc, #844fc1); }
.jrny-tab.active::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid var(--tab-sc, #844fc1);
}

/* progress bar */
.jrny-progress-track {
  height: 4px; background: var(--line);
  border-radius: 4px; margin: 18px 0 32px;
  overflow: hidden;
}
.jrny-progress-fill {
  height: 100%; width: 16.67%;
  background: #844fc1;
  border-radius: 4px;
  transition: width .4s cubic-bezier(.4,0,.2,1), background .3s;
}

/* panels */
.jrny-panels { position: relative; }
.jrny-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  animation: jrnyFadeIn .3s ease;
}
.jrny-panel.active { display: grid; }

@keyframes jrnyFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.jrny-panel-left {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.jrny-panel-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px; width: fit-content;
}
.jrny-panel-title {
  font-family: 'Plus Jakarta Sans'; font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--text); letter-spacing: -0.03em;
  margin: 0 0 14px; line-height: 1.15;
}
.jrny-panel-desc {
  font-size: 15px; color: var(--text-2); line-height: 1.7;
  margin: 0 0 22px;
}
.jrny-panel-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.jrny-panel-list li {
  font-size: 14px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.jrny-panel-list li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sc); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.jrny-panel-cta {
  display: inline-block; padding: 13px 26px;
  border-radius: 10px; font-size: 14px; font-weight: 700;
  color: #fff; text-decoration: none; width: fit-content;
  transition: opacity .2s, transform .2s;
}
.jrny-panel-cta:hover { opacity: .88; transform: translateY(-1px); }

.jrny-panel-right {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px; padding: 44px 32px;
}
.jrny-panel-icon-wrap {
  width: 88px; height: 88px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.jrny-panel-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(255,255,255,.65); border-radius: 12px;
  padding: 12px 24px; width: 100%; text-align: center;
}
.jrny-stat-num {
  font-family: 'Plus Jakarta Sans'; font-weight: 800;
  font-size: 20px; color: var(--sc); line-height: 1;
}
.jrny-stat-label {
  font-size: 12px; color: var(--text-2); font-weight: 500;
}

/* ===================================================================
   CAREER PATH GUIDANCE
   =================================================================== */
.career-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.career-sec { overflow: hidden; position: relative; }
.career-video {
  position: absolute; inset: -2px;
  width: calc(100% + 4px); height: calc(100% + 4px); object-fit: cover;
  z-index: 0; pointer-events: none;
}
.career-video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(255,255,255,0.88);
}
.career-sec .container { position: relative; z-index: 1; }
.career-cards-wrap { position: relative; padding: 20px 0; }
.career-image {
  position: relative; z-index: 1;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 36px rgba(95, 95, 95, 0);
}
.career-image img { display: block; width: 100%; height: auto; }
.career-cards {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.career-cards-col { display: flex; flex-direction: column; gap: 24px; }
.career-cards-col-offset { margin-top: 56px; }
.career-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 36px rgba(20,30,45,0.12);
  transition: box-shadow .25s ease;
}
.career-card:hover { box-shadow: 0 18px 40px rgba(20,30,45,0.16); }
.career-card-img {
  width: 100%; height: 160px; overflow: hidden;
}
.career-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.career-card:hover .career-card-img img { transform: scale(1.06); }
.career-card-body {
  padding: 22px 22px 26px; text-align: center;
}
.career-card-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(132, 79, 193, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.career-card-title { font-size: 17px; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.career-card-desc { font-size: 13.5px; line-height: 1.55; color: var(--text-2); margin: 0; }
@media (max-width: 900px) {
  .career-grid { grid-template-columns: 1fr; gap: 40px; }
  .career-blob-dark { display: none; }
}
@media (max-width: 560px) {
  .career-cards { grid-template-columns: 1fr; }
  .career-cards-col-offset { margin-top: 0; }
}

/* ===================================================================
   CORE SERVICES
   =================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(132, 79, 193, 0.08); border: 1px solid rgba(132, 79, 193, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.svc-num {
  font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 13px;
  color: var(--dim-2); letter-spacing: 0.04em;
}
.svc-title { font-size: 20px; line-height: 1.25; margin: 0 0 12px; letter-spacing: -.015em; }
.svc-body  { font-size: 14px; line-height: 1.55; color: var(--text-2); margin: 0; }

/* Training courses carousel (index page) */
.train-sec {
  position: relative; overflow: hidden; padding: 100px 0 170px;
  background: var(--accent-grad);
}
.train-video {
  position: absolute; inset: -2px;
  width: calc(100% + 4px); height: calc(100% + 4px); object-fit: cover;
  z-index: 0; pointer-events: none;
}
.train-video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: #00000000; opacity: 0.82;
}
.train-blob {
  position: absolute; left: -120px; bottom: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 65%);
  pointer-events: none;
}
.train-swoosh {
  position: absolute; left: 0; bottom: -1px; width: 100%; height: 140px;
  display: block; pointer-events: none;
}
.train-sec .container { position: relative; z-index: 1; }
.train-sec-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px;
  margin-bottom: 44px;
}
.train-sec-title {
  color: #fff; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.15;
  max-width: 480px; margin: 0;
}
.train-sec-desc {
  color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7;
  max-width: 460px; margin: 0;
}
.train-sub-title {
  color: #fff; font-weight: 600; font-size: 18px; margin: 0 0 24px;
}
/* ── Carousel rows (SVGator-style) ── */
.train-rows {
  width: 100%;
  padding-bottom: 60px;
}
.train-carousel {
  overflow: hidden;
  width: 100%;
  height: 260px;           /* fixed height matches card height */
}
.train-carousel-reverse { margin-top: 12px; }

.train-arrow { display: none; }

.train-track {
  display: flex;
  gap: 12px;
  width: max-content;
  height: 260px;
  animation: trainScroll 30s linear infinite;
}
.train-track:hover { animation-play-state: paused; }
.train-track-reverse {
  animation-name: trainScrollReverse;
}

@keyframes trainScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes trainScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card — portrait, 230×260, matches SVGator tile proportions */
.train-card {
  flex: 0 0 230px; width: 230px; height: 260px;
  border-radius: 18px; padding: 24px 20px 22px;
  text-decoration: none; color: #fff; text-align: left;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}
.train-card:hover { transform: scale(1.04); box-shadow: 0 18px 40px rgba(0,0,0,0.32); }

/* Card colour classes */
.tc-dark   { background: linear-gradient(145deg,#1a1a2e 0%,#16213e 100%); }
.tc-amber  { background: linear-gradient(145deg,#f7971e 0%,#ffd200 100%); color:#1a1a2e !important; }
.tc-teal   { background: linear-gradient(145deg,#134e5e 0%,#71b280 100%); }
.tc-indigo { background: linear-gradient(145deg,#4776e6 0%,#8e54e9 100%); }
.tc-rose   { background: linear-gradient(145deg,#c94b4b 0%,#4b134f 100%); }
.tc-green  { background: linear-gradient(145deg,#11998e 0%,#38ef7d 100%); color:#0d2b20 !important; }

.train-card-icon {
  font-size: 42px;
  display: block;
  transition: transform .3s ease;
  line-height: 1;
}
.train-card:hover .train-card-icon { transform: scale(1.18) rotate(-8deg); }
.train-card-title { font-size: 16px; font-weight: 800; margin: 0; line-height: 1.25; }
.train-card-desc  { font-size: 12px; line-height: 1.55; margin: 0; opacity: 0.80; }

/* Top courses strip (page-hero variant) */
.top-courses-grid {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px;
}
.top-course-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 12px 18px;
  backdrop-filter: blur(8px);
}
.top-course-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #6729FF, #6D35F8);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.top-course-name {
  font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 14px;
  color: #fafaf7; white-space: nowrap;
}

/* ===================================================================
   WHY US
   =================================================================== */
.why-section { position: relative; overflow: hidden; }
.why-curve-top {
  position: absolute; top: 0; left: 0; width: 100%; height: 100px;
  display: block; pointer-events: none; z-index: 1;
}
.why-blob {
  position: absolute; top: -20%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 79, 193, 0.20), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.why-cell {
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background .3s ease;
}
.why-cell:hover { background: rgba(255,255,255,0.03); }
.why-cell:nth-child(3n) { border-right: none; }
.why-cell:nth-last-child(-n+3) { border-bottom: none; }
.why-cell-num {
  font-family: 'Plus Jakarta Sans'; font-size: 12px; color: var(--accent);
  font-weight: 700; letter-spacing: 0.1em; margin-bottom: 16px;
  display: inline-block; transition: transform .3s ease;
}
.why-cell:hover .why-cell-num { transform: translateX(4px); }
.why-cell-title { font-size: 22px; margin: 0 0 12px; color: #f5f8fb; }
.why-cell-body  { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.6); margin: 0; }

/* ===================================================================
   INDUSTRIES PREVIEW (home)
   =================================================================== */
.ind-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.ind-cell {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .25s;
  position: relative;
}
.ind-cell:hover { background: var(--bg-warm); }
.ind-cell:nth-child(3n) { border-right: none; }
.ind-cell:nth-last-child(-n+3) { border-bottom: none; }
.ind-cell-tag {
  font-family: 'Plus Jakarta Sans'; font-size: 12px; color: var(--accent);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.ind-cell-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ind-cell-title { font-size: 22px; margin: 0; }
.ind-cell-row svg { transition: transform .3s ease; }
.ind-cell:hover .ind-cell-row svg { transform: translateX(5px); color: var(--accent) !important; }

/* Roles not open yet — flat, non-interactive, labelled with a chip */
.ind-cell.is-soon { cursor: default; }
.ind-cell.is-soon:hover { background: transparent; }
.ind-cell.is-soon .ind-cell-tag,
.ind-cell.is-soon .ind-cell-title { color: var(--dim); }
/* Chip rides on the tag line, so long role titles keep their own full width
   and both grid rows stay the same height. */
.ind-cell.is-soon .ind-cell-tag { display: flex; align-items: center; gap: 9px; }
.ind-soon-chip {
  flex-shrink: 0;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--dim);
  font-family: 'Plus Jakarta Sans';
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===================================================================
   MISSION BANNER (home)
   =================================================================== */
.mission-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #4fd1c5 0%, #844fc1 35%, #0a0a0a 85%);
  padding: 100px 0 90px;
}
.mission-watermark {
  position: absolute; top: 60px; left: 0; width: 100%;
  text-align: center; white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(70px, 11vw, 160px); line-height: 1;
  letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
  pointer-events: none; z-index: 0;
}
.mission-watermark-star {
  color: rgba(255,255,255,0.3); -webkit-text-stroke: 0; margin-right: 18px; font-size: 0.5em;
  vertical-align: middle;
}
.mission-banner-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 220px auto 0;
}
.mission-banner-title {
  color: #fff; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; margin: 0;
}
.mission-banner-sub {
  color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.65;
  margin: 24px 0 36px;
}
.mission-banner-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #afece9; color: #0a0a0a; font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 50px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mission-banner-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.3); }
.mission-banner-cta-star { font-size: 13px; }
@media (max-width: 700px) {
  .mission-banner-content { margin-top: 160px; }
}

/* ===================================================================
   PAGE: SERVICES
   =================================================================== */
.svc-jump-bar {
  background: white; border-bottom: 1px solid var(--line);
  position: sticky; top: 70px; z-index: 50;
  backdrop-filter: blur(12px);
}
.svc-jump {
  display: flex; justify-content: center; margin-top: 100px; gap: 0; overflow-x: auto;padding-top: 13px;
}
.svc-jump-link {
  padding: 20px 24px; font-size: 13px; font-weight: 500; color: var(--dim);
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.svc-jump-num { font-family: 'Plus Jakarta Sans'; font-weight: 600; color: var(--accent); margin-right: 8px; }

.svc-block { padding: 110px 0; border-bottom: 1px solid var(--line); }
.svc-block-grid { display: grid; grid-template-columns: 0.55fr 1fr; gap: 80px; align-items: start; }
.svc-big-num {
  font-family: 'Plus Jakarta Sans'; font-size: 90px; font-weight: 700;
  color: var(--accent); line-height: 0.85; letter-spacing: -.04em;
  opacity: 0.18; margin-bottom: 24px;
}
.svc-block-title { font-size: clamp(26px, 3vw, 44px); margin-top: 24px; }
.svc-block-intro { font-size: 17px; line-height: 1.65; color: var(--text-2); margin: 0 0 36px; }

.svc-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: white;
}
.svc-list-item { padding: 20px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-list-item:nth-child(2n) { border-right: none; }
.svc-list-item:nth-last-child(-n+2) { border-bottom: none; }
.svc-list-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 6px; }
.svc-list-check { margin-top: 4px; flex-shrink: 0; }
.svc-list-name { font-size: 14px; font-weight: 600; color: var(--text); }
.svc-list-desc { font-size: 13px; color: var(--dim); line-height: 1.5; padding-left: 24px; }

.svc-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 200px;
  gap: 8px;
  margin-top: 28px;
}
.svc-img-mosaic .mosaic-top-left {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.svc-img-mosaic .mosaic-top-right {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.svc-img-mosaic .mosaic-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.svc-proof {
  margin-top: 28px; padding: 24px 26px;
  background: #0a0a0a; color: #f5f3ef;
  border-radius: 16px; position: relative;
}
.svc-proof-quote {
  font-family: 'Plus Jakarta Sans'; font-size: 60px; color: var(--accent);
  position: absolute; top: 6px; right: 24px; line-height: 1;
}
.svc-proof-label {
  font-size: 11px; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px;
}
.svc-proof-text { font-size: 15px; line-height: 1.6; }

/* ===================================================================
   PAGE: TRAINING
   =================================================================== */
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.prog-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.prog-num { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.prog-tag {
  font-size: 11px; font-weight: 600; color: var(--dim);
  background: var(--bg-warm); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.prog-title { font-size: 22px; line-height: 1.2; margin: 0 0 10px; }
.prog-blurb { font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0 0 20px; }
.prog-topics-head {
  font-size: 11px; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.prog-topics { display: flex; flex-direction: column; gap: 8px; }
.prog-topic-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-2); }
.prog-topic-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }

/* Apply Now button in training cards */
.prog-apply-wrap {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prog-apply-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 11px 20px;
}

.fmt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 60px; }
.fmt-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(132, 79, 193, 0.08); border: 1px solid rgba(132, 79, 193, 0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.fmt-title { font-size: 18px; margin: 0 0 8px; }
.fmt-body  { font-size: 13px; color: var(--text-2); line-height: 1.55; margin: 0; }

.audience-row {
  background: white; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 36px; display: flex; justify-content: space-between;
  align-items: center; gap: 32px; flex-wrap: wrap;
}
.audience-head {
  font-size: 11px; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px;
}
.audience-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-pill {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-warm); border: 1px solid var(--line);
}

/* ===================================================================
   PAGE: APPROACH
   =================================================================== */
.approach-flow { position: relative; }
.approach-flow::before {
  content: ''; position: absolute; left: 39px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 70%, transparent 100%);
  opacity: 0; transform: scaleY(0); transform-origin: top;
  transition: opacity 0.6s ease, transform 1.8s ease;
}
.approach-flow.line-in::before { opacity: 0.25; transform: scaleY(1); }

.approach-anim {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.approach-anim.in { opacity: 1; transform: translateX(0); }
.approach-phase {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 36px 0; position: relative;
}
.approach-phase:first-child { padding-top: 0; }
.approach-orb {
  width: 80px; height: 80px; border-radius: 50%;
  background: white; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 6px 20px rgba(132, 79, 193, 0.15);
  color: var(--accent);
  transform: scale(0.5); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
}
.approach-anim.in .approach-orb {
  transform: scale(1); opacity: 1;
}
.approach-orb::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}
.approach-anim.in .approach-orb::after {
  opacity: 0.2;
  animation: approachOrbHalo 2s ease-in-out infinite 0.6s;
}
@keyframes approachOrbHalo {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.18); opacity: 0; }
}
.approach-orb svg {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.8s ease 0.3s;
}
.approach-anim.in .approach-orb svg {
  stroke-dashoffset: 0;
}
.approach-content { padding-top: 8px; }
.approach-phase-label-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.approach-phase-label { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: 0.08em; }
.approach-phase-line { flex: 1; height: 1px; background: var(--line); }
.approach-phase-name { font-size: clamp(24px, 2.6vw, 38px); margin: 0 0 14px; }
.approach-phase-body { font-size: 16px; line-height: 1.6; color: var(--text-2); margin: 0; max-width: 720px; }

.tools-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
}
.tools-item {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-2);
}
.tools-item:nth-child(2n) { border-right: none; }
.tools-item:nth-last-child(-n+2) { border-bottom: none; }
.tools-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ===================================================================
   PAGE: INDUSTRIES
   =================================================================== */
.industry-block {
  padding: 90px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 0.5fr 1fr; gap: 80px; align-items: start;
}
.industry-block:last-of-type { border-bottom: none; }
.industry-side { position: sticky; top: 110px; }
.industry-tag {
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 13px;
  color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.industry-title { font-size: clamp(26px, 2.8vw, 40px); margin: 0 0 24px; }
.industry-intro { font-size: 17px; line-height: 1.65; color: var(--text-2); margin: 0 0 28px; }
.industry-rel-head {
  font-size: 11px; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 14px;
}
.industry-items { display: flex; flex-direction: column; gap: 10px; }
.industry-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; background: var(--bg-warm);
  border: 1px solid var(--line); border-radius: 12px;
}
.industry-check-wrap {
  width: 24px; height: 24px; border-radius: 7px; background: white;
  border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.industry-item-text { font-size: 14px; color: var(--text); line-height: 1.5; }

/* ===================================================================
   PAGE: ABOUT
   =================================================================== */
.about-story-grid { display: grid; grid-template-columns: 0.4fr 1fr; gap: 80px; align-items: start; margin-top: 20px;}
.about-lead {
  font-size: 22px; line-height: 1.5; color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500;
  max-width: 760px; letter-spacing: -0.01em;
}
.about-name-box {
  margin-top: 32px; padding: 32px 36px;
  background: var(--bg-warm); border-radius: 18px;
}
.about-name-label {
  font-size: 11px; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 10px;
}
.about-name-text { font-size: 18px; line-height: 1.6; color: var(--text); }

/* --- Founder's Journey (about) ------------------------------------- */
.founder-pill {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.5vw, 19px); letter-spacing: -0.01em;
  padding: 12px 22px; border-radius: 10px;
}
.founder-heading {
  font-size: clamp(28px, 4vw, 52px);
  margin: 26px 0 0; max-width: 20ch; line-height: 1.08;
}
.founder-grid {
  display: grid; grid-template-columns: 0.8fr 1fr;
  gap: 64px; align-items: center; margin-top: 52px;
}
.founder-photo-wrap { position: relative; }

.founder-photo {
  position: relative; z-index: 1; display: block;
  width: 100%; height: auto; aspect-ratio: 4 / 5;
  filter: grayscale(1);
}
.founder-story p {
  font-size: 25px; line-height: 1.7; color: var(--text-2); margin: 0 0 20px;
}
.founder-story p:last-child { margin-bottom: 0; }
.founder-lead {
  font-family: var(--serif); font-weight: 400; font-style: normal;
  font-size: 1.4em; color: var(--text); letter-spacing: 0;
}
.founder-quote {
  font-family: var(--serif); font-style: italic;
  color: var(--accent) !important; font-size: 21px !important;
  line-height: 1.5 !important; margin: 4px 0 22px !important;
}
.founder-connect {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 17px; color: var(--text-2);
}
.founder-link { color: var(--accent); font-weight: 700; }
.founder-link:hover { text-decoration: underline; }
.founder-avatars { display: inline-flex; align-items: center; }
.founder-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px; flex-shrink: 0;
  background: linear-gradient(135deg, #844fc1, #c9a7f0);
  box-shadow: 0 1px 4px rgba(10,20,40,0.15);
}
.founder-avatar:first-child { margin-left: 0; }
.founder-badge {
  margin-left: -4px; z-index: 2;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 8px 12px; border-radius: 999px;
}
@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; gap: 44px; }
  .founder-photo { max-width: 420px; }
}

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.vm-card { padding: 36px; height: 100%; }
.vm-title { font-size: 16px; line-height: 1.6; margin-top: 20px; color: var(--text); font-weight: 500; }
.vm-body { font-size: 16px; line-height: 1.65; margin-top: 14px; color: var(--text-2); }
.vm-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.vm-bullet-list { margin-top: 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.vm-bullet-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.vm-bullet-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }
.vm-list-row { display: flex; gap: 16px; align-items: flex-start; }
.vm-list-num { font-family: 'Plus Jakarta Sans'; font-size: 13px; color: var(--accent); font-weight: 700; padding-top: 2px; }
.vm-list-text { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.85); }

.team-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 12px; margin-bottom: 60px;
}
.team-gallery-cell { position: relative; border-radius: 18px; overflow: hidden; }
.team-gallery-cell-big { grid-row: span 2; }
.photo-label {
  position: absolute; left: 16px; bottom: 16px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(12px);
  color: #f5f8fb; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  pointer-events: none; z-index: 2;
}

/* 4-up equal team image row */
.team-gallery-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 60px;
}
.team-gallery-4 .team-gallery-cell { aspect-ratio: 4 / 5; }
@media (max-width: 720px) {
  .team-gallery-4 { grid-template-columns: repeat(2, 1fr); }
}

.team-comp-head { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 16px; }
.team-comp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.team-comp-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(132, 79, 193, 0.10); display: flex;
  align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 14px; color: var(--accent);
  margin-bottom: 16px;
}
.team-comp-role { font-weight: 600; font-size: 15px; margin: 0 0 6px; }
.team-comp-detail { font-size: 13px; color: var(--dim); line-height: 1.5; }

.expertise-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.expertise-card { padding: 32px 36px; height: 100%; border-radius: 18px; }
.expertise-card.warm { background: var(--bg-warm); border: 1px solid var(--line); }
.expertise-card.dark { background: #0a0a0a; color: #f5f3ef; }
.expertise-head { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 16px; }
.expertise-head.warm-h { color: var(--dim); }
.expertise-head.dark-h { color: var(--accent); }
.expertise-list { display: flex; flex-direction: column; gap: 12px; }
.expertise-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); line-height: 1.5; }
.expertise-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.cert-row {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}

.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-radius: 18px; overflow: visible; background: transparent;
}
.numbers-cell {
  padding: 36px 32px;
  border-radius: 16px;
  border: none;
  position: relative;
  overflow: hidden;
}
.numbers-cell:nth-child(1)  { background: linear-gradient(135deg, #844fc1 0%, #5b8dd9 100%); }
.numbers-cell:nth-child(2)  { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.numbers-cell:nth-child(3)  { background: linear-gradient(135deg, #0f4c75 0%, #1b6ca8 100%); }
.numbers-cell:nth-child(4)  { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }
.numbers-cell:nth-child(5)  { background: linear-gradient(135deg, #7b2d8b 0%, #a855f7 100%); }
.numbers-cell:nth-child(6)  { background: linear-gradient(135deg, #b5451b 0%, #e85d04 100%); }
.numbers-cell:nth-child(7)  { background: linear-gradient(135deg, #0e4d6e 0%, #0077b6 100%); }
.numbers-cell:nth-child(8)  { background: linear-gradient(135deg, #3a0ca3 0%, #560bad 100%); }
.numbers-cell:nth-child(9)  { background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%); }
.numbers-cell .stat-num { color: #ffffff !important; }
.numbers-cell .stat-num-accent { color: rgba(255,255,255,0.95) !important; }
.numbers-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

.case-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.case-stat-cell {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; height: 100%;
}
.case-stat-num {
  font-family: 'Plus Jakarta Sans'; font-size: 36px; font-weight: 600;
  color: var(--accent); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px;
}
.case-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.case-outcome {
  padding: 24px 28px;
  background: rgba(132, 79, 193, 0.10);
  border: 1px solid rgba(132, 79, 193, 0.30);
  border-radius: 14px;
}
.case-outcome-label { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px; }
.case-outcome-text { font-size: 17px; color: #f5f8fb; line-height: 1.5; }

.form-card {
  background: var(--bg-warm); border-radius: 22px;
  padding: 40px; border: 1px solid var(--line);
}
.form-card.white-bg { background: white; }
.form-card-title { font-size: 26px; margin: 0 0 6px; }
.form-card-sub  { font-size: 14px; color: var(--dim); margin: 0 0 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field.span-2 { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-req { color: var(--accent); margin-left: 4px; }

.input, .textarea, .select {
  width: 100%; padding: 13px 16px;
  background: white; border: 1px solid var(--line);
  border-radius: 12px; font-size: 15px; font-family: inherit;
  color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(132, 79, 193, 0.12);
}
.textarea { resize: vertical; min-height: 120px; }
.select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5l3 3 3-3' stroke='%235a6a7e' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-bottom { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.form-req-hint { font-size: 12px; color: var(--dim); }

.form-success {
  padding: 60px 40px; text-align: center;
  background: rgba(132, 79, 193, 0.06); border-radius: 18px;
  border: 1px solid rgba(132, 79, 193, 0.25);
}
.form-success-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px;
}

.file-drop {
  padding: 20px; background: white; border: 1.5px dashed var(--line-strong);
  border-radius: 12px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-drop:hover { border-color: var(--accent); background: rgba(132, 79, 193, 0.04); }

.partner-looking { display: flex; flex-direction: column; gap: 12px; }
.partner-looking-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0; transform: translateY(16px);
  animation: revealIn 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}

/* Hero background image rises in from the bottom on page load (index) */
.hero-img-drop {
  transform: translateY(100%);
  opacity: 0;
  animation: heroDropIn 1.3s cubic-bezier(.16,.84,.28,1) forwards;
}
@keyframes heroDropIn {
  0%   { transform: translateY(100%); opacity: 0; }
  45%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img-drop { animation: none; transform: none; opacity: 1; }
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.32s; }
.reveal-4 { animation-delay: 0.46s; }
.reveal-5 { animation-delay: 0.60s; }
.reveal-6 { animation-delay: 0.74s; }

.in-view-reveal {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1);
}
.in-view-reveal.is-visible { opacity: 1; }

@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatside {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -12px); }
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.12); }
}
@keyframes pulseHalo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
@keyframes dotFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(8px, -12px); opacity: 0.7; }
}

/* Spotlight cursor */
.spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(132, 79, 193, 0.20), transparent 40%);
  transition: background .15s;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .hero-inner,
  .footer-cta-row,
  .footer-cols,
  .vm-grid,
  .expertise-grid,
  .industry-block,
  .svc-block-grid,
  .about-story-grid,
  .svc-grid,
  .why-grid,
  .ind-grid,
  .field-grid,
  .team-gallery,
  .team-comp-grid,
  .numbers-grid,
  .case-stats-grid,
  .fmt-grid,
  .prog-grid,
  .process-phases { grid-template-columns: 1fr !important; }
  .why-cell:nth-child(n)        { border-right: none; }
  .ind-cell:nth-child(n)        { border-right: none; }
  .numbers-cell:nth-child(n)    { border-right: none; }
  .svc-list                     { grid-template-columns: 1fr; }
  .svc-list-item:nth-child(n)   { border-right: none; }
  /* Fix: on 1-col layout only the very last item loses bottom border */
  .svc-list-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .svc-list-item:last-child           { border-bottom: none; }
  /* Reduce svc-block-grid gap when stacked */
  .svc-block-grid               { gap: 40px; }
  .process-flow-line            { display: none; }
  .industry-side                { position: static; }
  .field-grid                   { grid-template-rows: auto; }
  .team-gallery                 { grid-template-rows: auto; }
  .team-gallery-cell-big        { grid-row: auto; }
}

/* Tighten nav links at mid widths before mobile collapse */
@media (max-width: 1280px) {
  .nav-links { gap: 20px; font-size: 13px; }
}
@media (max-width: 1160px) {
  .nav-links { gap: 14px; font-size: 12.5px; }
}

@media (max-width: 1100px) {
  .container, .container-wide { padding: 0 24px; }
  .section, .page-intro { padding: 72px 0; }
  /* Mobile nav â€” hidden by default with transition-ready state */
  .nav-links {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: 72px; left: 12px; right: 12px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(10,10,10,0.12);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1),
                opacity 0.25s ease,
                padding 0.35s ease;
    z-index: 999;
  }
  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    padding: 12px 24px;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--text-2) !important;
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link:hover { color: var(--accent) !important; }

  /* Toggle button */
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: transparent; border: 1px solid var(--line);
    color: var(--text);
    transition: background .2s, border-color .2s, color .2s;
  }
  .nav-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
  }
  .nav.transparent:not(.scrolled) .nav-toggle { border-color: rgba(255,255,255,0.3); color: #f5f8fb; }
  .nav.transparent:not(.scrolled) .nav-toggle.active { border-color: var(--accent); }

  /* Icon swap: hamburger â†” X */
  .icon-menu  { display: block; transition: opacity .2s, transform .2s; }
  .icon-close { display: none;  transition: opacity .2s, transform .2s; }
  .nav-toggle.active .icon-menu  { display: none; }
  .nav-toggle.active .icon-close { display: block; }
  .phone-stage { height: 600px; transform: scale(0.85); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.span-2 { grid-column: span 1; }
  .form-bottom { grid-column: span 1; flex-direction: column; gap: 16px; align-items: stretch; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ===================================================================
   MOBILE â€” 640px and below
   =================================================================== */
@media (max-width: 640px) {
  /* --- Base layout --- */
  .container, .container-wide { padding: 0 18px; }
  .section, .page-intro { padding: 52px 0; }

  /* --- Nav --- */
  .nav-inner { padding: 0 30px !important; }
  .nav-logo-text { font-size: 15px; }
  .nav-links.open {
    top: 58px; padding: 12px 18px; gap: 0; z-index: 999;
  }
  .nav-link { font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--text-2) !important; }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta .btn { display: none; }

  /* Login / Get Started inside the dropdown (header bar hides them here) */
  .nav-links.open { max-height: 480px; }
  .nav-menu-ctas {
    display: flex; gap: 10px;
    padding: 14px 0 6px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
  }
  .nav-menu-ctas .btn { flex: 1; justify-content: center; font-size: 14px; padding: 11px 16px; }
  .nav-menu-ctas .btn-login-nav {
    color: var(--text-2);
    border-color: var(--line);
    background: transparent;
  }
  .nav-menu-ctas .btn-login-nav:hover { border-color: var(--accent); color: var(--accent); }

  /* The drawer needs overflow:hidden for its max-height animation, which
     clipped the tooltip hanging below the button — flip it above instead. */
  .nav-menu-ctas .btn-login-nav.is-locked::after {
    top: auto;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(5px) scale(.96);
    transform-origin: bottom center;
  }
  .nav-menu-ctas .btn-login-nav.is-locked:hover::after,
  .nav-menu-ctas .btn-login-nav.is-locked:focus-visible::after,
  .nav-menu-ctas .btn-login-nav.is-locked.tip-open::after {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .nav-menu-ctas .btn-login-nav.is-locked .tip-arrow {
    top: auto;
    bottom: calc(100% + 7px);
  }

  /* --- Hero â€” full-screen video on mobile --- */
  .hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    min-height: 100svh;   /* accounts for mobile browser address bar */
    display: flex;
    flex-direction: column;
  }
  .hero-inner {
    flex: 1;
    min-height: 0 !important;
    padding-top: 100px;    /* clear the fixed nav */
    padding-bottom: 44px;
    justify-content: center;
  }
  /* Section padding zeroed so the only top offset is the hero-inner
     padding below — otherwise the two stack and the gap can't be 5px. */
  .hero-ai { padding-top: 0; }
  /* Mobile: shrink the fixed 560px image gap (desktop-sized) so content
     doesn't get shoved up leaving empty space at the top, and anchor the
     cover image to its bottom so the subjects stay visible, not cropped. */
  .hero-ai .hero-inner {
    margin-bottom: min(72vw, 380px);
    justify-content: flex-start;   /* start at top instead of vertical centre */
    padding-top: 100px;            /* gap below the nav to the headline */
  }
  .hero-ai .hero-video,
  .hero-ai .hero-img-drop { object-position: center bottom; }
  .hero-corner-beam { width: 320px; height: 320px; top: -80px; right: -100px; }
  .hero-circuit { margin-top: 16px; }
  .hero-node { width: 38px; height: 38px; font-size: 17px; border-radius: 10px; }
  .hero-hub { width: 78px; height: 78px; font-size: 18px; border-radius: 18px; }
  .hero-circuit-pin { stroke-width: 1.4; }
  .hero-headline { font-size: clamp(24px, 7vw, 36px) !important; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hero-ctas {
    flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 0px; margin-top: 45px;
  }
  .hero-ctas .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    font-size: 12px;
    padding: 10px 14px;
    white-space: nowrap;
  }
  .hero-stat-strip {
    grid-template-columns: 1fr;
    gap: 16px; padding-top: 24px; max-width: 100%;
  }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  .stat-num { font-size: 28px; }

  /* --- Marquee --- */
  .marquee-item { font-size: 15px; }

  /* --- Page intro (inner pages) --- */
  .page-intro { padding-top: 110px; padding-bottom: 52px; }
  .page-intro-title { font-size: clamp(22px, 6vw, 34px); }
  .page-intro-body { font-size: 15px; margin-top: 18px; }
  .page-intro-ctas { flex-direction: column; gap: 10px; }
  .page-intro-ctas .btn { width: 100%; text-align: center; justify-content: center; }

  /* --- Services page small-mobile fixes --- */
  .svc-img-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 130px 160px; }
  .svc-img-mosaic .mosaic-bottom { height: 100%; }
  .svc-block { padding: 48px 0; }
  .svc-big-num { font-size: 48px; margin-bottom: 12px; }
  .svc-block-title { margin-top: 16px; }
  .svc-block-grid  { gap: 28px; }
  .svc-jump-link   { font-size: 11px; padding: 12px 12px; }
  .svc-list-name   { font-size: 13px; }
  .svc-list-desc   { font-size: 12px; }
  .svc-list-item   { padding: 16px 16px; }
  .svc-proof       { padding: 20px 18px; }
  .svc-proof-text  { font-size: 14px; }

  /* --- Buttons --- */
  .btn { font-size: 14px; padding: 13px 22px; }

  /* --- Section headings --- */
  .display { font-size: clamp(20px, 9.5vw, 30px) !important;}
  .eyebrow { font-size: 11px; }

  /* --- "What we do" grid --- */
  .grid[style*="grid-template-columns:0.7fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* --- Why / numbers cells --- */
  .why-cell, .ind-cell, .numbers-cell {
    padding: 28px 18px;
  }

  /* --- Services jump bar --- */
  .svc-jump-bar { top: 58px; }
  .svc-jump     { overflow-x: auto; }
  .svc-jump-link { font-size: 12px; padding: 14px 14px; white-space: nowrap; }

  /* --- Service blocks --- */
  .svc-block { padding: 64px 0; }
  .svc-big-num { font-size: 60px; margin-bottom: 16px; }
  .svc-block-intro { font-size: 15px; }

  /* --- Service block images (inline) --- */
  .svc-block-grid img, section img[style*="height:240px"] {
    height: 180px !important;
  }

  /* --- Inline image grids (4-col â†’ 2-col) --- */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] img {
    height: 110px !important;
  }

  /* --- Inline image grids (2-col stays 2-col, smaller) --- */
  div[style*="grid-template-columns:1fr 1fr"] img {
    height: 80px !important;
  }

  /* --- Digital dashboard gallery (2-col on mobile) --- */
  div[style*="grid-template-columns:1fr 1fr"] {
    gap: 8px !important;
  }

  /* --- Field gallery cells need explicit height so image-slot 100% resolves --- */
  .field-cell { height: 220px; }

  /* --- About / team gallery --- */
  .team-gallery { gap: 12px; }

  /* --- Process flow --- */
  .process-phases { gap: 8px; }
  .process-phase { padding: 12px 14px; font-size: 13px; }
  .process-card { padding: 28px 20px; }

  /* --- Expertise cards --- */
  .expertise-card { padding: 28px 20px; }

  /* --- Industry blocks --- */
  .industry-block { gap: 36px; }
  .industry-block img[style*="height:260px"] { height: 200px !important; }

  /* --- Training program cards --- */
  .prog-card { padding: 28px 20px; }

  /* --- Contact page --- */
  .form-card { padding: 28px 20px; }

  /* --- Footer --- */
  .footer-cols { gap: 36px; }
  .footer-cta-row { gap: 20px; }
  .footer-social { gap: 8px; margin-top: 20px; }
  .footer-social-btn { width: 34px; height: 34px; }
  .footer-cta-title { font-size: clamp(28px, 7vw, 40px); }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }

  /* --- Field/case study cards --- */
  .field-card { padding: 24px 18px; }
  .case-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  .case-stat-num { font-size: 32px; }

  /* --- Training hero image --- */
  section img[style*="height:420px"] { height: 220px !important; }

  /* --- Approach tools image grid --- */
  div[style*="grid-template-columns:repeat(4,1fr)"] img[style*="border-radius:12px"] {
    border-radius: 8px !important;
  }

  /* --- VM / value map grid --- */
  .vm-grid { gap: 24px; }
}

/* ===================================================================
   VERY SMALL â€” 380px and below
   =================================================================== */
@media (max-width: 380px) {
  .container, .container-wide { padding: 0 14px; }
  .hero-headline { font-size: 32px; }
  .hero-ctas .btn { font-size: 13px; padding: 12px 18px; }
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] img {
    height: 90px !important;
  }
}

/* ===================================================================
   UI REFRESH — design-system overrides (no HTML changes needed)
   =================================================================== */

/* ── 1. Buttons: rounded-rect instead of pill, gradient primary ── */
.btn {
  border-radius: var(--radius-btn);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent-grad);
  box-shadow: 0 4px 16px rgba(132, 79, 193, 0.28), 0 1px 3px rgba(26,95,180,0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6e3da8 0%, #844fc1 100%);
  box-shadow: 0 8px 24px rgba(132, 79, 193, 0.36);
  transform: translateY(-1px);
}
.btn-ghost {
  border-radius: var(--radius-btn);
  border-color: var(--line-strong);
}
.btn-sm { border-radius: 6px; }
.btn-footer-ghost { border-radius: var(--radius-btn); }

/* ── 2. Nav: solid white strip with bottom border, heavier brand ── */
.nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.nav.scrolled {
  top: 10px; left: 20px; right: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(10,20,40,0.1);
}
/* Active nav link: filled pill chip instead of underline */
.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.nav-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-link.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-link.active::after { display: none; }

/* ── 3. Cards: sharper corners, left-accent bar on hover ── */
.card {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(10,20,40,0.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10,20,40,0.10);
}

/* ── 5. Section backgrounds: add subtle dot-grid pattern to warm sections ── */
.section-warm, .page-intro {
  background-image: radial-gradient(circle, rgba(26,95,180,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: var(--bg-warm);
}

/* ── 6. Page intro: left accent bar beside title ── */
.page-intro-title {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-left: -24px;
}
@media (max-width: 767px) {
  .page-intro-title { margin-left: 0; padding-left: 14px; }
}

/* ── 7. Display headings: slightly heavier weight ── */
.display {
  font-weight: 700;
}
.serif-italic {
  color: var(--accent);
}

/* ── 8. Footer: gradient dark bg with top accent stripe ── */
.footer {
  background: linear-gradient(160deg, #0d1525 0%, #0a0f1e 60%, #111827 100%);
  border-top: 3px solid var(--accent);
}

/* ── 9. Section label numbering (svc-big-num, meth-phase-num): outlined style ── */
.svc-big-num {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
  opacity: 0.35;
}
.meth-phase-num {
  color: white;
  background: var(--accent-grad);
  border-radius: 12px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,95,180,0.30);
}

/* ── 10. Service jump bar: pill-shaped active state ── */
.svc-jump-link {
  border-radius: 8px;
}
.svc-jump-link.active,
.svc-jump-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ── 11. Process / methodology tools chips ── */
.meth-tool {
  border-radius: 6px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  font-size: 12px;
  padding: 6px 12px;
  color: var(--text-2);
  font-weight: 500;
}

/* ── 12. Training card tag: accent chip ── */
.training-card-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(26,95,180,0.18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* ── 14. Industry block: accent left-border on side panel ── */
.industry-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 64px;
  margin-bottom: 64px;
}
.industry-block:last-child { border-bottom: none; margin-bottom: 0; }
.industry-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(26,95,180,0.18);
}

/* ── 15. Numbers / stats cells: blue gradient on first cell ── */
.numbers-cell:nth-child(1) {
  background: var(--accent-grad) !important;
}

/* ══════════════════════════════════════════
   COMPLIANCE / TRAINING PAGE LAYOUT
   ══════════════════════════════════════════ */

/* Stats strip */
.training-strip { padding: 70px 0; }
.training-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}
.training-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.training-stat:last-child { border-right: none; }
.training-stat-num {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  margin-bottom: 6px;
}
.training-stat-label {
  font-size: 12px;
  color: var(--dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Section intro row */
.training-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
  margin-top: 48px;
}

/* Cards grid */
.training-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.training-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.training-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.training-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
}
.training-card-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.training-card-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
}
.training-card-item {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
.training-card-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* CTA box */
.training-cta-box {
  background: linear-gradient(135deg, #0d1a2e 0%, #1a3460 100%);
  border-radius: 20px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.training-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .training-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .training-stat:nth-child(2) { border-right: none; }
  .training-stat:nth-child(1),
  .training-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .training-cards { grid-template-columns: repeat(2, 1fr); }
  .training-intro-row { grid-template-columns: 1fr; gap: 24px; }
  .training-cta-box { flex-direction: column; padding: 40px 32px; text-align: center; }
  .training-cta-right { align-items: center; }
}
@media (max-width: 600px) {
  .training-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .training-cards { grid-template-columns: 1fr; }
  .training-cta-box { padding: 32px 20px; }
}

/* ══════════════════════════════════════════
   OUR PROCESS / APPROACH PAGE LAYOUT
   ══════════════════════════════════════════ */

/* 5-step phases */
.meth-phases {
  display: flex;
  flex-direction: column;
  position: relative;
}
.meth-phase {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.meth-phase:last-child { border-bottom: none; }

.meth-phase-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}
.meth-phase-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(26,95,180,0.15) 100%);
  margin-top: 12px;
  border-radius: 2px;
  min-height: 40px;
}

.meth-phase-body { padding-top: 4px; }
.meth-phase-head {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.meth-phase-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
  max-width: 680px;
}
.meth-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Working principles cards */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.principle-grid .card {
  padding: 28px 24px;
}
.principle-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(26,95,180,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.principle-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.principle-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.65;
}

/* 3-image row */
.meth-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .meth-phase { grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 0; }
  .meth-img-row { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 500px) {
  .meth-phase { grid-template-columns: 1fr; }
  .meth-phase-left { flex-direction: row; align-items: center; gap: 12px; }
  .meth-phase-connector { display: none; }
  .principle-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PAGE HERO (image background, sub-pages)
   ══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 620px;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 44px;
  background: #0d1525;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --slot-object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(5,10,20,0.78) 0%,
    rgba(5,10,20,0.50) 55%,
    rgba(5,10,20,0.30) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  padding-left: 24px;
  margin-top: 40px;
  margin-right: 1250px;
}
.page-hero .hero-headline {
  color: white;
  font-size: clamp(20px, 2.8vw, 36px);
  margin: 0 0 14px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.page-hero .hero-headline .serif-italic { color: #7ab3f5; }
.page-hero .hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: clamp(15px,1.4vw,18px);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}
.page-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.60);
}
/* Desktops smaller than the design's 1920 canvas: shrink the right margin
   so the copy column doesn't get crushed against the background image. */
@media (max-width: 1600px) {
  .page-hero-content { margin-right: 870px; }
}
/* Laptops */
@media (max-width: 1300px) {
  .page-hero-content { margin-right: 480px; }
}
@media (max-width: 1100px) {
  .page-hero-content { margin-right: 260px; }
}
/* Tablets: drop the right-margin trick entirely, let copy use full width */
@media (max-width: 900px) {
  .page-hero-content { margin-right: 0; max-width: 620px; }
  .page-hero { height: auto; min-height: 460px; padding: 110px 0 48px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 40px; height: auto; min-height: 420px; }
  .page-hero-content { padding-left: 20px; padding-right: 20px; }
}
/* Phones */
@media (max-width: 560px) {
  .page-hero { padding: 90px 0 32px; min-height: 380px; }
  .page-hero .hero-headline { font-size: clamp(22px, 7vw, 30px); margin-bottom: 10px; }
  .page-hero .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .page-hero .hero-ctas .btn { font-size: 13px; padding: 11px 16px; }
}

/* Live-style animated grid hero (Courses & Workshops) */
/* Shared hero eyebrow for live-style heroes */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
  color: rgba(255,248,235,.65); margin-bottom: 18px;
}

.hero-eyebrow-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #844fc1; border-radius: 50%; margin-right: 4px;
}
.page-hero-live .page-hero-content {
  text-align: center;
  padding-right: 0;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-live .hero-sub { margin-left: auto; margin-right: auto; }
.page-hero-live .hero-ctas { justify-content: center; }
.page-hero-live .page-hero-bg {
  background: #0a0e1a;
}
.page-hero-live .page-hero-bg video { display: none; }
.page-hero-live-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(132,79,193,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132,79,193,.09) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-hero-live-blob {
  position: absolute; top: -120px; right: -80px; z-index: 0;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132,79,193,.25) 0%, transparent 65%);
  filter: blur(70px); pointer-events: none;
}
.page-hero-live-blob2 {
  position: absolute; bottom: -100px; left: -60px; z-index: 0;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(80,120,220,.18) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.page-hero-live .page-hero-overlay {
  background: linear-gradient(100deg,
    rgba(10,14,26,0.72) 0%,
    rgba(10,14,26,0.40) 55%,
    rgba(10,14,26,0.20) 100%);
}

/* Light variant hero (Courses page) */
.page-hero-light {
  background: #fbfaf8;
  padding: 100px 0 0;
  min-height: 700px;
  display: block;
  overflow: hidden;
  position: relative;
}
.page-hero-light .page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero-light .hero-headline {
  color: var(--text);
  font-size: clamp(28px, 4vw, 48px);
  text-shadow: none;
}
.page-hero-light .hero-headline .serif-italic { color: var(--accent); }
.page-hero-light .hero-sub {
  color: var(--text-2);
  max-width: 100%;
  margin: 0 auto 36px;
}
.course-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 64px;
}
.course-pill {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: 0 4px 16px rgba(10,20,40,0.05);
}
.course-pill-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #6729FF, #6D35F8);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.course-pill-name {
  font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: 15px;
  color: var(--text); white-space: nowrap;
}
.course-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.course-photo-wrap image-slot {
  width: 100%; height: 100%; display: block;
  --slot-object-fit: cover;
}

.course-stat-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(10,20,40,0.12);
  z-index: 3;
}
.course-stat-num {
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 26px;
  color: var(--accent); line-height: 1;
}
.course-stat-label {
  font-size: 13px; color: var(--text-2); margin-top: 4px; line-height: 1.3;
}
.course-stat-tl { top: 56%; left: 6%; }
.course-stat-bl { top: 76%; left: 9%; }
.course-stat-tr { top: 56%; right: 6%; }
.course-stat-br { top: 76%; right: 9%; }
@media (max-width: 768px) {
  .course-pill-grid { grid-template-columns: 1fr; max-width: 320px; }
  .course-stat-badge { position: absolute; }
  .page-hero-light { min-height: 760px; }
}

/* ══════════════════════════════════════════
   HELP & SUPPORT PAGE
   ══════════════════════════════════════════ */
.support-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  background: #0d1525;
}
.support-hero-content { position: relative; z-index: 2; }
.support-card { max-width: 500px; padding: 40px 36px; margin-left: 20px;}
.support-card-title {
  font-size: 24px; text-align: center;
  color: white; margin: 0 0 24px;
}

/* Advisor contact row */
.support-contact-row { display: flex; gap: 18px; margin-bottom: 28px; }
.support-contact-item {
  flex: 1; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: white;
  transition: color .2s;
}
.support-contact-item:hover { color: #7ab3f5; }
.support-contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.support-card-divider { height: 1px; background: rgba(255,255,255,0.14); margin-bottom: 28px; }
.support-card-subtitle { font-size: 20px; text-align: center; color: white; margin: 0 0 8px; }
.support-card-desc {
  font-size: 13px; text-align: center; line-height: 1.5;
  color: rgba(255,255,255,0.65); margin: 0 0 24px;
}

/* Form */
.support-form { display: flex; flex-direction: column; gap: 14px; }
.support-field { position: relative; display: flex; }
.support-field-icon {
  position: absolute; top: 0; bottom: 0; left: 14px;
  display: flex; align-items: center;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}
.support-field-textarea .support-field-icon { top: 14px; bottom: auto; }
.support-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  font-size: 14px; font-family: inherit;
  color: white;
  transition: border-color .2s, background .2s;
}
.support-input::placeholder { color: rgba(255,255,255,0.40); }
.support-input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.09); }
.support-field-textarea .support-input { resize: vertical; min-height: 90px; }
.btn-full { width: 100%; justify-content: center; margin-top: 4px; }

/* Reaching out as: type selector */
.support-type-group { display: flex; flex-direction: column; gap: 10px; }
.support-type-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); }
.support-type-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.support-type-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px; cursor: pointer; text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
}
.support-type-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.support-type-icon { color: rgba(255,255,255,0.55); transition: color .2s; }
.support-type-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); transition: color .2s; }
.support-type-card:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.09); }
.support-type-card input:checked ~ .support-type-icon,
.support-type-card input:checked ~ .support-type-text { color: white; }
.support-type-card:has(input:checked) {
  border-color: var(--accent); background: rgba(255,255,255,0.12);
}
@media (max-width: 560px) {
  .support-type-options { grid-template-columns: repeat(2, 1fr); }
}

.card-dark {
  background: linear-gradient(135deg, #0d1a2e1e 0%, #1a346009 100%);
  border-color: white;
  color: white;
}

/* Responsive */
@media (max-width: 560px) {
  .support-hero { padding: 120px 0 60px; }
  .support-card { padding: 28px 22px; max-width: none; }
  .support-contact-row { flex-direction: column; gap: 14px; }

  /* Mobile: swap the hero image for a portrait support-desk background */
  .support-hero .page-hero-bg {
    background-image: url("../images/contact-mobile.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .support-hero .page-hero-bg image-slot { display: none !important; }
}


/* ══════════════════════════════════════════
   INDEX PAGE — layout & visual refinements
   ══════════════════════════════════════════ */

/* Remove unwanted bottom gap after dark sections */
.section-dark { margin-bottom: 0; }

/* Career section — vertical breathing room (desktop) */
.career-sec { padding: 80px 0 100px; }

/* Why Us — push content below the decorative curve SVG */
.why-section { padding: 140px 0 100px; }

/* Hero stat strip centering inside the centered hero */
.hero-inner-center .hero-stat-strip {
  margin: 28px auto 0;
}

/* "Trusted by" label above the logo marquee */
.trusted-by-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim-2);
  margin: 0;
}

/* Responsive overrides */
@media (max-width: 960px) {
  .career-sec    { padding: 72px 0; }
  .why-section   { padding: 100px 0 72px; }
}
@media (max-width: 640px) {
  .career-sec    { padding: 52px 0; }
  .why-section   { padding: 80px 0 52px; }
  .hero-stat-strip { max-width: 100%; }
}

/* ══════════════════════════════════════════
   COURSES CATALOG PAGE
   ══════════════════════════════════════════ */
.course-filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
  margin-top: 40px;
  justify-content: center;
}
.course-filter-pill {
  appearance: none; border: 1px solid var(--line); background: white;
  color: var(--text-2); font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.course-filter-pill:hover { border-color: var(--line-strong); }
.course-filter-pill.active {
  background: var(--accent); border-color: var(--accent); color: white;
}
.courses-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.course-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.course-card-tag {
  display: inline-block; background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(26,95,180,0.18); border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; margin-bottom: 12px; width: fit-content;
}
.course-card-title {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.3;
  min-height: 42px; display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; overflow: hidden;
}
.course-card-desc { font-size: 13px; color: var(--dim); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.course-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent); margin-top: auto;
}
.course-card-link svg { transition: transform .2s; }
.course-card:hover .course-card-link svg { transform: translateX(3px); }
@media (max-width: 1300px) {
  .courses-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   VERIFY CERTIFICATE PAGE
   ══════════════════════════════════════════ */
.verify-dark-sec {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
}
.verify-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.verify-bg-img image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --slot-object-fit: cover;
}
.verify-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0000009e;
}
.verify-card {
  position: relative;
  z-index: 2;
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  border-radius: 20px;
  background: rgb(18 18 18 / 31%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(26,95,180,0.35);
}
.verify-icon-badge {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.verify-card-title { font-size: 28px; color: white; margin: 0 0 14px; }
.verify-card-sub {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.60);
  margin: 0 0 30px;
}
.verify-accent-text { color: #7ab3f5; font-weight: 600; }

.verify-label {
  display: block; text-align: left; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 8px;
}
.verify-form { display: flex; flex-direction: column; }
.verify-field { display: flex; }
.verify-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px; font-family: inherit; color: white;
  transition: border-color .2s, background .2s;
}
.verify-input::placeholder { color: rgba(255,255,255,0.38); }
.verify-input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.09); }
.verify-submit { margin-top: 18px; }
.verify-submit[disabled] { opacity: .7; cursor: default; transform: none !important; }

/* Result */
.verify-result { display: none; margin-top: 22px; text-align: left; }
.verify-result.show { display: block; animation: verify-pop-in .35s ease both; }
@keyframes verify-pop-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.verify-result-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}
.verify-result-valid   { background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.35); }
.verify-result-invalid { background: rgba(220,38,38,0.10); border-color: rgba(220,38,38,0.32); }
.verify-result-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.verify-result-valid .verify-result-icon   { background: #16a34a; color: white; }
.verify-result-invalid .verify-result-icon { background: #dc2626; color: white; }
.verify-result-body { flex: 1; min-width: 0; }
.verify-result-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.verify-result-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; color: white; }
.verify-status-badge {
  background: #16a34a; color: white; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.verify-result-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 19px;
  color: white; margin-top: 8px;
}
.verify-result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12);
}
.verify-result-item:last-child { grid-column: 1 / -1; }
.verify-result-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.verify-result-value { font-size: 13.5px; font-weight: 600; color: white; }
.verify-result-msg { font-size: 13px; color: rgba(255,255,255,0.70); line-height: 1.6; margin: 6px 0 0; }
.verify-result-msg a { color: #7ab3f5; font-weight: 600; }

@media (max-width: 560px) {
  .verify-dark-sec { padding: 110px 18px 70px; }
  .verify-card { padding: 34px 24px; }
  .verify-result-grid { grid-template-columns: 1fr; }
  .verify-result-item:last-child { grid-column: auto; }
}

/* ══════════════════════════════════════════
   APPLY AS MENTOR PAGE
   ══════════════════════════════════════════ */
.mentor-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  background: #0d1525;
}
.mentor-hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  margin-bottom: 130px;
}
.mentor-eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: white; margin-bottom: 14px;
}
.mentor-hero-title {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.18;
  color: white; margin: 0 0 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.mentor-hero-title .serif-italic { color: white; }
.mentor-hero-sub {
  font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 480px; margin: 0 0 30px;
}
.mentor-perks { display: flex; flex-direction: column; gap: 14px; }
.mentor-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: white;
}
.mentor-perk-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: rgba(122,179,245,0.16); color: white;
  display: flex; align-items: center; justify-content: center;
}
.mentor-card { padding: 38px 34px; }
.mentor-card-title { font-size: 22px; color: white; margin: 0 0 8px; }
.mentor-card-sub {
  font-size: 13px; line-height: 1.55; color: white;
  margin: 0 0 24px;
}
.mentor-form { display: flex; flex-direction: column; gap: 14px; }
.mentor-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mentor-select { appearance: none; cursor: pointer; }
.mentor-select option { color: #111; }
.mentor-submit { margin-top: 6px; }
.mentor-submit[disabled] { opacity: .7; cursor: default; transform: none !important; }

.mentor-result { display: none; text-align: center; }
.mentor-result.show { display: block; animation: verify-pop-in .35s ease both; }
.mentor-result-card { padding: 6px 0 2px; }
.mentor-result-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: #16a34a; color: white;
  display: flex; align-items: center; justify-content: center;
}
.mentor-result-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.mentor-result-msg { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0; }

@media (max-width: 900px) {
  .mentor-hero-content { grid-template-columns: 1fr; }
  .mentor-card { max-width: 560px; }
}
@media (max-width: 560px) {
  .mentor-hero { padding: 120px 18px 70px; }
  .mentor-form-row { grid-template-columns: 1fr; }
  .mentor-card { padding: 32px 22px; }
}

.login-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}

/* ===================================================================
   END OF STYLES
   =================================================================== */


/* ===================================================================
   SHOWCASE CAROUSEL (index — Learning in action)
   =================================================================== */
.showcase-sec { overflow: hidden; --showcase-w: min(760px, 56vw); }
.showcase-head { position: relative; }

.showcase-viewport { position: relative; width: 100%; }
.showcase-track {
  position: relative;
  height: calc(var(--showcase-w) * 0.5625);
}
.showcase-slide {
  position: absolute; top: 0; left: 50%;
  width: var(--showcase-w);
  transform: translateX(-50%);
  transition: transform .65s cubic-bezier(.25,.72,.25,1);
  cursor: pointer;
  opacity: 0; pointer-events: none; z-index: 0;
}
.showcase-slide.pos-center {
  transform: translateX(-50%);
  z-index: 3; opacity: 1; pointer-events: auto; cursor: default;
}
.showcase-slide.pos-left {
  transform: translateX(calc(-50% - var(--showcase-w) - 22px));
  z-index: 1; opacity: 1; pointer-events: auto;
}
.showcase-slide.pos-right {
  transform: translateX(calc(-50% + var(--showcase-w) + 22px));
  z-index: 1; opacity: 1; pointer-events: auto;
}

.showcase-card {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 20px; overflow: hidden; background: #0c1420;
  transform: scale(.87);
  transition: transform .5s ease;
}
.showcase-slide.is-active .showcase-card {
  transform: scale(1);
}

.showcase-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.showcase-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(5,10,18,.74) 0%, rgba(5,10,18,.18) 48%, rgba(5,10,18,.06) 100%);
}

.showcase-meta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  gap: 14px; padding: clamp(18px, 2.6vw, 34px);
}
.showcase-title {
  font-size: clamp(16px, 1.7vw, 22px); font-weight: 700; color: #fff;
  margin: 0 0 6px; letter-spacing: -.01em;
}
.showcase-desc {
  font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.85);
  margin: 0; max-width: 440px;
}
.showcase-watch {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border: 0; border-radius: 10px;
  background: rgba(255,255,255,.22); color: #fff;
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  cursor: pointer; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background .25s ease;
}
.showcase-watch:hover { background: rgba(255,255,255,.35); }

.showcase-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-top: 30px;
}
.showcase-dot {
  width: 10px; height: 10px; border-radius: 99px; border: 0; padding: 0;
  background: #c9d4e0; cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.showcase-dot:hover { background: #a9b8c8; }
.showcase-dot.is-on { width: 30px; background: var(--accent); }

@media (max-width: 768px) {
  .showcase-sec { --showcase-w: 88vw; }
  .showcase-slide.pos-left { transform: translateX(calc(-50% - var(--showcase-w) - 14px)); }
  .showcase-slide.pos-right { transform: translateX(calc(-50% + var(--showcase-w) + 14px)); }
  .showcase-card { border-radius: 14px; }
  .showcase-desc { display: none; }
  .showcase-watch span { display: none; }
  .showcase-watch { padding: 12px 14px; }
}

/* ===================================================================
   LEGAL PAGES (Privacy Policy / Terms of Service)
   =================================================================== */
.legal-intro { padding-top: 150px; padding-bottom: 64px; }
.legal-intro-title { font-size: clamp(34px, 5vw, 60px); }
.legal-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 26px; font-size: 14px; color: var(--dim);
}
.legal-meta-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 99px;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); font-weight: 500; color: var(--text-2);
}
.legal-meta-pill svg { color: var(--accent); }

.legal-body { padding: 72px 0 100px; background: var(--bg); }
.legal-layout {
  display: grid; grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px; align-items: start;
}

/* Sticky table of contents */
.legal-toc { position: sticky; top: 104px; }
.legal-toc-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 14px;
}
.legal-toc-links { display: flex; flex-direction: column; gap: 2px; }
.legal-toc-link {
  padding: 8px 12px; border-radius: 8px; font-size: 14px;
  color: var(--dim); border-left: 2px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.legal-toc-link:hover { color: var(--text); background: var(--accent-tint); }
.legal-toc-link.is-active {
  color: var(--accent); background: var(--accent-soft);
  border-left-color: var(--accent); font-weight: 600;
}

/* Prose */
.legal-prose { max-width: 780px; }
.legal-prose > section { scroll-margin-top: 110px; }
.legal-prose > section + section {
  margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line);
}
.legal-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 25px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text); margin: 0 0 16px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-h2 .legal-num {
  font-size: 13px; font-weight: 600; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.legal-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  margin: 28px 0 10px;
}
.legal-prose p { font-size: 16px; line-height: 1.7; color: var(--text-2); margin: 0 0 14px; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose a:not(.legal-toc-link) {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.legal-prose a:not(.legal-toc-link):hover { color: var(--accent-hover); }
.legal-prose ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.legal-prose ul li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 16px; line-height: 1.65; color: var(--text-2);
}
.legal-prose ul li::before {
  content: ''; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.legal-prose strong { color: var(--text); font-weight: 600; }

/* Callout box */
.legal-note {
  margin: 22px 0; padding: 18px 20px;
  background: var(--accent-tint); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 10px;
}
.legal-note p { font-size: 15px; margin: 0; }

/* Data table */
.legal-table-wrap { overflow-x: auto; margin: 20px 0; }
.legal-table {
  width: 100%; min-width: 480px; border-collapse: collapse;
  font-size: 15px; border: 1px solid var(--line); border-radius: 10px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--dim); background: var(--bg-warm);
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table td { color: var(--text-2); line-height: 1.6; }

/* Contact card at the end */
.legal-contact {
  margin-top: 48px; padding: 28px 30px;
  background: var(--bg-warm); border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.legal-contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 600; margin: 0 0 8px;
}
.legal-contact-rows { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 14px; }
.legal-contact-row { font-size: 15px; color: var(--text-2); }
.legal-contact-row span { color: var(--dim); }

@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-toc {
    position: static; padding-bottom: 24px; border-bottom: 1px solid var(--line);
  }
  .legal-toc-links { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .legal-toc-link {
    border-left: 0; border: 1px solid var(--line); border-radius: 99px;
    padding: 7px 14px; font-size: 13px;
  }
  .legal-toc-link.is-active { border-color: var(--accent); }
}
@media (max-width: 640px) {
  .legal-intro { padding-top: 120px; padding-bottom: 44px; }
  .legal-body { padding: 48px 0 72px; }
  .legal-prose > section + section { margin-top: 36px; padding-top: 36px; }
  .legal-h2 { font-size: 21px; }
  .legal-contact { padding: 22px 20px; }
}

/* ===================================================================
   NOTIFY ME — button + capture modal (courses / workshops / live)
   =================================================================== */
.notify-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1.5px solid var(--accent, #844fc1); background: #fff;
  color: var(--accent, #844fc1); font-family: inherit;
  font-size: 13px; font-weight: 700; line-height: 1;
  padding: 10px 16px; border-radius: 99px; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.notify-btn:hover {
  background: var(--accent, #844fc1); color: #fff;
  transform: translateY(-1px); box-shadow: 0 8px 22px rgba(132, 79, 193, .28);
}
.notify-btn svg { flex: none; }
/* Full-width variant for card footers */
.notify-btn.notify-btn-block { width: 100%; margin-top: 12px; }

.notify-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(15, 12, 22, .55); backdrop-filter: blur(3px);
}
.notify-overlay.open { display: flex; }
.notify-modal {
  position: relative; width: 100%; max-width: 400px;
  background: #fff; border-radius: 18px; padding: 30px 26px 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
  animation: notifyPop .22s ease;
}
@keyframes notifyPop {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.notify-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border: none; border-radius: 9px;
  background: #f3f4f6; color: #555; font-size: 19px; line-height: 1; cursor: pointer;
}
.notify-close:hover { background: #e9e9ee; }
.notify-icon {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(132, 79, 193, .1); color: var(--accent, #844fc1);
}
.notify-title { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: #111; }
.notify-sub { margin: 0 0 18px; font-size: 13.5px; line-height: 1.55; color: #6b7280; }
.notify-sub strong { color: #111; font-weight: 700; }
.notify-input {
  width: 100%; padding: 12px 14px; margin-bottom: 10px;
  border: 1.5px solid #e8e8ee; border-radius: 11px;
  font-family: inherit; font-size: 14px; color: #111; outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.notify-select {
  appearance: none; cursor: pointer; color: #111;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.notify-select:invalid, .notify-select option[value=""] { color: #9ca3af; }

/* ── Custom role dropdown ─────────────────────────────────────────── */
.notify-drop { position: relative; margin-bottom: 10px; }
.notify-drop-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 12px 14px; cursor: pointer;
  border: 1.5px solid #e8e8ee; border-radius: 11px; background: #fff;
  font-family: inherit; font-size: 14px; color: #9ca3af; text-align: left;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.notify-drop.has-value .notify-drop-label { color: #111; }
.notify-drop-caret { color: #6b7280; flex-shrink: 0; transition: transform .18s ease; }
.notify-drop.open .notify-drop-trigger {
  border-color: var(--accent, #844fc1);
  box-shadow: 0 0 0 3px rgba(132, 79, 193, .13);
}
.notify-drop.open .notify-drop-caret { transform: rotate(180deg); }
.notify-drop-menu {
  list-style: none; margin: 6px 0 0; padding: 6px;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 20;
  background: #fff; border: 1.5px solid #ececf2; border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.notify-drop.open .notify-drop-menu { opacity: 1; transform: none; pointer-events: auto; }
.notify-drop-option {
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  font-size: 14px; color: #1f2430; transition: background .12s ease;
}
.notify-drop-option:hover { background: rgba(132, 79, 193, .08); }
.notify-drop-option.selected {
  background: rgba(132, 79, 193, .12); color: var(--accent, #844fc1); font-weight: 600;
}

.notify-input:focus {
  border-color: var(--accent, #844fc1);
  box-shadow: 0 0 0 3px rgba(132, 79, 193, .13);
}
.notify-msg { display: none; font-size: 13px; font-weight: 600; margin: 4px 0 10px; }
.notify-msg.show { display: block; }
.notify-msg.error { color: #dc2626; }
.notify-msg.success { color: #16a34a; }
.notify-submit {
  width: 100%; padding: 13px 18px; border: none; border-radius: 11px;
  background: var(--accent, #844fc1); color: #fff;
  font-family: inherit; font-size: 14.5px; font-weight: 700; cursor: pointer;
  transition: background .18s ease, opacity .18s ease;
}
.notify-submit:hover:not(:disabled) { background: #6e3da8; }
.notify-submit:disabled { opacity: .6; cursor: default; }
