*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #111a32;
  background: #f7f9fc;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}


.menu {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav {
        position: relative;
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #030817;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        z-index: 999;
    }

    .nav nav.active {
        display: flex;
    }

    .nav nav a {
        display: block;
        font-size: 16px;
    }

    .nav-cta {
        display: none;
    }

    .menu {
        display: block;
    }
}


/* ==========================================================================
   NAVIGATION & MOBILE MENU
   ========================================================================== */

.nav {
  height: 72px;
  background: #030817;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px);
  gap: 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #172039;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.brand b {
  font-weight: 400;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, #fff, #648cff);
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
}

nav {
  display: flex;
  gap: 31px;
  margin: auto;
  font-size: 14px;
  color: #aeb8cc;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover,
nav a:first-child {
  color: #fff;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 9px;
  padding: 14px 22px;
  text-align: center;
}

.nav-cta,
.primary {
  background: linear-gradient(110deg, #238e48, #238e48);
  color: #fff;
  box-shadow: 0 12px 30px rgba(44, 87, 229, 0.18);
}

.nav-cta {
  font-size: 13px;
  padding: 12px 19px;
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  padding: 5px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 650px;
  background: #030817;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  padding: 78px clamp(25px, 7vw, 105px) 70px;
  gap: 40px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.g1 {
  width: 340px;
  height: 340px;
  background: #1555ff;
  left: -120px;
  top: -120px;
}

.g2 {
  width: 340px;
  height: 340px;
  background: #7539ff;
  right: -100px;
  bottom: -160px;
}

.hero-copy {
  max-width: 650px;
  align-self: center;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0b1b30;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.7px;
  color: #238e48;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #238e48;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 75px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 24px 0;
}

.hero h1 em {
  font-style: normal;
  color: #238e48;
}

.hero p {
  max-width: 600px;
  color: #b8c2d5;
  line-height: 1.85;
  font-size: clamp(14px, 1.2vw, 16px);
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 31px 0;
  flex-wrap: wrap;
}

.text-btn {
  font-size: 13px;
  font-weight: 700;
  color: #e6ebf7;
}

.stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
}

.stats div {
  border-left: 1px solid #26324a;
  padding: 0 28px 0 14px;
}

.stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 18px;
}

.stats span {
  font-size: 12px;
  color: #7e8ba4;
  margin-top: 5px;
}

/* --- Hero Visual & Orbit --- */
.hero-visual {
  position: relative;
  min-height: 450px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(30, 91, 248, 0.26);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.o1 {
  width: 440px;
  height: 440px;
}

.o2 {
  width: 320px;
  height: 320px;
  border-color: rgba(61, 116, 255, 0.33);
}

.o3 {
  width: 190px;
  height: 190px;
  border-color: rgba(35, 142, 72, 0.2);
}

.center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #0d1b36;
  border: 1px solid #3d70e8;
  box-shadow: 0 0 60px rgba(28, 88, 245, 0.13), 0 20px 50px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  letter-spacing: 2px;
  z-index: 2;
}

.center-node b {
  font-size: 22px;
  color: #238e48;
}

.node {
  position: absolute;
  background: #101d36;
  border: 1px solid #2b3c5c;
  border-radius: 11px;
  padding: 13px 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.44);
  z-index: 3;
}

.node b,
.node small {
  display: block;
}

.node b {
  font-size: 12px;
  color: #fff;
}

.node small {
  font-size: 11px;
  color: #77859d;
  margin-top: 5px;
}

.n1 {
  left: 1%;
  top: 21%;
}

.n2 {
  right: 1%;
  top: 37%;
}

.n3 {
  left: 13%;
  bottom: 18%;
}

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #376ef4, transparent);
  transform-origin: left center;
  opacity: 0.6;
}

.c1 {
  width: 190px;
  left: 30%;
  top: 39%;
  transform: rotate(15deg);
}

.c2 {
  width: 180px;
  left: 55%;
  top: 52%;
  transform: rotate(-12deg);
}

.c3 {
  width: 180px;
  left: 30%;
  top: 61%;
  transform: rotate(-26deg);
}

/* ==========================================================================
   CHOICE SECTION
   ========================================================================== */

.choice {
  max-width: 1180px;
  margin: auto;
  padding: 82px 25px 55px;
}

.section-head > span {
  font-size: 12px;
  letter-spacing: 1.7px;
  color: #238e48;
  font-weight: 800;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 10px 0;
}

.section-head p {
  font-size: 13px;
  color: #718097;
  line-height: 1.8;
  max-width: 620px;
}

.center {
  text-align: center;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 45px;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 315px;
  border-radius: 17px;
  padding: 29px;
  color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(18, 38, 83, 0.11);
}

