:root {
  --navy: #002b47;
  --blue: #00406b;
  --blue-light: #0c5687;
  --green: #72c33c;
  --green-light: #9bdb61;
  --ink: #102b3b;
  --muted: #647384;
  --line: #d7e0ea;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 43, 71, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Saira", sans-serif; }

.construction-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 34px;
  padding: 7px 20px;
  color: rgba(255,255,255,.88);
  background: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(114,195,60,.14);
  animation: signal 2s ease-in-out infinite;
}

.site-header, main, footer {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}
.brand { justify-self: start; display: inline-flex; }
.brand img, .footer-brand img {
  display: block;
  width: 116px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}
nav { display: flex; gap: 34px; }
nav a, .header-cta {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}
nav a::after {
  position: absolute;
  right: 100%; bottom: -7px; left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transition: right .25s ease;
}
nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.header-cta:hover { color: white; background: var(--navy); transform: translateY(-2px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 670px;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background: var(--navy);
}
.hero::before {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 75%);
  content: "";
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one { width: 380px; height: 380px; top: -190px; left: 38%; background: rgba(114,195,60,.16); }
.hero-glow-two { width: 420px; height: 420px; right: -240px; bottom: -220px; background: rgba(27,112,164,.3); }
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px;
}
.eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--green-light); }
h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-size: clamp(54px, 5.6vw, 82px);
  line-height: .99;
  letter-spacing: -.055em;
}
h1 em { color: var(--green); font-style: normal; }
.hero-text {
  max-width: 580px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.67);
  font-size: 17px;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 51px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.button::before {
  position: absolute;
  top: 0; bottom: 0; left: -35%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.button:hover::before { left: 120%; }
.button:hover { transform: translateY(-3px); }
.button span { transition: transform .25s ease; }
.button:hover span { transform: translateX(4px); }
.button-accent { color: var(--navy); background: var(--green); box-shadow: 0 12px 30px rgba(114,195,60,.2); }
.button-accent:hover { background: var(--green-light); box-shadow: 0 16px 38px rgba(114,195,60,.3); }
.button-ghost { color: white; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.button-large { min-height: 58px; padding-inline: 29px; }
.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-proof div { display: grid; gap: 5px; }
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: rgba(255,255,255,.5); font-size: 11px; }

.talent-stage { position: relative; z-index: 2; min-height: 100%; }
.talent-stage::before {
  position: absolute;
  top: 8%; right: 7%; bottom: 8%; left: 4%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50% 50% 45% 55%;
  background: radial-gradient(circle at 60% 36%, rgba(114,195,60,.24), transparent 23%), rgba(255,255,255,.025);
  content: "";
  animation: breathe 7s ease-in-out infinite;
}
.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}
.orbit-one { inset: 18% 3% 18% 12%; }
.orbit-two { inset: 27% 12% 27% 20%; animation-direction: reverse; animation-duration: 18s; }
.talent-card, .floating-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.23);
  box-shadow: 0 24px 55px rgba(0,20,35,.32);
  backdrop-filter: blur(16px);
}
.talent-card-main {
  top: 50%; left: 50%;
  width: min(330px, calc(100% - 70px));
  padding: 30px;
  border-radius: 23px;
  background: rgba(255,255,255,.1);
  transform: translate(-50%, -50%);
  animation: floatMain 6s ease-in-out infinite;
}
.talent-icon {
  display: grid;
  width: 46px; height: 46px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 0 0 9px rgba(114,195,60,.1);
}
.talent-card span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.55); font-size: 12px; }
.talent-card strong { font-family: "Saira", sans-serif; font-size: 21px; }
.match-line { display: flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.match-line i, .floating-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.match-line b { color: rgba(255,255,255,.68); }
.floating-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 100px;
  background: rgba(0,43,71,.75);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  animation: floatChip 5s ease-in-out infinite;
}
.chip-one { top: 18%; left: 9%; }
.chip-two { top: 23%; right: 6%; animation-delay: -1s; }
.chip-three { bottom: 20%; left: 7%; animation-delay: -2s; }
.chip-four { right: 10%; bottom: 15%; animation-delay: -3s; }

