/* =====================================================
   Latentra Technologies — style.css
   Brand: Dark navy #050d1a · Green #00d68f · Blue #3d7eff
===================================================== */

html { scroll-behavior: smooth; }
*:focus-visible { outline: 2px solid #00d68f; outline-offset: 3px; }

/* ── Body background ─────────────────────────────── */
body { background-color: #050d1a; }

/* ── Navbar ──────────────────────────────────────── */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(5, 13, 26, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

/* ── Logo mark ───────────────────────────────────── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  font-weight: 900;
  font-size: 1rem;
  color: #050d1a;
  flex-shrink: 0;
}

/* ── Hamburger ───────────────────────────────────── */
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}
#menu-btn.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-link {
  display: block;
  padding: 0.6rem 0;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mob-link:hover { color: #fff; }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00d68f 0%, #3d7eff 100%);
  color: #050d1a;
  font-weight: 700;
  border-radius: 0.625rem;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,214,143,0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,214,143,0.45);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  border-radius: 0.625rem;
  padding: 0.65rem 1.35rem;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-size: 0.875rem;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-radius: 0.625rem;
  padding: 0.65rem 1.35rem;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.875rem;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-1px);
}

/* ── Gradient text ───────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, #00d68f 0%, #3d7eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ────────────────────────────────────────── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,214,143,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,214,143,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow--green {
  width: 600px; height: 600px;
  background: rgba(0, 214, 143, 0.12);
  top: -150px; right: -100px;
}
.hero-glow--blue {
  width: 400px; height: 400px;
  background: rgba(61, 126, 255, 0.1);
  bottom: 0; left: -50px;
}

/* ── Pulse dot ───────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00d68f;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,214,143,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0,214,143,0); }
}

/* ── Divider dot ─────────────────────────────────── */
.divider-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  vertical-align: middle;
}

/* ── Scroll cue ──────────────────────────────────── */
.scroll-cue {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-dot {
  width: 4px; height: 8px;
  background: #00d68f;
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%  { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}

/* ── Stats ───────────────────────────────────────── */
.stat-num {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Section typography ──────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00d68f;
  margin-bottom: 0.875rem;
}
.section-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.0625rem;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Steps (How it works) ────────────────────────── */
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,214,143,0.3);
  box-shadow: 0 16px 40px rgba(0,214,143,0.08);
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,214,143,0.2);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.step-body {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.step-list {
  list-style: none;
  padding: 0; margin: 0;
}
.step-list li {
  padding: 0.3rem 0 0.3rem 1.125rem;
  position: relative;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}
.step-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #00d68f;
}

/* ── Services cards ──────────────────────────────── */
.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 1.875rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,214,143,0.25);
  box-shadow: 0 16px 40px rgba(0,214,143,0.07);
}
.svc-card--featured {
  background: rgba(0,214,143,0.05);
  border-color: rgba(0,214,143,0.2);
}
.svc-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.svc-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}
.svc-icon--green { background: rgba(0,214,143,0.12); color: #00d68f; }
.svc-icon--blue  { background: rgba(61,126,255,0.12); color: #6ea3ff; }
.svc-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.svc-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ── Challenge cards ─────────────────────────────── */
.challenge-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: transform 0.3s;
}
.challenge-card:hover { transform: translateY(-3px); }
.challenge-pct {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

/* ── Eligibility rows ────────────────────────────── */
.elig-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem;
}
.elig-check {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: rgba(0,214,143,0.12);
  color: #00d68f;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Metric cards ────────────────────────────────── */
.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s;
}
.metric-card:hover { transform: translateY(-2px); }
.metric-num {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ── Company chips ───────────────────────────────── */
.company-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ── Testimonials ────────────────────────────────── */
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: transform 0.25s;
}
.testi-card:hover { transform: translateY(-3px); }
.testi-card--featured {
  background: rgba(0,214,143,0.04);
  border-color: rgba(0,214,143,0.2);
}
.stars { color: #f59e0b; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 600; }
.testi-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.125rem; }

/* ── Pricing ─────────────────────────────────────── */
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card--featured {
  background: rgba(0,214,143,0.05);
  border-color: rgba(0,214,143,0.25);
  box-shadow: 0 0 40px rgba(0,214,143,0.08);
}
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d68f, #3d7eff);
  color: #050d1a;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pricing-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pricing-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pricing-list li {
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d68f;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── CTA box ─────────────────────────────────────── */
.cta-box {
  background: rgba(0,214,143,0.05);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: 2rem;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,214,143,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.8; transform: translate(-50%,-50%) scale(1.15); }
}

/* ── Contact form ────────────────────────────────── */
.contact-ico {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background: rgba(0,214,143,0.1);
  color: #00d68f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.employer-box {
  background: rgba(0,214,143,0.05);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.fg { display: flex; flex-direction: column; gap: 0.375rem; }
.flbl { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.65); }
.finput {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.625rem;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.finput::placeholder { color: rgba(255,255,255,0.25); }
.finput:focus {
  border-color: #00d68f;
  background: rgba(0,214,143,0.07);
}
.finput option { background: #0b1729; color: #fff; }

/* ── Footer ──────────────────────────────────────── */
.ftr-head {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.ftr-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ftr-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.ftr-links a:hover { color: #fff; }
.soc-ico {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.soc-ico:hover {
  background: rgba(0,214,143,0.15);
  color: #00d68f;
}

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
