:root {
  --ink: #17233c;
  --muted: #5f6877;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #dedbd2;
  --blue: #2759c7;
  --blue-dark: #19449f;
  --orange: #ee8b4a;
  --mint: #dceee8;
  --shadow: 0 20px 55px rgba(31, 47, 77, 0.10);
}

html { scroll-behavior: smooth; }

body {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

h1, h2, h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 750;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 { max-width: 12ch; font-size: clamp(3.2rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
h3 { font-size: 1.55rem; }

p { text-wrap: pretty; }

a { color: var(--blue); }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1100;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }

.navbar {
  padding: 1rem 0;
  background: rgba(247, 245, 239, .92);
  border-bottom: 1px solid rgba(23, 35, 60, .08);
  backdrop-filter: blur(14px);
}

.navbar-brand { display: flex; align-items: center; gap: .75rem; color: var(--ink); font-weight: 750; }
.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: .75rem;
  letter-spacing: .08em;
}
.nav-link { color: var(--ink); font-weight: 600; }
.nav-link:hover, .nav-link:focus { color: var(--blue); }

.btn { border-radius: 999px; padding: .72rem 1.3rem; font-weight: 700; }
.btn-lg { padding: .92rem 1.55rem; font-size: 1rem; }
.btn-primary { background: var(--blue); border-color: var(--blue); }
.btn-primary:hover, .btn-primary:focus { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline-secondary { color: var(--ink); border-color: #a9a9a3; }
.btn-outline-secondary:hover, .btn-outline-secondary:focus { color: var(--white); background: var(--ink); border-color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 11.5rem 0 7rem; }
.hero::before {
  position: absolute;
  top: 8rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(39, 89, 199, .18);
  border-radius: 50%;
  content: "";
}
.hero-lead { max-width: 720px; margin-top: 1.7rem; color: var(--muted); font-size: clamp(1.25rem, 2.1vw, 1.65rem); }
.eyebrow { margin-bottom: 1.2rem; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.availability { display: flex; align-items: center; gap: .7rem; max-width: 710px; color: var(--muted); font-size: .95rem; }
.availability-dot { flex: 0 0 auto; width: .65rem; height: .65rem; border-radius: 50%; background: #1f9d69; box-shadow: 0 0 0 5px rgba(31, 157, 105, .12); }

.portrait-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 60, .12);
  border-radius: 2rem;
  background: var(--mint);
  box-shadow: var(--shadow);
}
.portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.portrait-caption { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .3rem; max-width: 270px; margin-top: auto; padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,.88); backdrop-filter: blur(10px); }
.portrait-caption span { color: var(--blue); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }

.section { padding: 7.5rem 0; }
.section-heading h2 { max-width: 850px; }
.section-heading .eyebrow { padding-top: .45rem; }
.section-tint { background: var(--white); }
.section-intro { margin-top: 1.5rem; color: var(--muted); font-size: 1.2rem; }
.career-note { margin-top: 2rem; padding: 1.15rem 1.25rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); }
.career-note-label { display: block; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.career-brands { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin-top: .8rem; }
.career-brand { display: flex; min-height: 4.2rem; align-items: center; justify-content: center; padding: .8rem; border: 1px solid var(--line); border-radius: .75rem; background: var(--white); }
.career-brand img { display: block; width: 100%; max-height: 2.1rem; object-fit: contain; }
.career-brand .microsoft-logo { max-width: 8.5rem; }
.career-brand .air-france-logo { max-width: 9.5rem; }
.career-note p { margin: .75rem 0 0; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.disclaimer { margin-top: 2rem; padding-left: 1rem; border-left: 3px solid var(--orange); color: var(--muted); font-size: .82rem; line-height: 1.55; }

.service-card, .engagement-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255,255,255,.56);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover, .engagement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3, .engagement-card h3 { margin: 1.2rem 0; }
.service-card p, .engagement-card p { color: var(--muted); }
.featured-card { border-color: rgba(39, 89, 199, .35); background: var(--white); box-shadow: var(--shadow); }
.card-number { color: var(--orange); font-size: .82rem; font-weight: 850; letter-spacing: .1em; }
.clean-list { padding: 1.5rem 0 0; margin: auto 0 0; list-style: none; }
.clean-list li { padding: .45rem 0; border-top: 1px solid var(--line); font-size: .92rem; font-weight: 650; }
.clean-list li::before { margin-right: .55rem; color: var(--blue); content: "→"; }

.experience-panel { padding: clamp(2rem, 5vw, 3.5rem); border-radius: 1.7rem; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.experience-panel p { color: #cbd2df; }
.experience-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.company-logo { display: block; width: auto; object-fit: contain; }
.nvidia-logo { height: 2.25rem; filter: brightness(0) invert(1); }
.location-pill { padding: .35rem .75rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.tech-label { margin: 2rem 0 .7rem; color: #ffffff !important; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.competency-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.tech-label + .competency-grid { margin-top: 0; }
.competency-grid span { padding: .5rem .8rem; border-radius: .6rem; color: var(--ink); background: var(--paper); font-size: .8rem; font-weight: 750; }

.card-kicker { margin-bottom: .5rem; color: var(--blue) !important; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-brand { display: flex; min-height: 3.5rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.card-brand .card-kicker { margin-bottom: 0; }
.partner-logo { display: block; flex: 0 0 auto; object-fit: contain; }
.cfdt-logo { width: 4.8rem; max-height: 3.2rem; }
.ngc-logo { width: 8.5rem; height: auto; }
.ngc-card { background: #f1e8da; }
.text-link { font-weight: 750; text-decoration: none; }
.engagement-card .text-link { margin-top: auto; padding-top: 1rem; }
.text-link:hover { text-decoration: underline; }

.board-section { padding-top: 1rem; }
.board-panel { padding: clamp(2.5rem, 6vw, 5rem); border-radius: 2rem; color: var(--white); background: var(--blue); box-shadow: var(--shadow); }
.board-panel h2 { max-width: 920px; }
.board-panel p:not(.eyebrow) { max-width: 840px; margin-top: 1.4rem; color: #e6ecfa; }
.board-panel .eyebrow { color: #ffd6ba; }
.board-panel .btn-light { color: var(--blue); }

.contact-section h2 { max-width: 950px; margin-inline: auto; }
.contact-lead { max-width: 700px; margin: 1.5rem auto 2rem; color: var(--muted); font-size: 1.15rem; }

footer { padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); }
  .hero { padding-top: 9.5rem; }
  .portrait-card { min-height: 370px; }
  .section { padding: 5.5rem 0; }
  .section-heading .eyebrow { padding-top: 0; }
}

@media (max-width: 575.98px) {
  body { font-size: 1rem; }
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2rem; }
  .hero { padding-bottom: 4.5rem; }
  .portrait-card { min-height: 330px; }
  .service-card, .engagement-card { padding: 1.5rem; }
  .card-brand { align-items: flex-start; }
  .ngc-logo { width: 7rem; }
  .availability { align-items: flex-start; }
  .availability-dot { margin-top: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
