/* ==========================================================================
   Horizon & Blueprint - Global Stylesheet
   Corporate, elegant, bright. Navy drawn from the H&B mark.
   ========================================================================== */

:root {
  --navy: #2e3a64;
  --navy-deep: #1b2340;
  --ink: #141a30;
  --slate: #5b6478;
  --mist: #8b93a7;
  --line: #dfe4f0;
  --cloud: #eaeff8;
  --tint-blue: #e3eafb;
  --paper: #ffffff;
  --accent: #2f6bff;
  --accent-soft: #e3ecff;

  --font-display: "Archivo", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", "SFMono-Regular", monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--navy); color: #fff; }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ------------------------------------------------------------------ */
/* Typography helpers                                                  */
/* ------------------------------------------------------------------ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.eyebrow::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(23px, 2.6vw, 33px);
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lede {
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--slate);
  max-width: 62ch;
}

.text-em {
  font-style: normal;
  color: var(--navy);
}

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 900;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.hidden { transform: translateY(-100%); }

body.menu-open .site-header {
  z-index: 1001;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  transform: none;
}

.header-inner {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1002;
  position: relative;
}

.brand-mark { width: 58px; height: auto; flex-shrink: 0; }

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-word .b1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.brand-word .b2 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .site-header { height: auto; min-height: var(--header-h); padding-block: 14px; }
  .brand-mark { width: 38px; }
  .brand { gap: 10px; }
  .brand-word .b1 { font-size: 11px; letter-spacing: 0.08em; }
  .brand-word .b2 { display: none; }
  .menu-trigger .mt-label { display: none; }
  .menu-trigger .mt-icon { width: 40px; height: 40px; }
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

@media (max-width: 820px) { .header-tagline { display: none; } }

/* Menu trigger - circular morphing button */
.menu-trigger {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: 6px 0;
}

.menu-trigger .mt-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s;
}

.menu-trigger .mt-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: background 0.35s var(--ease-out), border-color 0.35s;
  position: relative;
}

.menu-trigger .mt-icon span {
  position: absolute;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-swift), background 0.3s, width 0.3s;
}

.menu-trigger .mt-icon span:nth-child(1) { transform: translateY(-4px); }
.menu-trigger .mt-icon span:nth-child(2) { transform: translateY(4px); width: 12px; margin-left: -6px; }

.menu-trigger:hover .mt-icon { background: var(--navy); border-color: var(--navy); }
.menu-trigger:hover .mt-icon span { background: #fff; }
.menu-trigger:hover .mt-icon span:nth-child(2) { width: 18px; margin-left: 0; }

body.menu-open .menu-trigger .mt-icon { background: var(--navy); border-color: var(--navy); }
body.menu-open .menu-trigger .mt-icon span { background: #fff; }
body.menu-open .menu-trigger .mt-icon span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .menu-trigger .mt-icon span:nth-child(2) { transform: rotate(-45deg); width: 18px; margin-left: 0; }

/* ------------------------------------------------------------------ */
/* Full-screen menu overlay                                            */
/* ------------------------------------------------------------------ */

/* Directory-panel dropdown - anchored under the header, not a full-screen takeover */

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(20, 26, 48, 0.25);
  transform: translateY(-6px);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
  transition: clip-path 0.5s var(--ease-swift), opacity 0.3s, transform 0.5s var(--ease-swift), visibility 0s linear 0.5s;
}

body.menu-open .mega-menu {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: clip-path 0.55s var(--ease-swift), opacity 0.4s, transform 0.55s var(--ease-swift);
}

.menu-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: calc(var(--header-h) + 36px) 0 44px;
}

.menu-col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-col ul li { margin-bottom: 4px; }

.mp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-10px);
  transition: color 0.25s, transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

body.menu-open .mp-link { opacity: 1; transform: translateX(0); }

.menu-col:nth-child(1) .mp-link:nth-child(1) { transition-delay: .05s; }
.menu-col:nth-child(1) li:nth-child(2) .mp-link { transition-delay: .09s; }
.menu-col:nth-child(1) li:nth-child(3) .mp-link { transition-delay: .13s; }
.menu-col:nth-child(1) li:nth-child(4) .mp-link { transition-delay: .17s; }
.menu-col:nth-child(2) li:nth-child(1) .mp-link { transition-delay: .11s; }
.menu-col:nth-child(2) li:nth-child(2) .mp-link { transition-delay: .15s; }
.menu-col:nth-child(2) li:nth-child(3) .mp-link { transition-delay: .19s; }

