:root {
  --navy-950: #071325;
  --navy-900: #0d1d38;
  --navy-800: #183057;
  --navy-700: #26477c;
  --steel-500: #5f7ea7;
  --steel-300: #abc0d8;
  --cloud-100: #f4f6f8;
  --cloud-200: #eef1f4;
  --sand-100: #f8f6f1;
  --white: #ffffff;
  --ink-900: #122033;
  --ink-700: #415066;
  --ink-500: #6e7a8b;
  --line: rgba(18, 32, 51, 0.1);
  --line-strong: rgba(18, 32, 51, 0.18);
  --shadow-soft: 0 24px 70px rgba(8, 21, 42, 0.08);
  --shadow-glass: 0 28px 80px rgba(10, 19, 37, 0.24);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --site-width: min(1200px, calc(100vw - 48px));
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(171, 192, 216, 0.28), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, #f6f7f8 42%, #f8f6f1 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--site-width);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled,
body[data-nav-theme='transparent'] .site-header {
  border-color: rgba(18, 32, 51, 0.08);
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.05);
}

body[data-nav-theme='transparent'] .site-header {
  background: rgba(255, 255, 255, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-dot-cluster {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-dot-cluster span {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #25477f, #183057);
  box-shadow: 0 10px 25px rgba(38, 71, 124, 0.18);
}

.brand-dot-cluster span:nth-child(1) { width: 22px; height: 22px; top: 0; left: 0; }
.brand-dot-cluster span:nth-child(2) { width: 14px; height: 14px; top: 4px; right: 6px; }
.brand-dot-cluster span:nth-child(3) { width: 10px; height: 10px; left: 12px; bottom: 6px; }
.brand-dot-cluster span:nth-child(4) { width: 6px; height: 6px; right: 10px; bottom: 12px; }
.brand-dot-cluster span:nth-child(5) { width: 4px; height: 4px; right: 0; bottom: 2px; }

.brand-type {
  display: grid;
  gap: 2px;
}

.brand-type strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-type small {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--ink-700);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-700), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 15px 24px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.button span {
  position: relative;
  top: 1px;
}

.button:hover,
button.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(24, 48, 87, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(18, 32, 51, 0.12);
  color: var(--ink-900);
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  box-shadow: 0 24px 45px rgba(9, 21, 43, 0.18);
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.site-header.is-scrolled.is-on-dark .site-nav a, .site-header.is-scrolled.is-on-dark .site-nav a.is-active {
  color: var(--ink-900);
}

.site-header.is-on-dark.is-scrolled a.button.button-primary {
  background: var(--ac-navy);
}
img.logo-img {
  width: 75%;
}
img.footer-logo-img {
  width: 75%;
}
section.section.principle-rail{
  background: var(--cloud-100);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 700;
  padding: 0;
  border: 0;
  background: none;
}

.text-link::after {
  content: '->';
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink-900);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 72px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(171, 192, 216, 0.42), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(95, 126, 167, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 246, 241, 0.84));
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: auto 6% 8% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.7), rgba(255,255,255,0));
  filter: blur(10px);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb-one {
  inset: 90px auto auto -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(171, 192, 216, 0.5), rgba(171, 192, 216, 0));
}

.hero-orb-two {
  inset: auto 8% 100px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(38, 71, 124, 0.18), rgba(38, 71, 124, 0));
}

.hero-grid {
  position: absolute;
  inset: 72px 4% auto auto;
  width: 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 22px;
  opacity: 0.75;
}

.hero-grid span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(38, 71, 124, 0.4));
  box-shadow: 0 0 0 1px rgba(38, 71, 124, 0.12);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--steel-500);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.62);
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.editorial-grid h2,
.story-grid h2,
.timeline-layout h2,
.approach-card h2,
.detail-copy h2,
.legal-card h2,
.consultation-shell h2,
.office-block h2,
.quote-panel p,
.strategic-layout h2,
.network-layout h2,
.cta-band h2,
.hero-panel h2,
.service-row h2,
.industry-card-large h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.7rem);
  /* max-width: 10ch; */
}

.hero-lead,
.section-heading p,
.editorial-grid p,
.story-grid p,
.copy-stack p,
.hero-panel p,
.network-layout p,
.service-card p,
.service-row p,
.industry-preview-card p,
.industry-card-large p,
.approach-card p,
.detail-copy p,
.detail-sidebar p,
.legal-card p,
.cta-band p,
.strategic-layout p,
.quote-panel p,
.office-block p,
.consultation-shell p,
.form-status {
  color: var(--ink-700);
  font-size: 1.04rem;
}

.hero-actions,
.editorial-links,
.cta-band-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel,
.contact-card,
.legal-card,
.detail-sidebar,
.approach-card,
.value-card,
.industry-card-large,
.industry-preview-card,
.service-card,
.quote-panel,
.consultation-shell,
.strategic-map,
.map-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.hero-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.hero-panel-dark {
  background: linear-gradient(160deg, rgba(11, 24, 43, 0.88), rgba(18, 48, 87, 0.68));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glass);
}

.hero-panel-dark p,
.hero-panel-dark .panel-label,
.consultation-shell p,
.consultation-shell .eyebrow,
.cta-band p,
.strategic-layout p,
.strategic-map span,
.quote-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.panel-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.panel-metrics div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
}

.panel-metrics span {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.hero-panel-dark .panel-metrics span {
  color: rgba(255, 255, 255, 0.58);
}

.section {
  padding: 84px 0;
}

.surface-soft {
  background: rgba(255, 255, 255, 0.48);
}

.surface-plain {
  background: transparent;
}

.surface-dark,
.cta-band,
.consultation-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #081425, #132948 58%, #1f3f71);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.editorial-grid h2,
.story-grid h2,
.timeline-layout h2,
.network-layout h2,
.strategic-layout h2,
.approach-card h2,
.service-row h2,
.industry-card-large h2,
.detail-copy h2,
.legal-card h2,
.office-block h2,
.consultation-shell h2,
.cta-band h2 {
  font-size: clamp(2.5rem, 3.2vw, 3.2rem);
  margin-bottom: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-strip span,
.chip-list span,
.service-card li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.94rem;
  color: var(--ink-700);
}

.editorial-grid,
.story-grid,
.network-layout,
.timeline-layout,
.contact-layout,
.detail-grid,
.strategic-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.copy-stack,
.stack-gap-lg {
  display: grid;
  gap: 18px;
}

.service-grid,
.value-grid,
.industry-preview-grid,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.value-card,
.industry-preview-card,
.approach-card,
.industry-card-large,
.contact-card,
.quote-panel,
.legal-card,
.detail-sidebar {
  border-radius: var(--radius-md);
  padding: 30px;
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-index,
.industry-preview-card span,
.industry-card-large span,
.approach-card span,
.timeline-item span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel-500);
  font-weight: 800;
}