.trust-strip {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 28px 0 0;
  padding: 19px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.trust-strip p { flex-shrink: 0; margin: 0; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.trust-strip div { display: flex; justify-content: space-between; width: 100%; gap: 20px; }
.trust-strip span { color: var(--muted); font-size: 11px; }

.section { padding: 125px 0; }
.section-heading { max-width: 650px; margin-bottom: 52px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading h2, .method h2, .contact-panel h2 {
  margin-bottom: 19px;
  font-size: clamp(38px, 4.3vw, 60px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-heading > p:last-child, .method-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 375px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card::after {
  position: absolute; right: -70px; bottom: -90px;
  width: 180px; height: 180px;
  border: 1px solid var(--line); border-radius: 50%;
  content: "";
  transition: transform .5s ease, background .5s ease;
}
.feature-card:hover { border-color: rgba(114,195,60,.7); box-shadow: var(--shadow); transform: translateY(-9px); }
.feature-card:hover::after { background: rgba(114,195,60,.08); transform: scale(1.3); }
.feature-card-dark { color: white; border-color: var(--navy); background: var(--navy); }
.feature-card-dark p { color: rgba(255,255,255,.6) !important; }
.feature-index { color: var(--muted); font-size: 10px; font-weight: 700; }
.feature-icon {
  display: grid;
  width: 52px; height: 52px;
  margin: 48px 0 28px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: rgba(114,195,60,.16);
  font-size: 22px;
}
.feature-card-dark .feature-icon { color: var(--navy); background: var(--green); }
.feature-card h3 { margin-bottom: 14px; font-size: 20px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.feature-card a { position: absolute; z-index: 2; bottom: 28px; display: flex; gap: 10px; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.feature-card-dark a { color: var(--green-light); }
.feature-card a span { transition: transform .25s ease; }
.feature-card:hover a span { transform: translateX(5px); }

.sectors { padding-top: 30px; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sector-card {
  position: relative;
  min-height: 225px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--soft);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.sector-card:hover { color: white; background: var(--blue); transform: translateY(-6px); }
.sector-card span { color: var(--muted); font-size: 9px; font-weight: 700; }
.sector-card > div { margin: 30px 0 19px; color: var(--green); font-size: 22px; }
.sector-card h3 { margin-bottom: 9px; font-size: 17px; }
.sector-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; transition: color .3s ease; }
.sector-card:hover p, .sector-card:hover span { color: rgba(255,255,255,.65); }
.sector-card-cta { color: white; border-color: var(--blue); background: var(--blue); }
.sector-card-cta p, .sector-card-cta span { color: rgba(255,255,255,.65); }

.method {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
  margin-bottom: 120px;
  padding: 78px;
  border-radius: 28px;
  color: white;
  background: var(--navy);
}
.method-copy > p { color: rgba(255,255,255,.6); }
.method-copy .button { margin-top: 18px; }
.method-steps { margin: 0; padding: 0; list-style: none; }
.method-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: padding-left .25s ease;
}
.method-steps li:hover { padding-left: 8px; }
.method-steps li > span { color: var(--green); font-size: 10px; font-weight: 700; }
.method-steps h3 { margin-bottom: 5px; font-size: 17px; }
.method-steps p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
  padding: 64px;
  border-radius: 26px;
  background: var(--soft);
}
.contact-panel h2 { max-width: 780px; margin: 0; }
.contact-panel .button { flex-shrink: 0; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 45px;
  align-items: end;
  padding: 45px 0;
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 96px; height: 42px; margin-bottom: 12px; }
.footer-brand p, .footer-meta p { margin: 0; color: var(--muted); font-size: 10px; }
.footer-links { display: flex; gap: 22px; font-size: 11px; font-weight: 700; }
.footer-links a:hover { color: var(--green); }
.footer-meta { display: grid; justify-items: end; gap: 6px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-two { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes signal { 50% { box-shadow: 0 0 0 9px rgba(114,195,60,0); } }
@keyframes breathe { 50% { transform: scale(1.035); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes floatMain { 50% { transform: translate(-50%, calc(-50% - 9px)); } }
@keyframes floatChip { 50% { transform: translateY(-7px); } }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 62px 48px; }
  .talent-stage { min-height: 480px; }
  .expertise-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: 1fr; padding: 55px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-links { display: none; }
}

@media (max-width: 700px) {
  .site-header, main, footer { width: min(100% - 24px, 1220px); }
  .site-header { min-height: 70px; }
  .brand img { width: 94px; height: 42px; }
  .header-cta { padding: 9px 13px; font-size: 11px; }
  .hero { min-height: auto; border-radius: 20px; }
  .hero-copy { padding: 48px 24px 42px; }
  h1 { font-size: 48px; }
  .hero-text { font-size: 15px; }
  .hero-actions, .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 15px; margin-top: 35px; }
  .talent-stage { min-height: 420px; }
  .floating-chip { font-size: 8px; }
  .trust-strip { display: block; }
  .trust-strip p { margin-bottom: 14px; }
  .trust-strip div { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 85px 0; }
  .expertise-grid, .sector-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .method { gap: 35px; margin-bottom: 80px; padding: 40px 24px; border-radius: 20px; }
  .contact-panel { display: block; margin-bottom: 70px; padding: 38px 24px; }
  .contact-panel .button { margin-top: 28px; }
  footer { display: block; }
  .footer-meta { justify-items: start; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