.mp-link::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.mp-link:hover { color: var(--accent); }
.mp-link:hover::before { width: 14px; }

.mp-link.is-current { color: var(--accent); }
.mp-link.is-current::before { width: 14px; background: var(--accent); }

.menu-directory {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 26px 26px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 0.15s, transform 0.5s var(--ease-out) 0.15s;
}

body.menu-open .menu-directory { opacity: 1; transform: translateY(0); }

.menu-office {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-office:last-of-type { border-bottom: none; }

.mo-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.mo-tz {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.menu-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s var(--ease-out);
}

.menu-cta-link:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }

@media (max-width: 860px) {
  .menu-panel { grid-template-columns: 1fr 1fr; }
  .menu-directory { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .menu-panel { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 20px); }
  .mega-menu { overflow-y: auto; max-height: 100vh; }
}

/* ------------------------------------------------------------------ */
/* Section-dot navigation (right edge scrollspy)                       */
/* ------------------------------------------------------------------ */

.dot-nav {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dot-nav a {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: 1px solid var(--mist);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.dot-nav a:hover, .dot-nav a.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
}

.dot-nav a .dot-label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}

.dot-nav a:hover .dot-label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 1100px) { .dot-nav { display: none; } }

/* ------------------------------------------------------------------ */
/* Hero - home                                                         */
/* ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  background: var(--paper);
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 70% at 70% 30%, black 15%, transparent 75%);
  mask-image: radial-gradient(80% 70% at 70% 30%, black 15%, transparent 75%);
}

.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  top: calc(var(--header-h) + 22px);
  right: 22px;
  bottom: 22px;
  left: 22px;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent));
  background-size: 20px 2px, 2px 20px, 20px 2px, 2px 20px, 20px 2px, 2px 20px, 20px 2px, 2px 20px;
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vh, 84px);
}

.hero-copy { max-width: 900px; }

.hero-copy .display-xl .line {
  display: block;
  overflow: hidden;
}

.hero-copy .display-xl .line > span {
  display: block;
  transform: translateY(112%);
  animation: riseUp 1s var(--ease-swift) forwards;
}

.hero-copy .display-xl .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-copy .display-xl .line:nth-child(3) > span { animation-delay: 0.24s; }

@keyframes riseUp { to { transform: translateY(0); } }

.hero-copy .lede {
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--mist), transparent);
  animation: cueDrop 1.8s var(--ease-out) infinite;
}

@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-height: 860px), (max-width: 900px) {
  .hero-scroll-cue { display: none; }
}

/* ------------------------------------------------------------------ */
/* Interior page hero                                                  */
/* ------------------------------------------------------------------ */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(60px, 12vh, 130px)) 0 clamp(50px, 9vh, 100px);
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero .ph-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.page-hero .crumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 26px;
}

.page-hero .crumb a:hover { color: var(--accent); }

.page-hero .display-xl, .page-hero .display-lg { max-width: 18ch; }

.page-hero .lede { margin-top: 26px; }

.page-hero .hero-index {
  position: absolute;
  right: var(--gutter);
  top: calc(var(--header-h) + 26px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  z-index: 1;
  user-select: none;
}

.page-hero .hero-index::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 720px) { .page-hero .hero-index { display: none; } }

.page-hero .container { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ */
/* Ticker / marquee                                                    */
/* ------------------------------------------------------------------ */

.ticker {
  padding: 18px 0;
  overflow: hidden;
  background: var(--accent-soft);
}

.ticker-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-track .tk {
  display: flex;
  align-items: center;
  gap: 64px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.ticker-track .tk i {
  font-style: normal;
  color: var(--accent);
  font-size: 10px;
}

/* ------------------------------------------------------------------ */
/* Generic sections                                                    */
/* ------------------------------------------------------------------ */

.section { padding: clamp(70px, 12vh, 130px) 0; position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }
.section:last-of-type { border-bottom: none; }
.section.tint { background: var(--cloud); }
.section.tint-blue { background: var(--tint-blue); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(40px, 7vh, 70px);
}

.section-head .display-lg { max-width: 22ch; }

@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; align-items: start; } }

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--navy);
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  will-change: transform;
}