.service-card h3,
.value-card h3,
.industry-preview-card h3,
.detail-sidebar h3,
.timeline-item h3,
.map-card strong {
  margin: 0;
  font-size: 1.3rem;
  color: var(--ink-900);
}

.service-card ul,
.detail-sidebar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.service-card li,
.detail-sidebar li {
  text-align: left;
  padding: 10px 14px;
}

.network-section {
  position: relative;
}

.network-visual {
  position: relative;
  min-height: 420px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.94), rgba(255,255,255,0.48) 46%, rgba(171,192,216,0.18) 100%),
    linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.24));
  border: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.network-visual::before,
.cta-ambient,
.consultation-ambient,
.strategic-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(171,192,216,0.24), transparent 24%),
    radial-gradient(circle at 80% 28%, rgba(255,255,255,0.12), transparent 18%),
    radial-gradient(circle at 60% 78%, rgba(95,126,167,0.22), transparent 22%);
  pointer-events: none;
}

.network-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-visual path {
  fill: none;
  stroke: rgba(38, 71, 124, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.network-node {
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: 0 18px 40px rgba(18, 32, 51, 0.08);
}

.network-node span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-900);
}

.node-core {
  inset: calc(50% - 68px) auto auto calc(50% - 68px);
  width: 136px;
  height: 136px;
  background: linear-gradient(180deg, rgba(18,48,87,0.95), rgba(38,71,124,0.9));
}

.node-core span {
  color: var(--white);
}

.node-a { top: 58px; left: 54px; }
.node-b { top: 58px; right: 52px; }
.node-c { left: 58px; bottom: 56px; }
.node-d { right: 52px; bottom: 56px; }

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.strategic-panel {
  overflow: hidden;
}

.strategic-layout,
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.strategic-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.map-card {
  min-height: 150px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.map-card strong {
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.map-card span {
  display: block;
}

.industry-grid-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-card-large {
  min-height: 280px;
  display: grid;
  gap: 14px;
}

.contrast-quote {
  padding-top: 0;
}

.quote-panel {
  background: linear-gradient(140deg, rgba(13,29,56,0.92), rgba(31,63,113,0.92));
  border-color: rgba(255,255,255,0.12);
  padding: 48px;
}

.quote-panel p {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.timeline-list,
.legal-stack {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.contact-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.office-block + .office-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.office-block span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ink-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.office-block a {
  color: var(--navy-700);
  font-weight: 700;
}

.consultation-panel {
  border-radius: 36px;
  padding: 1px;
  box-shadow: var(--shadow-glass);
}

.consultation-shell {
  min-height: 100%;
  border-radius: 35px;
  padding: 34px;
  background: linear-gradient(160deg, rgba(10, 22, 40, 0.8), rgba(19, 41, 72, 0.72));
  border-color: rgba(255,255,255,0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 15px 18px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.1);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255,255,255,0.7);
}

.narrow-container {
  max-width: 860px;
}

.center-stack {
  text-align: center;
}

.approach-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.approach-card {
  min-height: 280px;
}

.detail-grid {
  align-items: start;
}

.detail-sidebar ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-sidebar li {
  list-style: none;
}

.cta-band {
  margin: 20px 24px 24px;
  border-radius: 42px;
  padding: 62px 0;
}

.cta-band-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 80px 0 28px;
  background: #0c1628;
  color: rgba(255,255,255,0.72);
}

.site-footer .brand-type small,
.site-footer p,
.site-footer a,
.footer-offices span,
.footer-bottom p {
  color: rgba(255,255,255,0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.7fr));
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-brand p {
  max-width: 460px;
}

.footer-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer-offices div {
  /* display: grid; */
  display: block;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-offices strong {
  color: var(--white);
}

.brand-mark.inverse .brand-dot-cluster span {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(171,192,216,0.6));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top-link {
  color: rgba(255,255,255,0.9);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }

/* =========== new css ============ */
a.button.button-primary span {
  color: #fff;
}
.page-home-refactor #services-preview h2 {
  line-height: 62px;
}
.editorial-intro__lead h2, .page-home-refactor #cta h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 62px;
}
.page-home-refactor #approach h2 {
  color: var(--white) !important;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 62px;
}
section.section.home-signals.surface-soft h2 {
  line-height: 62px;
}
.editorial-intro__copy.reveal-up.delay-1.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}
article.service-row h2 {
  font-size: clamp(2.5rem, 2.7vw, 2.7rem);
  line-height: 48px;
}
.office-block h2 {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}

.consultation-shell h2 {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
}
body.site-body.page-legal .hero-panel.reveal-up {
  display: none;
}
.page-hero-inner .hero-panel.reveal-up {
  display: none;
}

.detail-copy.reveal-up h2 {
  font-size: clamp(2.5rem, 3.2vw, 3.5rem);
}
.detail-copy.reveal-up p {
  margin: 0 0 15px 0;
}
aside.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}

