@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --th-bg-dark: #f8faff;
  --th-bg-secondary: #f1f5ff;
  --th-bg-tertiary: #e9edff;
  --th-primary: #1155e9;
  --th-secondary: #6d19df;
  --th-accent: #18b7a0;
  --th-ink: #101828;
  --th-text-light: #101828;
  --th-text-muted: #586579;
  --th-gradient-primary: linear-gradient(120deg, #075fe9, #7411df);
  --th-gradient-subtle: linear-gradient(
    135deg,
    rgba(17, 85, 233, 0.08),
    rgba(109, 25, 223, 0.07)
  );
  --th-glass-bg: rgba(255, 255, 255, 0.9);
  --th-glass-border: #dce3f2;
  --th-glass-blur: blur(18px);
  --th-shadow-glow: 0 24px 70px rgba(67, 63, 194, 0.17);
  --th-shadow-card: 0 18px 50px rgba(39, 52, 89, 0.09);
  --th-space-xs: 0.5rem;
  --th-space-sm: 1rem;
  --th-space-md: 2rem;
  --th-space-lg: 4rem;
  --th-space-xl: clamp(5rem, 9vw, 8rem);
  --th-font-main: "DM Sans", sans-serif;
  --th-font-display: "Manrope", sans-serif;
  --th-transition: all 0.25s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  background: #fff;
  color: var(--th-ink);
  font-family: var(--th-font-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  background-image: radial-gradient(#c9d5f0 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  position: fixed;
  z-index: -3;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--th-transition);
}
ul {
  list-style: none;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
:focus-visible {
  outline: 3px solid #7aa5ff;
  outline-offset: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--th-ink);
  font-family: var(--th-font-display);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
h1 {
  font-size: clamp(3.1rem, 7vw, 6.7rem);
}
h2 {
  font-size: clamp(2.15rem, 4.4vw, 4rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}
p {
  color: var(--th-text-muted);
  font-size: 1.04rem;
  margin-bottom: 1rem;
}
.text-gradient {
  background: var(--th-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  align-items: center;
  color: var(--th-primary);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 0.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}
.eyebrow::before {
  background: var(--th-gradient-primary);
  border-radius: 2px;
  content: "";
  height: 3px;
  width: 22px;
}
.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 1.5rem;
  width: 100%;
}
.section {
  padding: var(--th-space-xl) 0;
  position: relative;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.th-navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  left: 0;
  padding: 0.72rem 0;
  position: fixed;
  top: 0;
  transition: var(--th-transition);
  width: 100%;
  z-index: 100;
}
.th-navbar.scrolled {
  backdrop-filter: blur(18px);
  border-color: var(--th-glass-border);
  box-shadow: 0 8px 30px rgba(28, 43, 77, 0.05);
}
.nav-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.nav-logo {
  background-image: url("../images/zentryx-talentlabs-logo.jpg");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: 235%;
  display: block;
  height: 62px;
  overflow: hidden;
  text-indent: -9999px;
  width: 60px;
}
.nav-logo span {
  display: none;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: 1.65rem;
}
.nav-links > a:not(.btn) {
  color: #38445a;
  font-size: 0.9rem;
  font-weight: 650;
}
.nav-links > a:not(.btn):hover,
.nav-links > a.active {
  color: var(--th-primary);
}
.mobile-menu-btn {
  background: transparent;
  border: 0;
  color: var(--th-ink);
  cursor: pointer;
  display: none;
}
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 750;
  gap: 0.55rem;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  transition: var(--th-transition);
}
.btn-primary {
  background: var(--th-gradient-primary);
  box-shadow: 0 10px 25px rgba(72, 46, 207, 0.18);
  color: #fff;
}
.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(72, 46, 207, 0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  border-color: #b9c7e4;
  color: #263552;
}
.btn-outline:hover {
  border-color: var(--th-primary);
  color: var(--th-primary);
  transform: translateY(-2px);
}
.glass-card {
  background: var(--th-glass-bg);
  border: 1px solid var(--th-glass-border);
  border-radius: 20px;
  box-shadow: var(--th-shadow-card);
  overflow: hidden;
  padding: 1.75rem;
  position: relative;
  transition: var(--th-transition);
}
.glass-card::after {
  background: var(--th-gradient-primary);
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--th-transition);
}
.glass-card:hover {
  border-color: #b9c9ef;
  transform: translateY(-5px);
}
.glass-card:hover::after {
  opacity: 1;
}
.hero-new {
  align-items: center;
  background: linear-gradient(150deg, #fff 25%, #f2f5ff 100%);
  display: flex;
  min-height: 95vh;
  overflow: hidden;
  padding: 10rem 0 6rem;
  position: relative;
}
.hero-new::before {
  background: linear-gradient(
    90deg,
    rgba(17, 85, 233, 0.1),
    rgba(109, 25, 223, 0.08)
  );
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  height: 680px;
  position: absolute;
  right: -250px;
  top: -220px;
  width: 680px;
}
.hero-new::after {
  border: 1px solid rgba(17, 85, 233, 0.12);
  border-radius: 50%;
  content: "";
  height: 430px;
  position: absolute;
  right: -70px;
  top: 80px;
  width: 430px;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.08fr 0.92fr;
}
.hero-new h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
  max-width: 800px;
}
.hero-new .lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 690px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.7rem;
}
.proof-item {
  border-left: 2px solid #d6dff1;
  padding-left: 1rem;
}
.proof-item strong {
  color: var(--th-ink);
  display: block;
  font-family: var(--th-font-display);
  font-size: 1.15rem;
}
.proof-item span {
  color: var(--th-text-muted);
  font-size: 0.8rem;
}
.ai-orbit {
  aspect-ratio: 1;
  background: var(--th-gradient-primary);
  border-radius: 30px;
  box-shadow: var(--th-shadow-glow);
  padding: 1px;
  position: relative;
  transform: rotate(2deg);
}
.ai-orbit-inner {
  background: #0b1233;
  border-radius: 29px;
  height: 100%;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}
