:root {
  --navy-950: #050b14;
  --navy-900: #08111d;
  --navy-850: #0d1828;
  --navy-800: #112338;
  --navy-700: #17324c;
  --blue: #2563eb;
  --blue-light: #5ca2ff;
  --gold: #d69e4a;
  --gold-soft: #f2c06e;
  --white: #ffffff;
  --slate-100: #e7edf4;
  --slate-300: #bdc8d7;
  --slate-400: #8c9aad;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(92, 162, 255, 0.28);
  --shadow: 0 30px 75px rgba(0, 0, 0, 0.33);
  --radius: 26px;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.04em; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.skip-link {
  position: absolute; z-index: 50; left: 16px; top: -60px;
  padding: 10px 18px; background: var(--white); color: var(--navy-950); border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; clip: rect(0,0,0,0); height: 1px; width: 1px; overflow: hidden; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 25px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 700; transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 16px 34px rgba(37,99,235,.34); }
.button-primary:hover { background: #3874ed; }
.button-outline { border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.025); }
.button-outline:hover { background: rgba(255,255,255,.08); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.button-light { background: var(--white); color: var(--navy-900); }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(5,11,20,.84); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; min-height: 88px; gap: 34px; }
.brand { display: flex; flex-direction: column; margin-right: auto; }
.brand-name { font-size: clamp(1.65rem, 2.3vw, 2.15rem); line-height: 1; letter-spacing: .12em; font-weight: 900; }
.brand-name span { color: var(--gold-soft); }
.brand-role { margin-top: 8px; color: var(--slate-400); font-size: .67rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.site-nav { display: flex; gap: 28px; color: var(--slate-300); font-size: .9rem; font-weight: 600; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.header-cta { flex-shrink: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; color: white; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; overflow: hidden; padding-top: 70px; }
.hero-glow {
  position: absolute; inset: -250px auto auto 35%; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 60%); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .83fr; align-items: center; gap: 68px; padding-bottom: 72px; }
.hero-copy h1 { max-width: 720px; font-family: "Oswald", "Arial Narrow", sans-serif; font-size: clamp(3.4rem, 6vw, 5.45rem); font-weight: 700; letter-spacing: -.03em; text-transform: uppercase; }
.hero-copy h1 span { color: var(--gold-soft); }
.hero-summary { max-width: 610px; margin-top: 27px; color: var(--slate-300); font-size: clamp(1.03rem, 1.4vw, 1.2rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.belief { max-width: 600px; margin-top: 43px; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--slate-300); font-weight: 500; }
.portrait-frame { position: relative; padding: 10px; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.055); box-shadow: var(--shadow); }
.portrait-frame::before { content: ""; position: absolute; inset: -18px; z-index: -1; border-radius: 40px; background: rgba(37,99,235,.16); filter: blur(30px); }
.portrait-frame img { width: 100%; aspect-ratio: 700 / 753; border-radius: 23px; object-fit: cover; }
.portrait-label { position: absolute; inset: auto 10px 10px 10px; padding: 32px 26px 22px; border-radius: 0 0 22px 22px; background: linear-gradient(transparent, rgba(5,11,20,.93)); display: flex; flex-direction: column; }
.portrait-label strong { font-size: 1.55rem; }
.portrait-label span { color: var(--slate-300); font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.stats-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold-soft); font-size: clamp(1.62rem, 2.1vw, 2rem); line-height: 1.2; font-weight: 900; }
.stat span { display: block; margin-top: 7px; color: var(--slate-400); font-size: .87rem; }

.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 72px; align-items: start; }
.section-title h2 { font-size: clamp(2.35rem, 4vw, 3.45rem); }
.body-copy { color: var(--slate-300); font-size: 1.08rem; line-height: 1.9; }
.body-copy p + p { margin-top: 22px; }
.section-intro { max-width: 760px; margin-bottom: 52px; }
.section-intro h2 { font-size: clamp(2.35rem, 4.4vw, 3.6rem); }
.section-intro > p:last-child { margin-top: 22px; color: var(--slate-300); font-size: 1.08rem; line-height: 1.8; }

.challenges { background: rgba(255,255,255,.025); border-block: 1px solid rgba(255,255,255,.04); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--navy-850); color: var(--slate-100); }
.check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; color: #7ee5be; background: rgba(24,190,123,.13); font-weight: 800; }
.leadership-callout { margin-top: 40px; padding: 26px; border: 1px solid var(--line-bright); border-radius: 22px; background: rgba(37,99,235,.1); text-align: center; font-size: clamp(1.16rem, 2vw, 1.42rem); font-weight: 800; }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution { min-height: 300px; padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--navy-850); transition: transform .25s ease, border-color .25s ease; }
.solution:hover { transform: translateY(-5px); border-color: var(--line-bright); }
.card-number { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-bottom: 28px; border-radius: 50%; background: rgba(37,99,235,.16); color: var(--blue-light); font-weight: 800; }
.solution h3 { font-size: 1.62rem; }
.solution p { margin-top: 18px; color: var(--slate-300); }