/* =========== new css ============ */
@media (max-width: 1100px) {
  .page-hero-inner,
  .editorial-grid,
  .story-grid,
  .network-layout,
  .timeline-layout,
  .contact-layout,
  .detail-grid,
  .strategic-layout,
  .cta-band-inner,
  .service-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .value-grid,
  .industry-preview-grid,
  .approach-grid,
  .industry-grid-large,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --site-width: min(1200px, calc(100vw - 28px));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.88);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav-cta {
    margin-top: 10px;
  }

  .page-hero {
    padding-top: 84px;
  }

  .hero-grid,
  .hero-orb-two {
    display: none;
  }

  .cta-band {
    margin-left: 14px;
    margin-right: 14px;
  }

  .panel-metrics,
  .service-grid,
  .value-grid,
  .industry-preview-grid,
  .approach-grid,
  .industry-grid-large,
  .trust-strip,
  .strategic-map {
    grid-template-columns: 1fr;
  }

  .network-visual {
    min-height: 360px;
  }

  .network-node {
    width: 110px;
    height: 110px;
  }

  .node-a { top: 34px; left: 20px; }
  .node-b { top: 34px; right: 20px; }
  .node-c { left: 28px; bottom: 28px; }
  .node-d { right: 20px; bottom: 28px; }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 78px;
  }

  .brand-type strong {
    font-size: 1.4rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .section,
  .cta-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-panel,
  .service-card,
  .value-card,
  .industry-preview-card,
  .approach-card,
  .industry-card-large,
  .contact-card,
  .quote-panel,
  .legal-card,
  .detail-sidebar,
  .consultation-shell,
  .map-card {
    padding: 24px;
  }

  .network-node {
    width: 92px;
    height: 92px;
    padding: 12px;
  }

  .network-node span {
    font-size: 0.8rem;
  }

  .node-core {
    width: 108px;
    height: 108px;
    inset: calc(50% - 54px) auto auto calc(50% - 54px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-home .site-header {
  background: rgba(255, 255, 255, 0.58);
}

.page-home {
  --ref-navy: #1b3464;
  --ref-navy-mid: #234080;
  --ref-navy-light: #2a5298;
  --ref-off: #f8f8f6;
  --ref-grey: #f2f2f0;
  --ref-grey-mid: #e4e4e0;
  --ref-dark: #0c0e14;
  --ref-text-1: #3e404c;
  --ref-text-2: #8a8c9a;
  --ref-border: #dfe0db;
}

.page-home .brand-type strong,
.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

.page-home,
.page-home p,
.page-home a,
.page-home button {
  font-family: 'Inter', 'Manrope', sans-serif;
}

.ref-home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 124px 0 96px;
  background: #ffffff;
  overflow: hidden;
}

.ref-home-hero__dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c4c8d4 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
}

.ref-home-hero__fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 62% 50%, transparent 25%, #ffffff 72%);
}

.ref-home-hero__brand-dots,
.ref-home-industries__dots {
  position: absolute;
  pointer-events: none;
}

.ref-home-hero__brand-dots {
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 300px;
  z-index: 0;
}

.ref-home-hero__brand-dots span,
.ref-home-industries__dots span {
  position: absolute;
  border-radius: 999px;
  background: rgba(27, 52, 100, 0.08);
}

.ref-home-hero__brand-dots span:nth-child(1),
.ref-home-industries__dots span:nth-child(1) { width: 96px; height: 96px; top: 0; right: 18px; }
.ref-home-hero__brand-dots span:nth-child(2),
.ref-home-industries__dots span:nth-child(2) { width: 64px; height: 64px; top: 48px; left: 74px; }
.ref-home-hero__brand-dots span:nth-child(3),
.ref-home-industries__dots span:nth-child(3) { width: 44px; height: 44px; top: 92px; right: 0; }
.ref-home-hero__brand-dots span:nth-child(4),
.ref-home-industries__dots span:nth-child(4) { width: 34px; height: 34px; top: 144px; left: 54px; }
.ref-home-hero__brand-dots span:nth-child(5),
.ref-home-industries__dots span:nth-child(5) { width: 26px; height: 26px; top: 186px; right: 88px; }
.ref-home-hero__brand-dots span:nth-child(6),
.ref-home-industries__dots span:nth-child(6) { width: 18px; height: 18px; top: 230px; left: 106px; }
.ref-home-hero__brand-dots span:nth-child(7),
.ref-home-industries__dots span:nth-child(7) { width: 14px; height: 14px; top: 206px; right: 24px; }

.ref-home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ref-home-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ref-text-2);
  padding: 6px 16px;
  border: 1px solid var(--ref-border);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}

.ref-home-hero__pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ref-navy);
  flex-shrink: 0;
}

.ref-home-hero__content {
  max-width: 540px;
}

.ref-home-hero__content h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: #0c0e14;
  max-width: none;
}

.ref-home-hero__sub {
  font-size: 18px;
  line-height: 1.72;
  max-width: 460px;
  margin: 0 0 38px;
  color: var(--ref-text-1);
}

.ref-home-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.ref-btn-navy {
  background: var(--ref-navy);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 13px 28px;
  box-shadow: none;
}

.ref-btn-navy:hover {
  background: var(--ref-navy-mid);
}

.ref-btn-outline {
  background: transparent;
  color: #0c0e14;
  border: 1.5px solid var(--ref-border);
  border-radius: 6px;
  padding: 12px 28px;
}

.ref-btn-outline:hover {
  border-color: var(--ref-navy);
  color: var(--ref-navy);
}

.ref-home-hero__offices {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--ref-border);
}

.ref-home-hero__offices div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ref-text-2);
}

.ref-home-hero__offices i,
.ref-home-trust__badges i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ref-navy);
  opacity: 0.35;
  display: inline-block;
  flex-shrink: 0;
}

.ref-home-hero__visual {
  position: relative;
}

.ref-home-hero__spatial-backdrop {
  position: absolute;
  inset: 42px -48px -32px 46px;
  background: linear-gradient(135deg, rgba(27,52,100,0.04) 0%, rgba(27,52,100,0.11) 100%);
  border-radius: 16px;
  border: 1px solid rgba(27,52,100,0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 54px rgba(27,52,100,0.08);
  transform: rotateY(-9deg) rotateX(2deg);
}

.ref-home-hero__splines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.ref-home-hero__splines path {
  fill: none;
  stroke: rgba(27,52,100,0.16);
  stroke-width: 1.4;
  stroke-dasharray: 6 6;
}

.ref-home-hero__depth {
  position: absolute;
  border-radius: 12px;
}

.ref-home-hero__depth--one {
  inset: 12px -12px -12px 12px;
  background: var(--ref-grey);
  border: 1px solid var(--ref-border);
  z-index: 2;
}

.ref-home-hero__depth--two {
  inset: 24px -24px -24px 24px;
  background: var(--ref-grey-mid);
  border: 1px solid rgba(0,0,0,0.05);
  z-index: 1;
}

.ref-home-hero__card {
  background: #fff;
  border: 1px solid var(--ref-border);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), 0 24px 60px rgba(0,0,0,0.07);
  position: relative;
  z-index: 3;
}

.ref-home-hero__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ref-text-2);
  margin-bottom: 18px;
}

.ref-home-hero__value-row {
  display: flex;
}

.ref-home-hero__value-row > div {
  flex: 1;
  padding: 18px 16px;
  border-right: 1px solid var(--ref-border);
}

.ref-home-hero__value-row > div:last-child {
  border-right: 0;
}

