﻿:root {
  --navy-950: #071824;
  --navy-900: #0b2744;
  --navy-800: #12375c;
  --navy-700: #1a4f7a;
  --teal: #2cb8bc;
  --teal-dark: #1a8f93;
  --teal-soft: #d7f3f4;
  --coral: #e07a5f;
  --ink: #14202b;
  --muted: #5b6b78;
  --line: #d5e1ea;
  --paper: #f5f8fa;
  --sand: #f4eee6;
  --white: #fff;
  --shadow: 0 18px 50px rgba(11, 39, 68, 0.12);
  --radius: 22px;
  --wrap: 1180px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--teal); color: var(--navy-950); padding: 8px 14px;
}
.skip-link:focus { left: 8px; }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 14px; color: var(--teal-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 58ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: 0.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--navy-950); }
.btn-primary:hover { background: #49cdd1; }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy-900); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn-line { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }

.topbar {
  background: var(--navy-950); color: rgba(255,255,255,.78); font-size: 13px;
}
.topbar-inner {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar p { margin: 0; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--teal); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); display: inline-block; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
  min-height: 78px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img {
  height: 52px; width: auto; max-width: 220px; object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-on-dark {
  background: var(--white); padding: 10px 14px; border-radius: 14px; width: fit-content;
}
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link {
  text-decoration: none; padding: 10px 12px; font-size: 14px; font-weight: 600; color: var(--navy-800);
}
.nav-link:hover, .nav-link.is-active, .nav-item.is-active > .nav-link { color: var(--teal-dark); }
.nav-item { position: relative; }
.menu {
  position: absolute; top: calc(100% + 8px); left: 0; width: 340px;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); padding: 10px; display: none;
}
.nav-item:hover .menu, .nav-item:focus-within .menu { display: grid; }
.menu a {
  text-decoration: none; padding: 10px 12px; border-radius: 12px; display: grid; gap: 2px;
}
.menu a:hover { background: var(--paper); }
.menu strong { font-size: 14px; }
.menu span { font-size: 12px; color: var(--muted); font-weight: 400; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; margin: 6px auto; background: var(--navy-900);
}

.hero {
  position: relative; min-height: min(88vh, 820px); color: var(--white);
  display: grid; align-items: end; overflow-x: hidden;
  background: var(--navy-900) center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,36,.82) 0%, rgba(7,24,36,.45) 55%, rgba(7,24,36,.2) 100%),
    linear-gradient(180deg, rgba(7,24,36,.15), rgba(7,24,36,.55));
}
.hero-copy { position: relative; z-index: 1; padding: 90px 0 110px; width: min(740px, 100%); min-width: 0; }
.hero .eyebrow { color: var(--teal); }
.hero h1 { margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 40rem; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-orbit {
  position: absolute; right: -80px; top: 40px; width: 420px; height: 420px;
  border: 1px solid rgba(44,184,188,.35); border-radius: 50%; pointer-events: none;
}
.hero-orbit::after {
  content: ""; position: absolute; inset: 42px; border: 1px dashed rgba(44,184,188,.28); border-radius: 50%;
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 380px; }
.split-card {
  position: relative; overflow: hidden; padding: 56px 40% 56px 48px; color: var(--white);
  display: grid; align-content: center; min-height: 360px;
}
.split-card.hiring { background: var(--navy-900); }
.split-card.looking { background: #c45c45; }
.split-card h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 12px; }
.split-card p { max-width: 36ch; color: rgba(255,255,255,.86); margin-bottom: 24px; }
.split-photo {
  position: absolute; right: 0; bottom: 0; width: min(42%, 280px);
  pointer-events: none;
}
.split-photo img { width: 100%; height: auto; }

.stats {
  background: var(--paper); border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0;
}
.stat h3 { font-family: var(--serif); font-size: 2rem; color: var(--navy-900); }
.stat p { color: var(--muted); font-size: 14px; }

.service-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.service-card {
  grid-column: span 2; text-decoration: none; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:nth-child(4),
.service-card:nth-child(5) { grid-column: span 3; }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card div { padding: 22px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }

.about-grid, .two-col, .process-grid, .office-grid, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; }
.photo-note {
  position: absolute; left: 20px; bottom: 20px; background: var(--navy-900); color: var(--white);
  padding: 16px 18px; border-radius: 16px; font-family: var(--serif); font-size: 1.25rem;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feature {
  padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper);
}
.feature h4 { font-size: 15px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; }

.process { background: var(--navy-950); color: var(--white); }
.process .lede, .process p { color: rgba(255,255,255,.72); }
.steps { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: var(--navy-950); font-weight: 800;
}
.process-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; }