.talent-panel { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.025); }
.talent-message { padding: clamp(34px, 5vw, 52px); border-right: 1px solid var(--line); }
.talent-message h2 { font-size: clamp(2.45rem, 4vw, 3.35rem); }
.talent-message > p:not(.eyebrow) { margin-top: 24px; color: var(--slate-300); }
.talent-message blockquote { margin: 34px 0 0; padding: 22px; border: 1px solid var(--line-bright); border-radius: 17px; background: rgba(37,99,235,.1); color: var(--white); font-size: 1.08rem; font-weight: 750; }
.principles { display: flex; flex-direction: column; gap: 16px; padding: clamp(28px, 5vw, 52px); }
.principle { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--navy-850); }
.principle > span { display: flex; align-items: center; justify-content: center; flex-shrink: 0; height: 42px; width: 42px; border-radius: 50%; background: rgba(37,99,235,.17); color: var(--blue-light); font-weight: 900; }
.principle h3 { margin-bottom: 8px; font-size: 1.08rem; letter-spacing: -.02em; }
.principle p { color: var(--slate-300); font-size: .93rem; }

.culture { padding: 100px 0; background: linear-gradient(120deg, #1752bd, #2266e2); }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.culture .eyebrow { color: #ccddff; }
.culture-message h2 { font-size: clamp(2.5rem, 4.5vw, 3.8rem); }
.culture-message > p:not(.eyebrow) { margin-top: 25px; color: #e8efff; font-size: 1.04rem; line-height: 1.85; }
.culture-message blockquote { margin: 38px 0 0; padding: 9px 0 9px 23px; border-left: 4px solid var(--white); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 800; line-height: 1.45; }
.culture-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.pillar { min-height: 184px; padding: 26px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: rgba(255,255,255,.105); }
.pillar h3 { font-size: 1.22rem; }
.pillar p { margin-top: 12px; color: #e8efff; font-size: .93rem; }

.process { background: rgba(255,255,255,.025); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.step { min-height: 235px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--navy-850); }
.step > span { color: var(--gold-soft); font-size: .8rem; font-weight: 900; letter-spacing: .25em; }
.step h3 { margin-top: 25px; font-size: 1.4rem; }
.step p { margin-top: 14px; color: var(--slate-300); font-size: .94rem; }

.reviews-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 66px; align-items: center; }
.reviews-copy h2 { font-size: clamp(2.45rem, 4vw, 3.45rem); }
.reviews-copy > p:not(.eyebrow) { margin: 25px 0 0; color: var(--slate-300); font-size: 1.05rem; }
.rating { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 32px 0; }
.rating span { color: var(--gold-soft); font-size: 1.65rem; letter-spacing: .15em; line-height: 1; }
.rating strong { font-size: 1.12rem; }
.review-standards { padding: clamp(28px, 4vw, 42px); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.035); }
.review-standards h3 { margin-bottom: 25px; font-size: 1.42rem; }
.review-standards article { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.review-standards strong { display: block; font-size: 1.08rem; }
.review-standards article p { margin-top: 4px; color: var(--slate-300); font-size: .94rem; }
.review-note { margin-top: 20px; color: var(--slate-400); font-size: .8rem; }

.contact { padding: 45px 0 100px; }
.contact-panel { padding: clamp(42px, 7vw, 82px); border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(255,255,255,.04)); text-align: center; }
.contact-panel h2 { max-width: 900px; margin: 0 auto; font-size: clamp(2.55rem, 5vw, 4rem); }
.contact-panel > p:not(.eyebrow) { max-width: 700px; margin: 25px auto 0; color: var(--slate-300); font-size: 1.07rem; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.contact-email { display: block; margin-top: 24px; color: var(--slate-300); }
.contact-email:hover { color: var(--white); }

.site-footer { padding: 29px 0; border-top: 1px solid var(--line); color: var(--slate-400); font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.footer-inner strong { color: var(--white); font-size: 1rem; }
.footer-inner div p { margin-top: 3px; }
.reveal { opacity: 0; transform: translateY(19px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav.open {
    position: absolute; display: flex; flex-direction: column; gap: 0; top: 87px; left: 0; right: 0;
    padding: 10px 24px 18px; background: var(--navy-900); border-bottom: 1px solid var(--line);
  }
  .site-nav.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero-grid, .split, .talent-panel, .culture-grid, .reviews-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 590px; }
  .talent-message { border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 34px)); }
  .section { padding: 72px 0; }
  .site-header .header-inner { min-height: 78px; }
  .site-nav.open { top: 77px; }
  .brand-name { letter-spacing: .08em; }
  .brand-role { font-size: .6rem; letter-spacing: .22em; }
  .hero { padding-top: 48px; }
  .hero-grid { gap: 42px; padding-bottom: 54px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13.5vw, 3.55rem); }
  .hero-actions .button { width: 100%; }
  .stats-grid, .problem-grid, .solution-grid, .culture-pillars, .process-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 23px 0; }
  .stat:last-child { border-bottom: 0; }
  .solution, .step { min-height: 0; }
  .culture { padding: 72px 0; }
  .pillar { min-height: 0; }
  .rating { align-items: flex-start; flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