.ref-home-hero__value-row strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ref-navy);
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.ref-home-hero__value-row p {
  margin: 0;
  font-size: 12px;
  color: var(--ref-text-2);
  line-height: 1.55;
}

.ref-home-hero__stats {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ref-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ref-home-hero__stats div {
  text-align: center;
  flex: 1;
}

.ref-home-hero__stats strong {
  display: block;
  font-size: 28px;
  color: var(--ref-navy);
  line-height: 1;
}

.ref-home-hero__stats span {
  font-size: 11px;
  color: var(--ref-text-2);
  margin-top: 3px;
  font-weight: 500;
}

.ref-home-trust {
  background: var(--ref-grey);
  border-top: 1px solid var(--ref-border);
  border-bottom: 1px solid var(--ref-border);
  padding: 60px 0;
}

.ref-home-trust__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ref-text-2);
  margin: 0 0 24px;
}

.ref-home-trust__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ref-home-trust__badges span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ref-text-1);
  padding: 7px 16px;
  border: 1px solid var(--ref-grey-mid);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
}

.ref-home-about {
  background: #fff;
  padding: 128px 0;
}

.ref-home-about__grid,
.ref-home-approach__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.ref-home-about__left h2,
.ref-home-approach__left h2,
.ref-home-industries__header h2,
.ref-home-why .section-heading h2,
.ref-home-services .section-heading h2 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.ref-home-about__left p,
.ref-home-approach__left p,
.ref-home-services .section-heading p,
.ref-home-industries__header p,
.ref-home-why__card p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ref-text-1);
}

.ref-home-about__mv {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.ref-home-about__mv article {
  padding: 24px 0;
  border-top: 1px solid var(--ref-border);
}

.ref-home-about__mv article:last-child {
  border-bottom: 1px solid var(--ref-border);
}

.ref-home-about__mv h3 {
  font-size: 17px;
  color: var(--ref-navy);
  margin-bottom: 8px;
}

.ref-home-about__mv p,
.ref-home-about__values-grid p,
.ref-home-about__stats span,
.ref-home-services__card p,
.ref-home-industries__card p,
.ref-home-approach__steps p,
.ref-home-why__card p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ref-text-2);
}

.ref-home-about__values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ref-home-about__values-grid article,
.ref-home-why__card {
  background: var(--ref-grey);
  border: 1px solid var(--ref-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.25s;
}

.ref-home-about__values-grid h3,
.ref-home-services__card h3,
.ref-home-industries__card h3,
.ref-home-why__card h3,
.ref-home-approach__steps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ref-home-about__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 32px;
  border: 1px solid var(--ref-border);
  border-radius: 12px;
  overflow: hidden;
}

.ref-home-about__stats div {
  padding: 24px 20px;
  border-right: 1px solid var(--ref-border);
}

.ref-home-about__stats div:last-child {
  border-right: 0;
}

.ref-home-about__stats strong {
  display: block;
  font-size: 34px;
  color: var(--ref-navy);
  line-height: 1;
}

.ref-home-services {
  background: var(--ref-off);
  padding: 128px 0;
  border-top: 1px solid var(--ref-border);
}

.ref-home-services__grid,
.ref-home-industries__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
}

.ref-home-services__grid {
  background: var(--ref-border);
  border: 1px solid var(--ref-border);
}

.ref-home-services__card {
  background: #fff;
  padding: 36px 30px;
}

.ref-home-services__card span,
.ref-home-industries__card span,
.ref-home-why__card span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ref-home-services__card span {
  color: var(--ref-text-2);
}

.ref-home-services__card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ref-navy);
  margin-top: 18px;
}

.ref-home-services__card a::after {
  content: '->';
}

.ref-home-industries {
  background: var(--ref-navy);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.ref-home-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.ref-home-industries::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(42,82,152,0.45), transparent 65%);
  pointer-events: none;
}

.ref-home-industries .container {
  position: relative;
  z-index: 1;
}

.ref-home-industries__header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  max-width: 560px;
}

.ref-home-industries__header h2 {
  color: #fff;
  margin-bottom: 14px;
}

.ref-home-industries__header p,
.ref-home-industries__card p,
.ref-home-industries__card span {
  color: rgba(255,255,255,0.5);
}

.ref-home-industries__dots {
  right: 40px;
  top: 80px;
  width: 280px;
  height: 300px;
  opacity: 0.5;
}

.ref-home-industries__dots span {
  background: rgba(255,255,255,0.12);
}

.ref-home-industries__grid {
  position: relative;
  z-index: 1;
}

.ref-home-industries__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 30px;
}

.ref-home-industries__card h3 {
  color: #fff;
}

.ref-home-approach {
  background: #fff;
  padding: 128px 0;
}

.ref-home-approach__left {
  position: sticky;
  top: 100px;
}

.ref-home-approach__steps article {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--ref-border);
}

.ref-home-approach__steps article:first-child {
  border-top: 1px solid var(--ref-border);
}

.ref-home-approach__steps span {
  font-size: 14px;
  color: var(--ref-navy-light);
  width: 24px;
  opacity: 0.6;
  flex-shrink: 0;
}

.ref-home-why {
  background: var(--ref-grey);
  padding: 128px 0;
  border-top: 1px solid var(--ref-border);
}

.ref-home-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ref-home-why__card {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
}

.ref-home-why__card.is-featured {
  background: var(--ref-navy);
  border-color: var(--ref-navy);
}

.ref-home-why__card.is-featured h3,
.ref-home-why__card.is-featured p,
.ref-home-why__card.is-featured span {
  color: #fff;
}

.ref-home-why__card.is-featured p {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
  .ref-home-hero__layout,
  .ref-home-about__grid,
  .ref-home-approach__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ref-home-approach__left {
    position: static;
  }

  .ref-home-services__grid,
  .ref-home-industries__grid,
  .ref-home-why__grid {
    grid-template-columns: repeat(2,1fr);
  }

  .ref-home-hero__visual {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .ref-home-hero {
    min-height: auto;
    padding: 110px 0 80px;
  }

  .ref-home-hero__layout,
  .ref-home-services__grid,
  .ref-home-industries__grid,
  .ref-home-why__grid,
  .ref-home-about__values-grid,
  .ref-home-about__stats,
  .ref-home-hero__value-row {
    grid-template-columns: 1fr;
  }

  .ref-home-hero__value-row {
    display: grid;
  }

  .ref-home-hero__value-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--ref-border);
    padding-left: 0;
    padding-right: 0;
  }

  .ref-home-hero__value-row > div:last-child {
    border-bottom: 0;
  }

  .ref-home-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ref-home-hero__spatial-backdrop,
  .ref-home-hero__splines,
  .ref-home-hero__brand-dots,
  .ref-home-industries__dots,
  .ref-home-hero__depth--one,
  .ref-home-hero__depth--two {
    display: none;
  }

  .ref-home-hero__offices {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


@media (max-width: 760px) {
  .ref-home-about__spatial-wrap {
    padding: 24px;
  }

  .ref-home-about__spatial-backdrop,
  .ref-home-about__splines,
  .ref-home-about__core-node,
  .ref-home-about__float-node {
    display: none;
  }
}


.about-spatial-scene {
  position: relative;
  min-height: 760px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(171, 192, 216, 0.38), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(171, 192, 216, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,248,246,0.96));
  border: 1px solid rgba(27, 52, 100, 0.08);
}