.skills-row { display: flex; align-items: center; gap: 12px; }
.skills-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 16px; overflow: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
}
.skill-card { scroll-snap-align: start; text-decoration: none; }
.skill-card img { width: 100%; height: 210px; object-fit: cover; border-radius: 20px; }
.skill-card span {
  display: flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 700;
}
.icon-btn {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); cursor: pointer;
}

.jobs-panel {
  background: var(--paper); border-radius: 32px; padding: 48px 40px;
}
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.job-card, .job-row {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; text-decoration: none; display: grid; gap: 10px;
}
.job-card:hover, .job-row:hover { border-color: var(--teal); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: var(--teal-soft); color: var(--navy-800);
}
.job-loc { color: var(--muted); font-size: 13px; font-weight: 600; }
.job-link { color: var(--teal-dark); font-weight: 700; font-size: 14px; }

.offices { background: var(--paper); }
.office-card {
  background: var(--white); border-radius: 22px; padding: 28px; border: 1px solid var(--line);
}
.flag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px;
}
.office-card a { display: block; color: var(--navy-800); text-decoration: none; font-weight: 600; }

.quote-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: center;
  background: var(--sand); border-radius: 32px; padding: 32px; min-height: 340px;
}
.quote-card img { width: 100%; height: 320px; object-fit: cover; border-radius: 22px; }
.quote-card blockquote {
  margin: 0 0 22px; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
}
.quote-card[data-quote] { display: none; }
.quote-card.is-active { display: grid; }
.stars { color: #c9972a; letter-spacing: 2px; }
.quote-dots { display: flex; gap: 8px; margin-top: 22px; }
.quote-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer;
}
.quote-dots button.is-active { background: var(--navy-900); }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card {
  text-decoration: none; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  background: var(--white);
}
.insight-card img { width: 100%; height: 200px; object-fit: cover; }
.insight-card div { padding: 20px; }
.insight-card small { color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; }
.insight-card h3 { margin: 8px 0 10px; font-size: 1.25rem; }

.cta-band { background: var(--navy-900); color: var(--white); padding: 72px 0; }
.cta-band-inner { display: flex; justify-content: space-between; gap: 32px; align-items: end; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.74); max-width: 52ch; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.1fr; gap: 32px; }
.footer-brand p { margin: 18px 0; max-width: 36ch; }
.site-footer h3 { color: var(--white); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--teal); }
.site-footer li + li { margin-top: 8px; }
.footer-office { margin-bottom: 18px; font-size: 14px; }
.footer-office a { color: var(--teal); }
.social { display: flex; gap: 8px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; font-size: 12px; font-weight: 800; text-transform: uppercase;
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px;
}
.footer-bottom a { margin-left: 16px; }

.page-hero {
  background: var(--navy-900); color: var(--white); padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero h1 { max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 58ch; margin-top: 16px; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumbs a { color: var(--teal); text-decoration: none; }

.prose { max-width: 74ch; }
.prose h2, .prose h3 { margin: 1.6em 0 .6em; }
.prose ul, .check-list { padding-left: 0; display: grid; gap: 10px; }
.check-list li, .prose ul li {
  padding-left: 28px; position: relative;
}
.check-list li::before, .prose ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--teal);
}