.employer {
  background: linear-gradient(135deg, #07142b, #143f94);
}

.talent {
  background: linear-gradient(135deg, #11182c, #4030a1);
}

.choice-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  right: -90px;
  bottom: -100px;
  pointer-events: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  width: 37px;
  height: 37px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #b7c5df;
  font-weight: 800;
  text-transform: uppercase;
}

.arrow {
  position: absolute;
  right: 30px;
  top: 89px;
  font-size: 25px;
  color: #5d8cff;
}

.choice-card h3 {
  font-size: clamp(24px, 2.5vw, 31px);
  letter-spacing: -1px;
  margin: 40px 0 12px;
}

.choice-card p {
  font-size: 13px;
  color: #b5c1d6;
  line-height: 1.75;
  max-width: 450px;
  margin-bottom: 24px;
}

.card-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.partner-note {
  margin: 28px 0 0;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 11px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.partner-note span {
  font-size: 12px;
  letter-spacing: 1.3px;
  color: #238e48;
  font-weight: 800;
}

.partner-note p {
  font-size: 12px;
  color: #6f7b91;
  margin: 0;
}

.partner-note a {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: #238e48;
  white-space: nowrap;
}

/* ==========================================================================
   SOLUTIONS SECTION
   ========================================================================== */

.solutions {
  max-width: 1180px;
  margin: auto;
  padding: 60px 25px 85px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 65px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.solution {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 13px;
  padding: 23px;
  min-height: 185px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 38, 77, 0.05);
}

.solution b {
  font-size: 16px;
  color: #238e48;
  font-weight: bold;
}

.solution h3 {
  font-size: 16px;
  margin: 24px 0 8px;
}

.solution p {
  font-size: 12px;
  color: #758198;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */

.industries {
  background: #eef2f8;
  padding: 78px max(25px, calc((100% - 1180px) / 2));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 43px;
}

.industry {
  background: #fff;
  border: 1px solid #e0e5ee;
  border-radius: 12px;
  padding: 20px;
  min-height: 170px;
}

.industry span {
  font-size: 16px;
  color: #238e48;
  font-weight: bold;
}

.industry h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0 10px;
}

.industry p {
  font-size: 12px;
  line-height: 1.65;
  color: #768198;
}

/* ==========================================================================
   NUMBERS & PROCESS SECTION
   ========================================================================== */

.numbers {
  max-width: 1180px;
  margin: auto;
  padding: 65px 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.number {
  border-top: 2px solid #dfe4ee;
  padding-top: 15px;
}

.number strong {
  font-size: 25px;
  color: #238e48;
}

.number span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 17px;
}

.number small {
  display: block;
  font-size: 12px;
  color: #7a8499;
  line-height: 1.6;
  margin-top: 7px;
}

/* ==========================================================================
   CALL TO ACTION (CTA)
   ========================================================================== */

.cta {
  max-width: 1180px;
  margin: 0 auto 75px;
  padding: 31px 36px;
  border-radius: 15px;
  background: linear-gradient(135deg, #07142b, #143f94);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 22px 55px rgba(55, 94, 229, 0.17);
}

.cta span {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta h2 {
  font-size: clamp(20px, 2vw, 25px);
  margin: 8px 0 0;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.light {
  background: #fff;
  color: #07142b;
  white-space: nowrap;
}

.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #030817;
  color: #a5afc2;
  padding: 55px max(25px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

footer .brand {
  color: #fff;
  font-size: 16px;
}

footer p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 300px;
  margin: 15px 0;
}

footer small {
  font-size: 12px;
  color: #68758c;
}

footer h4 {
  color: #fff;
  font-size: 12px;
  margin: 0 0 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

footer div > a:not(.brand) {
  display: block;
  font-size: 12px;
  margin: 10px 0;
  color: #9ca7bc;
  transition: color 0.2s ease;
}

footer div > a:not(.brand):hover {
  color: #fff;
}

/* ==========================================================================
   ANIMATIONS & REVEAL ACCESSIBILITY
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================================================== */

@media (max-width: 980px) {
  /* Mobile Menu Container */
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #070e20;
    flex-direction: column;
    padding: 24px clamp(20px, 5vw, 72px);
    gap: 20px;
    border-bottom: 1px solid #172039;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  /* JavaScript Toggle State */
  nav.active,
  nav.open {
    display: flex;
  }

  .menu {
    display: block;
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 20px;
  }

  .solutions {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nav {
    height: 64px;
    padding: 0 18px;
  }

  nav {
    top: 64px;
    padding: 20px 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 40px 18px 20px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Hero Scale Fix without layout break */
  .hero-visual {
    min-height: 320px;
    transform: scale(0.85);
    transform-origin: center center;
  }

  .o1 {
    width: 340px;
    height: 340px;
  }

  .o2 {
    width: 250px;
    height: 250px;
  }

  .o3 {
    width: 150px;
    height: 150px;
  }

  .choice,
  .solutions,
  .numbers {
    padding-left: 18px;
    padding-right: 18px;
  }

  .choice-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
  }

  .arrow {
    display: none;
  }

  .partner-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .partner-note a {
    margin-left: 0;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .numbers {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }

  .cta {
    margin: 0 18px 50px;
    padding: 25px 20px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 18px;
  }
}