.ai-orbit-inner::before {
  background: radial-gradient(
    circle,
    rgba(87, 133, 255, 0.55),
    transparent 65%
  );
  content: "";
  height: 430px;
  left: -100px;
  position: absolute;
  top: -120px;
  width: 430px;
}
.ai-orbit img {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  height: 63%;
  object-fit: cover;
  position: relative;
  width: 100%;
}
.network-line {
  align-items: center;
  color: #dce5ff;
  display: flex;
  font-size: 0.84rem;
  gap: 0.7rem;
  margin-top: 0.9rem;
  position: relative;
}
.network-line i {
  color: #8babff;
  width: 18px;
}
.ai-chip {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(7, 14, 45, 0.22);
  color: var(--th-ink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.85rem 1.1rem;
  position: absolute;
  right: -20px;
  top: 34px;
  transform: rotate(-2deg);
  z-index: 2;
}
.ai-chip span {
  color: var(--th-primary);
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.answer-strip {
  background: #10194a;
  color: #fff;
  padding: 1.25rem 0;
}
.answer-strip .container {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}
.answer-strip strong {
  color: #9fb9ff;
  font-family: var(--th-font-display);
}
.answer-strip span {
  color: #e4e9ff;
}
.section-head {
  margin-bottom: 3rem;
  max-width: 760px;
}
.section-head p {
  font-size: 1.15rem;
}
.audience-card {
  min-height: 100%;
  padding: 2.2rem;
}
.audience-card .icon-box {
  align-items: center;
  background: var(--th-gradient-subtle);
  border-radius: 14px;
  color: var(--th-primary);
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 1.4rem;
  width: 52px;
}
.audience-card ul,
.program-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.audience-card li,
.program-card li {
  color: #44516a;
  font-size: 0.9rem;
  padding-left: 1.3rem;
  position: relative;
}
.audience-card li::before,
.program-card li::before {
  color: var(--th-primary);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}
.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.program-card .tag {
  color: var(--th-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.program-card .btn {
  margin-top: auto;
}
.curriculum {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.curriculum-item {
  background: #fff;
  border: 1px solid var(--th-glass-border);
  border-radius: 16px;
  padding: 1.4rem;
}
.curriculum-item span {
  color: var(--th-secondary);
  font-family: var(--th-font-display);
  font-size: 0.8rem;
  font-weight: 800;
}
.curriculum-item h3 {
  font-size: 1.08rem;
  margin: 0.45rem 0;
}
.curriculum-item p {
  font-size: 0.88rem;
  margin: 0;
}
.live-panel {
  background: #0e153f;
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}
.live-panel::after {
  background: radial-gradient(circle, rgba(82, 108, 255, 0.4), transparent 65%);
  content: "";
  height: 500px;
  position: absolute;
  right: -190px;
  top: -230px;
  width: 500px;
}
.live-panel h2,
.live-panel h3 {
  color: #fff;
}
.live-panel p {
  color: #c4cdec;
}
.live-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
.live-steps {
  display: grid;
  gap: 1rem;
}
.live-step {
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
}
.live-step strong {
  align-items: center;
  background: #fff;
  border-radius: 9px;
  color: var(--th-primary);
  display: flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.live-step p {
  font-size: 0.88rem;
  margin: 0;
}
.faq {
  border-top: 1px solid var(--th-glass-border);
}
.faq details {
  border-bottom: 1px solid var(--th-glass-border);
  padding: 1.25rem 0;
}
.faq summary {
  color: var(--th-ink);
  cursor: pointer;
  font-family: var(--th-font-display);
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq summary::after {
  color: var(--th-secondary);
  content: "+";
  position: absolute;
  right: 0.4rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 0.8rem 0 0;
  max-width: 800px;
}
.th-footer {
  background: #0b1132;
  border-top: 1px solid #202a53;
  padding: 4rem 0 1.5rem;
}
.th-footer .nav-logo {
  background-color: #fff;
  border-radius: 10px;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer-col p {
  color: #aab5d7;
}
.footer-links {
  display: grid;
  gap: 0.7rem;
}
.footer-links a {
  color: #aab5d7;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #8fabff;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid #27315b;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.footer-bottom p {
  color: #8793b9;
  font-size: 0.8rem;
  margin: 0;
}
.social-links {
  display: flex;
  gap: 0.7rem;
}
.social-links a {
  align-items: center;
  border: 1px solid #303a63;
  border-radius: 8px;
  color: #fff;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.gsap-reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .js .gsap-reveal {
    opacity: 0;
    transform: translateY(24px);
  }
}
@media (max-width: 900px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .hero-grid,
  .footer-grid,
  .live-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    gap: 2rem;
  }
  .nav-links {
    background: #fff;
    border: 1px solid var(--th-glass-border);
    border-radius: 14px;
    box-shadow: var(--th-shadow-card);
    display: none;
    flex-direction: column;
    left: 1rem;
    padding: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 78px;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}
@media (max-width: 640px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .hero-grid,
  .footer-grid,
  .live-grid,
  .curriculum {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4.5rem 0;
  }
  .hero-new {
    min-height: auto;
    padding-top: 8rem;
  }
  .hero-grid {
    gap: 3rem;
  }
  .proof-row {
    gap: 1rem;
  }
  .proof-item {
    width: calc(50% - 0.5rem);
  }
  .answer-strip .container {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .ai-chip {
    right: -5px;
  }
  .nav-logo {
    height: 58px;
    width: 50px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}