.btn .b-arrow { transition: transform 0.35s var(--ease-out); }

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 16px 34px -14px rgba(47, 107, 255, 0.55);
}

.btn:hover .b-arrow { transform: translateX(5px); }

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn.ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(27, 35, 64, 0.4);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.3s, gap 0.3s var(--ease-out);
}

.link-more:hover { color: var(--accent); gap: 16px; }

/* ------------------------------------------------------------------ */
/* Stats                                                               */
/* ------------------------------------------------------------------ */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.stat-cell {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease-out);
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--accent-soft); }

.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.stat-cell .num .suffix { font-size: 0.55em; color: var(--accent); margin-left: 2px; }

.stat-cell .lbl {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

@media (max-width: 860px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ------------------------------------------------------------------ */
/* Capability cards                                                    */
/* ------------------------------------------------------------------ */

.cap-rows { border-top: 1px solid var(--line); }

.cap-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.4fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding: clamp(26px, 4vh, 42px) 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s var(--ease-out), background 0.4s;
}

.cap-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out);
}

.cap-row:hover { padding-left: 28px; background: linear-gradient(to right, var(--accent-soft), transparent 65%); }
.cap-row:hover::before { transform: scaleY(1); }

.cap-row .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.cap-row .cap-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
}

.cap-row .cap-desc { font-size: 15px; color: var(--slate); max-width: 52ch; }

.cap-row .cap-go {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--navy);
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}

.cap-row:hover .cap-go {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .cap-row { grid-template-columns: 1fr auto; }
  .cap-row .idx { display: none; }
  .cap-row .cap-desc { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------------ */
/* Feature / capability detail blocks                                  */
/* ------------------------------------------------------------------ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(50px, 9vh, 90px) 0;
  border-bottom: 1px solid var(--line);
}

.feature-block:last-child { border-bottom: none; }
.feature-block.flip .fb-media { order: 2; }

.fb-media {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 34px 70px -30px rgba(27, 35, 64, 0.3);
}

.fb-media img {
  width: 100%;
  height: clamp(300px, 44vh, 440px);
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.feature-block:hover .fb-media img { transform: scale(1.05); }

.fb-media .fb-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 100px;
}

.fb-copy .display-md { margin-bottom: 18px; }
.fb-copy p { color: var(--slate); margin-bottom: 16px; }

.fb-points { margin-top: 24px; display: grid; gap: 12px; }

.fb-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 16px;
  background: var(--cloud);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.fb-points li:hover { transform: translateX(6px); background: var(--accent-soft); }

@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr; }
  .feature-block.flip .fb-media { order: 0; }
}

/* ------------------------------------------------------------------ */
/* Industry tabs                                                       */
/* ------------------------------------------------------------------ */

.industry-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.industry-tabs { display: flex; flex-direction: column; border-left: 1px solid var(--line); }

.industry-tab {
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  margin-left: -1.5px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  color: var(--mist);
  transition: color 0.3s, border-color 0.3s, padding-left 0.3s var(--ease-out);
}

.industry-tab:hover { color: var(--navy); padding-left: 32px; }

.industry-tab.active {
  color: var(--ink);
  border-left-color: var(--accent);
  padding-left: 32px;
}

.industry-panel { position: relative; min-height: 430px; }

.industry-pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
}

.industry-pane.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.industry-pane .ip-media {
  border-radius: 6px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 22px;
}

.industry-pane .ip-media img { width: 100%; height: 100%; object-fit: cover; }

.industry-pane h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; }
.industry-pane p { color: var(--slate); font-size: 15px; max-width: 60ch; }

.industry-pane .ip-links { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--accent-soft);
  border: 1px solid transparent;
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}

.chip:hover { border-color: var(--accent); }

@media (max-width: 860px) {
  .industry-shell { grid-template-columns: 1fr; }
  .industry-tabs { flex-direction: row; overflow-x: auto; border-left: none; border-bottom: 1px solid var(--line); }
  .industry-tab { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; padding: 12px 18px; }
  .industry-tab.active { border-bottom-color: var(--accent); }
  .industry-panel { min-height: 520px; }
}

