:root {
  --blue: #0867d1;
  --blue-deep: #034ca7;
  --blue-dark: #062d5b;
  --blue-night: #031a3b;
  --ink: #1f2732;
  --muted: #65707e;
  --line: #dfe6ed;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --offwhite: #f3f5f7;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(15, 55, 95, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

body.intro-active { overflow: hidden; }
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fcfdff 0%, #f5f8fc 56%, #eaf0f7 100%);
  transition: opacity .58s ease, visibility .58s ease;
}
body.intro-complete .intro-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.intro-orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(8,103,209,.14), rgba(8,103,209,.03));
  filter: blur(2px);
}
.intro-orb-a {
  width: min(20vw, 270px);
  height: min(20vw, 270px);
  top: 10vh;
  left: -4vw;
  opacity: .28;
}
.intro-orb-b {
  width: min(14vw, 180px);
  height: min(14vw, 180px);
  right: 10vw;
  bottom: 18vh;
  opacity: .22;
}
.intro-brand-lockup {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px 108px;
}
.intro-emblem {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #0d417f 0%, #092d5c 100%);
  box-shadow: 0 18px 42px rgba(10, 49, 97, .14), inset 0 0 0 1px rgba(255,255,255,.09);
  transform: translateY(140px) scale(.78);
  opacity: 0;
  animation: introEmblemLift .84s cubic-bezier(.18,.8,.2,1) forwards;
  animation-delay: .16s;
  will-change: transform, opacity;
}
.intro-emblem-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.intro-copy-block {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.intro-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(2.6rem, 4.1vw, 4rem);
  line-height: .92;
  letter-spacing: -.055em;
  opacity: 0;
  transform: translateX(18px);
  animation: introCopyReveal .64s ease forwards;
  animation-delay: .64s;
}
.intro-wordmark-orca { color: #4c5d72; font-weight: 470; }
.intro-wordmark-clean { color: #11253b; font-weight: 760; }
.intro-tagline {
  margin: 0;
  color: #758291;
  font-size: .98rem;
  letter-spacing: .01em;
  opacity: 0;
  transform: translateX(18px);
  animation: introCopyReveal .62s ease forwards;
  animation-delay: .82s;
}
.intro-waterbed {
  position: absolute;
  left: 50%;
  bottom: max(14vh, 92px);
  width: min(700px, 86vw);
  height: 124px;
  transform: translateX(-50%);
  z-index: 2;
}
.intro-water-line,
.intro-ripple,
.intro-splash {
  position: absolute;
}
.intro-water-line {
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 2px solid rgba(8, 103, 209, .22);
  border-radius: 50%;
}
.intro-water-line-a {
  bottom: 18px;
  width: 100%;
  height: 18px;
}
.intro-water-line-b {
  bottom: 8px;
  width: 70%;
  height: 15px;
  opacity: .72;
}
.intro-water-line-c {
  bottom: 0;
  width: 82%;
  height: 10px;
  opacity: .42;
}
.intro-ripple {
  left: 112px;
  bottom: 12px;
  border-top: 2px solid rgba(8, 103, 209, .28);
  border-radius: 50%;
  opacity: 0;
}
.intro-ripple-a {
  width: 96px;
  height: 18px;
  animation: introRippleExpand .62s ease-out forwards;
  animation-delay: .2s;
}
.intro-ripple-b {
  width: 146px;
  height: 26px;
  transform: translate(-22px, 5px);
  animation: introRippleExpand .82s ease-out forwards;
  animation-delay: .26s;
}
.intro-splash {
  bottom: 24px;
  width: 38px;
  height: 38px;
  border-top: 2px solid rgba(8, 103, 209, .28);
  border-left: 2px solid rgba(8, 103, 209, .14);
  border-radius: 50%;
  opacity: 0;
}
.intro-splash-left {
  left: 96px;
  --rot: -28deg;
  transform: rotate(-28deg);
  animation: introSplashBurst .5s ease forwards;
  animation-delay: .18s;
}
.intro-splash-right {
  left: 148px;
  --rot: 24deg;
  transform: rotate(24deg);
  animation: introSplashBurst .5s ease forwards;
  animation-delay: .24s;
}
.showcase-chip-row,
.showcase-feature-card,
.showcase-metrics,
.hero-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
body.intro-complete .showcase-chip-row,
body.intro-complete .showcase-feature-card,
body.intro-complete .showcase-metrics,
body.intro-complete .hero-bottom {
  opacity: 1;
  transform: none;
}
body.intro-complete .showcase-chip-row { transition-delay: .08s; }
body.intro-complete .showcase-feature-card { transition-delay: .2s; }
body.intro-complete .showcase-metrics { transition-delay: .32s; }
body.intro-complete .hero-bottom { transition-delay: .44s; }
@keyframes introEmblemLift {
  0% {
    opacity: 0;
    transform: translateY(140px) scale(.78);
  }
  28% {
    opacity: 1;
  }
  68% {
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes introCopyReveal {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes introRippleExpand {
  0% {
    opacity: 0;
    transform: scale(.82);
  }
  25% {
    opacity: .9;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}
@keyframes introSplashBurst {
  0% {
    opacity: 0;
    transform: scale(.75) rotate(var(--rot, 0deg));
  }
  35% {
    opacity: .9;
  }
  100% {
    opacity: 0;
    transform: scale(1.08) rotate(var(--rot, 0deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
  .showcase-chip-row,
  .showcase-feature-card,
  .showcase-metrics,
  .hero-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
section[id] { scroll-margin-top: 104px; }
.section { padding: 116px 0; }
.section-kicker,
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.93);
  border-color: rgba(14,55,94,.09);
  box-shadow: 0 10px 35px rgba(13, 50, 87, .06);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { text-decoration: none; }
.brand-lockup { display: inline-flex; align-items: center; gap: 14px; }
.brand-icon-panel {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-dark);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}
.header-brand { gap: 11px; }
.header-brand-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.95rem, 2.3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.brand-orca { color: #6d7784; font-weight: 360; }
.brand-clean { color: #27313d; font-weight: 740; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { text-decoration: none; font-size: .93rem; font-weight: 650; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  min-height: 100vh;
  padding: 152px 0 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(12, 110, 220, .10), transparent 28%),
    linear-gradient(180deg, var(--offwhite) 0%, #fbfdff 100%);
  overflow: hidden;
}
.hero-grid {
  min-height: calc(100vh - 250px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 84px;
}
.hero-copy { padding: 30px 0 48px; }
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7.1vw, 7.1rem);
  line-height: .91;
  letter-spacing: -.072em;
  font-weight: 520;
}
.hero h1 span { color: var(--blue); }
.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 40px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(8, 103, 209, .24); }
.button-primary:hover { background: var(--blue-deep); box-shadow: 0 15px 34px rgba(8, 103, 209, .3); }
.text-link { font-weight: 760; text-decoration: none; border-bottom: 1px solid rgba(31,39,50,.25); padding-bottom: 3px; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,3px); }

.hero-showcase {
  position: relative;
  width: min(540px, 100%);
  min-height: 560px;
  margin-left: auto;
  border-radius: 28px;
  background: linear-gradient(145deg, #062b57 0%, #0a4b96 58%, #0f76cb 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(3, 34, 73, .19);
  overflow: hidden;
}
.showcase-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px;
}
.showcase-line,
.showcase-glow {
  position: absolute;
  pointer-events: none;
}
.showcase-line {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
}
.line-a {
  width: 92%;
  height: 56%;
  left: -16%;
  top: 12%;
  transform: rotate(-8deg);
}
.line-b {
  width: 84%;
  height: 42%;
  right: -8%;
  bottom: 10%;
  transform: rotate(11deg);
}
.showcase-glow {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.13), rgba(255,255,255,0) 70%);
}
.showcase-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.showcase-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.showcase-chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 710;
}
.showcase-chip-static {
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: none;
}
.showcase-chip-tab {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.92);
  box-shadow: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.showcase-chip-tab:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.22);
}
.showcase-chip-tab.is-active {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-color: rgba(255,255,255,.94);
}
.showcase-main {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding-top: 38px;
}
.showcase-kicker {
  margin: 0 0 14px;
  color: rgba(215,233,255,.86);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.showcase-main h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.85rem, 4.5vw, 4rem);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 540;
}
.showcase-copy {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .97rem;
  line-height: 1.68;
}
.showcase-feature-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(3,25,55,.28);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(8px);
}
.showcase-feature-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: inset 0 0 0 1px rgba(8,103,209,.08);
}
.showcase-feature-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.showcase-feature-copy small,
.showcase-metric small {
  display: block;
  margin-bottom: 7px;
  color: rgba(203,226,255,.82);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.showcase-feature-copy strong,
.showcase-metric strong {
  display: block;
  color: white;
  font-size: .94rem;
  line-height: 1.5;
}
.metric-value-mobile { display: none; }
.showcase-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.showcase-metric {
  min-height: 108px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(3,26,58,.32);
  border: 1px solid rgba(255,255,255,.09);
}
.showcase-metric-wide {
  grid-column: 1 / -1;
  min-height: auto;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
}
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-note {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 53, 91, .08);
  box-shadow: 0 12px 30px rgba(11, 44, 79, .05);
}
.hero-note small {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-note strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.52;
}