.about-spatial-backdrop {
  position: absolute;
  inset: 56px 34px 180px 74px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24) 0%, rgba(210, 220, 233, 0.34) 100%);
  border-radius: 34px;
  border-top: 1px solid rgba(255,255,255,0.55);
  border-left: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(24px);
  box-shadow: -16px -16px 48px rgba(255,255,255,0.18), 28px 28px 56px rgba(27,52,100,0.1);
}

.about-splines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-spline-path {
  fill: none;
  stroke: rgba(27, 52, 100, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
}

.about-spline-glow {
  fill: none;
  stroke: rgba(27, 52, 100, 0.06);
  stroke-width: 10;
  filter: blur(4px);
}

.about-node {
  position: absolute;
  width: 180px;
  min-height: 108px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.56);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(27, 52, 100, 0.1);
  box-shadow: 0 18px 34px rgba(27,52,100,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  z-index: 2;
}

.about-node strong {
  display: block;
  margin-bottom: 8px;
  color: #1b3464;
  font-size: 14px;
}

.about-node p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5d6778;
}

.about-node--one { top: 70px; left: 36px; }
.about-node--two { bottom: 300px; left: 18px; }
.about-node--three { top: 92px; right: 28px; }
.about-node--four { bottom: 292px; right: 22px; }

.about-core-node {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(27, 52, 100, 0.1);
  box-shadow: 0 24px 48px rgba(27,52,100,0.1), inset 0 2px 4px rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-core-node__inner {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d1d3d6 60%, #a3a5a8 100%);
  box-shadow: -4px -4px 12px rgba(255,255,255,0.5), 8px 8px 24px rgba(27,52,100,0.16), inset -2px -2px 6px rgba(0,0,0,0.08), inset 2px 2px 6px rgba(255,255,255,0.9);
}

.about-overlay-cards {
  position: absolute;
  left: 50%;
  right: 30px;
  bottom: 28px;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  z-index: 4;
}

.about-overlay-cards .ref-home-about__values-grid,
.about-overlay-cards .ref-home-about__stats {
  position: relative;
  z-index: 4;
}

.about-overlay-cards .ref-home-about__values-grid article,
.about-overlay-cards .ref-home-about__stats {
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
}

@media (max-width: 1024px) {
  .about-spatial-scene {
    min-height: 680px;
  }

  .about-overlay-cards {
    left: 30px;
    right: 30px;
    transform: none;
    width: auto;
  }
}

@media (max-width: 760px) {
  .about-spatial-scene {
    min-height: auto;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,248,246,0.98));
  }

  .about-spatial-backdrop,
  .about-splines,
  .about-node,
  .about-core-node {
    display: none;
  }

  .about-overlay-cards {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }
}

.page-about-redesign .page-hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,246,241,0.92));
}

.about-editorial__grid,
.about-spatial-feature__grid,
.about-practice__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.about-editorial__lead h2,
.about-spatial-feature__copy h2,
.about-practice__intro h2,
.about-signals .section-heading h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1.04;
  margin: 0 0 18px;
}
.about-editorial__lead h2{
  font-size: clamp(2.6rem, 3.2vw, 4.4rem);
}

.about-editorial__copy,
.about-spatial-feature__copy,
.about-practice__intro {
  display: grid;
  gap: 18px;
}

.about-editorial__copy p,
.about-spatial-feature__copy p,
.about-practice__intro p,
.about-practice__step p,
.about-signals__grid p,
.about-principle-list p,
.about-visual-caption p,
.about-visual-node p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-700);
}

.about-principle-list {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.about-principle-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
}

.about-principle-list article:last-child {
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.about-principle-list h3,
.about-practice__step h3,
.about-signals__grid h3,
.about-visual-node strong {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--ink-900);
}

.about-spatial-feature__visual {
  position: relative;
}

.about-visual-scene {
  position: relative;
  min-height: 720px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(171, 192, 216, 0.38), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(171, 192, 216, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,247,250,0.98));
  border: 1px solid rgba(27, 52, 100, 0.08);
  box-shadow: 0 24px 70px rgba(8, 21, 42, 0.08);
}

.about-visual-backdrop {
  position: absolute;
  inset: 54px 44px 54px 44px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(214, 223, 235, 0.36) 100%);
  border-radius: 38px;
  border-top: 1px solid rgba(255,255,255,0.68);
  border-left: 1px solid rgba(255,255,255,0.54);
  backdrop-filter: blur(26px) saturate(120%);
  box-shadow: -18px -18px 52px rgba(255,255,255,0.14), 30px 30px 60px rgba(27,52,100,0.1);
}

.about-visual-splines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-visual-spline-path {
  fill: none;
  stroke: rgba(27, 52, 100, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
}

.about-visual-spline-glow {
  fill: none;
  stroke: rgba(27, 52, 100, 0.06);
  stroke-width: 9;
  filter: blur(4px);
}

.about-visual-node {
  position: absolute;
  width: 180px;
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(27, 52, 100, 0.1);
  box-shadow: 0 18px 34px rgba(27,52,100,0.08), inset 0 1px 0 rgba(255,255,255,0.56);
  z-index: 2;
}

.about-visual-node strong {
  display: block;
  color: #1b3464;
  font-size: 14px;
}

.about-visual-node p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5d6778;
}

.about-visual-node--one { top: 82px; left: 40px; }
.about-visual-node--two { bottom: 196px; left: 24px; }
.about-visual-node--three { top: 106px; right: 34px; }
.about-visual-node--four { bottom: 188px; right: 26px; }