/* ------------------------------------------------------------------ */
/* Card grid (industries page, insights, values)                       */
/* ------------------------------------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) { .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; } }

.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
}

.tile:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 30px 60px -22px rgba(27, 35, 64, 0.28);
}

.tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.tile:hover::after { transform: scaleX(1); }

.tile .tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy);
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-out);
}

.tile:hover .tile-icon { background: var(--navy); color: #fff; transform: rotate(-6deg) scale(1.06); }

.tile h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.tile p { font-size: 14.5px; color: var(--slate); }

.tile .tile-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.3s, gap 0.3s var(--ease-out);
}

.tile:hover .tile-more { color: var(--accent); gap: 12px; }

.tile .tile-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--cloud);
  line-height: 1;
  transition: color 0.35s;
}

.tile:hover .tile-num { color: var(--accent-soft); }

/* Photo cards */
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(27, 35, 64, 0.3);
}

.photo-card .pc-media { height: 220px; overflow: hidden; }

.photo-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.photo-card:hover .pc-media img { transform: scale(1.07); }

.photo-card .pc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }

.photo-card .pc-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.photo-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.photo-card p { font-size: 14px; color: var(--slate); }

.photo-card .pc-meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--mist);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
}

/* ------------------------------------------------------------------ */
/* Global presence                                                     */
/* ------------------------------------------------------------------ */

.globe-section { position: relative; }

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) { .office-grid { grid-template-columns: 1fr; } }

.office-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.office-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.9s var(--ease-out), filter 0.5s;
  filter: saturate(0.85);
}

.office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20, 26, 48, 0.92) 0%, rgba(20, 26, 48, 0.55) 45%, rgba(20, 26, 48, 0.25) 100%);
  transition: background 0.5s;
}

.office-card:hover img { transform: scale(1.06); filter: saturate(1); }

.office-card .oc-body { padding: 30px; width: 100%; }