.split-intro { display: grid; grid-template-columns: .82fr 1.58fr; gap: 100px; }
.intro-statement h2,
.section-heading h2,
.approach h2,
.purpose h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.9vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 540;
}
.intro-statement p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.7;
}

.section-blue { color: white; background: var(--blue-dark); }
.section-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 70px; margin-bottom: 56px; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.65; }
.section-heading.light .section-kicker { color: #78baff; }
.section-heading.light > p { color: rgba(255,255,255,.68); }
.services.section {
  padding-top: 88px;
  padding-bottom: 108px;
}
.services-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 0;
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.services-heading .section-kicker {
  margin-bottom: 15px;
}
.services-heading h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.65vw, 4.55rem);
}
.services-heading > p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.65;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 36px 32px;
  overflow: hidden;
  border: 1px solid rgba(139, 198, 255, .17);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255,255,255,.064), rgba(255,255,255,.024));
  box-shadow:
    0 18px 42px rgba(1, 23, 52, .13),
    inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -112px;
  right: -88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,174,255,.09), rgba(93,174,255,0) 70%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139,198,255,.28);
  background: linear-gradient(155deg, rgba(255,255,255,.078), rgba(255,255,255,.032));
  box-shadow:
    0 22px 48px rgba(1, 23, 52, .18),
    inset 0 1px 0 rgba(255,255,255,.045);
}
.service-card-meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  color: #86c6ff;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}
.service-card-meta::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #73baff;
  opacity: .88;
}
.service-card-additional .service-card-meta {
  color: rgba(255,255,255,.68);
}
.service-card-additional .service-card-meta::before {
  background: rgba(255,255,255,.55);
}
.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.52rem;
  letter-spacing: -.03em;
  line-height: 1.18;
}
.service-card p {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,.73);
  line-height: 1.66;
}