.about-visual-core {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(27, 52, 100, 0.1);
  box-shadow: 0 24px 48px rgba(27,52,100,0.1), inset 0 2px 4px rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-visual-core__inner {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d1d3d6 60%, #a3a5a8 100%);
  box-shadow: -4px -4px 12px rgba(255,255,255,0.5), 8px 8px 24px rgba(27,52,100,0.16), inset -2px -2px 6px rgba(0,0,0,0.08), inset 2px 2px 6px rgba(255,255,255,0.9);
}

.about-visual-caption {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(27, 52, 100, 0.08);
  backdrop-filter: blur(12px);
  z-index: 4;
}

.about-visual-caption span {
  display: block;
  margin-bottom: 8px;
  color: #1b3464;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.about-visual-caption p {
  margin: 0;
}

.about-practice__steps {
  display: grid;
  gap: 0;
}

.about-practice__step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
}

.about-practice__step:last-child {
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.about-practice__step > span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.about-signals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-signals__grid article {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: 0 18px 40px rgba(18, 32, 51, 0.06);
}

@media (max-width: 1100px) {
  .about-editorial__grid,
  .about-spatial-feature__grid,
  .about-practice__layout,
  .about-signals__grid {
    grid-template-columns: 1fr;
  }

  .about-visual-scene {
    min-height: 660px;
  }
}

@media (max-width: 760px) {
  .about-visual-scene {
    min-height: auto;
    padding: 26px;
  }

  .about-visual-backdrop,
  .about-visual-splines,
  .about-visual-node,
  .about-visual-core {
    display: none;
  }

  .about-visual-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .about-signals__grid article {
    padding: 24px;
  }
}


.page-home-refactor {
  --navy:#1b3464;
  --navy-mid:#234080;
  --navy-light:#2a5298;
  --navy-soft:#e8ecf4;
  --white:#fff;
  --off:#faf9f6;
  --cream:#f3f1eb;
  --grey:#eeede8;
  --border:#e2e1dc;
  --text-0:#0c0e14;
  --text-1:#3e404c;
  --text-2:#8a8c9a;
}

.page-home-refactor .site-header {
  background: rgba(255,255,255,.72);
}

.page-home-refactor .brand-type strong,
.page-home-refactor h1,
.page-home-refactor h2,
.page-home-refactor h3,
.page-home-refactor h4 {
  font-family:'DM Serif Display', Georgia, serif;
  font-weight:400;
}

.page-home-refactor p,
.page-home-refactor a,
.page-home-refactor button,
.page-home-refactor .brand-type small,
.page-home-refactor .site-nav a {
  font-family:'Inter', -apple-system, sans-serif;
}

.page-home-refactor .btn-navy,
.page-home-refactor .btn-outline,
.page-home-refactor .btn-white,
.page-home-refactor .btn-ghost-white {
  display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;font-family:inherit;transition:all .25s;
}
.page-home-refactor .btn-navy{padding:13px 28px;background:var(--navy);color:#fff;border:none;border-radius:6px}
.page-home-refactor .btn-navy:hover{background:var(--navy-mid);transform:translateY(-1px);box-shadow:0 6px 22px rgba(27,52,100,.28)}
.page-home-refactor .btn-outline{padding:12px 28px;background:transparent;color:var(--text-0);border:1.5px solid var(--border);border-radius:6px}
.page-home-refactor .btn-outline:hover{border-color:var(--navy);color:var(--navy);transform:translateY(-1px)}
.page-home-refactor .btn-white{padding:13px 30px;background:#fff;color:var(--navy);border:none;border-radius:6px}
.page-home-refactor .btn-white:hover{background:#eef1f9;transform:translateY(-1px);box-shadow:0 6px 24px rgba(0,0,0,.18)}
.page-home-refactor .btn-ghost-white{padding:12px 28px;background:transparent;color:rgba(255,255,255,.75);border:1.5px solid rgba(255,255,255,.2);border-radius:6px}
.page-home-refactor .btn-ghost-white:hover{border-color:rgba(255,255,255,.45);color:#fff}

.page-home-refactor .hero-dots-bg{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle, rgba(27,52,100,.15) 1px, transparent 1px);background-size:38px 38px;opacity:.5;mask-image:radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);-webkit-mask-image:radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%)}
.page-home-refactor #hero{position:relative;min-height:100vh;display:flex;align-items:center;padding:110px 0 80px;background:radial-gradient(circle at 15% 20%, rgba(27, 52, 100, .04) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(27, 52, 100, .05) 0%, transparent 50%), linear-gradient(180deg, #f9fcfd 0%, #f0f6f7 100%);overflow:hidden}
.page-home-refactor .hero-layout{display:grid;grid-template-columns:1fr 1.15fr;gap:60px;align-items:center;position:relative;z-index:2}
.page-home-refactor .hero-pill{display:inline-flex;align-items:center;gap:9px;font-size:11px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--text-2);padding:7px 16px;border:1px solid var(--border);border-radius:100px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.05),0 4px 14px rgba(0,0,0,.04);margin-bottom:26px}
.page-home-refactor .hero-pill-dot{width:6px;height:6px;border-radius:50%;background:var(--navy)}
.page-home-refactor .hero-headline{margin-bottom:22px;font-size:clamp(46px,5.5vw,78px);line-height:1.05}
.page-home-refactor .hero-headline em{font-style:italic;color:var(--navy)}
.page-home-refactor .hero-sub{font-size:18px;line-height:1.7;max-width:480px;margin-bottom:36px;color:var(--text-1)}
.page-home-refactor .hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:52px}
.page-home-refactor .hero-offices{display:flex;gap:28px;align-items:center;padding-top:26px;border-top:1px solid var(--border)}
.page-home-refactor .hero-office{display:flex;align-items:center;gap:9px;font-size:13px;font-weight:500;color:var(--text-2)}
.page-home-refactor .office-dot{width:7px;height:7px;border-radius:50%;background:var(--navy);opacity:.4}