.office-card .oc-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.office-card .oc-city {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.office-card .oc-country {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.office-card .oc-addr {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.office-card .oc-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.3s;
}

.office-card:hover .oc-directions { opacity: 1; transform: translateY(0); }
.office-card:hover .oc-directions { border-color: var(--accent); }

.office-card .oc-tz {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */

.cta-band {
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(47, 107, 255, 0.25), transparent 55%),
    var(--navy-deep);
  color: #fff;
  padding: clamp(70px, 12vh, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-band .display-lg { color: #fff; max-width: 20ch; }

.cta-band .lede { color: rgba(255, 255, 255, 0.78); }

.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 40px;
}

@media (max-width: 820px) { .cta-inner { grid-template-columns: 1fr; } }

.cta-band .btn { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.cta-orbit {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orbit::before, .cta-orbit::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-orbit::after { inset: 130px; border-color: rgba(255, 255, 255, 0.08); }

/* ------------------------------------------------------------------ */
/* Timeline (about)                                                    */
/* ------------------------------------------------------------------ */

.timeline { position: relative; padding-left: 40px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.tl-item { position: relative; padding-bottom: 46px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  transition: background 0.3s, transform 0.3s;
}

.tl-item:hover::before { background: var(--accent); transform: scale(1.25); }

.tl-item .tl-year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.tl-item h4 { font-size: 17px; font-weight: 600; margin: 6px 0 8px; }
.tl-item p { font-size: 14.5px; color: var(--slate); max-width: 56ch; }

.tl-item .tl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ------------------------------------------------------------------ */
/* Accordion                                                           */
/* ------------------------------------------------------------------ */

.accordion { border-top: 1px solid var(--line); }

.acc-item { border-bottom: 1px solid var(--line); }

.acc-head {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 8px;
  text-align: left;
  transition: padding-left 0.35s var(--ease-out);
}

.acc-head:hover { padding-left: 20px; }

.acc-head .acc-title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
}

.acc-head .acc-sub { font-size: 13px; color: var(--mist); margin-top: 4px; display: block; font-family: var(--font-body); font-weight: 400; }

.acc-head .acc-plus {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.45s var(--ease-swift);
}

.acc-head .acc-plus::before, .acc-head .acc-plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: background 0.3s;
}

.acc-head .acc-plus::before { width: 14px; height: 1.5px; }
.acc-head .acc-plus::after { width: 1.5px; height: 14px; }

.acc-item.open .acc-plus { background: var(--navy); border-color: var(--navy); transform: rotate(135deg); }
.acc-item.open .acc-plus::before, .acc-item.open .acc-plus::after { background: #fff; }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-swift);
}

.acc-body-inner { padding: 0 8px 30px; color: var(--slate); font-size: 15px; max-width: 72ch; }

.acc-body-inner .chips { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
}

@media (max-width: 900px) { .contact-shell { grid-template-columns: 1fr; } }

.contact-info .ci-block { margin-bottom: 34px; }

.contact-info .ci-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 10px;
}

.contact-info .ci-value { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-info .ci-value a:hover { color: var(--accent); }

.form-field { position: relative; margin-bottom: 30px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 2px 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field label {
  position: absolute;
  left: 2px;
  top: 14px;
  font-size: 15px;
  color: var(--mist);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select.has-value + label {
  top: -12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-field .bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.form-field input:focus ~ .bar,
.form-field textarea:focus ~ .bar,
.form-field select:focus ~ .bar { transform: scaleX(1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--navy);
  border-radius: 8px;
  padding: 22px 26px;
  font-size: 15px;
  margin-top: 10px;
}

.form-success.visible { display: block; animation: fadeUp 0.5s var(--ease-out); }

/* ------------------------------------------------------------------ */
/* Next-page footer link                                               */
/* ------------------------------------------------------------------ */

.next-page {
  display: block;
  position: relative;
  background: var(--cloud);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 12vh, 110px) 0;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
}

.next-page:hover { background: var(--navy-deep); }

.next-page .np-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 14px;
  transition: color 0.4s;
}

.next-page .np-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  transition: color 0.4s, transform 0.6s var(--ease-out);
}

.next-page .np-title .np-arrow {
  font-size: 0.55em;
  color: var(--accent);
  transition: transform 0.5s var(--ease-out);
}

.next-page:hover .np-kicker { color: rgba(255, 255, 255, 0.6); }
.next-page:hover .np-title { color: #fff; transform: translateX(20px); }
.next-page:hover .np-title .np-arrow { transform: translateX(14px); }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 9vh, 90px) 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 56px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: var(--slate);
  max-width: 34ch;
  margin-top: 18px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.footer-col ul a:hover { color: var(--accent); padding-left: 8px; }

.footer-col .addr {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-col .addr strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--mist);
}

.footer-bottom .fine a:hover { color: var(--accent); }
.footer-bottom .fine { display: flex; gap: 24px; }

/* ------------------------------------------------------------------ */
/* Reveal-on-scroll                                                    */
/* ------------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}

.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ------------------------------------------------------------------ */
/* Values / leadership                                                 */
/* ------------------------------------------------------------------ */

.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .leader-grid { grid-template-columns: 1fr; } }

.quote-band {
  padding: clamp(70px, 12vh, 120px) 0;
  text-align: center;
  background: var(--tint-blue);
  border-bottom: 1px solid var(--line);
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
  max-width: 26ch;
  margin: 0 auto;
}

.quote-band cite {
  display: block;
  margin-top: 26px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

/* Careers perks */
.perk-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .perk-list { grid-template-columns: 1fr; } }

.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  background: var(--paper);
}

.perk:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(27, 35, 64, 0.25); }

.perk .p-ico { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.perk h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.perk p { font-size: 13.5px; color: var(--slate); }

/* Merger banner */
.merger-note {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(to right, var(--accent-soft), transparent);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px 26px;
  margin-top: 40px;
}

.merger-note .mn-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 7px 14px;
  border-radius: 100px;
}

.merger-note p { font-size: 14.5px; color: var(--ink); }
.merger-note a { color: var(--accent); font-weight: 600; }

/* Approach steps (horizontal scroll-snap) */
.steps-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.steps-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.steps-rail.is-dragging .step-card { pointer-events: none; }

.steps-rail::-webkit-scrollbar { height: 8px; }
.steps-rail::-webkit-scrollbar-track { background: var(--cloud); border-radius: 10px; }
.steps-rail::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }
.steps-rail::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.step-card {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.step-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(27, 35, 64, 0.25); }

.step-card .sc-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--slate); }