.workplaces { background: var(--mist); }
.sector-list { border-top: 1px solid #cad7e2; }
.sector-list > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 28px 0;
  border-bottom: 1px solid #cad7e2;
}
.sector-list span { font-size: 1.45rem; font-weight: 700; letter-spacing: -.025em; }
.sector-list small { color: var(--muted); font-size: 1rem; line-height: 1.5; }

.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 115px; align-items: start; }
.approach-copy { position: sticky; top: 130px; }
.approach-copy > p:not(.section-kicker) { margin: 30px 0 32px; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { padding-top: 5px; color: var(--blue); font-size: .74rem; font-weight: 850; letter-spacing: .13em; }
.process-list h3 { margin: 0 0 10px; font-size: 1.55rem; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.65; }

.purpose {
  position: relative;
  color: white;
  background: #052956;
  overflow: hidden;
}
.purpose::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -240px;
  top: -310px;
  border-radius: 50%;
  background: rgba(17,121,229,.32);
  filter: blur(2px);
}
.purpose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
  align-items: center;
}
.purpose .section-kicker { color: #7ec0ff; }
.purpose-copy-block p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.78;
  color: rgba(255,255,255,.84);
}
.purpose-copy-block .purpose-note {
  margin-top: 24px;
  color: rgba(255,255,255,.58);
  font-size: .98rem;
}
.purpose-media {
  position: relative;
  min-height: 580px;
}
.purpose-carousel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(385px, 1fr) auto auto;
  min-height: 580px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 72px rgba(2, 28, 64, .25);
  background: rgba(255,255,255,.06);
}
.purpose-carousel-stage {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(24, 126, 211, .30), transparent 34%),
    linear-gradient(145deg, #062d59 0%, #041b36 58%, #03152b 100%);
}
.purpose-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 9px;
  padding: 32px;
  text-align: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.purpose-video-poster::before,