.form {
  display: grid; gap: 16px; background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  background: var(--paper); color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--teal); outline-offset: 1px; background: var(--white);
}
.is-invalid { border-color: #c45c45 !important; }
.form-note { font-size: 13px; color: var(--muted); }
.alert {
  padding: 14px 16px; border-radius: 14px; background: var(--teal-soft); color: var(--navy-900);
  font-weight: 600;
}
.alert.error { background: #fde8e3; color: #8a2f1d; }

.filters {
  display: grid; grid-template-columns: 1.4fr repeat(3, .8fr); gap: 12px; margin-bottom: 22px;
}
.job-list { display: grid; gap: 12px; }
.job-row {
  grid-template-columns: 1fr auto; align-items: center;
}

.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-item button {
  width: 100%; text-align: left; background: var(--white); border: 0; padding: 16px 18px;
  font-weight: 700; cursor: pointer;
}
.faq-item div { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq-item.is-open div { display: block; }

.article { display: grid; grid-template-columns: minmax(0, 720px) 280px; gap: 48px; }
img.article-hero { width: 100%; height: 380px; object-fit: cover; border-radius: 24px; margin: 0 0 32px; }
.side-card {
  position: sticky; top: 110px; background: var(--paper); border-radius: 20px; padding: 22px;
}

.to-top {
  position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--navy-900); color: var(--white); cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.card-list { display: grid; gap: 16px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric {
  padding: 24px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line);
}
.metric strong { display: block; font-family: var(--serif); font-size: 2rem; }

.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry {
  padding: 28px; border-radius: 22px; border: 1px solid var(--line); min-height: 220px;
  display: grid; align-content: end; background: var(--white) center/cover no-repeat;
  color: var(--white); position: relative; overflow: hidden; text-decoration: none;
}
.industry::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,36,.1), rgba(7,24,36,.82));
}
.industry > * { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav {
    position: fixed; inset: 116px 16px auto; background: var(--white);
    border: 1px solid var(--line); border-radius: 18px; display: none;
    flex-direction: column; align-items: stretch; padding: 12px; box-shadow: var(--shadow);
  }
  body.nav-open .nav { display: flex; }
  .menu { position: static; width: auto; display: none; box-shadow: none; border: 0; padding: 0 0 0 8px; }
  .nav-item.is-open .menu { display: grid; }
  .nav-item:hover .menu { display: none; }
  .nav-item.is-open:hover .menu { display: grid; }
  .menu-toggle { display: block; }
  .split, .about-grid, .two-col, .process-grid, .office-grid, .contact-grid,
  .quote-card, .quote-card.is-active, .article, .cta-band-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-grid, .job-grid, .insight-grid, .stats-grid, .industries, .metric-row, .feature-grid, .form-row, .filters {
    grid-template-columns: 1fr 1fr;
  }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
  .split-photo { width: 160px; opacity: .95; }
  .split-card { padding: 36px 24px 130px; }
  .hide-md { display: none !important; }
  .quote-card img { height: 240px; }
}

@media (max-width: 720px) {
  .wrap { width: min(var(--wrap), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .service-grid, .job-grid, .insight-grid, .stats-grid, .industries, .metric-row, .feature-grid, .form-row, .filters, .job-row {
    grid-template-columns: 1fr;
  }
  .hide-sm { display: none !important; }
  .hero-copy { padding: 56px 0 80px; }
  .hero h1 { font-size: 2.15rem; }
  .hero .eyebrow { max-width: 28ch; white-space: normal; }
  .hero-orbit { display: none; }
  .jobs-panel { padding: 28px 18px; }
  .photo-frame img, .process-photo img { height: 320px; }
  .split-card { padding: 36px 24px 130px; }
}

.px-inner-page .oit-header-area,
.px-inner-page .oit-header-transparent {
  background: #fff;
}
.px-inner-page .page-hero {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #0b2744 url("../img/shape/breadcrumb-bg.png") center/cover no-repeat;
  color: #fff;
}
.px-inner-page .page-hero a { color: #fff; }
.px-inner-page .oit-breadcrumb-area {
  background-color: #0b2744;
  background-image: url("../img/shape/breadcrumb-bg.png");
  background-size: cover;
  background-position: center;
}