.page-home-refactor .spatial-wrap{position:relative;width:100%;height:560px;display:flex;align-items:center;justify-content:center;perspective:1400px}
.page-home-refactor .spatial-backdrop{position:absolute;inset:30px -20px -30px 30px;background:linear-gradient(135deg, rgba(255,255,255,.7) 0%, rgba(27,52,100,.04) 100%);border-radius:32px;border-top:1px solid rgba(255,255,255,.8);border-left:1px solid rgba(255,255,255,.7);backdrop-filter:blur(40px);box-shadow:-10px -10px 40px rgba(255,255,255,.6),30px 30px 80px rgba(27,52,100,.12);transform:rotateY(-14deg) rotateX(5deg) translateZ(-100px);transform-style:preserve-3d;pointer-events:none}
.page-home-refactor .spatial-scene{position:relative;width:560px;height:560px;transform-style:preserve-3d;transform:rotateY(-14deg) rotateX(5deg)}
.page-home-refactor .splines{position:absolute;inset:0;width:100%;height:100%;z-index:1;transform:translateZ(0)}
.page-home-refactor .spline-path{fill:none;stroke:rgba(27,52,100,.35);stroke-width:1.4;stroke-dasharray:5 6;animation:homeFlow 22s linear infinite}
.page-home-refactor .spline-glow{fill:none;stroke:rgba(42,82,152,.25);stroke-width:7;filter:blur(5px)}
@keyframes homeFlow{to{stroke-dashoffset:-100}}

.page-home-refactor .node-core{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) translateZ(80px);width:150px;height:150px;border-radius:50%;background:rgba(255,255,255,.45);border:1px solid rgba(27,52,100,.12);backdrop-filter:blur(18px);box-shadow:0 32px 80px rgba(27,52,100,.25), inset 0 2px 4px rgba(255,255,255,.9);display:flex;align-items:center;justify-content:center;z-index:10}
.page-home-refactor .core-inner{width:86px;height:86px;border-radius:50%;background:radial-gradient(circle at 32% 30%, #3a5fa0 0%, var(--navy) 55%, #0f2248 100%);box-shadow:-4px -4px 14px rgba(255,255,255,.5),8px 8px 24px rgba(27,52,100,.35),inset -3px -3px 8px rgba(0,0,0,.25),inset 3px 3px 8px rgba(255,255,255,.25);display:flex;align-items:center;justify-content:center;position:relative}
.page-home-refactor .core-inner::before{content:'';position:absolute;inset:-14px;border-radius:50%;border:1px solid rgba(27,52,100,.25);animation:homePulse 4s cubic-bezier(.4,0,.6,1) infinite}
@keyframes homePulse{0%{transform:scale(1);opacity:1}100%{transform:scale(1.55);opacity:0}}
.page-home-refactor .core-inner svg{width:34px;height:34px;stroke:#fff;stroke-width:1.5;fill:none;filter:drop-shadow(0 1px 0 rgba(255,255,255,.3))}

.page-home-refactor .node{position:absolute;background:rgba(255,255,255,.75);backdrop-filter:blur(16px) saturate(150%);border:1px solid rgba(27,52,100,.1);border-top:1px solid rgba(255,255,255,.9);border-radius:14px;box-shadow:0 18px 40px rgba(27,52,100,.15),inset 0 1px 0 rgba(255,255,255,.8);z-index:2;transition:transform .4s cubic-bezier(.2,.8,.2,1);padding:14px;width:170px}
.page-home-refactor .node:hover{transform:translateY(-6px) translateZ(40px);border-color:rgba(27,52,100,.2)}
.page-home-refactor .node-head{display:flex;align-items:center;gap:9px;margin-bottom:10px}
.page-home-refactor .node-ico{width:26px;height:26px;border-radius:7px;background:linear-gradient(135deg,var(--navy),var(--navy-light));display:flex;align-items:center;justify-content:center;flex-shrink:0}
.page-home-refactor .node-ico svg{width:14px;height:14px;stroke:#fff;stroke-width:2;fill:none}
.page-home-refactor .node-title{font-size:11px;font-weight:600;color:var(--text-0);letter-spacing:.01em;line-height:1.25}
.page-home-refactor .node-bar{height:3px;background:var(--navy-soft);border-radius:2px;margin-bottom:5px}
.page-home-refactor .node-bar.fill{background:linear-gradient(90deg,var(--navy),var(--navy-light));width:70%}
.page-home-refactor .node-bar.fill-2{background:linear-gradient(90deg,var(--navy),var(--navy-light));width:45%}
.page-home-refactor .node-label{position:absolute;bottom:-20px;left:50%;transform:translateX(-50%);font-size:9px;font-family:ui-monospace,monospace;color:rgba(27,52,100,.4);letter-spacing:.14em;white-space:nowrap}
.page-home-refactor .node-1{top:6%;left:2%;transform:translateZ(30px);animation:homeFloat 7s ease-in-out infinite;--tz:30px}
.page-home-refactor .node-2{top:62%;left:-2%;transform:translateZ(10px);animation:homeFloat 9s ease-in-out infinite 1s;--tz:10px}
.page-home-refactor .node-3{top:8%;right:2%;transform:translateZ(45px);animation:homeFloat 8s ease-in-out infinite 2s;--tz:45px}
.page-home-refactor .node-4{top:66%;right:0%;transform:translateZ(20px);animation:homeFloat 10s ease-in-out infinite .5s;--tz:20px}
@keyframes homeFloat{0%,100%{transform:translateY(0) translateZ(var(--tz,20px))}50%{transform:translateY(-10px) translateZ(var(--tz,20px))}}

.page-home-refactor #trust{padding:60px 0;background:var(--cloud-200);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.page-home-refactor .trust-inner{display:grid;grid-template-columns:auto 1fr;gap:56px;align-items:center}
.page-home-refactor .trust-label{font-size:11px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--text-2);max-width:200px;line-height:1.5}
.page-home-refactor .trust-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:44px}
.page-home-refactor .trust-stat .num{font-family:'DM Serif Display', Georgia, serif;font-size:46px;color:var(--navy);line-height:1;margin-bottom:8px}
.page-home-refactor .trust-stat .lbl{font-size:12.5px;color:var(--text-1);line-height:1.5}

.page-home-refactor #services-preview{padding:140px 0;background:var(--navy-soft);position:relative;overflow:hidden}
.page-home-refactor .section-head{max-width:720px;margin-bottom:72px}
.page-home-refactor .section-head p{font-size:17px;line-height:1.7;margin-top:14px;max-width:600px}
.page-home-refactor .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.page-home-refactor .svc-card{background:#fff;padding:40px 32px;border-radius:14px;border:1px solid var(--border);transition:all .3s cubic-bezier(.2,.8,.2,1);position:relative;overflow:hidden}
.page-home-refactor .svc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--navy);transform:scaleX(0);transform-origin:left;transition:transform .4s ease}
.page-home-refactor .svc-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,.07),0 12px 36px rgba(0,0,0,.05);border-color:rgba(27,52,100,.08)}
.page-home-refactor .svc-card:hover::before{transform:scaleX(1)}
.page-home-refactor .svc-num{font-family:'DM Serif Display', Georgia, serif;font-size:15px;color:var(--navy);letter-spacing:.05em;margin-bottom:24px;display:block}
.page-home-refactor .svc-card h3{margin-bottom:14px;font-size:22px}
.page-home-refactor .svc-card p{font-size:14.5px;line-height:1.65;color:var(--text-1);margin-bottom:22px}
.page-home-refactor .svc-link{font-size:12.5px;font-weight:600;color:var(--navy);letter-spacing:.04em;text-transform:uppercase;display:inline-flex;align-items:center;gap:6px;transition:gap .25s}
.page-home-refactor .svc-link:hover{gap:10px}

