:root {
  --navy-950: #061329;
  --navy-900: #0a1d3f;
  --navy-800: #102a55;
  --blue-600: #1769e8;
  --blue-500: #2484f3;
  --cyan-400: #55d3ef;
  --sky-100: #eaf5ff;
  --ink: #15213a;
  --muted: #61708c;
  --line: #dce6f2;
  --surface: #f6f9fd;
  --white: #fff;
  --shadow: 0 22px 65px rgba(7, 29, 66, .13);
  --shadow-soft: 0 12px 35px rgba(7, 29, 66, .08);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 74px 0; }
.surface { background: var(--surface); }
.dark { color: var(--white); background: var(--navy-950); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.dark .eyebrow { color: var(--cyan-400); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h1 { margin-bottom: 26px; font-size: clamp(3.1rem, 6.5vw, 6.25rem); line-height: .98; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 4vw, 3.9rem); line-height: 1.06; }
h3 { margin-bottom: 14px; font-size: 1.35rem; line-height: 1.2; }
p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.dark p { color: #acbad3; }
.lead { max-width: 650px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.section-heading { max-width: 790px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after { width: 28px; height: 2px; content: ""; background: currentColor; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
  font-size: .92rem;
  font-weight: 750;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); background: #0d59cf; box-shadow: 0 14px 30px rgba(23, 105, 232, .25); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn-light:hover { background: #eff7ff; }
.btn-outline { border-color: #b8c9df; background: transparent; color: var(--navy-900); }
.btn-outline:hover { background: var(--sky-100); box-shadow: none; }
.btn-arrow::after { content: "→"; font-size: 1.1rem; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 242, .85);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(15px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { border-color: transparent; background: rgba(255, 255, 255, .97); box-shadow: 0 10px 35px rgba(7, 29, 66, .09); }
.nav { display: flex; height: 82px; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 1.2rem; font-weight: 850; letter-spacing: .05em; }
.brand-mark { position: relative; width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(145deg, var(--blue-500), #144ebc); transform: rotate(-7deg); }
.brand:hover .brand-mark { animation: brand-bounce .55s ease; }
.brand-mark::before, .brand-mark::after { position: absolute; content: ""; border-radius: 50%; background: var(--white); }
.brand-mark::before { width: 16px; height: 16px; top: 7px; left: 7px; opacity: .95; }
.brand-mark::after { width: 11px; height: 11px; right: 6px; bottom: 6px; opacity: .55; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.btn) { position: relative; color: #42506a; font-size: .91rem; font-weight: 650; }
.nav-links > a:not(.btn)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; background: var(--blue-500); transform: scaleX(0); transition: transform .2s; }
.nav-links > a:hover, .nav-links > a.active { color: var(--navy-900); }
.nav-links > a.active::after, .nav-links > a:hover::after { transform: scaleX(1); }
.nav-links .btn { min-height: 46px; padding-inline: 21px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px; background: var(--surface); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy-900); }

/* Hero */
.hero { position: relative; min-height: 690px; overflow: hidden; background: linear-gradient(135deg, #f4f9ff 0%, #fff 47%, #eaf4ff 100%); }
.hero::before { position: absolute; width: 720px; height: 720px; top: -320px; right: -180px; border: 1px solid rgba(36, 132, 243, .15); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(36, 132, 243, .03), 0 0 0 190px rgba(36, 132, 243, .025); }
.hero-grid { position: relative; display: grid; min-height: 690px; align-items: center; grid-template-columns: 1.02fr .98fr; gap: 55px; }
.hero-copy { padding: 80px 0; }
.hero h1 span { color: var(--blue-600); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 30px; color: #60708a; font-size: .87rem; font-weight: 650; }
.hero-note .dot { width: 9px; height: 9px; border-radius: 50%; background: #29b781; box-shadow: 0 0 0 5px rgba(41, 183, 129, .14); }
.motion-in .hero-note .dot { animation: status-pulse 2.2s ease-out infinite; }
.hero-visual { position: relative; height: 520px; }
.visual-orb { position: absolute; width: 420px; height: 420px; top: 45px; right: 20px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #64dff4, #267eeb 46%, #0b2b64 77%); box-shadow: 0 45px 90px rgba(17, 87, 188, .28); }
.visual-orb::after { position: absolute; inset: 55px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; content: ""; }
.motion-in .visual-orb { animation: orb-drift 7s ease-in-out infinite; }
.data-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.data-card.main { width: 270px; top: 115px; left: 5px; padding: 25px; }
.data-card.mini { width: 205px; right: 0; bottom: 60px; padding: 20px; }
.data-card.floating { width: 170px; top: 55px; right: 15px; padding: 18px; }
.motion-in .data-card.main { animation: card-float 5.6s ease-in-out 1s infinite; }
.motion-in .data-card.mini { animation: card-float 5s ease-in-out .35s infinite reverse; }
.motion-in .data-card.floating { animation: card-float 4.7s ease-in-out .7s infinite; }
.data-kicker { color: #72809a; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.data-value { margin: 8px 0 16px; color: var(--navy-900); font-size: 2.1rem; font-weight: 850; }
.chart { display: flex; height: 88px; align-items: end; gap: 8px; }
.chart i { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(var(--cyan-400), var(--blue-600)); }
.motion-ready .chart i { transform: scaleY(0); transform-origin: bottom; }
.motion-in .chart i { animation: chart-grow .75s cubic-bezier(.2,.75,.25,1) forwards; }
.motion-in .chart i:nth-child(2) { animation-delay: .08s; }
.motion-in .chart i:nth-child(3) { animation-delay: .16s; }
.motion-in .chart i:nth-child(4) { animation-delay: .24s; }
.motion-in .chart i:nth-child(5) { animation-delay: .32s; }
.motion-in .chart i:nth-child(6) { animation-delay: .4s; }
.pulse { display: flex; gap: 7px; }
.pulse i { width: 7px; height: 7px; border-radius: 50%; background: #bfd3e8; }
.pulse i:nth-child(-n+4) { background: var(--blue-500); }
.data-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.data-row strong { color: var(--navy-900); }
.trend { color: #18a979; font-size: .82rem; font-weight: 750; }
.tech-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--sky-100); color: var(--blue-600); font-size: .73rem; font-weight: 800; }

/* Cards and grids */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 330px; overflow: hidden; padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card:hover { transform: translateY(-7px); border-color: #b9d7f8; box-shadow: var(--shadow-soft); }
.service-card::after { position: absolute; width: 120px; height: 120px; right: -50px; bottom: -50px; border-radius: 50%; content: ""; background: var(--sky-100); transition: transform .35s; }
.service-card:hover::after { transform: scale(1.35); }
.icon-box { display: grid; width: 58px; height: 58px; margin-bottom: 32px; place-items: center; border-radius: 17px; background: var(--sky-100); color: var(--blue-600); font-size: 1.55rem; }
.service-card .icon-box, .solution-detail .icon-box { transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s, color .35s; }
.service-card:hover .icon-box, .solution-detail:hover .icon-box { transform: translateY(-4px) rotate(-5deg) scale(1.06); background: var(--blue-600); color: var(--white); }
.service-card p { font-size: .94rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-size: .9rem; font-weight: 750; }
.text-link::after { content: "↗"; }

.split { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 80px; }
.image-panel { position: relative; min-height: 500px; overflow: hidden; border-radius: 30px; background: linear-gradient(145deg, var(--navy-900), #1469c8); box-shadow: var(--shadow); }
.image-panel::before { position: absolute; width: 410px; height: 410px; top: 45px; right: -90px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.025); }
.image-panel .code-window { position: absolute; width: 76%; top: 88px; left: 12%; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: rgba(6,19,41,.75); box-shadow: 0 30px 65px rgba(0,0,0,.25); }
.window-top { display: flex; gap: 7px; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.window-top i { width: 8px; height: 8px; border-radius: 50%; background: #5bd6ee; }
.window-body { padding: 25px 24px 30px; }
.code-line { height: 8px; margin: 12px 0; border-radius: 5px; background: rgba(255,255,255,.13); }
.motion-in .code-line { animation: code-glow 3.2s ease-in-out infinite; }
.motion-in .code-line:nth-child(2) { animation-delay: .18s; }
.motion-in .code-line:nth-child(3) { animation-delay: .36s; }
.motion-in .code-line:nth-child(4) { animation-delay: .54s; }
.motion-in .code-line:nth-child(5) { animation-delay: .72s; }
.code-line:nth-child(1), .code-line:nth-child(4) { width: 70%; background: rgba(85,211,239,.55); }
.code-line:nth-child(2) { width: 88%; }
.code-line:nth-child(3) { width: 55%; }
.code-line:nth-child(5) { width: 78%; }
.feature-list { display: grid; gap: 18px; margin: 30px 0 36px; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 15px; }
.feature-check { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--sky-100); color: var(--blue-600); font-weight: 900; }
.feature h3 { margin: 2px 0 5px; font-size: 1rem; }
.feature p { margin: 0; font-size: .9rem; }

.stats { position: relative; overflow: hidden; }
.stats::after { position: absolute; width: 420px; height: 420px; right: -180px; bottom: -240px; border: 80px solid rgba(85,211,239,.05); border-radius: 50%; content: ""; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 12px 38px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 9px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -.06em; }
.stat span { color: #a7b7d1; font-size: .9rem; line-height: 1.5; }

.sector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.sector { display: flex; min-height: 96px; align-items: center; justify-content: center; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); color: #61708b; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.sector { transition: transform .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease; }
.sector:hover { transform: translateY(-4px); border-color: #b9d7f8; color: var(--blue-600); box-shadow: var(--shadow-soft); }

.cta-panel { position: relative; display: grid; overflow: hidden; padding: 68px 72px; border-radius: 32px; background: linear-gradient(120deg, #10346f, #1477de); color: var(--white); grid-template-columns: 1.25fr .75fr; align-items: center; gap: 40px; }
.cta-panel::after { position: absolute; width: 300px; height: 300px; right: -100px; top: -120px; border: 60px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; }
.cta-panel h2 { max-width: 680px; margin-bottom: 14px; }
.cta-panel p { margin: 0; color: #d6e7fc; }
.cta-actions { position: relative; z-index: 1; text-align: right; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 100px 0 110px; color: var(--white); background: linear-gradient(125deg, var(--navy-950), #0d3776 60%, #166dc8); }
.page-hero::after { position: absolute; width: 520px; height: 520px; right: -120px; top: -235px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; box-shadow: 0 0 0 85px rgba(255,255,255,.035), 0 0 0 170px rgba(255,255,255,.025); }
.page-hero .container { position: relative; z-index: 1; }
.motion-ready .page-hero .breadcrumb, .motion-ready .page-hero h1, .motion-ready .page-hero p, .motion-ready .page-hero .btn { opacity: 0; transform: translateY(18px); }
.motion-in .page-hero .breadcrumb, .motion-in .page-hero h1, .motion-in .page-hero p, .motion-in .page-hero .btn { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.motion-in .page-hero h1 { transition-delay: .1s; }
.motion-in .page-hero p { transition-delay: .2s; }
.motion-in .page-hero .btn { transition-delay: .3s; }
.page-hero h1 { max-width: 950px; font-size: clamp(3rem, 6vw, 5.6rem); }
.page-hero p { max-width: 680px; margin-bottom: 0; color: #c6d6ed; font-size: 1.15rem; }
.breadcrumb { margin-bottom: 28px; color: var(--cyan-400); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.breadcrumb a { color: #dcecff; }
.breadcrumb span { margin: 0 9px; opacity: .6; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; }
.value-number { margin-bottom: 34px; color: #bfd8f5; font-size: 2.4rem; font-weight: 850; }

.solution-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.solution-detail { display: grid; min-height: 300px; padding: 40px; border: 1px solid var(--line); border-radius: 25px; background: var(--white); grid-template-rows: auto 1fr auto; }
.solution-detail { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.solution-detail:hover { transform: translateY(-5px); border-color: #b9d7f8; box-shadow: var(--shadow-soft); }
.solution-detail .icon-box { margin-bottom: 24px; }
.solution-detail ul { margin: 18px 0 28px; padding: 0; list-style: none; }
.solution-detail li { position: relative; margin: 9px 0; padding-left: 22px; color: var(--muted); font-size: .93rem; }
.solution-detail li::before { position: absolute; left: 0; color: var(--blue-500); content: "✓"; font-weight: 850; }
.staffing-band { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.talent-visual { position: relative; min-height: 430px; border-radius: 28px; background: radial-gradient(circle at 25% 20%, #59d1ee, #1d70d9 42%, #081b3b 75%); }
.talent-node { position: absolute; display: grid; width: 80px; height: 80px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); font-weight: 850; box-shadow: 0 14px 30px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.talent-node:nth-child(1) { top: 55px; left: 60px; }
.talent-node:nth-child(2) { top: 115px; right: 55px; }
.talent-node:nth-child(3) { left: 45%; bottom: 50px; }
.motion-in .talent-node { animation: node-float 4.8s ease-in-out infinite; }
.motion-in .talent-node:nth-child(2) { animation-delay: -.9s; }
.motion-in .talent-node:nth-child(3) { animation-delay: -1.8s; }
.talent-line { position: absolute; width: 180px; height: 1px; top: 180px; left: 130px; background: rgba(255,255,255,.4); transform: rotate(18deg); transform-origin: left; }

.jobs { display: grid; gap: 15px; }
.job-card { display: grid; align-items: center; padding: 26px 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); grid-template-columns: 1.4fr .8fr .6fr auto; gap: 20px; transition: border .2s, transform .2s, box-shadow .2s; }
.job-card:hover { transform: translateY(-3px); border-color: #bad8f7; box-shadow: var(--shadow-soft); }
.job-card h3 { margin: 0; }
.job-meta { color: var(--muted); font-size: .9rem; }
.job-type { display: inline-flex; width: fit-content; padding: 7px 12px; border-radius: 999px; background: var(--sky-100); color: var(--blue-600); font-size: .75rem; font-weight: 800; }
.job-card .text-link { justify-self: end; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; }
.contact-cards { display: grid; gap: 14px; margin-top: 35px; }
.contact-card { display: grid; padding: 22px; border: 1px solid var(--line); border-radius: 16px; grid-template-columns: 45px 1fr; gap: 14px; }
.contact-card .icon-box { width: 42px; height: 42px; margin: 0; border-radius: 12px; font-size: 1rem; }
.contact-card strong { display: block; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: .9rem; }
.form-card { padding: 42px; border-radius: 27px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: #34425d; font-size: .82rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #d8e2ef; border-radius: 12px; outline: none; background: #fbfdff; color: var(--ink); transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 135px; padding: 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(36,132,243,.11); }
.form-card .btn { margin-top: 22px; border: 0; }
.form-status { min-height: 25px; margin: 15px 0 0; font-size: .88rem; }
.form-status.success { color: #13865e; }
.form-status.error { color: #bc3447; }

/* Footer */
.site-footer { padding-top: 75px; color: var(--white); background: var(--navy-950); }
.footer-grid { display: grid; padding-bottom: 55px; grid-template-columns: 1.3fr .7fr .85fr 1.15fr; gap: 55px; }
.site-footer .brand { color: var(--white); }
.footer-about { max-width: 310px; margin-top: 20px; color: #99aac4; font-size: .9rem; }
.footer-title { margin-bottom: 22px; color: var(--white); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; }
.footer-links a, .footer-contact p { margin: 0; color: #99aac4; font-size: .89rem; line-height: 1.6; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan-400); }
.subscribe { display: flex; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; }
.subscribe input { min-width: 0; flex: 1; height: 48px; padding: 0 13px; border: 0; outline: 0; background: transparent; color: var(--white); }
.subscribe button { width: 50px; border: 0; background: var(--blue-600); color: var(--white); font-size: 1.1rem; }
.footer-note { margin-top: 10px; color: #72829b; font-size: .73rem; }
.footer-bottom { display: flex; min-height: 74px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #7f90ab; font-size: .8rem; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #aab8cc; font-size: .75rem; font-weight: 800; }
.socials a:hover { border-color: var(--cyan-400); color: var(--cyan-400); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

.motion-ready .hero-copy > * { opacity: 0; transform: translateY(20px); }
.motion-in .hero-copy > * { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.motion-in .hero-copy > :nth-child(2) { transition-delay: .1s; }
.motion-in .hero-copy > :nth-child(3) { transition-delay: .2s; }
.motion-in .hero-copy > :nth-child(4) { transition-delay: .3s; }
.motion-in .hero-copy > :nth-child(5) { transition-delay: .4s; }
.motion-ready .hero-visual { opacity: 0; transform: translateX(24px) scale(.98); }
.motion-in .hero-visual { opacity: 1; transform: none; transition: opacity .9s ease .2s, transform .9s cubic-bezier(.2,.75,.25,1) .2s; }

@keyframes orb-drift { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(-8px, -13px, 0) scale(1.025); } }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes node-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes chart-grow { to { transform: scaleY(1); } }
@keyframes code-glow { 0%, 100% { opacity: .7; } 50% { opacity: 1; filter: brightness(1.35); } }
@keyframes status-pulse { 0% { box-shadow: 0 0 0 0 rgba(41,183,129,.35); } 70%, 100% { box-shadow: 0 0 0 9px rgba(41,183,129,0); } }
@keyframes brand-bounce { 0%, 100% { transform: rotate(-7deg) scale(1); } 45% { transform: rotate(4deg) scale(1.08); } }

@media (max-width: 980px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 82px 0 auto; display: grid; max-height: 0; overflow: hidden; padding: 0 25px; background: var(--white); box-shadow: 0 18px 35px rgba(7,29,66,.12); transition: max-height .35s, padding .35s; }
  .nav-links.open { max-height: 430px; padding-block: 28px 34px; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { width: fit-content; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 0 25px; }
  .hero-visual { height: 500px; max-width: 650px; width: 100%; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .split, .staffing-band { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 35px 0; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { padding: 55px; grid-template-columns: 1fr; }
  .cta-actions { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.2rem; }
  .nav { height: 72px; }
  .nav-links { top: 72px; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-grid { gap: 0; }
  .hero-copy { padding-top: 65px; }
  .hero-visual { height: 390px; }
  .visual-orb { width: 300px; height: 300px; right: -55px; }
  .data-card.main { width: 225px; top: 95px; left: 0; }
  .data-card.mini { width: 180px; right: -5px; bottom: 25px; }
  .data-card.floating { display: none; }
  .service-grid, .value-grid, .solution-list { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .image-panel { min-height: 390px; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat, .stat:nth-child(3) { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:last-child { border-bottom: 0; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 42px 28px; }
  .page-hero { padding: 75px 0 82px; }
  .page-hero h1 { font-size: 3rem; }
  .job-card { grid-template-columns: 1fr 1fr; }
  .job-card h3 { grid-column: 1 / -1; }
  .job-card .text-link { justify-self: start; }
  .form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; padding: 18px 0; }
}

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