.purpose-video-poster::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 120px;
  border-top: 1px solid rgba(126, 192, 255, .22);
  border-radius: 50%;
}
.purpose-video-poster::before { bottom: 42px; }
.purpose-video-poster::after { bottom: 18px; opacity: .55; }
.purpose-video-poster img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 7px;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.18));
}
.purpose-video-poster span {
  color: white;
  font-size: 1.12rem;
  font-weight: 720;
  letter-spacing: -.015em;
}
.purpose-video-poster small {
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}
.purpose-carousel-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.purpose-carousel.is-video-ready .purpose-carousel-video { opacity: 1; }
.purpose-carousel.is-video-ready .purpose-video-poster {
  opacity: 0;
  visibility: hidden;
}
.purpose-carousel-gradient {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,23,45,.06) 0%, rgba(4,23,45,.04) 62%, rgba(4,23,45,.20) 100%),
    linear-gradient(90deg, rgba(4,23,45,.18) 0%, rgba(4,23,45,0) 42%);
}
.purpose-carousel-panel {
  position: relative;
  z-index: 2;
  padding: 22px 24px 20px;
  background: rgba(4, 22, 43, .82);
  border-top: 1px solid rgba(255,255,255,.10);
}
.purpose-carousel-panel small {
  display: block;
  margin-bottom: 9px;
  color: #8fcbff;
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.purpose-carousel-panel strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.38;
}
.purpose-carousel-panel p {
  max-width: 650px;
  margin: 9px 0 0;
  color: rgba(255,255,255,.76);
  font-size: .96rem;
  line-height: 1.62;
}
.purpose-carousel-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px 22px;
  background: rgba(3, 18, 38, .92);
}
.purpose-chip {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  font-size: .84rem;
  font-weight: 680;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.purpose-chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
}
.purpose-chip.is-active {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-color: rgba(255,255,255,.94);
}
.contact { background: #fbfdff; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.section-kicker) { margin: 30px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.72; }
.contact-direct { display: grid; gap: 6px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-direct span { color: var(--muted); font-size: .75rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { width: fit-content; color: var(--blue); font-size: 1.3rem; font-weight: 740; text-decoration: none; }
.contact-direct small { margin-top: 7px; color: var(--muted); }
.quote-form { padding: 40px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 9px; margin-bottom: 18px; color: #3a4551; font-size: .82rem; font-weight: 720; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #d5dfe8;
  border-radius: 12px;
  outline: none;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form input,
.quote-form select { min-height: 49px; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { background: white; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,103,209,.1); }
.form-button { width: 100%; margin-top: 3px; }
.form-note { margin: 15px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }

.site-footer {
  padding: 72px 0 30px;
  color: white;
  background: #08346b;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand { gap: 13px; }
.footer-brand .brand-orca { color: rgba(255,255,255,.76); }
.footer-brand .brand-clean { color: white; }
.footer-brand .brand-icon-panel {
  width: 62px;
  height: 62px;
  background: #072a54;
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.footer-brand .brand-icon { width: 46px; height: 46px; }
.footer-brand .brand-wordmark { font-size: 2.15rem; }
.footer-brand-full { align-items: center; }
.footer-top p { margin: 18px 0 0; color: rgba(255,255,255,.62); }
.footer-links { display: grid; grid-template-columns: repeat(2, max-content); justify-content: end; gap: 14px 42px; }
.footer-links a { color: rgba(255,255,255,.84); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.thank-you { min-height: 100vh; display: grid; place-items: center; padding: 48px 0; background: var(--mist); }
.thank-you-card { max-width: 720px; padding: 58px; text-align: center; background: white; border-radius: 28px; box-shadow: var(--shadow); }
.thank-you-lockup { justify-content: center; margin-bottom: 34px; }
.thank-you-card h1 { margin: 0; font-size: clamp(2.6rem, 7vw, 4.8rem); letter-spacing: -.055em; }
.thank-you-card p { margin: 22px auto 30px; max-width: 530px; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }

.legal { padding: 140px 0 90px; }
.legal article { max-width: 780px; }
.legal h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -.06em; }
.legal h2 { margin-top: 42px; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }

@keyframes orbitPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: .78; }
}
@keyframes orbitPulseAlt {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.05); opacity: .34; }
}
.orbit-b { animation-name: orbitPulseAlt; }

@media (max-width: 1080px) {
  .hero-showcase { width: min(500px, 100%); min-height: 540px; }
  .showcase-main { max-width: 100%; }
  .showcase-main h2 { font-size: 3.3rem; }
  .purpose-carousel { min-height: 540px; grid-template-rows: minmax(330px, 1fr) auto auto; }
}

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 760px; }
  .hero-showcase { width: min(560px, 100%); min-height: 540px; margin: 0 auto; }
  .split-intro, .section-heading, .approach-grid, .purpose-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 620px; }
  .approach-copy { position: static; }
  .purpose-copy-block { max-width: 700px; }
  .purpose-media { min-height: 540px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1180px); }
  .nav-wrap { height: 74px; }
  .brand-lockup { gap: 10px; }
  .brand-icon-panel { width: 46px; height: 46px; border-radius: 12px; }
  .brand-icon { width: 34px; height: 34px; }
  .header-brand-icon { width: 44px; height: 44px; }
  .brand-wordmark { font-size: 1.55rem; }
  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    border-radius: 50%;
  }
  .menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 14px; }
  .site-nav a::after { display: none; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 24px; }
  .hero-copy { padding-bottom: 24px; }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 5.6rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-showcase { min-height: 500px; border-radius: 24px; width: 100%; }
  .showcase-shell { padding: 24px; }
  .showcase-topline { flex-direction: column; gap: 10px; font-size: .72rem; }
  .showcase-chip-row { margin-top: 18px; }
  .showcase-main { max-width: 100%; padding-top: 22px; }
  .showcase-main h2 { font-size: 2.45rem; line-height: 1; }
  .showcase-copy { font-size: .98rem; }
  .showcase-feature-card { grid-template-columns: 56px 1fr; gap: 13px; }
  .showcase-feature-mark { width: 62px; height: 62px; }
  .showcase-feature-mark img { width: 44px; height: 44px; }
  .showcase-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .showcase-metric { min-height: auto; padding: 14px; border-radius: 16px; }
  .showcase-metric-wide { grid-column: 1 / -1; }
  .metric-value-desktop { display: none; }
  .metric-value-mobile { display: inline; }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.74);
    box-shadow: 0 14px 32px rgba(11, 44, 79, .05);
  }
  .hero-note {
    display: block;
    padding: 14px 0 15px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero-note:last-child { border-bottom: 0; }
  .hero-note small { margin: 0 0 5px; font-size: .66rem; }
  .hero-note strong { font-size: .88rem; line-height: 1.45; }
  .services.section { padding-top: 76px; padding-bottom: 86px; }
  .services-heading { margin-bottom: 38px; }
  .services-heading h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: auto; padding: 30px 28px 28px; }
  .service-card-meta { margin-bottom: 23px; }
  .sector-list > div { grid-template-columns: 1fr; gap: 8px; }
  .purpose-media { min-height: 520px; }
  .purpose-carousel { min-height: 520px; grid-template-rows: minmax(285px, 1fr) auto auto; }
  .purpose-carousel-stage { min-height: 285px; }
  .purpose-video-poster { padding: 24px; }
  .purpose-video-poster img { width: 66px; height: 66px; }
  .purpose-video-poster span { font-size: 1rem; }
  .purpose-carousel-panel { padding: 19px 18px 17px; }
  .purpose-carousel-nav { padding: 14px 18px 18px; gap: 8px; }
  .purpose-chip { font-size: .8rem; padding: 8px 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .footer-bottom { flex-direction: column; }
}

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


@media (max-width: 768px) {
  .intro-brand-lockup {
    flex-direction: column;
    gap: 14px;
    padding: 0 22px 104px;
    text-align: center;
  }
  .intro-copy-block {
    justify-items: center;
  }
   .intro-emblem {
    width: 78px;
    height: 78px;
  }
  .intro-wordmark { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .intro-tagline { font-size: .92rem; }
  .intro-waterbed {
    width: min(420px, 92vw);
    height: 120px;
    bottom: max(14vh, 78px);
  }
  .intro-ripple,
  .intro-splash {
    left: 50%;
  }
  .intro-ripple-a { transform: translateX(-50%); }
  .intro-ripple-b { transform: translateX(calc(-50% - 26px)) translateY(6px); }
  .intro-splash-left { transform: translateX(-34px) rotate(-28deg); }
  .intro-splash-right { transform: translateX(8px) rotate(24deg); }
}