.page-home-refactor #approach{padding:150px 0;background:var(--navy);color:#fff;position:relative;overflow:hidden}
.page-home-refactor #approach .eyebrow{color:rgba(255,255,255,.55)}
.page-home-refactor #approach .eyebrow::before{background:rgba(255,255,255,.35)}
.page-home-refactor #approach h2,.page-home-refactor #approach h3{color:#fff}
.page-home-refactor #approach p{color:rgba(255,255,255,.7)}
.page-home-refactor .approach-bg-dots{position:absolute;top:-50px;right:-80px;opacity:.5}
.page-home-refactor .approach-layout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;position:relative;z-index:1}
.page-home-refactor .approach-left p{font-size:17px;line-height:1.75;margin-top:18px;max-width:440px}
.page-home-refactor .approach-steps{display:flex;flex-direction:column;gap:2px}
.page-home-refactor .approach-step{padding:28px 0;border-bottom:1px solid rgba(255,255,255,.1);display:grid;grid-template-columns:60px 1fr;gap:26px;align-items:start;transition:padding-left .3s}
.page-home-refactor .approach-step:hover{padding-left:12px}
.page-home-refactor .approach-step:first-child{border-top:1px solid rgba(255,255,255,.1)}
.page-home-refactor .approach-step .num{font-family:'DM Serif Display', Georgia, serif;font-size:28px;color:rgba(255,255,255,.35)}
.page-home-refactor .approach-step h3{margin-bottom:6px;font-size:20px}
.page-home-refactor .approach-step p{font-size:14.5px;line-height:1.65;margin:0;color:rgba(255,255,255,.65)}

.page-home-refactor #industries-preview{padding:140px 0;background:var(--white)}
.page-home-refactor .ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.page-home-refactor .ind-cell{background:#fff;padding:36px 30px;transition:all .3s;position:relative;min-height:200px;display:flex;flex-direction:column;justify-content:space-between}
.page-home-refactor .ind-cell:hover{background:var(--navy-soft)}
.page-home-refactor .ind-cell:hover .ind-arrow{opacity:1;transform:translateX(0)}
.page-home-refactor .ind-cell h3{font-size:19px;margin-bottom:10px}
.page-home-refactor .ind-cell p{font-size:13.5px;line-height:1.6}
.page-home-refactor .ind-arrow{position:absolute;top:32px;right:30px;font-size:18px;color:var(--navy);opacity:0;transform:translateX(-6px);transition:all .25s}

.page-home-refactor #cta{padding:130px 0;background:var(--navy);color:#fff;position:relative;overflow:hidden}
.page-home-refactor .cta-brand-dots{position:absolute;right:0;top:0;opacity:.14;pointer-events:none}
.page-home-refactor .cta-inner{display:grid;grid-template-columns:none;gap:60px;align-items:center;position:relative;z-index:1}
.page-home-refactor #cta h2{color:#fff;margin-bottom:18px}
.page-home-refactor #cta p{color:rgba(255,255,255,.72);font-size:17px;line-height:1.7;margin-bottom:28px}
.page-home-refactor .cta-offices{display:flex;gap:28px;margin-top:8px}
.page-home-refactor .cta-office{display:flex;align-items:center;gap:9px;font-size:13px;color:rgba(255,255,255,.7)}
.page-home-refactor .cta-office-dot{width:7px;height:7px;border-radius:50%;background:#fff;opacity:.5}
.page-home-refactor .cta-right{display:flex;flex-direction:column;gap:14px;align-items:flex-start}
.page-home-refactor .cta-note{font-size:12px;color:rgba(255,255,255,.5);margin-top:10px}

@media (max-width:960px){
  .page-home-refactor .hero-layout{grid-template-columns:1fr;gap:40px}
  .page-home-refactor .spatial-wrap{height:440px}
  .page-home-refactor .spatial-scene{width:100%;max-width:440px;height:440px}
  .page-home-refactor .trust-inner{grid-template-columns:1fr}
  .page-home-refactor .trust-stats{grid-template-columns:repeat(2,1fr);gap:30px}
  .page-home-refactor .services-grid,.page-home-refactor .ind-grid{grid-template-columns:1fr}
  .page-home-refactor .approach-layout,.page-home-refactor .cta-inner{grid-template-columns:1fr;gap:40px}
  .page-home-refactor #hero{padding:100px 0 60px}
  .page-home-refactor #services-preview,.page-home-refactor #approach,.page-home-refactor #industries-preview,.page-home-refactor #cta{padding:80px 0}
}

@media (max-width:520px){
  .page-home-refactor .hero-offices{flex-direction:column;align-items:flex-start;gap:12px}
  .page-home-refactor .trust-stats{grid-template-columns:1fr}
}

.site-header.is-on-dark {
  background: rgba(27,52,100,.96);
  border-color: rgba(255,255,255,.07);
  box-shadow: none;
}

.site-header.is-on-dark .site-nav a,
.site-header.is-on-dark .brand-type small {
  color: rgba(255,255,255,.62);
}

.site-header.is-on-dark .brand-type strong {
  color: #fff;
}

.site-header.is-on-dark .brand-dot-cluster span {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(171,192,216,.65));
  box-shadow: none;
}

.site-header.is-on-dark .site-nav a.is-active,
.site-header.is-on-dark .site-nav a:hover {
  color: #fff;
}

.site-header.is-on-dark .site-nav-cta .button-primary {
  background: var(--ink-900);
  color: #fff;
  box-shadow: none;
}

.site-header.is-on-dark .nav-toggle {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.site-header.is-on-dark .nav-toggle span {
  background: #fff;
}

