:root {
  --ink: #251528;
  --navy: #3a0a4a;
  --navy-deep: #24042f;
  --blue: #a61e6c;
  --blue-bright: #e64495;
  --pink: #ef5aa7;
  --pink-light: #ffe5f2;
  --purple: #6d1b83;
  --paper: #fff7fb;
  --white: #ffffff;
  --mist: #f2dce9;
  --line: rgba(58, 10, 74, 0.2);
  --light-line: rgba(255, 255, 255, 0.22);
  --muted: #745c70;
  --serif: "Poppins", Arial, sans-serif;
  --sans: "Poppins", Arial, sans-serif;
  --shell: min(100% - 64px, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(3, 19, 30, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  width: min(100% - 40px, 1540px);
  min-height: 94px;
  margin-inline: auto;
  gap: 28px;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 38px;
  padding: 8px 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.wordmark {
  position: relative;
  display: flex;
  width: 260px;
  height: 56px;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 0 0 9px 65px;
  background: url("assets/brand/nykinsky-mark.svg?v=3") no-repeat left center / 56px 56px;
  color: var(--white);
  font-family: "Century Gothic", CenturyGothic, "AppleGothic", "Poppins", Arial, sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.wordmark > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.wordmark-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.45px;
}

.wordmark-company {
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.55px;
}

.wordmark::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 65px;
  color: #f5c5de;
  content: "Global management consulting";
  font-family: "Century Gothic", CenturyGothic, "AppleGothic", "Poppins", Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.28px;
  line-height: 1;
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  border: 0;
  background: rgba(12,1,16,.65);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(7px);
}

.menu-open {
  overflow: hidden;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .menu-toggle {
  position: relative;
  z-index: 5;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes menu-panel-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 1081px) {
  .main-nav.is-open {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    display: flex;
    width: min(38vw, 560px);
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 125px 58px 70px;
    background:
      radial-gradient(circle at 15% 90%, rgba(230,68,149,.2), transparent 28%),
      var(--navy-deep);
    box-shadow: 24px 0 70px rgba(0,0,0,.4);
    font-family: var(--serif);
    font-size: 38px;
    animation: menu-panel-in 240ms ease both;
  }

  .main-nav.is-open a {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-size: 15px;
}

.main-nav a,
.utility-link {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after,
.utility-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.utility-link:hover::after,
.utility-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.search-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.search-button svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.hero {
  min-height: 920px;
  padding: 142px 0 66px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(420px, 1.16fr);
  grid-template-rows: 520px 264px;
  gap: 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 6vw 30px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: #38434b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 98px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}

.round-link {
  display: grid;
  width: 76px;
  height: 76px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  place-items: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.round-link svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-feature {
  position: relative;
  grid-row: span 2;
  min-height: 600px;
  overflow: hidden;
  background: #5b1b68;
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.hero-feature:hover img {
  transform: scale(1.025);
}

.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 21, 0.06) 30%, rgba(2, 13, 21, 0.87) 100%);
}

.feature-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4vw, 58px);
}

.card-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.feature-copy h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 57px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.feature-copy a,
.hero-tile a,
.insight-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.feature-copy a span,
.hero-tile a span,
.insight-card a span,
.text-link span {
  transition: transform 180ms ease;
}

.feature-copy a:hover span,
.hero-tile a:hover span,
.insight-card a:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

.hero-tile {
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
}

.hero-tile h3 {
  max-width: 470px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.02;
}

.hero-tile p:not(.card-label) {
  max-width: 590px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-tile-blue {
  background: var(--blue);
}

.hero-tile-grid {
  display: none;
  background: #5d176c;
}

.network-orbit {
  position: absolute;
  top: -42px;
  right: -30px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

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

.network-orbit::before {
  inset: 35px;
}

.network-orbit::after {
  inset: 72px;
}

.network-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8bc4;
  box-shadow: 0 0 20px rgba(255, 139, 196, 0.8);
}

.network-orbit span:nth-child(1) { top: 15px; left: 99px; }
.network-orbit span:nth-child(2) { top: 82px; left: 16px; }
.network-orbit span:nth-child(3) { top: 140px; right: 24px; }
.network-orbit span:nth-child(4) { bottom: 42px; left: 60px; }
.network-orbit span:nth-child(5) { top: 78px; right: 64px; }

.global-landmarks {
  padding: clamp(96px, 10vw, 150px) 0 clamp(84px, 9vw, 132px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(230, 68, 149, 0.12), transparent 28%),
    var(--white);
  scroll-margin-top: 94px;
}

.landmark-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 70px);
  gap: clamp(40px, 7vw, 120px);
}

.landmark-heading .eyebrow {
  color: var(--blue);
}

.landmark-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.landmark-heading > p {
  max-width: 620px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

.landmark-carousel {
  outline: 0;
}

.landmark-carousel:focus-visible .landmark-stage {
  outline: 3px solid var(--pink);
  outline-offset: 5px;
}

.landmark-stage {
  position: relative;
  height: clamp(520px, 54vw, 760px);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.landmark-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1100ms cubic-bezier(.2,.65,.25,1);
}

.landmark-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 4, 31, 0.05) 30%, rgba(24, 4, 31, 0.85) 100%),
    linear-gradient(90deg, rgba(24, 4, 31, 0.25), transparent 48%);
  content: "";
}

.landmark-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.landmark-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landmark-caption {
  position: absolute;
  z-index: 2;
  bottom: clamp(34px, 4.5vw, 68px);
  left: clamp(28px, 4.5vw, 68px);
  max-width: min(680px, 66%);
}

.landmark-caption p {
  margin: 0 0 12px;
  color: #ffd1e9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.landmark-caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.landmark-count {
  position: absolute;
  z-index: 3;
  top: clamp(24px, 3vw, 42px);
  right: clamp(25px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.landmark-count i {
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.55);
}

.landmark-controls {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(28px, 3.5vw, 52px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.landmark-controls button {
  display: grid;
  min-width: 50px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(36, 4, 47, 0.4);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, border-color 180ms ease;
}

.landmark-controls button:hover,
.landmark-controls button:focus-visible {
  border-color: var(--white);
  background: var(--pink);
}

.landmark-controls svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.landmark-controls [data-landmark-toggle] {
  min-width: 82px;
  font-size: 12px;
  font-weight: 600;
}

.landmark-dots {
  display: grid;
  grid-template-columns: repeat(12, minmax(12px, 1fr));
  margin-top: 16px;
  gap: 7px;
}

.landmark-dots button {
  position: relative;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.landmark-dots button::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(58, 10, 74, .18);
  content: "";
  transition: background 180ms ease, height 180ms ease;
}

.landmark-dots button:hover::before,
.landmark-dots button:focus-visible::before,
.landmark-dots button[aria-current="true"]::before {
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.landmark-marquee {
  position: relative;
  width: 100%;
  margin-top: clamp(58px, 6vw, 88px);
}

.landmark-marquee::before,
.landmark-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(9vw, 150px);
  content: "";
  pointer-events: none;
}

.landmark-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.landmark-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.landmark-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: landmark-scroll 58s linear infinite;
  will-change: transform;
}

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

.landmark-mini-card {
  width: clamp(235px, 22vw, 330px);
  flex: 0 0 auto;
  background: var(--paper);
}

.landmark-mini-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.landmark-mini-copy {
  padding: 18px 19px 20px;
  border: 1px solid rgba(58, 10, 74, .12);
  border-top: 0;
}

.landmark-mini-copy p,
.landmark-mini-copy strong {
  margin: 0;
}

.landmark-mini-copy p {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.landmark-mini-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes landmark-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.section-space {
  padding-block: clamp(88px, 10vw, 154px);
}

.services,
.ai-feature,
.network,
.experts,
.insights,
.partner,
.site-footer {
  scroll-margin-top: 94px;
}

.statement {
  padding-bottom: 76px;
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.section-kicker {
  padding-top: 13px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.statement-copy h2,
.network-heading h2,
.experts-copy h2,
.insights-heading h2,
.partner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.statement-copy p {
  max-width: 850px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 24px);
}

.services {
  padding-top: 20px;
  background: var(--paper);
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 58px minmax(250px, 0.9fr) minmax(300px, 1.1fr) 40px;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover,
.service-row:focus-visible {
  padding-inline: 18px;
  background: var(--white);
}

.service-number {
  align-self: start;
  padding-top: 42px;
  color: var(--muted);
  font-size: 12px;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3.1vw, 45px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.service-row p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.row-arrow {
  font-size: 28px;
  transition: transform 180ms ease;
}

.service-row:hover .row-arrow {
  transform: translate(4px, -4px);
}

.ai-feature {
  padding-block: clamp(90px, 11vw, 170px);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.ai-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  place-items: center;
  transform: rotate(-4deg);
}

.ai-visual::before,
.ai-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.27);
  content: "";
}

.ai-visual::before { inset: 13%; transform: rotate(10deg); }
.ai-visual::after { inset: 28%; transform: rotate(-18deg); }

.ai-core {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(74px, 10vw, 148px);
  letter-spacing: -0.08em;
  transform: rotate(4deg);
}

.signal {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12), 0 0 32px rgba(255, 255, 255, 0.7);
}

.signal-one { top: 9%; left: 35%; }
.signal-two { right: 12%; bottom: 33%; }
.signal-three { bottom: 10%; left: 20%; }

.visual-note {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.16em;
  transform: rotate(4deg);
}

.visual-note-one { top: 16%; right: 10%; }
.visual-note-two { bottom: 18%; right: 28%; }
.visual-note-three { top: 45%; left: 8%; }

.ai-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.ai-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-weight: 700;
}

.network {
  background: var(--white);
}

.network-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  margin-bottom: 80px;
}

.network-heading h2 {
  grid-column: 2;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.territory-card {
  position: relative;
  min-height: 370px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.territory-card:last-child {
  border-right: 0;
}

.territory-index {
  position: absolute;
  top: 36px;
  right: 32px;
  color: #8b9297;
  font-size: 12px;
}

.territory-type {
  margin: 0 0 84px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.territory-card h3 {
  max-width: 320px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.03;
}

.territory-card > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.experts {
  background: var(--paper);
}

.experts-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.experts-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 19px;
}

.role-cloud {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.role-cloud span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 21px;
  background: transparent;
  font-size: 15px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.role-cloud span:nth-child(3n + 2) {
  border-color: var(--blue);
  color: var(--blue);
}

.role-cloud span:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.insights {
  background: var(--white);
}

.insights-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
}

.insights-heading h2 {
  max-width: 880px;
  font-size: clamp(44px, 5vw, 72px);
}

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

.insight-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
}

.insight-dark {
  background: var(--navy);
  color: var(--white);
}

.insight-blue {
  background: var(--blue);
  color: var(--white);
}

.insight-art {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.insight-art-one {
  background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.12) 22px 23px), linear-gradient(135deg, #56156b, #d82f88);
}

.insight-art-one::before,
.insight-art-one::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  transform: rotate(45deg);
}

.insight-art-one::before { width: 170px; height: 170px; top: 56px; left: 25%; }
.insight-art-one::after { width: 90px; height: 90px; top: 96px; left: 35%; }

.insight-art-two {
  background: #f6d8e7;
}

.insight-art-two::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(23deg, transparent 0 44%, #3a0a4a 44% 47%, transparent 47%), linear-gradient(145deg, transparent 0 48%, #d82f88 48% 51%, transparent 51%);
  content: "";
}

.insight-art-two span {
  position: absolute;
  top: 18%;
  right: 14%;
  width: 155px;
  height: 155px;
  border: 26px solid var(--white);
  border-radius: 50%;
}

.insight-art-three {
  background: radial-gradient(circle at 28% 45%, rgba(255,255,255,.9) 0 3px, transparent 4px), radial-gradient(circle at 70% 30%, rgba(255,255,255,.7) 0 3px, transparent 4px), radial-gradient(circle at 75% 73%, rgba(255,255,255,.6) 0 3px, transparent 4px), linear-gradient(135deg, #f050a0, #6d1b83);
  background-size: 55px 55px, 73px 73px, 89px 89px, auto;
}

.insight-art-three::before {
  position: absolute;
  top: 45px;
  right: 65px;
  bottom: 45px;
  left: 65px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.08), 0 0 0 58px rgba(255,255,255,.06);
  content: "";
}

.insight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
}

.insight-body h3 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.insight-body a {
  margin-top: auto;
}

.partner {
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--navy);
  color: var(--white);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(70px, 10vw, 170px);
}

.partner h2 {
  font-size: clamp(48px, 5.7vw, 86px);
}

.partner-copy > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.partner-form {
  align-self: center;
}

.form-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--light-line);
}

.form-row label {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.form-row input,
.form-row select {
  width: 100%;
  height: 72px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 16px) 33px, calc(100% - 10px) 33px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.form-row option {
  color: var(--ink);
}

.form-row:focus-within {
  border-bottom-color: var(--white);
}

.submit-button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border: 1px solid var(--white);
  padding: 0 22px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: transparent;
  color: var(--white);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.form-status {
  min-height: 26px;
  margin: 12px 0 0;
  color: #ffc5e2;
}

.site-footer {
  padding: 80px 0 30px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  min-height: 330px;
  gap: 60px;
}

.footer-wordmark {
  width: 300px;
  height: 64px;
  padding-left: 74px;
  background-size: 64px 64px;
}

.footer-wordmark::after {
  left: 74px;
  font-size: 10.5px;
  letter-spacing: 1.75px;
}

.footer-wordmark .wordmark-name {
  font-size: 21px;
}

.footer-wordmark .wordmark-company {
  padding-left: 0;
  font-size: 21px;
}

.footer-positioning {
  margin: 28px 0 0;
  color: rgba(255,255,255,.6);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links p {
  margin: 0 0 11px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .14em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-division-section {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.footer-division-section .footer-all-divisions {
  margin-top: 8px;
  color: #ff88c4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.footer-division-section .footer-all-divisions span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.footer-division-section .footer-all-divisions:hover span,
.footer-division-section .footer-all-divisions:focus-visible span {
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-line);
  gap: 32px;
}

.footer-social-copy {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.footer-social-copy p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .14em;
}

.footer-social-copy span {
  font-size: 18px;
  font-weight: 600;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link .icon-fill {
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 10px 26px rgba(229, 59, 148, .28);
  transform: translateY(-3px);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-social-link.is-coming {
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.38);
  cursor: not-allowed;
}

.footer-social-link.is-coming:hover {
  border-color: rgba(255,255,255,.14);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > p + p {
  display: none;
}

.footer-bottom-centered {
  display: flex;
  justify-content: center;
  text-align: center;
}

.business-office-preview {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--paper) 100%);
}

.preview-heading,
.directory-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.preview-heading h2,
.directory-heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.preview-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.preview-card:last-child {
  border-right: 0;
}

.preview-card:hover,
.preview-card:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
}

.preview-card > p {
  margin: 0 0 76px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.preview-card:hover > p,
.preview-card:focus-visible > p {
  color: var(--pink);
}

.preview-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.preview-card strong {
  margin-top: auto;
  font-size: 20px;
  font-weight: 600;
}

.preview-card > span {
  color: var(--muted);
  font-size: 12px;
}

.preview-card:hover > span,
.preview-card:focus-visible > span {
  color: rgba(255,255,255,.65);
}

.preview-card b {
  margin-top: 28px;
  font-size: 13px;
}

.investment-disclaimer {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.detailed-application-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.site-header.inner-header {
  position: fixed;
  background: rgba(36, 4, 47, .98);
  box-shadow: 0 1px 0 rgba(255,255,255,.15);
}

.inner-page {
  background: var(--paper);
}

.page-hero {
  padding: 180px 0 110px;
  background: radial-gradient(circle at 85% 18%, rgba(239,90,167,.38), transparent 30%), linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 52px;
  gap: 9px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
}

.model-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
}

.model-hero h1,
.directory-hero h1,
.application-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.06em;
}

.model-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-commercial {
  border-top: 1px solid rgba(255,255,255,.4);
  padding-top: 28px;
}

.hero-commercial p {
  margin: 0 0 6px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-commercial strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.1;
}

.hero-commercial span {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 0 23px;
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--white);
  color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--navy-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255,255,255,.12);
}

.model-section {
  padding-block: clamp(82px, 9vw, 140px);
}

.model-section-white {
  background: var(--white);
}

.model-section-pink {
  background: var(--pink-light);
}

.section-heading-split {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  margin-bottom: 58px;
  gap: 60px;
}

.section-heading-split h2,
.model-section h2,
.application-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.section-heading-split > p,
.model-lead {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fact-card {
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.fact-card strong {
  display: block;
  margin: 54px 0 12px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.15;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.commercial-table {
  width: 100%;
  margin-top: 46px;
  border-collapse: collapse;
}

.commercial-table th,
.commercial-table td {
  border-bottom: 1px solid var(--line);
  padding: 22px 18px;
  text-align: left;
  vertical-align: top;
}

.commercial-table th {
  width: 29%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.commercial-table td strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 19px;
}

.commercial-table td span {
  color: var(--muted);
  font-size: 13px;
}

.benefit-grid,
.software-grid,
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.software-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.benefit-card span,
.software-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 55px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--blue);
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.benefit-card h3,
.software-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 600;
}

.benefit-card p,
.software-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.software-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--purple));
  color: var(--white);
}

.software-section .eyebrow,
.software-section .model-lead {
  color: rgba(255,255,255,.68);
}

.software-card {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}

.software-card span {
  background: var(--pink);
  color: var(--navy-deep);
}

.software-card p {
  color: rgba(255,255,255,.7);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.requirements-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.requirements-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 18px 34px;
}

.requirements-list li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--ink);
}

.process-step {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin: 55px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.model-cta {
  padding-block: 110px;
  background: linear-gradient(120deg, var(--blue), var(--purple));
  color: var(--white);
}

.model-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
}

.model-cta h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 73px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
}

.model-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.directory-hero {
  padding-bottom: 90px;
}

.directory-hero-copy {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
}

.directory-hero-copy > p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
}

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

.directory-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--white);
}

.directory-card.featured {
  background: var(--navy);
  color: var(--white);
}

.directory-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
  gap: 20px;
}

.directory-card-top p,
.directory-card-top span {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.directory-card.featured .directory-card-top p,
.directory-card.featured .directory-card-top span {
  color: var(--pink);
}

.directory-card h2 {
  margin: 0 0 15px;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.directory-card > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.directory-card.featured > p {
  color: rgba(255,255,255,.7);
}

.directory-card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 42px;
  gap: 20px;
}

.directory-card-meta strong {
  display: block;
  font-size: 20px;
}

.directory-card-meta span {
  color: var(--muted);
  font-size: 12px;
}

.directory-card.featured .directory-card-meta span {
  color: rgba(255,255,255,.58);
}

.directory-card-meta b {
  font-size: 14px;
}

.office-fit-support {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 11vw, 165px) 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(239,90,167,.34), transparent 24%),
    radial-gradient(circle at 10% 92%, rgba(109,27,131,.5), transparent 31%),
    var(--navy-deep);
  color: var(--white);
}

.office-fit-support::before {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018);
  content: "";
}

.office-fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.office-fit-copy h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6.1vw, 90px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.055em;
}

.office-fit-copy > p:not(.eyebrow) {
  max-width: 790px;
  margin: 34px 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.office-fit-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 12px;
}

.office-demo-link {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 0 8px;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
}

.office-demo-link:hover,
.office-demo-link:focus-visible {
  color: var(--pink);
}

.office-fit-copy > small {
  display: block;
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255,255,255,.46);
  font-size: 11px;
}

.office-fit-options {
  border-top: 1px solid rgba(255,255,255,.28);
}

.office-fit-options article {
  min-height: 315px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding: 30px 0;
}

.office-fit-options span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.office-fit-options h3 {
  margin: 54px 0 15px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.office-fit-options p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.office-fit-options b {
  display: block;
  margin-top: 28px;
  font-size: 12px;
}

.application-page-main {
  min-height: 100vh;
  padding: 155px 0 100px;
  background: linear-gradient(180deg, var(--pink-light), var(--paper));
}

.application-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.application-intro {
  position: sticky;
  top: 135px;
}

.application-intro h1 {
  font-size: clamp(46px, 5vw, 72px);
  color: var(--navy);
}

.application-intro > p:not(.eyebrow) {
  margin: 26px 0;
  color: var(--muted);
}

.application-note {
  border-left: 3px solid var(--pink);
  padding-left: 18px;
  font-size: 13px;
}

.application-help-card {
  margin-top: 38px;
  border: 1px solid rgba(109,27,131,.24);
  padding: 25px;
  background: rgba(255,255,255,.58);
}

.application-help-card > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.application-help-card h2 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.application-help-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.application-help-card a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.application-panel {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 54px);
  background: var(--white);
}

.application-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 52px;
  gap: 6px;
}

.progress-item {
  height: 5px;
  border: 0;
  background: #ead6e2;
  transition: background 180ms ease;
}

.progress-item.is-active,
.progress-item.is-complete {
  background: var(--blue);
}

.step-meta {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.step-panel[hidden] {
  display: none;
}

.step-intro {
  margin: 15px 0 38px;
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.field-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-control.full-width {
  grid-column: 1 / -1;
}

.choice-card.full-width {
  grid-column: 1 / -1;
}

.field-control label,
.choice-label {
  font-size: 12px;
  font-weight: 600;
}

.field-control label span {
  color: var(--blue);
}

.field-control input,
.field-control select,
.field-control textarea {
  width: 100%;
  border: 1px solid #d9c2d0;
  border-radius: 0;
  padding: 14px 15px;
  background: #fffbfd;
  color: var(--ink);
  outline: none;
}

.field-control input,
.field-control select {
  min-height: 54px;
}

.field-control textarea {
  min-height: 130px;
  resize: vertical;
}

.field-control input:focus,
.field-control select:focus,
.field-control textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(166,30,108,.11);
}

.choice-group {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 11px;
  gap: 10px;
}

.choice-card {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid #d9c2d0;
  padding: 13px;
  background: #fffbfd;
  gap: 10px;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--blue);
  background: var(--pink-light);
}

.choice-card input {
  accent-color: var(--blue);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  gap: 12px;
}

.form-navigation button {
  min-width: 130px;
  min-height: 52px;
  border: 1px solid var(--navy);
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
}

.button-back {
  background: transparent;
  color: var(--navy);
}

.button-next,
.button-submit {
  margin-left: auto;
  background: var(--navy);
  color: var(--white);
}

.button-next:hover,
.button-submit:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.application-status {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.review-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.review-item:nth-child(2n) {
  border-right: 0;
}

.review-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.review-item strong {
  font-size: 14px;
  font-weight: 600;
}

/* Editorial pages: shared navigation and section language */
.editorial-page {
  background: var(--white);
}

.page-index {
  position: sticky;
  z-index: 40;
  top: 94px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  scrollbar-width: none;
  backdrop-filter: blur(14px);
}

.page-index::-webkit-scrollbar {
  display: none;
}

.page-index-inner {
  display: flex;
  width: max-content;
  min-width: var(--shell);
  align-items: center;
  min-height: 64px;
  gap: 34px;
}

.page-index a {
  position: relative;
  padding-block: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.page-index a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.page-index a:hover::after,
.page-index a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section-number {
  margin: 13px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.large-copy {
  max-width: 970px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.75vw, 25px);
  line-height: 1.55;
}

/* About NyKinSky */
.firm-hero {
  padding: 168px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(239, 90, 167, .34), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), #4a0b5c 66%, #76185f);
  color: var(--white);
}

.firm-hero-copy {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  margin-bottom: 66px;
  gap: clamp(48px, 8vw, 130px);
}

.firm-hero-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.firm-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7.2vw, 108px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}

.firm-hero-copy > p:last-child {
  max-width: 610px;
  margin: 0 0 8px;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.55vw, 22px);
}

.firm-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .7fr .85fr;
  height: clamp(370px, 37vw, 570px);
  gap: 12px;
}

.firm-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.firm-mosaic figure:nth-child(2) {
  margin-top: 75px;
}

.firm-mosaic figure:nth-child(3) {
  margin-bottom: 62px;
}

.firm-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.65,.25,1);
}

.firm-mosaic figure:hover img {
  transform: scale(1.035);
}

.firm-mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(24,4,31,.8));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.firm-intro {
  background: var(--paper);
}

.firm-intro-grid,
.action-thesis-grid {
  display: grid;
  grid-template-columns: .32fr 1.68fr;
  gap: clamp(40px, 7vw, 110px);
}

.firm-intro-grid h2,
.action-thesis-grid h2 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.1vw, 90px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.firm-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.firm-principle {
  min-height: 350px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.firm-principle:last-child {
  border-right: 0;
}

.firm-principle > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.firm-principle h3 {
  margin: 100px 0 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.firm-principle p {
  margin: 0;
  color: var(--muted);
}

.leadership-framework {
  padding: clamp(92px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 14% 80%, rgba(239,90,167,.24), transparent 28%),
    var(--navy-deep);
  color: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.leadership-copy {
  position: sticky;
  top: 190px;
}

.leadership-copy h2,
.evolution-heading h2,
.delivery-system-heading h2,
.ai-services-heading h2,
.agent-systems-heading h2,
.ai-engagement-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.leadership-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.leadership-layers {
  border-top: 1px solid var(--light-line);
}

.leadership-layers article {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 180px;
  align-items: start;
  border-bottom: 1px solid var(--light-line);
  padding: 30px 0;
  gap: 34px;
}

.leadership-layers article > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.leadership-layers h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
}

.leadership-layers p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.6);
}

.guiding-principles {
  background: var(--white);
}

.values-orbit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.values-orbit > article,
.values-center {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-orbit > article:nth-child(3),
.values-orbit > article:nth-child(5) {
  border-right: 0;
}

.values-orbit > article:nth-child(4),
.values-orbit > article:nth-child(5) {
  border-bottom: 0;
}

.values-center {
  display: flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle, rgba(239,90,167,.34), transparent 40%),
    var(--navy);
  color: var(--white);
  text-align: center;
}

.values-center::before {
  width: 170px;
  height: 170px;
  margin-bottom: -128px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  content: "";
  animation: value-pulse 4s ease-in-out infinite;
}

.values-center span {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.values-center strong {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.values-orbit article b {
  color: var(--blue);
  font-size: 11px;
}

.values-orbit article h3 {
  margin: 70px 0 16px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.values-orbit article p {
  margin: 0;
  color: var(--muted);
}

@keyframes value-pulse {
  0%, 100% { transform: scale(.92); opacity: .45; }
  50% { transform: scale(1.08); opacity: 1; }
}

.evolution-section {
  padding: clamp(92px, 10vw, 150px) 0;
  background: var(--navy);
  color: var(--white);
}

.evolution-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(70px, 10vw, 160px);
}

.evolution-heading > p:last-child {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.6);
}

.evolution-track {
  position: relative;
  border-left: 1px solid rgba(255,255,255,.3);
  padding-left: 52px;
}

.evolution-track article {
  position: relative;
  min-height: 230px;
  border-bottom: 1px solid var(--light-line);
  padding: 10px 0 38px;
}

.evolution-track article + article {
  padding-top: 42px;
}

.evolution-track article::before {
  position: absolute;
  top: 12px;
  left: -60px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 1px var(--pink);
  content: "";
}

.evolution-track article + article::before {
  top: 44px;
}

.evolution-track span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.evolution-track h3 {
  margin: 23px 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
}

.evolution-track p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.62);
}

.commitments-section {
  background: linear-gradient(180deg, var(--pink-light), var(--paper));
}

.commitments-heading {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  align-items: end;
  margin-bottom: 60px;
  gap: 60px;
}

.commitments-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.commitment-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: rgba(255,255,255,.42);
}

.commitment-card-feature {
  background: var(--navy);
  color: var(--white);
}

.commitment-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.commitment-card-feature > span {
  color: var(--pink);
}

.commitment-card h3 {
  margin: 75px 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.06;
}

.commitment-card p {
  margin: 0;
  color: var(--muted);
}

.commitment-card-feature p {
  color: rgba(255,255,255,.65);
}

.commitment-card a {
  margin-top: auto;
  padding-top: 26px;
  font-weight: 600;
}

.commitment-card a b {
  transition: transform 180ms ease;
}

.commitment-card a:hover b {
  transform: translateX(5px);
}

.delivery-system {
  padding: clamp(95px, 11vw, 160px) 0;
  background:
    linear-gradient(120deg, rgba(109,27,131,.42), transparent 44%),
    var(--navy-deep);
  color: var(--white);
}

.delivery-system-heading {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  margin-bottom: 70px;
  gap: 60px;
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.delivery-flow article {
  min-height: 320px;
  border-right: 1px solid var(--light-line);
  padding: 28px;
}

.delivery-flow article:last-child {
  border-right: 0;
}

.delivery-flow span,
.operating-assets article > p {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.delivery-flow h3 {
  margin: 100px 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
}

.delivery-flow p {
  margin: 0;
  color: rgba(255,255,255,.6);
}

.operating-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  gap: 18px;
}

.operating-assets article {
  min-height: 250px;
  padding: 30px;
  background: rgba(255,255,255,.07);
}

.operating-assets article > p {
  margin: 0;
}

.operating-assets h3 {
  margin: 55px 0 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.operating-assets span {
  color: rgba(255,255,255,.58);
}

.about-explore {
  background: var(--white);
}

.explore-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.explore-link-grid a {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  transition: background 180ms ease, color 180ms ease;
}

.explore-link-grid a:hover,
.explore-link-grid a:focus-visible {
  background: var(--pink-light);
}

.explore-link-grid span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.explore-link-grid b {
  max-width: 360px;
  margin-top: auto;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.explore-link-grid i {
  position: absolute;
  right: 25px;
  bottom: 24px;
  font-style: normal;
}

.closing-cta {
  padding: clamp(80px, 9vw, 130px) 0;
  background: linear-gradient(120deg, var(--purple), var(--blue));
  color: var(--white);
}

.closing-cta-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.closing-cta h2 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(47px, 6vw, 88px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.05em;
}

.button-light {
  flex: 0 0 auto;
  gap: 12px;
}

/* Actions: Generative and Agentic AI */
.ai-action-hero {
  position: relative;
  min-height: 900px;
  padding: 165px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 43%, rgba(230,68,149,.28), transparent 25%),
    radial-gradient(circle at 65% 12%, rgba(109,27,131,.35), transparent 33%),
    #18021f;
  color: var(--white);
}

.action-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.action-hero-copy {
  position: relative;
  z-index: 2;
}

.action-hero-copy .breadcrumb {
  margin-bottom: 52px;
}

.action-hero-copy .eyebrow i {
  padding-inline: 10px;
  color: var(--pink);
  font-style: normal;
}

.action-hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(61px, 6.7vw, 102px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}

.action-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 1.45vw, 21px);
}

.action-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
  gap: 12px;
}

.button-ghost {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.55);
  padding: 0 23px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255,255,255,.12);
}

.agent-visual {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.agent-grid-lines {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 46%, transparent 75%);
}

.agent-lines {
  position: absolute;
  inset: 6%;
  width: 88%;
  fill: none;
  stroke: rgba(255,255,255,.22);
  stroke-dasharray: 6 10;
  stroke-width: 1;
  animation: agent-rotate 38s linear infinite;
}

.agent-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(109,27,131,.28);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 70px rgba(230,68,149,.34), inset 0 0 32px rgba(243,106,172,.1);
  transform: translate(-50%, -50%);
}

.agent-core-logo {
  display: block;
  width: 86px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(36,4,47,.32));
}

.agent-facet {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: 5.4s cubic-bezier(.2,.72,.24,1) infinite both;
}

.agent-facet-one { animation-name: agent-facet-one; }
.agent-facet-two { animation-name: agent-facet-two; }
.agent-facet-three { animation-name: agent-facet-three; }
.agent-facet-four { animation-name: agent-facet-four; }

@keyframes agent-facet-one {
  0%, 4% { opacity: 0; transform: translate(-28px,-20px) rotate(-24deg) scale(.62); }
  8% { opacity: 1; }
  24%, 92% { opacity: 1; transform: translate(0) rotate(0) scale(1); }
  100% { opacity: 0; transform: translate(0) rotate(0) scale(1.03); }
}

@keyframes agent-facet-two {
  0%, 8% { opacity: 0; transform: translate(30px,-24px) rotate(22deg) scale(.6); }
  12% { opacity: 1; }
  28%, 92% { opacity: 1; transform: translate(0) rotate(0) scale(1); }
  100% { opacity: 0; transform: translate(0) rotate(0) scale(1.03); }
}

@keyframes agent-facet-three {
  0%, 12% { opacity: 0; transform: translate(26px,26px) rotate(20deg) scale(.58); }
  16% { opacity: 1; }
  32%, 92% { opacity: 1; transform: translate(0) rotate(0) scale(1); }
  100% { opacity: 0; transform: translate(0) rotate(0) scale(1.03); }
}

@keyframes agent-facet-four {
  0%, 16% { opacity: 0; transform: translate(-22px,24px) rotate(-18deg) scale(.55); }
  20% { opacity: 1; }
  36%, 92% { opacity: 1; transform: translate(0) rotate(0) scale(1); }
  100% { opacity: 0; transform: translate(0) rotate(0) scale(1.03); }
}

.agent-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.agent-node i {
  width: 15px;
  height: 15px;
  border: 3px solid #4b0d5f;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), 0 0 20px rgba(239,90,167,.8);
  animation: agent-node-pulse 2.8s ease-in-out infinite;
}

.agent-node-one { top: 17%; left: 8%; }
.agent-node-two { top: 19%; right: 5%; }
.agent-node-three { right: 1%; bottom: 22%; }
.agent-node-four { bottom: 17%; left: 7%; }
.agent-node-two i { animation-delay: .45s; }
.agent-node-three i { animation-delay: .9s; }
.agent-node-four i { animation-delay: 1.35s; }

.agent-visual-note {
  position: absolute;
  right: 12%;
  bottom: 4%;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.hero-signal {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 20px 4vw;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

@keyframes agent-rotate {
  to { transform: rotate(360deg); }
}

@keyframes agent-node-pulse {
  0%, 100% { transform: scale(.8); opacity: .6; }
  50% { transform: scale(1.18); opacity: 1; }
}

.action-thesis {
  background: var(--paper);
}

.action-method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(75px, 9vw, 130px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.action-method article {
  min-height: 380px;
  border-right: 1px solid var(--line);
  padding: 27px;
}

.action-method article:last-child {
  border-right: 0;
}

.action-method article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.action-method article div {
  margin-top: 80px;
}

.action-method article p,
.ai-service-card > p {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.action-method h3 {
  margin: 0 0 19px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.action-method small {
  color: var(--muted);
  font-size: 15px;
}

.robotics-showcase {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 150px;
  padding: clamp(95px, 11vw, 165px) 0;
  background:
    radial-gradient(circle at 89% 5%, rgba(230,68,149,.25), transparent 25%),
    linear-gradient(145deg, #1b0224, #30083e 58%, #17021e);
  color: var(--white);
}

.robotics-heading {
  display: grid;
  grid-template-columns: .32fr 1.68fr;
  margin-bottom: 65px;
  gap: clamp(45px, 8vw, 120px);
}

.robotics-heading h2 {
  max-width: 1200px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.robotics-heading div > p {
  max-width: 850px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.63);
  font-size: 17px;
}

.robotics-cinema {
  position: relative;
  min-height: min(70vw, 790px);
  overflow: hidden;
  background: #0f0214;
}

.robotics-cinema video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robotics-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,2,25,.9), rgba(19,2,25,.2) 65%),
    linear-gradient(180deg, rgba(19,2,25,.08), rgba(19,2,25,.75));
}

.robotics-video-copy {
  position: absolute;
  z-index: 2;
  bottom: 70px;
  left: clamp(28px, 5vw, 72px);
  max-width: 720px;
}

.robotics-video-copy > span {
  color: #ff9acb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.robotics-video-copy h3 {
  margin: 22px 0 20px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.05em;
}

.robotics-video-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.robotics-video-toggle {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 99px;
  padding: 0 18px;
  background: rgba(18,2,24,.54);
  color: var(--white);
  cursor: pointer;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.robotics-video-toggle:hover,
.robotics-video-toggle:focus-visible {
  background: var(--pink);
  color: var(--navy-deep);
}

.robotics-video-toggle b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
}

.video-toggle-icon {
  width: 10px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.robotics-video-toggle[aria-pressed="true"] .video-toggle-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 0;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.robotics-video-credit {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 28px;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 9px;
}

.robotics-video-credit a:hover,
.robotics-video-credit a:focus-visible {
  color: var(--white);
}

.robotics-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}

.robotics-capability-grid article {
  min-height: 285px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding: 26px;
}

.robotics-capability-grid span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.robotics-capability-grid h3 {
  margin: 72px 0 15px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.robotics-capability-grid p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.robotics-next-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-top: 90px;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 45px;
  gap: clamp(50px, 9vw, 140px);
}

.robotics-next-step h3 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 69px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.robotics-next-step > div:last-child > p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
}

.robotics-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-services-section {
  padding: clamp(95px, 11vw, 165px) 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(239,90,167,.22), transparent 24%),
    var(--navy-deep);
  color: var(--white);
}

.ai-services-heading {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  margin-bottom: 70px;
  gap: 60px;
}

.ai-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.ai-service-card {
  min-height: 430px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  padding: 30px;
}

.ai-service-card.featured {
  background: linear-gradient(145deg, rgba(230,68,149,.3), rgba(109,27,131,.14));
}

.ai-service-card > span {
  display: block;
  margin-bottom: 83px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.ai-service-card > p {
  color: #ff9acb;
}

.ai-service-card h3 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.ai-service-card ul {
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.62);
  list-style: none;
}

.ai-service-card li {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 9px 0;
  font-size: 13px;
}

.action-studio {
  background: var(--white);
}

.studio-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  margin-bottom: 65px;
  gap: 70px;
}

.studio-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.studio-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.studio-shell {
  border: 1px solid var(--line);
  background: var(--paper);
}

.studio-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}

.studio-tabs button {
  min-height: 75px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.studio-tabs button:last-child {
  border-right: 0;
}

.studio-tabs button:hover,
.studio-tabs button:focus-visible,
.studio-tabs button[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
}

.studio-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 500px;
}

.studio-panel[hidden] {
  display: none;
}

.studio-panel > div {
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(145deg, var(--purple), var(--blue));
  color: var(--white);
}

.studio-panel > div > p {
  margin: 0 0 65px;
  color: #ffd2e9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.studio-panel > div h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.studio-panel > div span {
  color: rgba(255,255,255,.72);
}

.studio-panel > ul {
  display: flex;
  margin: 0;
  padding: 28px clamp(28px, 4vw, 60px);
  list-style: none;
  flex-direction: column;
  justify-content: center;
}

.studio-panel li {
  display: grid;
  grid-template-columns: minmax(140px, .65fr) 1.35fr;
  border-bottom: 1px solid var(--line);
  padding: 29px 0;
  gap: 30px;
}

.studio-panel li b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.studio-panel li span {
  color: var(--muted);
}

.agent-systems {
  padding: clamp(95px, 11vw, 160px) 0;
  background: #18021f;
  color: var(--white);
}

.agent-systems-heading {
  display: grid;
  grid-template-columns: .35fr 1.1fr .75fr;
  align-items: end;
  margin-bottom: 80px;
  gap: 50px;
}

.agent-systems-heading > p:last-child {
  margin: 0 0 8px;
  color: rgba(255,255,255,.58);
}

.agent-architecture {
  display: grid;
  gap: 13px;
}

.architecture-layer {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  min-height: 150px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  padding: 25px 32px;
  background: rgba(255,255,255,.05);
  gap: 20px;
}

.architecture-layer > span,
.architecture-workers article > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.architecture-layer p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.architecture-layer h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
}

.architecture-layer > b {
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 16px;
  font-size: 9px;
  letter-spacing: .13em;
}

.human-layer {
  background: linear-gradient(90deg, rgba(230,68,149,.25), rgba(255,255,255,.04));
}

.orchestrator-layer {
  margin-inline: 5%;
  background: linear-gradient(90deg, rgba(109,27,131,.5), rgba(255,255,255,.04));
}

.architecture-workers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: 10%;
  gap: 13px;
}

.architecture-workers article {
  min-height: 190px;
  border: 1px solid rgba(255,255,255,.18);
  padding: 24px;
  background: rgba(255,255,255,.035);
}

.architecture-workers h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.architecture-workers p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.assurance-layer {
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(230,68,149,.22));
}

.responsible-ai {
  background: var(--pink-light);
}

.responsible-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 140px);
}

.responsible-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.responsible-copy > p:not(.eyebrow) {
  margin: 29px 0;
  color: var(--muted);
  font-size: 18px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.control-grid article {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px;
  background: rgba(255,255,255,.43);
}

.control-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.control-grid h3 {
  margin: 52px 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.control-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ai-engagement {
  padding: clamp(95px, 10vw, 150px) 0;
  background: var(--navy);
  color: var(--white);
}

.ai-engagement-heading {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  margin-bottom: 65px;
  gap: 60px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.engagement-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border-right: 1px solid var(--light-line);
  padding: 30px;
}

.engagement-grid article:last-child {
  border-right: 0;
}

.engagement-grid article > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.engagement-grid article > p:first-of-type {
  margin: 70px 0 14px;
  color: #ffa3d1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.engagement-grid h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.engagement-grid article > p:last-of-type {
  margin: 0;
  color: rgba(255,255,255,.58);
}

.engagement-grid a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--white);
  font-weight: 600;
}

.ai-closing {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.2), transparent 25%),
    linear-gradient(115deg, #7c1a83, #dc347f);
}

/* Contact and lead generation */
.contact-page {
  background: var(--paper);
}

.contact-hero {
  padding: 175px 0 105px;
  background:
    linear-gradient(120deg, rgba(109,27,131,.45), transparent 52%),
    var(--navy-deep);
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: clamp(60px, 10vw, 160px);
}

.contact-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(61px, 7vw, 105px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.06em;
}

.contact-hero-aside p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 19px;
}

.contact-hero-aside a {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 7px;
  gap: 18px;
  font-weight: 600;
}

.contact-routes {
  padding: clamp(85px, 9vw, 135px) 0;
  background: var(--white);
}

.contact-routes-heading {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  align-items: end;
  margin-bottom: 58px;
  gap: 60px;
}

.contact-routes-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.route-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 29px;
  background: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  z-index: 1;
  background: var(--pink-light);
  transform: translateY(-7px);
}

.route-card-accent {
  background: var(--navy);
  color: var(--white);
}

.route-card-accent:hover,
.route-card-accent:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.route-card-green {
  background: #e9f4e9;
  color: #123e2d;
}

.route-card-green:hover,
.route-card-green:focus-visible {
  background: #c6ec72;
  color: #0a3024;
}

.route-card-green > span {
  color: #3d884e;
}

.route-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.route-card-accent > span {
  color: var(--pink);
}

.route-card h3 {
  margin: 78px 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.05;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.route-card-accent p {
  color: rgba(255,255,255,.65);
}

.route-card b {
  margin-top: auto;
  padding-top: 28px;
  font-size: 13px;
}

.lead-capture {
  padding: clamp(90px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(230,68,149,.2), transparent 23%),
    var(--navy-deep);
  color: var(--white);
  scroll-margin-top: 94px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: .63fr 1.37fr;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.contact-form-intro {
  position: sticky;
  top: 180px;
}

.contact-form-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.contact-form-intro > p:not(.eyebrow) {
  margin: 27px 0 45px;
  color: rgba(255,255,255,.6);
}

.contact-assurance {
  display: grid;
  grid-template-columns: 34px 1fr;
  border-top: 1px solid var(--light-line);
  padding: 20px 0;
  gap: 15px;
}

.contact-assurance > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.contact-assurance p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.contact-assurance b {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.lead-form {
  padding: clamp(28px, 4.6vw, 64px);
  background: var(--white);
  color: var(--ink);
}

.lead-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 55px;
  padding: 0;
  list-style: none;
}

.lead-progress li {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  border-bottom: 3px solid #ead6e2;
  gap: 9px;
  color: #9c8794;
  font-size: 11px;
}

.lead-progress li.is-active,
.lead-progress li.is-complete {
  border-bottom-color: var(--blue);
  color: var(--ink);
}

.lead-progress li span {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #f3e7ee;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}

.lead-progress li.is-active span,
.lead-progress li.is-complete span {
  background: var(--blue);
  color: var(--white);
}

.lead-progress li b {
  font-weight: 600;
}

.lead-step[hidden] {
  display: none;
}

.form-step-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.lead-step h3 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.lead-step > .step-intro {
  max-width: 760px;
  margin: 17px 0 40px;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.field-control small {
  color: var(--muted);
  font-size: 10px;
}

.lead-choice-group {
  margin: 30px 0 0;
  border: 0;
  padding: 0;
}

.lead-choice-group legend {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.lead-choice-group legend small {
  margin-left: 5px;
  color: var(--muted);
  font-weight: 400;
}

.lead-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lead-choice-grid label {
  display: flex;
  min-height: 64px;
  align-items: center;
  border: 1px solid #d9c2d0;
  padding: 13px 15px;
  background: #fffbfd;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.lead-choice-grid label:has(input:checked) {
  border-color: var(--blue);
  background: var(--pink-light);
}

.lead-choice-grid input,
.lead-consent input {
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.lead-review {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lead-review-item {
  min-height: 105px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px;
}

.lead-review-item.wide {
  grid-column: 1 / -1;
}

.lead-review-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lead-review-item strong {
  font-size: 13px;
  font-weight: 600;
  white-space: pre-line;
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  margin-top: 26px;
  border: 1px solid var(--line);
  padding: 18px;
  gap: 12px;
  background: var(--paper);
  cursor: pointer;
  font-size: 12px;
}

.lead-consent input {
  margin-top: 4px;
}

.prototype-notice {
  margin: 18px 0 0;
  border-left: 3px solid var(--pink);
  padding-left: 15px;
  color: var(--muted);
  font-size: 11px;
}

.lead-form-actions {
  display: flex;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
  gap: 12px;
}

.lead-form-actions button {
  min-width: 130px;
  min-height: 56px;
  cursor: pointer;
  font-weight: 600;
}

.lead-back {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.lead-next,
.lead-submit {
  margin-left: auto;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.lead-next:hover,
.lead-next:focus-visible,
.lead-submit:hover,
.lead-submit:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.lead-status {
  min-height: 32px;
}

.contact-next {
  padding: clamp(90px, 10vw, 145px) 0;
  background: linear-gradient(130deg, var(--purple), var(--blue));
  color: var(--white);
}

.contact-next-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
}

.contact-next h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.contact-next-links {
  border-top: 1px solid var(--light-line);
}

.contact-next-links a {
  display: flex;
  min-height: 125px;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid var(--light-line);
  padding: 20px 0;
}

.contact-next-links span {
  margin-bottom: 9px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-next-links b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

/* Global locations */
.locations-page,
.location-detail-page {
  background: var(--white);
}

.locations-hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 42%, rgba(230,68,149,.24), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(109,27,131,.42), transparent 30%),
    var(--navy-deep);
  color: var(--white);
}

.locations-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.locations-hero-copy {
  position: relative;
  z-index: 2;
}

.locations-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 105px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}

.locations-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 32px 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.location-globe {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 30%, rgba(239,90,167,.25), transparent 17%),
    repeating-radial-gradient(circle, transparent 0 55px, rgba(255,255,255,.045) 56px 57px);
  box-shadow: inset 0 0 90px rgba(230,68,149,.16);
}

.globe-ring,
.globe-axis {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.globe-ring-one {
  transform: rotate(63deg) scaleX(.38);
  animation: globe-drift-one 13s ease-in-out infinite alternate;
}

.globe-ring-two {
  transform: rotate(-63deg) scaleX(.38);
  animation: globe-drift-two 17s ease-in-out infinite alternate;
}

.globe-axis {
  border-right: 0;
  border-left: 0;
  transform: scaleY(.36);
}

.globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 145px;
  height: 145px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  flex-direction: column;
  background: radial-gradient(circle at 35% 25%, #f267ac, var(--purple) 62%, var(--navy-deep));
  box-shadow: 0 0 65px rgba(230,68,149,.4);
  transform: translate(-50%, -50%);
}

.globe-core b {
  font-family: var(--serif);
  font-size: 54px;
  line-height: .9;
}

.globe-core small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.globe-point {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.globe-point::before {
  width: 10px;
  height: 10px;
  border: 2px solid #4d105d;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), 0 0 18px rgba(239,90,167,.75);
  content: "";
  animation: agent-node-pulse 3s ease-in-out infinite;
}

.point-india { top: 48%; right: 7%; }
.point-america { top: 31%; left: 3%; }
.point-europe { top: 18%; right: 20%; }
.point-japan { top: 34%; right: 0; }
.point-australia { right: 13%; bottom: 16%; }
.point-middle-east { bottom: 18%; left: 4%; }

@keyframes globe-drift-one {
  to { transform: rotate(73deg) scaleX(.48); }
}

@keyframes globe-drift-two {
  to { transform: rotate(-73deg) scaleX(.48); }
}

.location-status-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(24,2,31,.72);
}

.location-status-bar .page-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.location-status-bar span {
  display: flex;
  min-height: 82px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.13);
  padding: 15px 20px;
  color: rgba(255,255,255,.5);
  gap: 8px;
  font-size: 11px;
}

.location-status-bar span:last-child {
  border-right: 0;
}

.location-status-bar b {
  color: var(--white);
  font-size: 14px;
}

.location-directory {
  background: var(--paper);
}

.location-directory-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  margin-bottom: 55px;
  gap: clamp(50px, 8vw, 130px);
}

.location-directory-heading h2,
.market-info-heading h2,
.market-paths-heading h2,
.future-markets h2,
.market-explore h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.location-directory-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.location-filters {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.location-search,
.location-region {
  display: flex;
  min-height: 112px;
  justify-content: center;
  flex-direction: column;
  padding: 19px 25px;
}

.location-search {
  border-right: 1px solid var(--line);
}

.location-filters label {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-filters input,
.location-filters select {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
}

.location-results {
  margin: 24px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

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

.location-card-grid.is-empty {
  display: block;
}

.location-empty,
.location-noscript {
  border: 1px solid var(--line);
  padding: 35px;
  background: var(--white);
  color: var(--muted);
}

.location-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.65,.25,1);
}

.location-card:hover img,
.location-card:focus-visible img {
  transform: scale(1.04);
}

.location-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,4,31,.12), rgba(24,4,31,.9));
}

.location-card-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  gap: 15px;
}

.location-card-top span {
  color: #ffd2e9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.location-card-top b {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 99px;
  padding: 7px 10px;
  background: rgba(24,4,31,.35);
  font-size: 8px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.location-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.location-card-copy h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.location-card-copy p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
}

.location-card-copy strong {
  display: block;
  margin-top: 28px;
  font-size: 12px;
}

.future-markets {
  padding: clamp(90px, 10vw, 145px) 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(239,90,167,.24), transparent 25%),
    var(--navy-deep);
  color: var(--white);
}

.future-markets-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 140px);
}

.future-region-list {
  border-top: 1px solid var(--light-line);
}

.future-region-list article {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-line);
  gap: 30px;
}

.future-region-list span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.future-region-list b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}

.location-office-paths {
  background: var(--white);
}

.office-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.office-path-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: var(--paper);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.office-path-card.featured {
  background: var(--navy);
  color: var(--white);
}

.office-path-card:hover,
.office-path-card:focus-visible {
  z-index: 1;
  background: var(--pink-light);
  color: var(--ink);
  transform: translateY(-7px);
}

.office-path-card > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.office-path-card.featured > span {
  color: var(--pink);
}

.office-path-card h3 {
  margin: 95px 0 20px;
  font-family: var(--serif);
  font-size: clamp(33px, 3.2vw, 47px);
  font-weight: 500;
  line-height: 1;
}

.office-path-card p {
  margin: 0;
  color: var(--muted);
}

.office-path-card.featured p {
  color: rgba(255,255,255,.64);
}

.office-path-card.featured:hover p,
.office-path-card.featured:focus-visible p {
  color: var(--muted);
}

.office-path-card b {
  margin-top: auto;
  padding-top: 28px;
  font-size: 13px;
}

/* Individual market page */
.market-hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 90px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.market-hero-image,
.market-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.market-hero-image {
  object-fit: cover;
}

.market-hero-shade {
  background:
    linear-gradient(90deg, rgba(24,4,31,.92) 0%, rgba(24,4,31,.66) 48%, rgba(24,4,31,.25) 100%),
    linear-gradient(180deg, rgba(24,4,31,.2), rgba(24,4,31,.7));
}

.market-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  min-height: 540px;
  gap: clamp(60px, 9vw, 150px);
}

.market-hero-content .breadcrumb {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0;
}

.market-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 132px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.065em;
}

.market-hero-copy > p:last-child {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.market-status-card {
  border: 1px solid rgba(255,255,255,.3);
  padding: 32px;
  background: rgba(36,4,47,.5);
  backdrop-filter: blur(14px);
}

.market-status-card span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.market-status-card strong {
  display: block;
  margin: 28px 0 15px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.market-status-card p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.market-overview {
  background: var(--paper);
}

.market-overview-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 145px);
}

.market-overview h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(47px, 5.4vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.planned-city-block {
  margin-top: 50px;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.planned-city-block > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.planned-city-block > div {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 20px;
  gap: 8px;
}

.planned-city-block > div span {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 16px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.planned-city-block small {
  color: var(--muted);
}

.market-information {
  padding: clamp(95px, 10vw, 150px) 0;
  background: var(--navy-deep);
  color: var(--white);
}

.market-info-heading {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  margin-bottom: 65px;
  gap: 60px;
}

.market-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.market-info-grid article {
  min-height: 330px;
  border-right: 1px solid var(--light-line);
  padding: 28px;
}

.market-info-grid article:last-child {
  border-right: 0;
}

.market-info-grid article > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.market-info-grid article > p {
  margin: 75px 0 13px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.market-info-grid h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
}

.market-info-grid small {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.market-info-grid a {
  color: var(--white);
  font-weight: 600;
}

.market-consultants {
  background: var(--white);
}

.consultant-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.consultant-placeholder {
  min-height: 470px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
}

.profile-placeholder {
  position: relative;
  display: grid;
  height: 210px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(109,27,131,.2), rgba(230,68,149,.12)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(109,27,131,.05) 17px 18px);
}

.profile-placeholder::before,
.profile-placeholder::after {
  position: absolute;
  border: 1px solid rgba(109,27,131,.2);
  border-radius: 50%;
  content: "";
}

.profile-placeholder::before { width: 130px; height: 130px; }
.profile-placeholder::after { width: 80px; height: 80px; }

.profile-placeholder span {
  z-index: 1;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.consultant-placeholder > p {
  margin: 28px 0 12px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.consultant-placeholder h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.consultant-placeholder small {
  color: var(--muted);
}

.market-office-paths {
  padding: clamp(95px, 11vw, 160px) 0;
  background: var(--navy);
  color: var(--white);
}

.market-paths-heading {
  display: grid;
  grid-template-columns: .3fr 1.1fr .6fr;
  align-items: end;
  margin-bottom: 65px;
  gap: 50px;
}

.market-paths-heading > p:last-child {
  margin: 0 0 8px;
  color: rgba(255,255,255,.6);
}

.market-path-grid .office-path-card {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
}

.market-path-grid .office-path-card.featured {
  background: linear-gradient(145deg, var(--purple), var(--blue));
}

.market-path-grid .office-path-card p {
  color: rgba(255,255,255,.6);
}

.market-path-grid .office-path-card:hover,
.market-path-grid .office-path-card:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.market-path-grid .office-path-card:hover p,
.market-path-grid .office-path-card:focus-visible p {
  color: var(--muted);
}

.market-services {
  background: var(--pink-light);
}

.market-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.market-service-grid article {
  display: flex;
  min-height: 155px;
  align-items: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.market-explore {
  padding: clamp(80px, 9vw, 130px) 0;
  background: linear-gradient(120deg, var(--purple), var(--blue));
  color: var(--white);
}

.market-explore-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: end;
  gap: clamp(60px, 9vw, 140px);
}

.market-neighbours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.market-neighbours a {
  display: grid;
  min-height: 110px;
  place-items: center;
  border-right: 1px solid var(--light-line);
  padding: 15px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.market-neighbours a:last-child {
  border-right: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.65,.25,1);
}

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

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

@media (min-width: 1320px) {
  .hero-grid {
    grid-template-columns: minmax(430px, 0.84fr) minmax(560px, 1.16fr);
  }

  .hero-copy {
    grid-row: span 2;
  }

  .hero-feature {
    grid-row: span 1;
  }

  .hero-grid {
    grid-template-rows: 550px 300px;
  }

  .hero-grid::after {
    display: none;
  }

  .hero-feature {
    grid-column: 2;
  }

  .hero-tile-blue,
  .hero-tile-grid {
    display: flex;
    grid-row: 2;
  }

  .hero-tile-blue {
    grid-column: 2;
    width: calc(50% - 9px);
  }

  .hero-tile-grid {
    grid-column: 2;
    width: calc(50% - 9px);
    margin-left: calc(50% + 9px);
  }

  .hero-feature .feature-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 1440px); }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .wordmark {
    justify-self: start;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: min(88vw, 480px);
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 120px 42px 60px;
    background: var(--navy-deep);
    box-shadow: 20px 0 50px rgba(0,0,0,.35);
    font-family: var(--serif);
    font-size: 34px;
    transform: translateX(-105%);
    transition: transform 260ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .menu-open .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 560px 300px;
  }

  .hero-copy {
    grid-column: 1 / -1;
    padding: 38px 12vw 50px 0;
  }

  .hero-feature {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-tile-blue,
  .hero-tile-grid {
    display: flex;
    grid-row: 3;
  }

  .hero-tile-blue { grid-column: 1; }
  .hero-tile-grid { grid-column: 2; }

  .service-row {
    grid-template-columns: 48px minmax(240px, .8fr) 1fr 32px;
  }

  .partner-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
  }

  .preview-grid,
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-card:nth-child(2),
  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .preview-card:nth-child(-n + 2),
  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid,
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1440px); }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 76px;
    gap: 12px;
  }

  .header-actions .utility-link {
    display: none;
  }

  .wordmark {
    width: 230px;
    height: 48px;
    padding: 0 0 8px 56px;
    background-size: 48px 48px;
  }

  .wordmark::after {
    left: 56px;
    font-size: 8.5px;
    letter-spacing: 1.18px;
  }

  .main-nav {
    width: 100vw;
    max-width: none;
  }

  .menu-open .header-actions {
    opacity: 0;
    pointer-events: none;
  }

  .wordmark-name { font-size: 16px; }
  .wordmark-company { padding-left: 0; font-size: 16px; }
  .search-button { width: 32px; }

  .services,
  .ai-feature,
  .network,
  .global-landmarks,
  .experts,
  .insights,
  .partner,
  .site-footer {
    scroll-margin-top: 76px;
  }

  .hero {
    min-height: 0;
    padding: 96px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 490px auto auto;
    gap: 12px;
  }

  .hero-copy {
    grid-column: 1;
    padding: 38px 0 40px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .round-link {
    width: 62px;
    height: 62px;
  }

  .hero-feature,
  .hero-tile-blue,
  .hero-tile-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-feature {
    min-height: 490px;
  }

  .feature-copy {
    padding: 25px;
  }

  .feature-copy h2 {
    font-size: 38px;
  }

  .hero-tile {
    min-height: 270px;
  }

  .global-landmarks {
    padding: 78px 0 82px;
    scroll-margin-top: 76px;
  }

  .landmark-heading {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
    gap: 24px;
  }

  .landmark-heading h2 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .landmark-heading > p {
    font-size: 17px;
  }

  .landmark-stage {
    height: 540px;
  }

  .landmark-slide img {
    object-position: center;
  }

  .landmark-caption {
    right: 24px;
    bottom: 104px;
    left: 24px;
    max-width: none;
  }

  .landmark-caption h3 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .landmark-count {
    top: 22px;
    right: 22px;
  }

  .landmark-controls {
    right: auto;
    bottom: 24px;
    left: 24px;
  }

  .landmark-controls button {
    min-width: 46px;
    height: 46px;
  }

  .landmark-controls [data-landmark-toggle] {
    min-width: 76px;
  }

  .landmark-dots {
    margin-top: 11px;
    gap: 4px;
  }

  .landmark-marquee {
    margin-top: 48px;
  }

  .landmark-mini-card {
    width: 235px;
  }

  .statement-grid,
  .network-heading,
  .ai-grid,
  .experts-grid,
  .partner-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .ai-grid,
  .experts-grid,
  .partner-grid {
    gap: 46px;
  }

  .network-heading h2 {
    grid-column: 1;
  }

  .service-row {
    grid-template-columns: 36px 1fr 26px;
    min-height: 0;
    padding: 34px 0;
    gap: 14px;
  }

  .service-number {
    padding-top: 5px;
  }

  .service-row p {
    grid-column: 2 / -1;
    padding-right: 16px;
    font-size: 15px;
  }

  .row-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .service-row:hover {
    padding-inline: 12px;
  }

  .ai-visual {
    width: 90%;
    margin: auto;
  }

  .territory-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .territory-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .territory-card:last-child {
    border-bottom: 0;
  }

  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-card {
    min-height: 560px;
  }

  .form-row {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .form-row input,
  .form-row select {
    height: 55px;
  }

  .form-row select {
    background-position: calc(100% - 16px) 25px, calc(100% - 10px) 25px;
  }

  .footer-grid {
    min-height: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .footer-division-section {
    grid-column: 1 / -1;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }

  .footer-social {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
    gap: 20px;
  }

  .footer-social-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .footer-social-link {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    gap: 12px;
  }

  .preview-heading,
  .directory-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-grid,
  .fact-grid,
  .benefit-grid,
  .software-grid,
  .directory-grid,
  .field-grid,
  .choice-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .preview-card:nth-child(2),
  .fact-card,
  .fact-card:nth-child(2),
  .process-step,
  .process-step:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-card:last-child,
  .fact-card:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

  .model-hero-grid,
  .section-heading-split,
  .requirements-grid,
  .model-cta-grid,
  .directory-hero-copy {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero {
    padding: 130px 0 76px;
  }

  .model-hero h1,
  .directory-hero h1,
  .application-intro h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .model-cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .commercial-table,
  .commercial-table tbody,
  .commercial-table tr,
  .commercial-table th,
  .commercial-table td {
    display: block;
    width: 100%;
  }

  .commercial-table th {
    border-bottom: 0;
    padding-bottom: 3px;
  }

  .commercial-table td {
    padding-top: 4px;
  }

  .directory-card {
    min-height: 400px;
    padding: 28px;
  }

  .directory-card-top {
    margin-bottom: 48px;
  }

  .application-page-main {
    padding-top: 115px;
  }

  .application-panel {
    padding: 24px 18px;
  }

  .application-progress {
    margin-bottom: 35px;
  }

  .field-control.full-width,
  .choice-group {
    grid-column: 1;
  }

  .review-item,
  .review-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 1080px) {
  .locations-hero {
    min-height: 0;
    padding-bottom: 0;
  }

  .locations-hero-grid,
  .future-markets-grid,
  .market-hero-content,
  .market-overview-grid,
  .market-explore-grid {
    grid-template-columns: 1fr;
  }

  .location-globe {
    width: min(75vw, 640px);
  }

  .location-status-bar {
    position: relative;
    margin-top: 75px;
  }

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

  .office-path-grid {
    grid-template-columns: 1fr;
  }

  .market-hero-content {
    min-height: 0;
  }

  .market-info-heading,
  .market-paths-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .market-info-grid,
  .market-service-grid,
  .consultant-coming-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .firm-hero-copy,
  .action-hero-grid,
  .leadership-grid,
  .evolution-grid,
  .responsible-grid,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .firm-hero-copy .eyebrow {
    margin-bottom: 0;
  }

  .firm-hero-copy > p:last-child {
    max-width: 760px;
  }

  .firm-principle-grid,
  .action-method,
  .delivery-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .firm-principle:nth-child(2),
  .action-method article:nth-child(2),
  .delivery-flow article:nth-child(2) {
    border-right: 0;
  }

  .firm-principle:nth-child(-n + 2),
  .action-method article:nth-child(-n + 2),
  .delivery-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .leadership-copy,
  .contact-form-intro {
    position: static;
  }

  .commitment-grid,
  .ai-service-grid,
  .route-grid,
  .explore-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-hero-grid {
    gap: 75px;
  }

  .agent-visual {
    width: min(78vw, 660px);
  }

  .ai-services-heading,
  .agent-systems-heading,
  .ai-engagement-heading,
  .delivery-system-heading,
  .commitments-heading,
  .contact-routes-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ai-service-card:nth-child(2n) {
    border-right: 1px solid var(--light-line);
  }

  .studio-tabs {
    display: flex;
    overflow-x: auto;
  }

  .studio-tabs button {
    min-width: 150px;
  }

  .studio-panel {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .locations-hero,
  .market-hero {
    min-height: 0;
    padding: 120px 0 65px;
  }

  .locations-hero {
    padding-bottom: 0;
  }

  .locations-hero-grid {
    gap: 55px;
  }

  .locations-hero-copy h1,
  .market-hero-copy h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .location-globe {
    width: min(94vw, 390px);
  }

  .globe-core {
    width: 100px;
    height: 100px;
  }

  .globe-core b {
    font-size: 39px;
  }

  .globe-point {
    font-size: 7px;
  }

  .location-status-bar .page-shell {
    grid-template-columns: 1fr 1fr;
  }

  .location-status-bar span {
    min-height: 70px;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .location-status-bar span:nth-child(2n) {
    border-right: 0;
  }

  .location-directory-heading,
  .location-filters,
  .location-card-grid,
  .future-markets-grid,
  .office-path-grid,
  .market-hero-content,
  .market-overview-grid,
  .market-info-heading,
  .market-info-grid,
  .consultant-coming-grid,
  .market-paths-heading,
  .market-service-grid,
  .market-explore-grid,
  .market-neighbours {
    grid-template-columns: 1fr;
  }

  .location-directory-heading {
    gap: 28px;
  }

  .location-search {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-card {
    min-height: 440px;
  }

  .future-region-list article {
    min-height: 120px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .future-region-list b {
    text-align: left;
  }

  .office-path-card {
    min-height: 370px;
  }

  .market-hero-content .breadcrumb {
    grid-column: 1;
  }

  .market-status-card {
    margin-top: 30px;
  }

  .market-info-grid article,
  .consultant-placeholder,
  .market-service-grid article {
    border-right: 0;
  }

  .market-neighbours a {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .market-neighbours a:last-child {
    border-bottom: 0;
  }

  .page-index {
    top: 76px;
  }

  .page-index-inner {
    min-height: 54px;
    gap: 24px;
  }

  .page-index a {
    padding-block: 16px;
    font-size: 11px;
  }

  .firm-hero,
  .ai-action-hero,
  .contact-hero {
    min-height: 0;
    padding: 120px 0 64px;
  }

  .firm-hero .breadcrumb,
  .action-hero-copy .breadcrumb,
  .contact-hero .breadcrumb {
    margin-bottom: 35px;
  }

  .firm-hero-copy,
  .firm-intro-grid,
  .action-thesis-grid,
  .studio-heading,
  .contact-hero-grid,
  .contact-next-grid,
  .closing-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .firm-hero-copy h1,
  .action-hero-copy h1,
  .contact-hero h1 {
    font-size: clamp(49px, 14vw, 69px);
  }

  .firm-mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .firm-mosaic figure {
    height: 230px;
  }

  .firm-mosaic figure:first-child {
    grid-column: 1 / -1;
    height: 300px;
  }

  .firm-mosaic figure:nth-child(2),
  .firm-mosaic figure:nth-child(3) {
    margin: 0;
  }

  .firm-intro-grid h2,
  .action-thesis-grid h2,
  .leadership-copy h2,
  .evolution-heading h2,
  .delivery-system-heading h2,
  .ai-services-heading h2,
  .agent-systems-heading h2,
  .ai-engagement-heading h2,
  .commitments-heading h2,
  .contact-routes-heading h2,
  .studio-heading h2 {
    font-size: clamp(41px, 11.8vw, 58px);
  }

  .firm-principle-grid,
  .action-method,
  .delivery-flow,
  .commitment-grid,
  .ai-service-grid,
  .route-grid,
  .explore-link-grid,
  .operating-assets,
  .engagement-grid,
  .architecture-workers,
  .control-grid,
  .values-orbit {
    grid-template-columns: 1fr;
  }

  .firm-principle,
  .firm-principle:nth-child(2),
  .action-method article,
  .action-method article:nth-child(2),
  .delivery-flow article,
  .delivery-flow article:nth-child(2),
  .engagement-grid article {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .firm-principle h3,
  .action-method article div,
  .delivery-flow h3 {
    margin-top: 62px;
  }

  .leadership-layers article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .values-center {
    grid-row: auto;
    min-height: 330px;
    border-right: 0;
  }

  .values-orbit > article,
  .values-orbit > article:nth-child(3),
  .values-orbit > article:nth-child(4),
  .values-orbit > article:nth-child(5) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evolution-track {
    margin-left: 7px;
    padding-left: 35px;
  }

  .evolution-track article::before {
    left: -43px;
  }

  .delivery-system-heading,
  .commitments-heading,
  .ai-services-heading,
  .agent-systems-heading,
  .ai-engagement-heading,
  .contact-routes-heading {
    margin-bottom: 45px;
  }

  .closing-cta-grid {
    align-items: start;
  }

  .closing-cta h2 {
    font-size: clamp(43px, 12vw, 60px);
  }

  .button-light {
    width: 100%;
  }

  .ai-action-hero {
    padding-bottom: 90px;
  }

  .action-hero-grid {
    gap: 55px;
  }

  .agent-visual {
    width: min(94vw, 410px);
  }

  .agent-core {
    width: 104px;
    height: 104px;
  }

  .agent-core-logo {
    width: 61px;
  }

  .agent-node {
    font-size: 7px;
  }

  .agent-node i {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .hero-signal {
    overflow: hidden;
    justify-content: flex-start;
    gap: 42px;
  }

  .ai-service-card {
    min-height: 365px;
  }

  .studio-tabs button {
    min-width: 138px;
  }

  .studio-panel > div {
    min-height: 390px;
  }

  .studio-panel li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .agent-systems-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .architecture-layer {
    grid-template-columns: 42px 1fr;
    padding: 22px 18px;
  }

  .architecture-layer > b {
    display: none;
  }

  .orchestrator-layer,
  .architecture-workers {
    margin-inline: 0;
  }

  .architecture-workers article {
    min-height: 170px;
  }

  .control-grid article {
    min-height: 205px;
  }

  .contact-hero-aside p {
    font-size: 17px;
  }

  .route-card {
    min-height: 320px;
  }

  .lead-capture {
    scroll-margin-top: 76px;
  }

  .lead-form {
    padding: 28px 17px;
  }

  .lead-progress {
    margin-bottom: 42px;
  }

  .lead-progress li {
    justify-content: center;
  }

  .lead-progress li b {
    display: none;
  }

  .lead-field-grid,
  .lead-choice-grid,
  .lead-review {
    grid-template-columns: 1fr;
  }

  .lead-review-item.wide {
    grid-column: 1;
  }

  .lead-form-actions {
    flex-wrap: wrap;
  }

  .lead-form-actions button {
    min-width: 110px;
  }

  .lead-next,
  .lead-submit {
    flex: 1;
  }
}

@media (max-width: 1080px) {
  .robotics-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .robotics-cinema {
    min-height: 680px;
  }

  .robotics-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .robotics-next-step {
    grid-template-columns: 1fr;
  }

  .office-fit-grid {
    grid-template-columns: 1fr;
  }

  .office-fit-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .office-fit-options article {
    border-right: 1px solid rgba(255,255,255,.28);
    padding: 30px;
  }

  .office-fit-options article:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .robotics-showcase {
    scroll-margin-top: 135px;
  }

  .robotics-heading h2 {
    font-size: clamp(45px, 12.5vw, 61px);
  }

  .robotics-heading div > p {
    font-size: 15px;
  }

  .robotics-cinema {
    min-height: 660px;
  }

  .robotics-video-shade {
    background:
      linear-gradient(90deg, rgba(19,2,25,.78), rgba(19,2,25,.34)),
      linear-gradient(180deg, rgba(19,2,25,.14), rgba(19,2,25,.92));
  }

  .robotics-video-copy {
    right: 20px;
    bottom: 105px;
    left: 20px;
  }

  .robotics-video-copy h3 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .robotics-video-copy p {
    font-size: 12px;
  }

  .robotics-video-toggle {
    right: auto;
    bottom: 25px;
    left: 20px;
  }

  .robotics-video-credit {
    top: 16px;
    right: 16px;
  }

  .robotics-capability-grid {
    grid-template-columns: 1fr;
  }

  .robotics-capability-grid article {
    min-height: 245px;
  }

  .robotics-next-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .robotics-next-actions .button-primary,
  .robotics-next-actions .button-secondary {
    width: 100%;
  }

  .office-fit-copy h2 {
    font-size: clamp(45px, 12.5vw, 61px);
  }

  .office-fit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .office-fit-actions .button-primary,
  .office-fit-actions .button-secondary,
  .office-demo-link {
    width: 100%;
  }

  .office-demo-link {
    justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
  }

  .office-fit-options {
    grid-template-columns: 1fr;
  }

  .office-fit-options article {
    min-height: 285px;
    border-right: 0;
    padding-inline: 0;
  }

  .application-help-card {
    padding: 22px;
  }
}

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

/* NyK & NyKi assistant */
.nyk-assistant {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 24px;
  color: var(--navy);
  font-family: inherit;
}

.nyk-assistant-launcher {
  display: flex;
  min-width: 238px;
  min-height: 66px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 21px 8px 9px;
  gap: 12px;
  background: linear-gradient(115deg, var(--navy) 0%, #641067 58%, var(--pink) 145%);
  box-shadow: 0 18px 46px rgba(28, 2, 36, .3);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: box-shadow 180ms ease, opacity 160ms ease, transform 180ms ease, visibility 160ms ease;
}

.nyk-assistant.is-open .nyk-assistant-launcher {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.nyk-assistant-launcher:hover,
.nyk-assistant-launcher:focus-visible {
  box-shadow: 0 22px 56px rgba(89, 12, 92, .38);
  transform: translateY(-3px);
}

.nyk-assistant-launcher:focus-visible,
.nyk-assistant-close:focus-visible,
.nyk-assistant-choices button:focus-visible,
.nyk-assistant-form button:focus-visible,
.nyk-assistant-actions a:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.nyk-assistant-launch-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
}

.nyk-assistant-launch-icon img {
  width: 31px;
  height: 31px;
}

.nyk-assistant-launch-icon i {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  animation: nyk-assistant-pulse 2s ease-in-out infinite;
}

.nyk-assistant-launch-icon i[hidden] {
  display: none;
}

.nyk-assistant-launcher small,
.nyk-assistant-launcher strong {
  display: block;
}

.nyk-assistant-launcher small {
  margin-bottom: 2px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
}

.nyk-assistant-launcher strong {
  font-size: 15px;
  font-weight: 600;
}

.nyk-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: grid;
  width: min(440px, calc(100vw - 32px));
  height: min(690px, calc(100vh - 118px));
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(61, 15, 67, .12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(37, 4, 45, .28);
  transform-origin: right bottom;
  animation: nyk-assistant-open 220ms ease both;
}

.nyk-assistant-panel[hidden] {
  display: none;
}

.nyk-assistant-header {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(243,106,172,.28), transparent 42%),
    linear-gradient(120deg, #26032f, #5f0e64);
  color: var(--white);
}

.nyk-assistant-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nyk-assistant-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.nyk-assistant-avatar img {
  width: 31px;
  height: 31px;
}

.nyk-assistant-brand strong,
.nyk-assistant-brand small {
  display: block;
}

.nyk-assistant-brand strong {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.nyk-assistant-brand small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  letter-spacing: .12em;
}

.nyk-assistant-brand small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68e0ad;
  box-shadow: 0 0 0 4px rgba(104,224,173,.12);
}

.nyk-assistant-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
}

.nyk-assistant-messages {
  overflow-y: auto;
  padding: 22px 18px 10px;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    radial-gradient(circle at 0 0, var(--pink-light), transparent 50%);
  scrollbar-color: rgba(125,28,130,.3) transparent;
  scrollbar-width: thin;
}

.nyk-assistant-message {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 16px;
}

.nyk-assistant-message > span {
  margin: 0 0 5px 5px;
  color: rgba(47,18,54,.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.nyk-assistant-message > div {
  max-width: 92%;
  border: 1px solid rgba(84, 21, 91, .1);
  border-radius: 5px 17px 17px 17px;
  padding: 13px 14px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(54, 12, 60, .06);
}

.nyk-assistant-message p {
  margin: 0;
  color: #4a3a4d;
  font-size: 13px;
  line-height: 1.62;
}

.nyk-assistant-message ol {
  margin: 11px 0 0;
  padding-left: 19px;
  color: #4a3a4d;
  font-size: 12px;
  line-height: 1.55;
}

.nyk-assistant-message li + li {
  margin-top: 7px;
}

.nyk-assistant-message.is-user {
  align-items: flex-end;
}

.nyk-assistant-message.is-user > span {
  margin-right: 5px;
}

.nyk-assistant-message.is-user > div {
  border-color: transparent;
  border-radius: 17px 5px 17px 17px;
  background: linear-gradient(125deg, #54105a, #7d1c82);
  box-shadow: 0 8px 24px rgba(84,16,90,.16);
}

.nyk-assistant-message.is-user p {
  color: var(--white);
}

.nyk-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  gap: 7px;
}

.nyk-assistant-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(125,28,130,.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nyk-assistant-actions a:hover {
  background: var(--purple);
  color: var(--white);
}

.nyk-assistant-choices {
  display: flex;
  overflow-x: auto;
  border-top: 1px solid rgba(84,21,91,.08);
  padding: 11px 14px;
  gap: 7px;
  background: #fbf8fc;
  scrollbar-width: none;
}

.nyk-assistant-choices::-webkit-scrollbar {
  display: none;
}

.nyk-assistant-choices button {
  min-height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(125,28,130,.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nyk-assistant-choices button:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.nyk-assistant-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  border-top: 1px solid rgba(84,21,91,.1);
  padding: 11px 13px 8px;
  gap: 8px;
  background: var(--white);
}

.nyk-assistant-form input {
  min-width: 0;
  height: 44px;
  border: 1px solid rgba(84,21,91,.16);
  border-radius: 999px;
  padding: 0 17px;
  outline: none;
  background: #fbf9fc;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
}

.nyk-assistant-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(230,68,149,.1);
}

.nyk-assistant-form button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
}

.nyk-assistant-note {
  margin: 0;
  padding: 0 17px 11px;
  background: var(--white);
  color: rgba(47,18,54,.42);
  font-size: 8.5px;
  line-height: 1.4;
  text-align: center;
}

@keyframes nyk-assistant-open {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nyk-assistant-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,68,149,.28); }
  50% { box-shadow: 0 0 0 7px rgba(230,68,149,0); }
}

@media (max-width: 600px) {
  .nyk-assistant {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .nyk-assistant-launcher {
    min-width: 0;
    margin-left: auto;
  }

  .nyk-assistant-panel {
    position: fixed;
    top: 86px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: auto;
    max-height: none;
  }

  .nyk-assistant-header {
    min-height: 78px;
    padding: 13px 14px;
  }

  .nyk-assistant-messages {
    padding: 18px 14px 8px;
  }

  .nyk-assistant-message > div {
    max-width: 96%;
  }
}

/* Brand and network */
.home-brand-preview {
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 71% 20%, rgba(230,68,149,.25), transparent 23%),
    linear-gradient(132deg, var(--navy-deep), #521060 72%, #7d176e);
  color: var(--white);
}

.home-brand-preview-grid {
  display: grid;
  grid-template-columns: .9fr .45fr .85fr;
  align-items: center;
  gap: clamp(45px, 6vw, 95px);
}

.home-brand-preview-copy h2 {
  margin: 14px 0 26px;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.home-brand-preview-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 29px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.8;
}

.home-brand-preview-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.home-brand-preview-mark::before,
.home-brand-preview-mark::after,
.home-brand-preview-mark span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
}

.home-brand-preview-mark::before { inset: 15%; }
.home-brand-preview-mark::after { inset: 30%; }
.home-brand-preview-mark span { width: 9px; height: 9px; border: 0; background: var(--pink); box-shadow: 0 0 0 5px rgba(230,68,149,.12); }
.home-brand-preview-mark span:nth-child(1) { top: 10%; left: 27%; }
.home-brand-preview-mark span:nth-child(2) { top: 53%; right: -4px; }
.home-brand-preview-mark span:nth-child(3) { bottom: 10%; left: 18%; }
.home-brand-preview-mark img { position: relative; z-index: 2; width: 34%; }

.home-brand-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}

.home-brand-metrics article {
  min-height: 128px;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 23px;
}

.home-brand-metrics strong {
  display: block;
  color: var(--pink);
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1.1;
}

.home-brand-metrics span {
  color: rgba(255,255,255,.72);
  font-size: 10px;
}

.home-brand-metrics > p {
  grid-column: 1 / -1;
  margin: 15px 0 0;
  color: rgba(255,255,255,.4);
  font-size: 8.5px;
  line-height: 1.55;
}

.brand-page {
  background: #fff;
}

.brand-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 96px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 74% 42%, rgba(230,68,149,.3), transparent 31%),
    linear-gradient(135deg, #24042f 0%, #4a0a5d 58%, #71116f 100%);
  color: var(--white);
}

.brand-hero::before {
  position: absolute;
  top: -23%;
  right: -8%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}

.brand-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
}

.brand-breadcrumb {
  margin: 0 0 72px;
  color: rgba(255,255,255,.58);
}

.brand-breadcrumb a {
  color: rgba(255,255,255,.84);
}

.brand-hero-copy h1 {
  max-width: 880px;
  margin: 18px 0 28px;
  font-size: clamp(56px, 6.2vw, 100px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .99;
}

.brand-hero-copy > p:last-of-type {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.77);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.7;
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 12px;
}

.brand-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 24px;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.brand-button-light {
  background: var(--white);
  color: var(--navy);
}

.brand-button-light:hover {
  background: var(--pink-light);
}

.brand-button-outline {
  border-color: rgba(255,255,255,.38);
  color: var(--white);
}

.brand-button-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.brand-hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 540px);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
}

.brand-hero-visual::before,
.brand-hero-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.brand-hero-visual::before {
  inset: 7%;
  border: 1px solid rgba(255,255,255,.2);
}

.brand-hero-visual::after {
  inset: 21%;
  border: 1px solid rgba(255,255,255,.14);
}

.brand-hero-glow {
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,90,167,.5), rgba(109,27,131,.08) 65%, transparent 70%);
  filter: blur(10px);
}

.brand-mark-stage {
  position: relative;
  z-index: 4;
  display: grid;
  width: 42%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 90px rgba(0,0,0,.24), 0 0 60px rgba(230,68,149,.2);
}

.brand-mark-stage img {
  width: 51%;
}

.brand-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.brand-orbit-one {
  inset: 13%;
  animation: brand-orbit-spin 24s linear infinite;
}

.brand-orbit-two {
  inset: 1%;
  border-style: dashed;
  animation: brand-orbit-spin 38s linear infinite reverse;
}

.brand-orbit i {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(230,68,149,.1);
}

.brand-orbit i:nth-child(1) { top: 6%; left: 25%; }
.brand-orbit i:nth-child(2) { top: 52%; right: -6px; }
.brand-orbit i:nth-child(3) { bottom: 5%; left: 27%; }
.brand-orbit-two i:nth-child(1) { top: 29%; left: -5px; }
.brand-orbit-two i:nth-child(2) { top: 2%; right: 28%; }
.brand-orbit-two i:nth-child(3) { right: 16%; bottom: 11%; }
.brand-orbit-two i:nth-child(4) { bottom: 16%; left: 7%; }

.brand-hero-visual > p {
  position: absolute;
  z-index: 5;
  bottom: 11%;
  left: 50%;
  width: max-content;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  transform: translateX(-50%);
}

.brand-hero-visual > p span {
  margin: 0 10px;
  color: var(--pink);
}

.brand-hero-word {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -5.5%;
  color: rgba(255,255,255,.035);
  font-size: clamp(130px, 19vw, 330px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: 1;
  pointer-events: none;
}

.brand-page-index {
  position: sticky;
  z-index: 85;
  top: 0;
}

.brand-story {
  background: #fff;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 170px);
}

.brand-story-heading h2,
.brand-value-heading h2,
.transition-heading h2,
.brand-identity-heading h2,
.brand-experience-heading h2,
.network-access-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(40px, 4.7vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.brand-story-copy {
  align-self: end;
  padding-top: 52px;
}

.brand-story-copy p {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.brand-story-copy p + p {
  margin-top: 23px;
}

.brand-story-copy .brand-lead {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.55;
}

.brand-era-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-era {
  min-height: 380px;
  border-right: 1px solid var(--line);
  padding: 32px 28px 34px;
}

.brand-era:last-child {
  border-right: 0;
}

.brand-era > span {
  display: block;
  margin-bottom: 102px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
}

.brand-era div > p:first-child {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.brand-era h3 {
  margin: 0 0 13px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.brand-era div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.brand-era-now {
  background: linear-gradient(145deg, var(--pink-light), #fff 70%);
}

.brand-snapshot {
  padding: 120px 0 96px;
  background:
    radial-gradient(circle at 90% 0, rgba(230,68,149,.18), transparent 25%),
    var(--navy-deep);
  color: var(--white);
}

.brand-snapshot-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 90px;
}

.brand-snapshot-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1.03;
}

.brand-snapshot-heading > p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.8;
}

.brand-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.brand-metric {
  min-height: 312px;
  border-right: 1px solid rgba(255,255,255,.18);
  padding: 36px 30px;
}

.brand-metric:last-child {
  border-right: 0;
}

.brand-metric strong {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
  font-size: clamp(55px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1;
}

.brand-metric span {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.brand-metric p {
  margin: 64px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.65;
}

.brand-experience-band {
  display: grid;
  grid-template-columns: .36fr 1.1fr .64fr;
  align-items: start;
  margin-top: 46px;
  padding: 35px 0 8px;
  gap: 50px;
}

.brand-experience-band > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.brand-experience-band p {
  margin: 0;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 300;
  line-height: 1.55;
}

.brand-experience-band small {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  line-height: 1.6;
}

.brand-evidence-note,
.brand-policy-note {
  margin: 24px 0 0;
  color: rgba(255,255,255,.43);
  font-size: 10px;
  line-height: 1.6;
}

.brand-value {
  background: #fff;
}

.brand-value-heading {
  display: grid;
  grid-template-columns: .34fr 1fr .65fr;
  align-items: end;
  gap: 55px;
}

.brand-value-heading h2 {
  margin: 0;
}

.brand-value-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.brand-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
  border: 1px solid var(--line);
}

.brand-promise {
  min-height: 500px;
  border-right: 1px solid var(--line);
  padding: 30px 28px;
  background: #fff;
}

.brand-promise:last-child {
  border-right: 0;
}

.brand-promise > span {
  display: block;
  margin-bottom: 78px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
}

.brand-promise > p {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.brand-promise h3 {
  min-height: 68px;
  margin: 0 0 36px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.brand-promise ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-promise li {
  position: relative;
  border-top: 1px solid rgba(58,10,74,.12);
  padding: 12px 0 12px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.brand-promise li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.brand-promise-primary {
  background: linear-gradient(150deg, var(--purple), #4b0d5a);
  color: var(--white);
}

.brand-promise-primary > p,
.brand-promise-primary > span {
  color: var(--pink);
}

.brand-promise-primary li {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.72);
}

.brand-recognition {
  overflow: hidden;
  padding: 110px 0;
  background: var(--pink-light);
}

.brand-recognition-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.brand-recognition-copy h2 {
  margin: 14px 0 28px;
  font-size: clamp(41px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.brand-recognition-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.brand-recognition-loop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-recognition-loop article {
  min-height: 205px;
  border: 1px solid rgba(58,10,74,.16);
  padding: 26px;
  background: rgba(255,255,255,.67);
}

.brand-recognition-loop article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.brand-recognition-loop strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.brand-recognition-loop article p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.brand-loop-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 8px solid var(--pink-light);
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: 0 16px 45px rgba(58,10,74,.2);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.brand-loop-center img {
  width: 43px;
}

.brand-loop-center span {
  margin-top: -15px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.5;
}

.client-transition {
  background: #fff;
}

.transition-heading {
  display: grid;
  grid-template-columns: .33fr 1.67fr;
  gap: 70px;
}

.transition-heading > div {
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 60px;
}

.transition-heading h2 {
  margin: 0;
}

.transition-heading div p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.transition-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 78px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transition-track article {
  position: relative;
  min-height: 430px;
  border-right: 1px solid var(--line);
  padding: 35px 26px;
}

.transition-track article:last-child {
  border-right: 0;
}

.transition-track article::after {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 1px var(--pink);
  content: "";
}

.transition-track article:last-child::after {
  display: none;
}

.transition-track article > span {
  display: block;
  margin-bottom: 64px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
}

.transition-track article > p {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.transition-track h3 {
  min-height: 62px;
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.35;
}

.transition-track ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.brand-identity {
  background: #f9f2f7;
}

.brand-identity-heading,
.network-access-heading {
  display: grid;
  grid-template-columns: 1.12fr .58fr;
  align-items: end;
  gap: 100px;
}

.brand-identity-heading > p,
.network-access-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.logo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr .6fr;
  margin-top: 70px;
  gap: 16px;
}

.logo-panel {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  padding: 27px;
}

.logo-panel p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.logo-panel > img {
  width: min(86%, 365px);
  margin: auto;
}

.logo-panel-light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--purple);
}

.logo-panel-dark {
  background: linear-gradient(140deg, var(--navy-deep), var(--purple));
  color: rgba(255,255,255,.65);
}

.logo-panel-mark {
  border: 1px solid rgba(230,68,149,.2);
  background: var(--pink-light);
  color: var(--purple);
}

.logo-panel-mark > img {
  width: 90px;
}

.brand-system-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  margin-top: 70px;
  gap: 70px;
}

.brand-guide-label {
  margin: 0 0 20px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.brand-swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-swatch {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.brand-swatch span {
  font-size: 9px;
  font-weight: 600;
}

.brand-swatch strong {
  font-size: 11px;
  font-weight: 500;
}

.brand-swatch-plum { background: #24042f; color: #fff; }
.brand-swatch-purple { background: #6d1b83; color: #fff; }
.brand-swatch-pink { background: #e64495; color: #fff; }
.brand-swatch-blush { background: #ffe5f2; color: var(--ink); }
.brand-swatch-white { border: 1px solid var(--line); background: #fff; color: var(--ink); }

.brand-type {
  display: grid;
  grid-template-columns: 126px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 25px;
}

.brand-type .brand-guide-label {
  grid-column: 1 / -1;
}

.brand-type-word {
  color: var(--purple);
  font-size: 88px;
  font-weight: 300;
  letter-spacing: -.08em;
  line-height: 1;
}

.brand-type h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.brand-type h3:not(:first-child) {
  margin-top: 20px;
  font-family: "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
}

.brand-type p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.brand-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.brand-rule {
  min-height: 285px;
  border-right: 1px solid var(--line);
  padding: 26px;
}

.brand-rule:last-child {
  border-right: 0;
}

.brand-rule span {
  display: block;
  margin-bottom: 54px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.brand-rule h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.brand-rule p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.brand-use-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  border: 1px solid var(--line);
  padding: 17px 20px;
  gap: 9px;
  background: #fff;
}

.brand-use-strip p {
  margin: 0 auto 0 0;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.brand-use-strip span {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--pink-light);
  color: var(--purple);
  font-size: 9px;
  font-weight: 600;
}

.brand-services {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--navy-deep);
  color: var(--white);
}

.brand-services-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(70px, 10vw, 160px);
}

.brand-services-heading {
  position: sticky;
  top: 150px;
  align-self: start;
}

.brand-services-heading h2 {
  margin: 14px 0 26px;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.brand-services-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.8;
}

.brand-service-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.brand-service-list article {
  display: grid;
  grid-template-columns: 52px .8fr 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 32px 0;
  gap: 25px;
}

.brand-service-list span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.brand-service-list h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.brand-service-list p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.65;
}

.brand-experience {
  background: #fff;
}

.brand-experience-heading {
  display: grid;
  grid-template-columns: .3fr 1fr .6fr;
  align-items: end;
  gap: 60px;
}

.brand-experience-heading h2 {
  margin: 0;
}

.brand-experience-heading > p:last-child {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1.16fr .84fr .84fr;
  margin-top: 74px;
  gap: 16px;
}

.culture-card {
  min-height: 270px;
  border: 1px solid var(--line);
  padding: 28px;
  background: #fff;
}

.culture-card > span {
  display: block;
  margin-bottom: 68px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.culture-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.culture-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.culture-card-feature {
  grid-row: span 2;
  min-height: 556px;
  padding: 38px;
  background:
    radial-gradient(circle at 80% 15%, rgba(230,68,149,.34), transparent 34%),
    linear-gradient(150deg, var(--navy-deep), var(--purple));
  color: var(--white);
}

.culture-card-feature > span {
  margin-bottom: 205px;
  color: var(--pink);
}

.culture-card-feature h3 {
  font-size: clamp(35px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.culture-card-feature p {
  max-width: 510px;
  color: rgba(255,255,255,.65);
}

.brand-experience .brand-policy-note {
  color: var(--muted);
}

.network-access {
  background: var(--paper);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  gap: 16px;
}

.access-card {
  min-height: 440px;
  border: 1px solid rgba(58,10,74,.14);
  padding: 30px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.access-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(58,10,74,.09);
}

.access-card-icon {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-bottom: 57px;
  border-radius: 50%;
  background: var(--pink-light);
}

.access-card-icon img {
  width: 38px;
}

.access-card-globe {
  border: 1px solid var(--pink);
  background: transparent;
}

.access-card-globe::before,
.access-card-globe::after,
.access-card-globe span {
  position: absolute;
  border: 1px solid var(--pink);
  border-radius: 50%;
  content: "";
}

.access-card-globe::before { inset: 11px 30px; }
.access-card-globe::after { inset: 30px 11px; }
.access-card-globe span { inset: 7px; }
.access-card-globe i { width: 100%; height: 1px; background: var(--pink); }

.access-card-id {
  border-radius: 9px;
  background: linear-gradient(140deg, var(--navy-deep), var(--purple));
  box-shadow: 7px 8px 0 var(--pink-light);
}

.access-card-door span {
  width: 37px;
  height: 55px;
  border: 2px solid var(--purple);
  border-radius: 2px 20px 2px 2px;
}

.access-card-door span::after {
  display: block;
  width: 5px;
  height: 5px;
  margin: 26px 0 0 7px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.access-card-credit {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.access-card-credit span {
  position: relative;
  width: 60px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 5px;
}

.access-card-credit span::before {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 6px;
  background: rgba(255,255,255,.55);
  content: "";
}

.access-card-lounge span {
  width: 44px;
  height: 30px;
  border: 2px solid var(--purple);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  transform: translateY(6px);
}

.access-card-lounge i {
  position: absolute;
  bottom: 20px;
  width: 58px;
  height: 2px;
  background: var(--pink);
}

.access-card-travel span {
  color: var(--purple);
  font-size: 48px;
  font-weight: 300;
  transform: translate(-2px, 2px);
}

.access-card > p:first-of-type {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.access-card h3 {
  margin: 0 0 15px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.access-card > p:last-of-type {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.access-card small {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  color: rgba(58,10,74,.48);
  font-size: 9px;
  line-height: 1.55;
}

.access-principle {
  display: grid;
  grid-template-columns: .35fr 1.1fr auto;
  align-items: center;
  margin-top: 28px;
  padding: 35px 38px;
  gap: 45px;
  background: var(--navy-deep);
  color: var(--white);
}

.access-principle > span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.access-principle p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.7;
}

.access-principle a {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.access-principle b {
  margin-left: 12px;
  color: var(--pink);
}

.brand-stewardship {
  padding: 120px 0;
  background: linear-gradient(140deg, #5b126b, #8b1a76);
  color: var(--white);
}

.brand-stewardship-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(70px, 10vw, 160px);
}

.brand-stewardship-heading h2 {
  margin: 14px 0 28px;
  font-size: clamp(43px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.brand-stewardship-heading > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.8;
}

.stewardship-list {
  border-top: 1px solid rgba(255,255,255,.25);
}

.stewardship-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 25px 0;
  gap: 25px;
}

.stewardship-list span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.stewardship-list h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 500;
}

.stewardship-list p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.65;
}

.brand-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.brand-cta::after {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.02);
  content: "";
}

.brand-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
}

.brand-cta h2 {
  margin: 14px 0 24px;
  font-size: clamp(50px, 5.7vw, 88px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1;
}

.brand-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.63);
}

.brand-cta-actions {
  display: grid;
  min-width: 300px;
  gap: 10px;
}

.brand-cta-consult {
  padding: 13px 4px 0;
  color: var(--pink);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

@keyframes brand-orbit-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .brand-hero {
    min-height: 700px;
  }

  .brand-hero-grid {
    grid-template-columns: 1fr 400px;
  }

  .brand-era-grid,
  .brand-promise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-era:nth-child(2),
  .brand-promise:nth-child(2) {
    border-right: 0;
  }

  .brand-era:nth-child(-n+2),
  .brand-promise:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-promise {
    min-height: 450px;
  }

  .brand-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-metric:nth-child(2) {
    border-right: 0;
  }

  .brand-metric:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .transition-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .transition-track article:nth-child(3) {
    border-right: 0;
  }

  .transition-track article:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .transition-track article:nth-child(3)::after,
  .transition-track article:last-child::after {
    display: none;
  }

  .brand-system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-brand-preview-grid {
    grid-template-columns: 1fr .55fr;
  }

  .home-brand-metrics {
    grid-column: 1 / -1;
  }

  .brand-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .brand-hero-grid,
  .brand-story-grid,
  .brand-snapshot-heading,
  .brand-recognition-grid,
  .brand-services-grid,
  .brand-stewardship-grid,
  .brand-cta-grid {
    grid-template-columns: 1fr;
  }

  .brand-breadcrumb {
    margin-bottom: 45px;
  }

  .brand-hero-visual {
    width: min(100%, 430px);
  }

  .brand-story-copy {
    padding-top: 0;
  }

  .brand-value-heading,
  .brand-experience-heading {
    grid-template-columns: 1fr;
  }

  .brand-value-heading .section-number,
  .brand-experience-heading .section-number {
    margin-bottom: -26px;
  }

  .transition-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .transition-heading > div,
  .brand-identity-heading,
  .network-access-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .logo-panel-mark {
    grid-column: 1 / -1;
  }

  .brand-rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-rule:nth-child(2) {
    border-right: 0;
  }

  .brand-rule:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-services-heading {
    position: static;
  }

  .access-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access-principle {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .brand-cta-actions {
    width: min(100%, 420px);
  }
}

@media (max-width: 680px) {
  .home-brand-preview {
    padding: 78px 0;
  }

  .home-brand-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-brand-preview-mark {
    width: min(62vw, 250px);
    margin-inline: auto;
  }

  .home-brand-metrics {
    grid-column: auto;
  }

  .brand-hero {
    padding: 112px 0 72px;
  }

  .brand-hero-copy h1 {
    font-size: clamp(47px, 14.5vw, 68px);
  }

  .brand-hero-copy > p:last-of-type {
    font-size: 15px;
  }

  .brand-hero-actions,
  .brand-hero-actions .brand-button {
    width: 100%;
  }

  .brand-hero-visual {
    width: min(92vw, 360px);
  }

  .brand-page-index .page-index-inner {
    justify-content: flex-start;
  }

  .brand-story-heading h2,
  .brand-value-heading h2,
  .transition-heading h2,
  .brand-identity-heading h2,
  .brand-experience-heading h2,
  .network-access-heading h2,
  .brand-recognition-copy h2,
  .brand-services-heading h2,
  .brand-stewardship-heading h2 {
    font-size: 40px;
  }

  .brand-era-grid,
  .brand-promise-grid,
  .brand-metric-grid,
  .transition-track,
  .logo-showcase,
  .brand-rules-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .brand-era,
  .brand-era:nth-child(2),
  .brand-promise,
  .brand-promise:nth-child(2),
  .brand-metric,
  .brand-metric:nth-child(2),
  .transition-track article,
  .transition-track article:nth-child(3),
  .brand-rule,
  .brand-rule:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-era:last-child,
  .brand-promise:last-child,
  .brand-metric:last-child,
  .transition-track article:last-child,
  .brand-rule:last-child {
    border-bottom: 0;
  }

  .brand-era {
    min-height: 300px;
  }

  .brand-era > span {
    margin-bottom: 64px;
  }

  .brand-metric-grid {
    border: 1px solid rgba(255,255,255,.18);
  }

  .brand-metric {
    min-height: 255px;
  }

  .brand-metric p {
    margin-top: 42px;
  }

  .brand-experience-band {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-promise {
    min-height: auto;
  }

  .brand-recognition-loop {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .brand-loop-center {
    top: 0;
    width: 130px;
    height: 130px;
    border-width: 6px;
    transform: translate(-50%, -50%);
  }

  .transition-track article {
    min-height: 330px;
  }

  .transition-track article::after {
    display: none;
  }

  .logo-panel-mark {
    grid-column: auto;
  }

  .brand-swatches {
    grid-template-columns: 1fr 1fr;
  }

  .brand-swatch:last-child {
    grid-column: 1 / -1;
    min-height: 110px;
  }

  .brand-type {
    grid-template-columns: 90px 1fr;
  }

  .brand-type-word {
    font-size: 66px;
  }

  .brand-rule {
    min-height: 240px;
  }

  .brand-service-list article {
    grid-template-columns: 38px 1fr;
  }

  .brand-service-list article p {
    grid-column: 2;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .culture-card-feature {
    grid-row: auto;
    min-height: 480px;
  }

  .culture-card-feature > span {
    margin-bottom: 165px;
  }

  .access-card {
    min-height: 410px;
  }

  .brand-cta h2 {
    font-size: 48px;
  }

  .brand-cta-actions {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-orbit-one,
  .brand-orbit-two {
    animation: none;
  }
}

/* Detailed function and analytical case-study pages */
.function-page {
  background: #fff;
}

.function-hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 82% 31%, rgba(230,68,149,.34), transparent 27%),
    linear-gradient(135deg, #24042f 0%, #4c0c5b 62%, #77156f 100%);
  color: var(--white);
}

.function-hero::after {
  position: absolute;
  top: -320px;
  right: -180px;
  width: 920px;
  height: 920px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.015);
  content: "";
}

.function-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
}

.function-breadcrumb {
  margin: 0 0 76px;
  color: rgba(255,255,255,.52);
}

.function-breadcrumb a {
  color: rgba(255,255,255,.79);
}

.function-hero-copy h1 {
  max-width: 880px;
  margin: 17px 0 27px;
  font-size: clamp(57px, 6.2vw, 96px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .99;
}

.function-hero-copy > p:not(.eyebrow) {
  max-width: 770px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.75;
}

.function-hero-link {
  display: inline-flex;
  align-items: center;
  margin-top: 35px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 0 0 8px;
  gap: 50px;
  font-size: 12px;
  font-weight: 600;
}

.function-hero-link span {
  color: var(--pink);
  font-size: 17px;
}

.function-hero-art {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.function-hero-art::before,
.function-hero-art::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
}

.function-hero-art::before { inset: 14%; }
.function-hero-art::after { inset: 29%; }

.function-art-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.1) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(255,255,255,.1) 50%, transparent 50.3%);
  transform: rotate(20deg);
}

.function-art-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 36%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
}

.function-art-core span {
  position: absolute;
  top: -31px;
  left: 50%;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  transform: translateX(-50%);
}

.function-art-core img {
  width: 49%;
}

.function-hero-art > i {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(230,68,149,.13);
  animation: function-node-pulse 3s ease-in-out infinite;
}

.function-hero-art > i:nth-of-type(1) { top: 5%; left: 36%; }
.function-hero-art > i:nth-of-type(2) { top: 42%; right: -6px; animation-delay: .7s; }
.function-hero-art > i:nth-of-type(3) { right: 22%; bottom: 9%; animation-delay: 1.4s; }
.function-hero-art > i:nth-of-type(4) { bottom: 26%; left: 4%; animation-delay: 2.1s; }

.function-hero-art > p {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: max-content;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  transform: translateX(-50%);
}

.function-hero-art > p b {
  margin: 0 10px;
  color: var(--pink);
}

.function-hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.21);
}

.function-hero-bottom > p {
  margin: 0;
  padding: 34px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.function-hero-bottom > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.function-hero-bottom article {
  min-height: 110px;
  border-left: 1px solid rgba(255,255,255,.2);
  padding: 24px;
}

.function-hero-bottom strong,
.function-hero-bottom span {
  display: block;
}

.function-hero-bottom strong {
  color: var(--pink);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.05em;
}

.function-hero-bottom span {
  color: rgba(255,255,255,.49);
  font-size: 9px;
}

.function-page-index {
  position: sticky;
  z-index: 85;
  top: 0;
}

.function-section-heading {
  display: grid;
  grid-template-columns: .3fr 1fr .58fr;
  align-items: end;
  gap: 60px;
}

.function-section-heading h2,
.function-industry-heading h2,
.function-cases-heading h2,
.function-partner-grid h2,
.function-other-heading h2,
.function-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.function-section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.function-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.function-capability-grid article {
  min-height: 325px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.function-capability-grid article:hover {
  z-index: 2;
  background: var(--pink-light);
  transform: translateY(-3px);
}

.function-capability-grid span {
  display: block;
  margin-bottom: 88px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.function-capability-grid h3 {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.function-capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.function-industries {
  padding: 120px 0;
  background:
    radial-gradient(circle at 93% 6%, rgba(230,68,149,.19), transparent 24%),
    var(--navy-deep);
  color: var(--white);
}

.function-industry-heading {
  display: grid;
  grid-template-columns: 1fr .56fr;
  align-items: end;
  gap: 100px;
}

.function-industry-heading h2 {
  max-width: 900px;
}

.function-industry-heading > p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.75;
}

.function-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.21);
  border-left: 1px solid rgba(255,255,255,.21);
}

.function-industry-grid article {
  min-height: 405px;
  border-right: 1px solid rgba(255,255,255,.21);
  border-bottom: 1px solid rgba(255,255,255,.21);
  padding: 27px;
  transition: background 180ms ease;
}

.function-industry-grid article:hover {
  background: rgba(255,255,255,.045);
}

.function-industry-grid article > span {
  display: block;
  margin-bottom: 74px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.function-industry-grid h3 {
  min-height: 62px;
  margin: 0 0 23px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.function-industry-grid ol {
  min-height: 108px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: use;
}

.function-industry-grid li {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 11px 0 11px 26px;
  color: rgba(255,255,255,.58);
  counter-increment: use;
  font-size: 10.5px;
  line-height: 1.55;
}

.function-industry-grid li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--pink);
  content: counter(use, decimal-leading-zero);
  font-size: 8px;
  font-weight: 700;
}

.function-industry-grid a {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 600;
}

.function-industry-grid a b {
  margin-left: 8px;
  color: var(--pink);
}

.function-cases {
  background: #fff;
}

.function-cases-heading {
  display: grid;
  grid-template-columns: .3fr 1.7fr;
  gap: 65px;
}

.function-cases-heading > div {
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: end;
  gap: 70px;
}

.function-cases-heading h2 {
  margin: 0;
}

.function-cases-heading div p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.function-case-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border: 1px solid var(--line);
}

.function-case-tabs button {
  min-height: 185px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 25px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.function-case-tabs button:last-child {
  border-right: 0;
}

.function-case-tabs button[aria-selected="true"] {
  background: var(--navy-deep);
  color: var(--white);
}

.function-case-tabs span,
.function-case-tabs strong {
  display: block;
}

.function-case-tabs span {
  margin-bottom: 36px;
  color: var(--pink);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.function-case-tabs strong {
  max-width: 390px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.function-case-panel {
  padding-top: 82px;
}

.function-case-panel[hidden] {
  display: none;
}

.case-heading-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 100px;
}

.case-classification {
  margin: 0 0 28px;
  color: var(--pink);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
}

.case-industry {
  margin: 0 0 11px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-heading-grid h3 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 70px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.case-duration {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case-duration span,
.case-duration strong {
  display: block;
}

.case-duration span {
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.case-duration strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.case-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.case-profile-grid article {
  min-height: 143px;
  border-right: 1px solid var(--line);
  padding: 25px;
}

.case-profile-grid article:last-child {
  border-right: 0;
}

.case-profile-grid span,
.case-profile-grid strong {
  display: block;
}

.case-profile-grid span {
  margin-bottom: 33px;
  color: var(--purple);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.case-profile-grid strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.case-challenge-grid {
  display: grid;
  grid-template-columns: .32fr 1fr;
  margin-top: 68px;
  gap: 70px;
}

.case-section-label {
  margin: 0;
  color: var(--purple);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .15em;
}

.case-challenge-grid h4 {
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.case-challenge-grid div p {
  max-width: 970px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.case-outcomes {
  margin-top: 72px;
  padding: 38px;
  background: var(--pink-light);
}

.case-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(58,10,74,.18);
  border-left: 1px solid rgba(58,10,74,.18);
}

.case-outcome-grid article {
  min-height: 170px;
  border-right: 1px solid rgba(58,10,74,.18);
  border-bottom: 1px solid rgba(58,10,74,.18);
  padding: 26px;
  background: rgba(255,255,255,.4);
}

.case-outcome-grid strong,
.case-outcome-grid span {
  display: block;
}

.case-outcome-grid strong {
  color: var(--purple);
  font-size: clamp(32px, 3.3vw, 50px);
  font-weight: 400;
  letter-spacing: -.06em;
}

.case-outcome-grid span {
  margin-top: 34px;
  color: var(--muted);
  font-size: 10px;
}

.case-evidence-note {
  margin: 15px 0 0;
  color: rgba(58,10,74,.47);
  font-size: 9px;
}

.case-analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  margin-top: 72px;
  gap: 16px;
}

.function-chart,
.case-model-stack {
  min-height: 520px;
  border: 1px solid var(--line);
  padding: 30px;
}

.function-chart-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.function-chart-heading p,
.case-model-stack > div:first-child p {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.function-chart-heading h4,
.case-model-stack > div:first-child h4 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.function-chart-heading > span {
  color: var(--muted);
  font-size: 9px;
}

.function-chart svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 46px;
  overflow: visible;
}

.function-chart-grid line {
  stroke: rgba(58,10,74,.11);
  stroke-width: 1;
}

.function-chart-baseline,
.function-chart-target {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.function-chart-baseline {
  stroke: rgba(58,10,74,.26);
  stroke-dasharray: 7 7;
}

.function-chart-target {
  stroke: var(--pink);
}

.function-chart-points circle {
  fill: var(--white);
  stroke: var(--pink);
  stroke-width: 2;
}

.function-chart-labels {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: -5px;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.function-chart-legend {
  display: flex;
  margin-top: 30px;
  gap: 26px;
  color: var(--muted);
  font-size: 9px;
}

.function-chart-legend span {
  position: relative;
  padding-left: 24px;
}

.function-chart-legend span::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--pink);
  content: "";
}

.function-chart-legend .legend-baseline::before {
  background: rgba(58,10,74,.3);
}

.case-model-stack {
  background:
    radial-gradient(circle at 90% 4%, rgba(230,68,149,.25), transparent 30%),
    var(--navy-deep);
  color: var(--white);
}

.case-model-stack > div:first-child p {
  color: var(--pink);
}

.model-flow {
  margin-top: 45px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.model-flow article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 67px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  gap: 10px;
}

.model-flow span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
}

.model-flow strong {
  font-size: 11px;
  font-weight: 500;
}

.case-model-stack > small {
  display: block;
  margin-top: 28px;
  color: rgba(255,255,255,.43);
  font-size: 8.5px;
  line-height: 1.55;
}

.case-timeline {
  margin-top: 75px;
}

.case-timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-timeline-track article {
  position: relative;
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.case-timeline-track article:last-child {
  border-right: 0;
}

.case-timeline-track article::after {
  position: absolute;
  top: 66px;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.case-timeline-track article:last-child::after {
  display: none;
}

.case-timeline-track span {
  display: block;
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
}

.case-timeline-track p {
  margin: 29px 0 6px;
  color: var(--purple);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.case-timeline-track h4 {
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 500;
}

.case-timeline-track small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.case-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  gap: 16px;
}

.case-team-grid > div {
  min-height: 465px;
  border: 1px solid var(--line);
  padding: 36px;
}

.case-team-grid > div:first-child h4 {
  max-width: 650px;
  margin: 40px 0 35px;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.16;
}

.case-expertise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-expertise-chips span {
  border: 1px solid rgba(109,27,131,.18);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--pink-light);
  color: var(--purple);
  font-size: 9px;
  font-weight: 600;
}

.case-partner-model {
  background: linear-gradient(145deg, #5c126a, #801b79);
  color: var(--white);
}

.case-partner-model > p {
  margin: 0 0 38px;
  color: var(--pink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.case-partner-model > h4 {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.case-partner-model ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-partner-model li {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 10px 0;
  color: rgba(255,255,255,.58);
  font-size: 9.5px;
  line-height: 1.55;
}

.case-partner-model li b {
  color: rgba(255,255,255,.87);
  font-weight: 600;
}

.function-partner {
  padding: 120px 0;
  background: linear-gradient(135deg, #5f126c, #8e1b79);
  color: var(--white);
}

.function-partner-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(75px, 10vw, 160px);
}

.function-partner-grid h2 {
  margin-bottom: 28px;
}

.function-partner-grid > div:first-child > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.8;
}

.function-partner-map {
  border-top: 1px solid rgba(255,255,255,.23);
}

.function-partner-map article {
  display: grid;
  grid-template-columns: 50px .75fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.23);
  padding: 25px 0;
  gap: 24px;
}

.function-partner-map span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
}

.function-partner-map h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.function-partner-map p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 10.5px;
  line-height: 1.6;
}

.function-other {
  background: var(--paper);
}

.function-other-heading {
  display: grid;
  grid-template-columns: .28fr 1fr;
  align-items: end;
  gap: 65px;
}

.function-other-heading h2 {
  max-width: 930px;
  margin: 0;
}

.function-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.function-other-grid a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.function-other-grid a:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.function-other-grid span {
  margin-bottom: auto;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.function-other-grid h3 {
  margin: 0 0 30px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.3;
}

.function-other-grid b {
  color: var(--purple);
  font-size: 10px;
  font-weight: 600;
}

.function-other-grid a:hover b {
  color: var(--pink);
}

.function-cta {
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(230,68,149,.25), transparent 28%),
    var(--navy-deep);
  color: var(--white);
}

.function-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}

.function-cta h2 {
  max-width: 930px;
}

.function-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.8;
}

.function-cta-grid > div:last-child {
  display: grid;
  min-width: 300px;
  gap: 10px;
}

@keyframes function-node-pulse {
  0%, 100% { transform: scale(.9); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1180px) {
  .function-hero-grid {
    grid-template-columns: 1fr 400px;
  }

  .function-capability-grid,
  .function-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .function-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-analytics-grid {
    grid-template-columns: 1fr;
  }

  .function-chart,
  .case-model-stack {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .function-hero {
    min-height: auto;
    padding-top: 125px;
  }

  .function-hero-grid,
  .function-section-heading,
  .function-industry-heading,
  .function-cases-heading,
  .function-partner-grid,
  .function-cta-grid {
    grid-template-columns: 1fr;
  }

  .function-breadcrumb {
    margin-bottom: 48px;
  }

  .function-hero-art {
    width: min(100%, 430px);
  }

  .function-hero-bottom {
    grid-template-columns: 1fr;
  }

  .function-hero-bottom article:first-child {
    border-left: 0;
  }

  .function-section-heading .section-number,
  .function-cases-heading .section-number {
    margin-bottom: -25px;
  }

  .function-cases-heading > div {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .function-case-tabs {
    grid-template-columns: 1fr;
  }

  .function-case-tabs button {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .function-case-tabs button:last-child {
    border-bottom: 0;
  }

  .function-case-tabs span {
    margin-bottom: 17px;
  }

  .case-heading-grid,
  .case-challenge-grid,
  .case-team-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .case-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-profile-grid article:nth-child(2) {
    border-right: 0;
  }

  .case-profile-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .case-timeline-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-timeline-track article:nth-child(3) {
    border-right: 0;
  }

  .case-timeline-track article:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .case-timeline-track article:nth-child(3)::after {
    display: none;
  }

  .function-partner-map article {
    grid-template-columns: 45px 1fr;
  }

  .function-partner-map p {
    grid-column: 2;
  }

  .function-cta-grid > div:last-child {
    width: min(100%, 420px);
  }
}

@media (max-width: 680px) {
  .function-hero {
    padding-top: 110px;
  }

  .function-hero-copy h1 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .function-hero-art {
    width: min(91vw, 350px);
  }

  .function-hero-bottom > div {
    grid-template-columns: 1fr;
  }

  .function-hero-bottom article {
    min-height: 88px;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .function-page-index .page-index-inner {
    justify-content: flex-start;
  }

  .function-section-heading h2,
  .function-industry-heading h2,
  .function-cases-heading h2,
  .function-partner-grid h2,
  .function-other-heading h2,
  .function-cta h2 {
    font-size: 40px;
  }

  .function-capability-grid,
  .function-industry-grid,
  .case-profile-grid,
  .case-outcome-grid,
  .case-timeline-track,
  .function-other-grid {
    grid-template-columns: 1fr;
  }

  .function-capability-grid article,
  .function-industry-grid article {
    min-height: 300px;
  }

  .case-profile-grid article,
  .case-profile-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-profile-grid article:last-child {
    border-bottom: 0;
  }

  .case-heading-grid h3 {
    font-size: 40px;
  }

  .case-outcomes {
    padding: 25px 18px;
  }

  .case-outcome-grid article {
    min-height: 140px;
  }

  .function-chart,
  .case-model-stack {
    padding: 23px 17px;
  }

  .function-chart-heading {
    display: block;
  }

  .function-chart-heading > span {
    display: block;
    margin-top: 8px;
  }

  .function-chart svg {
    margin-top: 25px;
  }

  .function-chart-legend {
    flex-direction: column;
    gap: 8px;
  }

  .case-timeline-track article,
  .case-timeline-track article:nth-child(3) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-timeline-track article:last-child {
    border-bottom: 0;
  }

  .case-timeline-track article::after {
    display: none;
  }

  .case-team-grid > div {
    min-height: auto;
    padding: 28px 21px;
  }

  .function-other-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .function-other-grid a {
    min-height: 250px;
  }

  .function-cta-grid > div:last-child,
  .function-cta .brand-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .function-hero-art > i {
    animation: none;
  }
}

/* NyKinSky logo evolution */
.logo-evolution {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 3%, rgba(230,68,149,.12), transparent 24%),
    #faf5f8;
}

.logo-evolution-heading {
  display: grid;
  grid-template-columns: .3fr 1fr .58fr;
  align-items: end;
  gap: 60px;
}

.logo-evolution-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.logo-evolution-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.logo-evolution-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-era-card {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-era-card:not(:last-child)::after {
  position: absolute;
  z-index: 5;
  top: 282px;
  right: -17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(58,10,74,.17);
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  content: "→";
  font-size: 13px;
}

.logo-era-date {
  display: flex;
  min-height: 95px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 27px 30px;
  gap: 8px;
}

.logo-era-date strong {
  color: var(--ink);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.05em;
}

.logo-era-date span {
  color: var(--muted);
  font-size: 11px;
}

.logo-era-stage {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(58,10,74,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(58,10,74,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--white);
}

.logo-era-stage::before,
.logo-era-stage::after {
  position: absolute;
  border: 1px solid rgba(58,10,74,.08);
  border-radius: 50%;
  content: "";
}

.logo-era-stage::before { width: 260px; height: 260px; }
.logo-era-stage::after { width: 330px; height: 330px; }

.logo-era-stage img {
  position: relative;
  z-index: 3;
  width: 52%;
  max-height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(35,4,47,.08));
  transition: transform 260ms ease;
}

.logo-era-card:hover .logo-era-stage img {
  transform: scale(1.045);
}

.logo-era-stage i {
  position: absolute;
  z-index: 4;
  right: 18%;
  bottom: 18%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), 0 0 0 7px rgba(230,68,149,.09);
}

.logo-era-black .logo-era-stage i {
  background: #191919;
  box-shadow: 0 0 0 1px #191919, 0 0 0 7px rgba(25,25,25,.07);
}

.logo-era-red .logo-era-stage i {
  background: #e90000;
  box-shadow: 0 0 0 1px #e90000, 0 0 0 7px rgba(233,0,0,.07);
}

.logo-era-current .logo-era-stage {
  background:
    radial-gradient(circle at 70% 25%, rgba(230,68,149,.13), transparent 28%),
    linear-gradient(90deg, rgba(109,27,131,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(109,27,131,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    #fff;
}

.logo-era-current .logo-era-stage img {
  width: 91%;
  max-height: 180px;
}

.logo-era-copy {
  min-height: 275px;
  padding: 30px;
}

.logo-era-copy > p:first-child {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
}

.logo-era-red .logo-era-copy > p:first-child { color: #c90000; }
.logo-era-black .logo-era-copy > p:first-child { color: #191919; }

.logo-era-copy h3 {
  margin: 0 0 17px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.logo-era-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.logo-evolution-principle {
  display: grid;
  grid-template-columns: .34fr 1.05fr .61fr;
  align-items: center;
  margin-top: 28px;
  padding: 34px 38px;
  gap: 45px;
  background: var(--navy-deep);
  color: var(--white);
}

.logo-evolution-principle span {
  color: var(--pink);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
}

.logo-evolution-principle p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.7;
}

.logo-evolution-principle small {
  color: rgba(255,255,255,.42);
  font-size: 8.5px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .logo-evolution-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-evolution-heading .section-number {
    margin-bottom: -15px;
  }

  .logo-evolution-track {
    grid-template-columns: 1fr;
  }

  .logo-era-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -18px;
    content: "↓";
    transform: translateX(50%);
  }

  .logo-era-stage {
    min-height: 330px;
  }

  .logo-era-stage img {
    width: min(48%, 230px);
  }

  .logo-era-current .logo-era-stage img {
    width: min(85%, 500px);
  }

  .logo-era-copy {
    min-height: auto;
  }

  .logo-evolution-principle {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 680px) {
  .logo-evolution-heading h2 {
    font-size: 40px;
  }

  .logo-era-date {
    min-height: 84px;
    padding: 22px;
  }

  .logo-era-date strong {
    font-size: 31px;
  }

  .logo-era-stage {
    min-height: 285px;
    padding: 25px;
  }

  .logo-era-stage::before { width: 205px; height: 205px; }
  .logo-era-stage::after { width: 265px; height: 265px; }

  .logo-era-stage img {
    width: min(58%, 205px);
  }

  .logo-era-current .logo-era-stage img {
    width: 95%;
  }

  .logo-era-copy {
    padding: 25px 22px;
  }

  .logo-evolution-principle {
    padding: 27px 23px;
  }
}

/* Homepage multimedia stories */
.home-media-hero {
  min-height: 0;
  padding: 112px 0 26px;
  background:
    radial-gradient(circle at 10% 8%, rgba(230, 68, 149, .22), transparent 28%),
    linear-gradient(145deg, #260431 0%, #45094f 58%, #2b0536 100%);
}

.home-media-carousel {
  position: relative;
  width: min(calc(100% - 48px), 1540px);
  height: clamp(590px, calc(100vh - 138px), 860px);
  min-height: 590px;
  margin-inline: auto;
  overflow: hidden;
  background: #190422;
  box-shadow: 0 24px 72px rgba(15, 0, 23, .4);
  isolation: isolate;
}

.home-media-carousel:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 5px;
}

.home-media-stage,
.home-media-slide {
  position: absolute;
  inset: 0;
}

.home-media-slide {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 720ms ease, transform 1.1s cubic-bezier(.2, .7, .2, 1), visibility 720ms;
}

.home-media-slide.is-active {
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.home-slide-background,
.home-robotics-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-advisory-slide .home-slide-background {
  object-position: 55% center;
  transform: scale(1.035);
  transition: transform 9s ease-out;
}

.home-advisory-slide.is-active .home-slide-background {
  transform: scale(1);
}

.home-robotics-video {
  background: linear-gradient(135deg, #33113c, #0e1720);
  object-position: center;
  filter: saturate(.9) contrast(1.06);
}

.home-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 3, 25, .9) 0%, rgba(18, 3, 25, .52) 48%, rgba(18, 3, 25, .08) 78%),
    linear-gradient(180deg, rgba(8, 2, 14, .06) 26%, rgba(8, 2, 14, .88) 100%);
}

.home-ai-shade {
  background:
    linear-gradient(90deg, rgba(22, 3, 31, .93) 0%, rgba(46, 4, 53, .58) 49%, rgba(10, 16, 22, .12) 82%),
    linear-gradient(180deg, rgba(8, 2, 14, .03) 32%, rgba(8, 2, 14, .88) 100%);
}

.home-media-copy {
  position: absolute;
  z-index: 3;
  bottom: 150px;
  left: clamp(32px, 5.2vw, 88px);
  width: min(870px, calc(100% - 120px));
  color: var(--white);
}

.home-media-kicker {
  margin: 0 0 18px;
  color: #ffc1df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-media-copy h1,
.home-media-copy h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.055em;
}

.home-media-copy > p:not(.home-media-kicker) {
  max-width: 760px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
}

.home-media-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  gap: 13px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.home-media-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .65);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.home-media-link {
  position: relative;
}

.home-media-link:hover::after,
.home-media-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-media-link span {
  transition: transform 180ms ease;
}

.home-media-link:hover span,
.home-media-link:focus-visible span {
  transform: translateX(5px);
}

.home-ai-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 27px;
  gap: 15px 26px;
}

.home-ai-actions .home-media-link {
  margin-top: 0;
}

.home-voiceover-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  padding: 10px 17px;
  background: rgba(39, 4, 49, .42);
  color: var(--white);
  cursor: pointer;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-voiceover-button:hover,
.home-voiceover-button:focus-visible,
.home-voiceover-button[aria-pressed="true"] {
  border-color: var(--pink);
  background: rgba(166, 30, 108, .76);
  transform: translateY(-2px);
}

.home-voiceover-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.home-voiceover-button svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.home-voiceover-transcript {
  width: min(720px, 100%);
  margin-top: 15px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
}

.home-voiceover-transcript summary {
  width: fit-content;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 4px;
}

.home-voiceover-transcript p {
  margin: 11px 0 0;
  border-left: 2px solid var(--pink);
  padding: 10px 13px;
  background: rgba(24, 2, 31, .72);
  line-height: 1.55;
}

.home-ai-caption {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 4vw, 70px);
  bottom: 142px;
  width: min(410px, 34vw);
  margin: 0;
  border-left: 3px solid var(--pink);
  padding: 13px 16px;
  background: rgba(16, 2, 21, .76);
  color: var(--white);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.home-video-credit {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 22px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  letter-spacing: .04em;
}

.home-video-credit a:hover,
.home-video-credit a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.home-agentic-slide {
  background:
    radial-gradient(circle at 74% 38%, rgba(239, 90, 167, .32), transparent 28%),
    linear-gradient(125deg, #170321 0%, #4d0759 62%, #7e176c 100%);
}

.home-agentic-slide::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 55px 55px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 50%, #000 100%);
}

.home-agentic-shade {
  background: linear-gradient(90deg, rgba(20, 2, 28, .96) 0%, rgba(20, 2, 28, .72) 45%, rgba(20, 2, 28, .08) 72%);
}

.home-agentic-visual {
  position: absolute;
  top: 8%;
  right: 3%;
  width: min(50vw, 720px);
  height: 73%;
}

.home-agent-core,
.home-agent-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(85, 10, 97, .52);
  box-shadow: 0 0 45px rgba(239, 90, 167, .17);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.home-agent-core {
  top: 31%;
  left: 39%;
  width: 190px;
  height: 190px;
  background: rgba(255, 255, 255, .94);
  animation: home-agent-float 5s ease-in-out infinite;
}

.home-agent-core img {
  width: 48%;
}

.home-agent-core i {
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  animation: home-agent-ring 5.5s ease-out infinite;
}

.home-agent-core i:last-child {
  inset: -66px;
  animation-delay: 1.3s;
}

.home-agent-node {
  width: 98px;
  height: 98px;
  align-content: center;
  gap: 2px;
  animation: home-agent-float 4s ease-in-out infinite;
}

.home-agent-node i {
  color: #ffb5db;
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
}

.home-agent-node b {
  font-size: 12px;
  font-weight: 600;
}

.node-plan { top: 5%; left: 20%; }
.node-reason { top: 12%; right: 5%; animation-delay: -.8s; }
.node-act { right: 0; bottom: 7%; animation-delay: -1.6s; }
.node-learn { bottom: 0; left: 20%; animation-delay: -2.4s; }

.home-agent-line {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 50%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 178, 218, .85), rgba(255, 255, 255, .1));
  transform-origin: left;
  animation: home-agent-signal 2.4s ease-in-out infinite;
}

.line-one { transform: rotate(-45deg); }
.line-two { transform: rotate(28deg); animation-delay: -.8s; }
.line-three { transform: rotate(152deg); animation-delay: -1.6s; }

.home-world-mosaic {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: #2c0738;
}

.home-world-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
  transform: scale(1.04);
  transition: transform 9s ease-out;
}

.home-network-slide.is-active .home-world-mosaic img {
  transform: scale(1);
}

.home-world-mosaic img:nth-child(even) {
  transition-delay: 160ms;
}

.home-network-shade {
  background:
    linear-gradient(90deg, rgba(27, 2, 37, .95) 0%, rgba(27, 2, 37, .64) 47%, rgba(27, 2, 37, .12) 75%),
    linear-gradient(180deg, rgba(8, 2, 14, .04) 28%, rgba(8, 2, 14, .92) 100%);
}

.home-media-navigation {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 0 clamp(24px, 4.5vw, 72px) 24px;
  gap: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 1, 13, .96) 100%);
}

.home-media-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
}

.home-media-tabs button {
  position: relative;
  min-height: 76px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  padding: 21px 18px 14px 0;
  overflow: hidden;
  background: transparent;
  color: rgba(255, 255, 255, .52);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  transition: color 180ms ease;
}

.home-media-tabs button:hover,
.home-media-tabs button:focus-visible,
.home-media-tabs button.is-active {
  color: var(--white);
}

.home-media-tabs button:focus-visible,
.home-media-controls button:focus-visible {
  z-index: 2;
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.home-media-tabs button > span {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
}

.home-media-carousel:not(.is-paused) .home-media-tabs button.is-active > span {
  animation: home-media-progress 9s linear forwards;
}

.home-media-controls {
  display: flex;
  margin-right: 220px;
  padding-bottom: 10px;
  gap: 8px;
}

.home-media-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(29, 3, 36, .52);
  color: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-media-controls button:hover {
  border-color: var(--pink);
  background: rgba(166, 30, 108, .72);
  transform: translateY(-2px);
}

.home-media-controls svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-media-controls .icon-play {
  display: none;
  width: 17px;
}

.home-media-carousel.is-paused .home-media-controls .icon-pause {
  display: none;
}

.home-media-carousel.is-paused .home-media-controls .icon-play {
  display: block;
}

@keyframes home-media-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes home-agent-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes home-agent-ring {
  0% { opacity: .25; transform: scale(.92); }
  55% { opacity: .65; }
  100% { opacity: 0; transform: scale(1.17); }
}

@keyframes home-agent-signal {
  0%, 100% { opacity: .18; filter: blur(0); }
  50% { opacity: 1; filter: drop-shadow(0 0 7px #ef5aa7); }
}

@media (max-width: 1180px) {
  .home-media-copy {
    width: min(780px, calc(100% - 64px));
  }

  .home-media-copy h1,
  .home-media-copy h2 {
    font-size: clamp(46px, 6vw, 70px);
  }

  .home-ai-caption {
    display: none;
  }

  .home-agentic-visual {
    right: -8%;
    opacity: .72;
  }

  .home-media-controls {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .home-media-hero {
    padding: 88px 0 14px;
  }

  .home-media-carousel {
    width: calc(100% - 20px);
    height: 760px;
    min-height: 760px;
  }

  .home-media-copy {
    bottom: 150px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .home-ai-slide .home-media-copy {
    bottom: 145px;
  }

  .home-media-copy h1,
  .home-media-copy h2 {
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1.02;
  }

  .home-media-copy > p:not(.home-media-kicker) {
    margin-top: 17px;
    font-size: 15px;
  }

  .home-media-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .home-media-link {
    margin-top: 19px;
  }

  .home-ai-actions {
    margin-top: 18px;
    gap: 10px 18px;
  }

  .home-voiceover-button {
    min-height: 44px;
    padding: 8px 13px;
  }

  .home-voiceover-transcript {
    margin-top: 9px;
  }

  .home-voiceover-transcript p {
    max-height: 105px;
    overflow: auto;
  }

  .home-advisory-slide .home-slide-background {
    object-position: 64% center;
  }

  .home-slide-shade,
  .home-ai-shade,
  .home-network-shade {
    background:
      linear-gradient(90deg, rgba(21, 2, 29, .8), rgba(21, 2, 29, .24)),
      linear-gradient(180deg, rgba(15, 1, 21, .02) 18%, rgba(15, 1, 21, .94) 76%);
  }

  .home-media-navigation {
    display: block;
    padding: 0 14px 12px;
  }

  .home-media-tabs {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }

  .home-media-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-media-tabs button {
    min-width: 148px;
    min-height: 66px;
    flex: 0 0 42%;
    padding: 19px 12px 10px 0;
    scroll-snap-align: start;
    font-size: 11px;
  }

  .home-media-controls {
    position: absolute;
    right: auto;
    bottom: 80px;
    left: 14px;
    padding: 0;
  }

  .home-media-controls button {
    width: 40px;
    height: 40px;
  }

  .home-agentic-visual {
    top: 7%;
    right: -44%;
    width: 128vw;
    height: 55%;
    opacity: .48;
  }

  .home-agent-core {
    width: 150px;
    height: 150px;
  }

  .home-agent-node {
    width: 80px;
    height: 80px;
  }

  .home-world-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .home-video-credit {
    top: 14px;
    right: 14px;
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  .home-media-carousel {
    height: 790px;
    min-height: 790px;
  }

  .home-ai-slide .home-media-copy {
    bottom: 140px;
  }

  .home-ai-slide .home-media-copy h2 {
    font-size: 36px;
  }

  .home-ai-slide .home-media-copy > p:not(.home-media-kicker) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-media-slide,
  .home-advisory-slide .home-slide-background,
  .home-world-mosaic img {
    transform: none;
  }

  .home-media-carousel:not(.is-paused) .home-media-tabs button.is-active > span,
  .home-agent-core,
  .home-agent-core i,
  .home-agent-node,
  .home-agent-line {
    animation: none;
  }
}

/* Executive Intelligence */
.intelligence-page {
  background: var(--white);
}

.executive-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 135px 0 82px;
  background:
    radial-gradient(circle at 72% 33%, rgba(239, 90, 167, .25), transparent 24%),
    linear-gradient(135deg, #190321 0%, #3d084a 50%, #6f146b 100%);
  color: var(--white);
}

.executive-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 52%, #000);
}

.executive-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}

.executive-hero-copy .breadcrumb {
  margin-bottom: 44px;
}

.executive-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 5.1vw, 80px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.06em;
}

.executive-hero-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.executive-hero-actions,
.executive-contact-grid > div:last-child > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.executive-radar {
  position: relative;
  width: min(44vw, 610px);
  aspect-ratio: 1;
  justify-self: end;
}

.executive-radar-grid {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 20%, transparent 74%);
}

.executive-radar-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.executive-radar-ring::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(239, 90, 167, .14), 0 0 24px var(--pink);
  content: "";
}

.executive-radar .ring-one { inset: 10%; animation: executive-spin 26s linear infinite; }
.executive-radar .ring-two { inset: 23%; animation: executive-spin 19s linear infinite reverse; }
.executive-radar .ring-three { inset: 36%; animation: executive-spin 14s linear infinite; }
.executive-radar .ring-one::after { transform: translate(-50%, -50%) rotate(46deg) translateX(260px); }
.executive-radar .ring-two::after { transform: translate(-50%, -50%) rotate(168deg) translateX(176px); }
.executive-radar .ring-three::after { transform: translate(-50%, -50%) rotate(278deg) translateX(91px); }

.executive-radar > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, .16);
  stroke-dasharray: 5 9;
}

.executive-radar-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 160px;
  height: 160px;
  align-content: center;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(15, 1, 21, .38);
  color: var(--navy);
  transform: translate(-50%, -50%);
}

.executive-radar-core img {
  width: 52px;
  margin-bottom: 9px;
}

.executive-radar-core span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-align: center;
}

.executive-radar-node {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 98px;
  min-height: 74px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  padding: 12px 15px;
  background: rgba(41, 5, 51, .68);
  box-shadow: 0 14px 30px rgba(16, 1, 22, .25);
  backdrop-filter: blur(12px);
  animation: executive-node-float 4.8s ease-in-out infinite;
}

.executive-radar-node i {
  color: #ffc1df;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.executive-radar-node b {
  margin-top: 2px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 500;
}

.executive-radar .node-ceo { top: 0; left: 50%; transform: translateX(-50%); }
.executive-radar .node-cfo { top: 26%; right: -1%; animation-delay: -.9s; }
.executive-radar .node-coo { right: 11%; bottom: 3%; animation-delay: -1.8s; }
.executive-radar .node-cio { bottom: 3%; left: 11%; animation-delay: -2.7s; }
.executive-radar .node-cmo { top: 26%; left: -1%; animation-delay: -3.6s; }

.executive-signal {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 19px 4vw;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-align: center;
}

.executive-index {
  background: var(--white);
}

.executive-mandate {
  background: var(--white);
}

.executive-mandate-heading {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: clamp(40px, 8vw, 130px);
}

.executive-mandate-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.executive-mandate-heading .large-copy {
  max-width: 970px;
  margin-top: 32px;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mandate-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 27px;
  background: var(--white);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.mandate-card:hover {
  z-index: 1;
  background: var(--pink-light);
  transform: translateY(-6px);
}

.mandate-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.mandate-card h3 {
  margin: 72px 0 17px;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.mandate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mandate-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  font-size: 12px;
  font-weight: 600;
}

.mandate-card a b {
  font-size: 17px;
  transition: transform 180ms ease;
}

.mandate-card a:hover b {
  transform: translateX(5px);
}

.executive-role-section {
  padding: clamp(92px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(230, 68, 149, .23), transparent 22%),
    var(--navy-deep);
  color: var(--white);
  scroll-margin-top: 94px;
}

.executive-role-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  margin-bottom: 57px;
  gap: clamp(50px, 9vw, 150px);
}

.executive-role-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.06em;
}

.executive-role-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.executive-role-explorer {
  background: var(--paper);
  color: var(--ink);
}

.executive-role-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #3b0a49;
}

.executive-role-tabs button {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 4px solid transparent;
  padding: 20px;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  cursor: pointer;
  gap: 11px;
  font-size: 24px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.executive-role-tabs button:last-child {
  border-right: 0;
}

.executive-role-tabs button span {
  color: rgba(255, 255, 255, .34);
  font-size: 9px;
  letter-spacing: .12em;
}

.executive-role-tabs button:hover,
.executive-role-tabs button:focus-visible,
.executive-role-tabs button.is-active {
  border-bottom-color: var(--pink);
  background: #56105f;
  color: var(--white);
}

.executive-role-tabs button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: -5px;
}

.executive-role-panel {
  display: none;
  padding: clamp(35px, 5vw, 72px);
}

.executive-role-panel.is-active {
  display: block;
  animation: executive-panel-in 430ms ease both;
}

.role-panel-intro {
  display: grid;
  grid-template-columns: .35fr 1.05fr .8fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 48px;
  gap: clamp(30px, 5vw, 75px);
}

.role-panel-intro > p,
.role-question-card > p {
  margin: 7px 0 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.role-panel-intro h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.role-panel-intro > span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.role-agenda-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  margin-top: 48px;
  gap: clamp(40px, 7vw, 105px);
}

.role-agenda-list h4 {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.role-agenda-list ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: role-agenda;
}

.role-agenda-list li {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: minmax(170px, .65fr) 1.35fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 15px 18px 48px;
  gap: 18px;
  counter-increment: role-agenda;
}

.role-agenda-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "0" counter(role-agenda);
  font-size: 10px;
  font-weight: 700;
}

.role-agenda-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.role-agenda-list li b {
  font-size: 16px;
  font-weight: 600;
}

.role-agenda-list li span {
  color: var(--muted);
  font-size: 13px;
}

.role-question-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 33px;
  background: linear-gradient(145deg, #64126d, var(--navy-deep));
  color: var(--white);
}

.role-question-card > p {
  color: #ffc4e1;
}

.role-question-card blockquote {
  margin: 42px 0 30px;
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -.035em;
}

.role-question-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
}

.role-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.role-brief-grid article {
  min-height: 255px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px;
  background: var(--white);
}

.role-brief-grid article > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.role-brief-grid h4 {
  margin: 48px 0 15px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.role-brief-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.intelligent-enterprise {
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: 94px;
}

.intelligent-enterprise-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.intelligent-enterprise-copy h2 {
  margin: 18px 0 30px;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.intelligent-enterprise-copy .text-link {
  margin-top: 27px;
}

.enterprise-orbit {
  position: relative;
  min-height: 690px;
  background:
    radial-gradient(circle at center, rgba(239, 90, 167, .22), transparent 30%),
    linear-gradient(145deg, #fceaf4, #f3d7e8);
}

.enterprise-orbit > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(90, 11, 102, .18);
  stroke-dasharray: 5 8;
}

.enterprise-orbit-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 170px;
  height: 170px;
  align-content: center;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(78, 13, 82, .22);
  transform: translate(-50%, -50%);
}

.enterprise-orbit-core img {
  width: 55px;
  margin-bottom: 9px;
}

.enterprise-orbit-core span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-align: center;
}

.enterprise-capability {
  position: absolute;
  z-index: 3;
  width: 220px;
  min-height: 155px;
  border: 1px solid rgba(58, 10, 74, .2);
  padding: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 15px 35px rgba(74, 9, 80, .12);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.enterprise-capability:hover {
  box-shadow: 0 22px 48px rgba(74, 9, 80, .2);
  transform: translateY(-7px);
}

.enterprise-capability > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.enterprise-capability h3 {
  margin: 19px 0 8px;
  font-size: 19px;
  font-weight: 600;
}

.enterprise-capability p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.enterprise-orbit .capability-one { top: 7%; left: 7%; }
.enterprise-orbit .capability-two { top: 7%; right: 7%; }
.enterprise-orbit .capability-three { right: 7%; bottom: 7%; }
.enterprise-orbit .capability-four { bottom: 7%; left: 7%; }

.enterprise-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.enterprise-outcomes article {
  min-height: 245px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
}

.enterprise-outcomes span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.enterprise-outcomes h3 {
  margin: 50px 0 13px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.enterprise-outcomes p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.executive-decision-room {
  padding: clamp(95px, 11vw, 160px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 90, 167, .19), transparent 22%),
    linear-gradient(145deg, var(--navy-deep), #4d0b58);
  color: var(--white);
  scroll-margin-top: 94px;
}

.decision-room-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: end;
  margin-bottom: 65px;
  gap: clamp(45px, 8vw, 130px);
}

.decision-room-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.decision-room-heading h2 {
  margin: 0;
  font-size: clamp(47px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.055em;
}

.decision-room-heading > p:last-child {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.decision-room-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.decision-room-flow article {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding: 29px;
  transition: background 190ms ease;
}

.decision-room-flow article:hover {
  background: rgba(239, 90, 167, .1);
}

.decision-room-flow article > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.decision-room-flow article > p {
  margin: 62px 0 12px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.decision-room-flow h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 35px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.decision-room-flow small {
  margin-top: auto;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.executive-contact {
  padding: clamp(90px, 10vw, 145px) 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .15), transparent 26%),
    linear-gradient(115deg, #8f1b73, #d33c8c);
  color: var(--white);
  scroll-margin-top: 94px;
}

.executive-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
}

.executive-contact h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(47px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.055em;
}

.executive-contact-grid > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

@keyframes executive-spin {
  to { transform: rotate(360deg); }
}

@keyframes executive-node-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -9px; }
}

@keyframes executive-panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .executive-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  }

  .executive-radar {
    width: min(45vw, 560px);
  }

  .mandate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .role-panel-intro {
    grid-template-columns: .3fr 1.1fr .75fr;
  }

  .intelligent-enterprise-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-orbit {
    width: min(100%, 780px);
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .executive-hero {
    padding-top: 138px;
  }

  .executive-hero-grid {
    grid-template-columns: 1fr;
  }

  .executive-radar {
    width: min(82vw, 600px);
    justify-self: center;
  }

  .executive-mandate-heading,
  .executive-role-heading,
  .decision-room-heading,
  .executive-contact-grid {
    grid-template-columns: 1fr;
  }

  .role-panel-intro {
    grid-template-columns: 1fr;
  }

  .role-panel-intro > p {
    margin: 0;
  }

  .role-agenda-grid {
    grid-template-columns: 1fr;
  }

  .decision-room-heading .eyebrow {
    margin-bottom: 0;
  }

  .decision-room-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .executive-hero {
    min-height: 0;
    padding: 112px 0 80px;
  }

  .executive-hero-copy .breadcrumb {
    margin-bottom: 42px;
  }

  .executive-hero-copy h1 {
    font-size: clamp(47px, 13vw, 63px);
  }

  .executive-hero-actions,
  .executive-contact-grid > div:last-child > div {
    align-items: stretch;
    flex-direction: column;
  }

  .executive-radar {
    width: 100%;
    margin-top: 34px;
  }

  .executive-radar-core {
    width: 112px;
    height: 112px;
  }

  .executive-radar-core img {
    width: 36px;
  }

  .executive-radar-node {
    min-width: 76px;
    min-height: 60px;
    padding: 9px 10px;
  }

  .executive-radar-node i {
    font-size: 11px;
  }

  .executive-signal {
    display: none;
  }

  .executive-mandate-heading h2,
  .executive-role-heading h2,
  .intelligent-enterprise-copy h2,
  .decision-room-heading h2,
  .executive-contact h2 {
    font-size: 43px;
  }

  .mandate-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

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

  .mandate-card h3 {
    margin-top: 42px;
  }

  .executive-role-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .executive-role-tabs::-webkit-scrollbar {
    display: none;
  }

  .executive-role-tabs button {
    min-width: 116px;
    min-height: 82px;
    flex: 0 0 32%;
    font-size: 18px;
  }

  .executive-role-panel {
    padding: 27px 20px;
  }

  .role-panel-intro {
    padding-bottom: 31px;
    gap: 17px;
  }

  .role-panel-intro h3 {
    font-size: 37px;
  }

  .role-agenda-grid {
    margin-top: 34px;
  }

  .role-agenda-list li {
    grid-template-columns: 1fr;
    padding-left: 38px;
    gap: 6px;
  }

  .role-question-card {
    min-height: 300px;
    padding: 26px;
  }

  .role-brief-grid,
  .enterprise-outcomes,
  .decision-room-flow {
    grid-template-columns: 1fr;
  }

  .role-brief-grid article {
    min-height: 225px;
  }

  .enterprise-orbit {
    min-height: 680px;
  }

  .enterprise-orbit-core {
    width: 122px;
    height: 122px;
  }

  .enterprise-capability {
    width: 44%;
    min-height: 160px;
    padding: 18px;
  }

  .enterprise-orbit .capability-one { top: 4%; left: 3%; }
  .enterprise-orbit .capability-two { top: 4%; right: 3%; }
  .enterprise-orbit .capability-three { right: 3%; bottom: 4%; }
  .enterprise-orbit .capability-four { bottom: 4%; left: 3%; }

  .enterprise-outcomes {
    margin-top: 48px;
  }

  .decision-room-flow article {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .executive-radar .ring-one,
  .executive-radar .ring-two,
  .executive-radar .ring-three,
  .executive-radar-node,
  .executive-role-panel.is-active {
    animation: none;
  }
}

/* Investment Bank */
.ib-page {
  background: #fff;
  color: #170d1a;
}

.ib-page .ib-header.is-scrolled {
  background: rgba(20, 4, 26, 0.97);
}

.ib-page .main-nav {
  gap: 22px;
}

.ib-page .main-nav a {
  font-size: 13px;
}

.ib-hero {
  position: relative;
  overflow: hidden;
  min-height: 940px;
  padding-top: 94px;
  background:
    radial-gradient(circle at 77% 34%, rgba(230, 68, 149, 0.23), transparent 25%),
    radial-gradient(circle at 62% 60%, rgba(109, 27, 131, 0.3), transparent 36%),
    linear-gradient(135deg, #17051d 0%, #26072f 55%, #130517 100%);
  color: #fff;
}

.ib-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
  content: "";
}

.ib-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, .97fr);
  align-items: center;
  min-height: 700px;
  padding-block: 70px 90px;
  gap: 70px;
}

.ib-breadcrumb {
  display: flex;
  align-items: center;
  margin: 0 0 64px;
  gap: 12px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  letter-spacing: .06em;
}

.ib-breadcrumb a:hover { color: #fff; }
.ib-kicker { margin: 0 0 20px; color: #f184ba; font-size: 12px; font-weight: 700; letter-spacing: .19em; }

.ib-hero-copy h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(62px, 6.2vw, 105px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .96;
}

.ib-hero-copy h1 em {
  color: #f37eba;
  font-style: normal;
  font-weight: 500;
}

.ib-hero-lead {
  max-width: 760px;
  margin: 35px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.75;
}

.ib-hero-actions,
.ib-contact-grid > div:last-child > div {
  display: flex;
  align-items: center;
  margin-top: 38px;
  gap: 13px;
}

.ib-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.ib-button:hover { transform: translateY(-2px); }
.ib-button-primary { background: #ea4a99; color: #fff; }
.ib-button-primary:hover { background: #f16bad; }
.ib-button-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.ib-button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.ib-button-dark { background: #25052f; color: #fff; }
.ib-button-dark:hover { background: #6d1b83; }

.ib-brand-architecture {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 15px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ib-brand-architecture i { width: 1px; height: 18px; background: rgba(255,255,255,.3); }

.ib-capital-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.ib-visual-grid {
  position: absolute;
  inset: 4% 0;
  border: 1px solid rgba(255,255,255,.1);
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(780px) rotateY(-9deg) rotateX(3deg);
}

.ib-visual-grid::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 10%, rgba(230,68,149,.22) 47%, transparent 48%), linear-gradient(55deg, transparent 58%, rgba(255,255,255,.11) 59%, transparent 60%);
  content: "";
}

.ib-market-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ib-market-orbit::after {
  position: absolute;
  top: 17%;
  left: 3%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f66bb0;
  box-shadow: 0 0 18px #f66bb0;
  content: "";
}

.ib-market-orbit.orbit-one { width: 390px; height: 390px; animation: ib-orbit 18s linear infinite; }
.ib-market-orbit.orbit-two { width: 520px; height: 520px; border-style: dashed; animation: ib-orbit 35s linear infinite reverse; }

.ib-market-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 208px;
  height: 208px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #d94891, #5a1670 58%, #23052c);
  box-shadow: 0 30px 80px rgba(0,0,0,.36), 0 0 55px rgba(225,68,149,.22);
  transform: translate(-50%, -50%);
}

.ib-market-core::before {
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  content: "";
}

.ib-market-core img { position: relative; width: 66px; filter: brightness(0) invert(1); }
.ib-market-core span { position: absolute; bottom: 42px; font-size: 9px; font-weight: 700; letter-spacing: .18em; line-height: 1.35; text-align: center; }

.ib-market-node {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 104px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(20,4,26,.88);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(9px);
}

.ib-market-node b { font-size: 13px; letter-spacing: .1em; }
.ib-market-node small { margin-top: 3px; color: #e99ac3; font-size: 9px; text-transform: uppercase; }
.node-india { top: 11%; right: 8%; }
.node-uk { top: 30%; left: 0; }
.node-us { right: -2%; bottom: 24%; }
.node-eu { bottom: 12%; left: 7%; }
.node-apac { top: 7%; left: 25%; }

.ib-market-tape {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 2%;
  left: 8%;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.23);
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .18em;
}

.ib-launch-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.13);
  background: rgba(5,1,7,.45);
}

.ib-launch-strip .page-shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.ib-launch-strip p { display: grid; min-height: 145px; margin: 0; padding: 26px 24px; border-left: 1px solid rgba(255,255,255,.13); }
.ib-launch-strip p:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.ib-launch-strip span { color: #f16bad; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.ib-launch-strip strong { align-self: end; font-size: 17px; font-weight: 500; }
.ib-launch-strip small { color: rgba(255,255,255,.53); font-size: 11px; }

.ib-page-index {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(37,5,47,.13);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
}

.ib-page-index .page-shell { display: flex; min-height: 65px; align-items: center; gap: 36px; overflow-x: auto; }
.ib-page-index a { flex: 0 0 auto; color: #6f5a70; font-size: 12px; font-weight: 600; }
.ib-page-index a:hover { color: #b52b76; }

.ib-section { padding-block: 125px; }
.ib-section-label { display: flex; align-items: center; margin: 0 0 25px; gap: 14px; color: #aa2e72; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.ib-section-label span { color: #9b8d9b; }
.ib-section-label::before { width: 32px; height: 1px; background: currentColor; content: ""; }
.ib-section-label-light { color: #f277b4; }

.ib-platform { background: #fff; }
.ib-platform-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.ib-section-heading h2,
.ib-capability-heading h2,
.ib-markets-heading h2,
.ib-office-copy h2,
.ib-launch-heading h2,
.ib-contact h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1.06;
}

.ib-platform-copy { padding-top: 56px; }
.ib-platform-copy > p { margin: 0; color: #625162; font-size: 16px; line-height: 1.85; }
.ib-platform-copy > p + p { margin-top: 25px; }
.ib-platform-copy .ib-lead-copy { color: #251528; font-size: 23px; font-weight: 400; line-height: 1.65; }

.ib-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 60px; border-top: 1px solid #d9cbd5; }
.ib-principles article { padding: 27px 24px 0 0; border-right: 1px solid #d9cbd5; }
.ib-principles article:not(:first-child) { padding-left: 24px; }
.ib-principles article:last-child { border-right: 0; }
.ib-principles strong { color: #d23e89; font-size: 11px; }
.ib-principles h3 { margin: 29px 0 10px; font-size: 18px; font-weight: 600; line-height: 1.35; }
.ib-principles p { margin: 0; color: #766676; font-size: 13px; line-height: 1.65; }

.ib-capabilities { overflow: hidden; background: #210529; color: #fff; }
.ib-capability-heading,
.ib-launch-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 90px; }
.ib-capability-heading > p,
.ib-launch-heading > p { margin: 0 0 7px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.8; }

.ib-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.ib-capability-card { position: relative; min-height: 440px; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s ease, transform .25s ease; }
.ib-capability-card:hover { z-index: 2; background: #6d1b83; transform: translateY(-7px); }
.ib-capability-card.is-featured { background: linear-gradient(145deg, #bd2d7b, #702087); }
.ib-capability-card > span { color: #f59dc8; font-size: 11px; font-weight: 700; }
.ib-capability-card > p { margin: 75px 0 14px; color: #ee8dbc; font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.ib-capability-card.is-featured > p,
.ib-capability-card.is-featured > span { color: #fff; }
.ib-capability-card h3 { max-width: 340px; margin: 0; font-size: 28px; font-weight: 400; letter-spacing: -.025em; line-height: 1.25; }
.ib-capability-card ul { margin: 34px 0 0; padding: 0; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.65; list-style: none; }
.ib-capability-card li { position: relative; padding: 6px 0 6px 18px; }
.ib-capability-card li::before { position: absolute; top: 14px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #ed66a9; content: ""; }
.ib-capability-card.is-featured ul { color: rgba(255,255,255,.84); }

.ib-journey { background: #fff7fb; }
.ib-section-heading-split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.ib-section-heading-split > p { margin: 0 0 7px; color: #6d5d6c; font-size: 15px; line-height: 1.8; }
.ib-journey-flow { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 72px; border-top: 1px solid #cdbec9; }
.ib-journey-flow article { position: relative; min-height: 330px; padding: 31px 25px; border-right: 1px solid #cdbec9; }
.ib-journey-flow article::before { position: absolute; top: -5px; left: 24px; width: 9px; height: 9px; border-radius: 50%; background: #d93d8a; content: ""; }
.ib-journey-flow span { color: #ae3677; font-size: 11px; font-weight: 700; }
.ib-journey-flow h3 { margin: 115px 0 17px; font-size: 29px; font-weight: 400; }
.ib-journey-flow p { margin: 0; color: #746474; font-size: 13px; line-height: 1.7; }

.ib-markets { overflow: hidden; background: #120417; color: #fff; }
.ib-markets-heading { display: grid; grid-template-columns: .8fr 1.1fr 1fr; align-items: end; gap: 55px; }
.ib-markets-heading .ib-section-label { align-self: start; }
.ib-markets-heading > p:last-child { margin: 0 0 9px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.8; }
.ib-market-layout { display: grid; grid-template-columns: 1.15fr .85fr; margin-top: 72px; gap: 60px; }
.ib-world-field { position: relative; min-height: 600px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: radial-gradient(ellipse at center, rgba(117,36,137,.45), transparent 62%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 56px 56px, 56px 56px; }
.ib-world-field::before { position: absolute; top: 50%; left: 50%; width: 69%; height: 69%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: inset 0 0 90px rgba(230,68,149,.12), 0 0 70px rgba(230,68,149,.12); content: ""; transform: translate(-50%,-50%); }
.ib-world-meridian { position: absolute; top: 15.5%; bottom: 15.5%; left: 50%; width: 31%; border-right: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: translateX(-50%); }
.ib-world-equator { position: absolute; top: 50%; left: 15.5%; width: 69%; height: 28%; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: translateY(-50%); }
.ib-map-point { position: absolute; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); font-size: 8px; letter-spacing: .14em; }
.ib-map-point i { width: 9px; height: 9px; border: 2px solid #ff8bc4; border-radius: 50%; background: #b12b75; box-shadow: 0 0 0 5px rgba(239,90,167,.12), 0 0 16px #ef5aa7; }
.ib-map-point.point-india { color: #fff; font-size: 10px; }
.point-india { top: 50%; left: 66%; }
.point-usa { top: 39%; left: 19%; }
.point-canada { top: 27%; left: 23%; }
.point-uk { top: 33%; left: 47%; }
.point-europe { top: 40%; left: 53%; }
.point-japan { top: 40%; right: 9%; }
.point-australia { right: 15%; bottom: 21%; }
.ib-market-list { border-top: 1px solid rgba(255,255,255,.2); }
.ib-market-list article { padding: 27px 24px; border-bottom: 1px solid rgba(255,255,255,.2); }
.ib-market-list article.is-base { background: linear-gradient(90deg, rgba(213,53,136,.24), transparent); }
.ib-market-list span { color: #ed75b1; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.ib-market-list h3 { margin: 10px 0 7px; font-size: 20px; font-weight: 500; }
.ib-market-list p { margin: 0; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.7; }

.ib-office-network { background: #fff; }
.ib-office-network-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 100px; }
.ib-office-copy { position: sticky; top: 110px; }
.ib-office-copy > p:not(.ib-section-label) { max-width: 630px; margin: 30px 0 0; color: #6e5c6e; font-size: 15px; line-height: 1.85; }
.ib-office-copy .ib-button { margin-top: 36px; }
.ib-office-roles { border-top: 1px solid #d8cbd4; }
.ib-office-roles article { display: grid; grid-template-columns: 44px .7fr 1.1fr; padding: 32px 0; border-bottom: 1px solid #d8cbd4; gap: 20px; }
.ib-office-roles article span { color: #c73581; font-size: 11px; font-weight: 700; }
.ib-office-roles h3 { margin: 0; font-size: 20px; font-weight: 500; }
.ib-office-roles article p { margin: 0; color: #746474; font-size: 13px; line-height: 1.7; }
.ib-office-note { margin: 30px 0 0; padding: 22px; border-left: 3px solid #d33e88; background: #fff2f8; color: #624f60; font-size: 12px; line-height: 1.75; }
.ib-office-note strong { color: #271329; }

.ib-launch { background: #2a0734; color: #fff; }
.ib-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 75px; border-top: 1px solid rgba(255,255,255,.2); }
.ib-timeline::before { position: absolute; top: -1px; left: 0; width: 75%; height: 2px; background: linear-gradient(to right, #a62672, #f175b2); content: ""; }
.ib-timeline article { position: relative; min-height: 315px; padding: 31px 25px; border-right: 1px solid rgba(255,255,255,.18); }
.ib-timeline article::before { position: absolute; top: -6px; left: 25px; width: 11px; height: 11px; border: 2px solid #2a0734; border-radius: 50%; background: #ec62a7; box-shadow: 0 0 0 1px #ec62a7; content: ""; }
.ib-timeline article.is-target { background: linear-gradient(180deg, rgba(222,63,142,.28), transparent); }
.ib-timeline span { color: #f381b9; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.ib-timeline h3 { margin: 95px 0 16px; font-size: 23px; font-weight: 400; }
.ib-timeline p { margin: 0; color: rgba(255,255,255,.59); font-size: 12px; line-height: 1.75; }
.ib-regulatory-status { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; margin-top: 70px; padding: 38px 42px; border: 1px solid rgba(255,255,255,.24); background: rgba(10,2,13,.25); gap: 55px; }
.ib-regulatory-status > div { position: relative; padding-left: 33px; }
.ib-status-dot { position: absolute; top: 3px; left: 0; width: 13px; height: 13px; border: 2px solid #f278b5; border-radius: 50%; box-shadow: 0 0 0 6px rgba(242,120,181,.1); }
.ib-regulatory-status div p { margin: 0 0 9px; color: #f389bd; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.ib-regulatory-status h3 { margin: 0; font-size: 20px; font-weight: 500; }
.ib-regulatory-status > p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.8; }

.ib-contact { padding-block: 105px; background: linear-gradient(110deg, #9e2368, #e34794 52%, #67207c); color: #fff; }
.ib-contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 100px; }
.ib-contact h2 { font-size: clamp(42px, 4.7vw, 70px); }
.ib-contact-grid > div:last-child > p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; }

@keyframes ib-orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (max-width: 1200px) {
  .ib-page .header-actions { display: none; }
  .ib-page .main-nav { gap: 15px; }
  .ib-hero-grid { grid-template-columns: 1fr .85fr; gap: 35px; }
  .ib-capital-visual { transform: scale(.9); }
  .ib-market-layout { grid-template-columns: 1fr; }
  .ib-world-field { min-height: 540px; }
}

@media (max-width: 980px) {
  .ib-page .main-nav { gap: 0; }
  .ib-hero { min-height: auto; }
  .ib-hero-grid { grid-template-columns: 1fr; padding-block: 60px 80px; }
  .ib-breadcrumb { margin-bottom: 45px; }
  .ib-capital-visual { width: min(100%, 680px); margin-inline: auto; transform: none; }
  .ib-launch-strip .page-shell { grid-template-columns: repeat(2, 1fr); }
  .ib-platform-grid,
  .ib-office-network-grid { grid-template-columns: 1fr; gap: 50px; }
  .ib-platform-copy { padding-top: 0; }
  .ib-capability-heading,
  .ib-launch-heading,
  .ib-section-heading-split,
  .ib-contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .ib-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .ib-journey-flow { grid-template-columns: repeat(3, 1fr); }
  .ib-journey-flow article:nth-child(3) { border-right: 0; }
  .ib-markets-heading { grid-template-columns: 1fr 1fr; }
  .ib-markets-heading .ib-section-label { grid-column: 1 / -1; }
  .ib-office-copy { position: static; }
  .ib-timeline { grid-template-columns: repeat(2, 1fr); }
  .ib-regulatory-status { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 680px) {
  .ib-hero-grid { padding-top: 34px; }
  .ib-breadcrumb { margin-bottom: 36px; }
  .ib-hero-copy h1 { font-size: clamp(49px, 15vw, 66px); }
  .ib-hero-lead { font-size: 16px; }
  .ib-hero-actions,
  .ib-contact-grid > div:last-child > div { align-items: stretch; flex-direction: column; }
  .ib-button { width: 100%; }
  .ib-brand-architecture { align-items: flex-start; flex-direction: column; }
  .ib-brand-architecture i { width: 40px; height: 1px; }
  .ib-capital-visual { min-height: 510px; }
  .ib-market-orbit.orbit-one { width: 270px; height: 270px; }
  .ib-market-orbit.orbit-two { width: 380px; height: 380px; }
  .ib-market-core { width: 170px; height: 170px; }
  .ib-market-core img { width: 54px; }
  .ib-market-core span { bottom: 32px; }
  .ib-market-node { min-width: 82px; padding: 8px 9px; }
  .ib-market-node small { display: none; }
  .node-india { top: 12%; right: 2%; }
  .node-uk { left: 1%; }
  .node-us { right: 1%; }
  .node-eu { left: 2%; }
  .node-apac { top: 8%; left: 19%; }
  .ib-launch-strip .page-shell { grid-template-columns: 1fr; }
  .ib-launch-strip p { min-height: 115px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
  .ib-page-index .page-shell { gap: 25px; }
  .ib-section { padding-block: 85px; }
  .ib-section-heading h2,
  .ib-capability-heading h2,
  .ib-markets-heading h2,
  .ib-office-copy h2,
  .ib-launch-heading h2,
  .ib-contact h2 { font-size: 43px; }
  .ib-platform-copy .ib-lead-copy { font-size: 20px; }
  .ib-principles,
  .ib-capability-grid,
  .ib-journey-flow,
  .ib-timeline { grid-template-columns: 1fr; }
  .ib-principles article,
  .ib-principles article:not(:first-child) { padding: 24px 0; border-right: 0; border-bottom: 1px solid #d9cbd5; }
  .ib-principles h3 { margin-top: 15px; }
  .ib-capability-card { min-height: 390px; padding: 27px; }
  .ib-capability-card > p { margin-top: 58px; }
  .ib-journey-flow article { min-height: 235px; border-right: 0; border-bottom: 1px solid #cdbec9; }
  .ib-journey-flow h3 { margin-top: 55px; }
  .ib-markets-heading { grid-template-columns: 1fr; }
  .ib-world-field { min-height: 410px; }
  .ib-map-point b { display: none; }
  .ib-office-roles article { grid-template-columns: 35px 1fr; }
  .ib-office-roles article p { grid-column: 2; }
  .ib-timeline article { min-height: 250px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .ib-timeline article h3 { margin-top: 55px; }
  .ib-regulatory-status { padding: 28px 23px; }
  .ib-contact { padding-block: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .ib-market-orbit.orbit-one,
  .ib-market-orbit.orbit-two { animation: none; }
}

/* Homepage Investment Bank introduction */
.home-ib-preview {
  overflow: hidden;
  background:
    radial-gradient(circle at 71% 45%, rgba(229,67,148,.22), transparent 28%),
    linear-gradient(120deg, #130417, #2c0737 57%, #19041f);
  color: #fff;
}

.home-ib-preview-grid {
  display: grid;
  grid-template-columns: 1.05fr .7fr .45fr;
  min-height: 650px;
  align-items: center;
  gap: 55px;
}

.home-ib-preview-copy { padding-block: 90px; }
.home-ib-preview-copy h2 { margin: 0; font-size: clamp(51px, 5.4vw, 82px); font-weight: 300; letter-spacing: -.055em; line-height: 1.02; }
.home-ib-preview-copy > p:not(.eyebrow):not(.home-ib-brand-line) { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.8; }
.home-ib-preview-actions { display: flex; margin-top: 35px; gap: 32px; }
.home-ib-brand-line { margin: 50px 0 0; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.home-ib-brand-line span { margin-inline: 8px; color: #f06aad; }

.home-ib-preview-visual { position: relative; min-height: 440px; }
.home-ib-preview-visual::before { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 45px 45px; content: ""; transform: perspective(600px) rotateY(-8deg); }
.home-ib-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: translate(-50%,-50%); }
.home-ib-ring.ring-a { width: 260px; height: 260px; animation: ib-orbit 18s linear infinite; }
.home-ib-ring.ring-b { width: 355px; height: 355px; border-style: dashed; animation: ib-orbit 30s linear infinite reverse; }
.home-ib-core { position: absolute; top: 50%; left: 50%; display: grid; width: 145px; height: 145px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: linear-gradient(145deg,#db3f8d,#64187a); box-shadow: 0 20px 50px rgba(0,0,0,.35); transform: translate(-50%,-50%); }
.home-ib-core img { width: 55px; filter: brightness(0) invert(1); }
.home-ib-core i { position: absolute; bottom: 23px; font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .18em; }
.home-ib-point { position: absolute; padding: 8px 10px; border: 1px solid rgba(255,255,255,.2); background: #1b0621; color: #ed8aba; font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.home-ib-point.point-a { top: 12%; right: 3%; }
.home-ib-point.point-b { top: 39%; left: -4%; }
.home-ib-point.point-c { right: 4%; bottom: 12%; }

.home-ib-preview-status { border-top: 1px solid rgba(255,255,255,.17); }
.home-ib-preview-status article { display: grid; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.17); gap: 8px; }
.home-ib-preview-status span { color: #e973ae; font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.home-ib-preview-status strong { font-size: 15px; font-weight: 500; line-height: 1.35; }

@media (max-width: 980px) {
  .home-ib-preview-grid { grid-template-columns: 1fr 1fr; }
  .home-ib-preview-status { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 65px; }
  .home-ib-preview-status article { padding: 23px; border-right: 1px solid rgba(255,255,255,.17); }
}

@media (max-width: 680px) {
  .home-ib-preview-grid { grid-template-columns: 1fr; gap: 0; }
  .home-ib-preview-copy { padding: 75px 0 20px; }
  .home-ib-preview-copy h2 { font-size: 51px; }
  .home-ib-preview-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .home-ib-preview-visual { min-height: 430px; }
  .home-ib-preview-status { grid-column: auto; grid-template-columns: 1fr; margin-bottom: 65px; }
  .home-ib-preview-status article { padding-inline: 0; border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-ib-ring.ring-a,
  .home-ib-ring.ring-b { animation: none; }
}

/* NyKSONS / NyKinSky Pharmaceuticals */
.pharma-page { --pharma-ink:#172a3a; --pharma-blue:#155f8d; --pharma-aqua:#4bc5c8; --pharma-violet:#6d1b83; --pharma-pink:#e64495; color:var(--pharma-ink); background:#fff; }
.pharma-header { color:#fff; }
.pharma-header.is-scrolled { background:rgba(17,55,78,.97); }
.nyksons-lockup { display:flex; min-width:250px; align-items:center; gap:12px; color:#fff; }
.nyksons-lockup > span:last-child { display:grid; line-height:1; }
.nyksons-lockup b { font-size:29px; font-weight:600; letter-spacing:-.055em; }
.nyksons-lockup small { margin-top:6px; font-size:7px; font-weight:600; letter-spacing:.18em; }
.nyksons-wordmark { font-family:"Poppins",sans-serif; font-style:normal; font-weight:600; letter-spacing:-.055em; }
.nyksons-wordmark em { display:inline-block; margin-left:.035em; font-style:italic; font-weight:inherit; letter-spacing:-.02em; }
.nyksons-symbol { position:relative; display:block; width:44px; height:44px; flex:0 0 auto; border-radius:14px 5px 14px 5px; background:linear-gradient(145deg,#53d1cc,#7a238e 62%,#e64495); transform:rotate(8deg); }
.nyksons-symbol i { position:absolute; display:block; width:18px; height:28px; border:2px solid rgba(255,255,255,.88); border-radius:50%; transform:rotate(-36deg); }
.nyksons-symbol i:first-child { top:4px; left:8px; }
.nyksons-symbol i:last-child { right:7px; bottom:3px; border-color:rgba(255,255,255,.55); }
.pharma-page .main-nav { gap:24px; }
.pharma-page .main-nav a { font-size:13px; }
.pharma-hero { position:relative; min-height:940px; overflow:hidden; padding-top:94px; color:#fff; background:#143f5b; }
.pharma-hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.pharma-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(11,43,63,.98) 0%,rgba(21,87,124,.88) 38%,rgba(31,97,132,.2) 68%,rgba(255,255,255,.04) 100%); }
.pharma-hero-shade::after { position:absolute; inset:0; background:linear-gradient(120deg,rgba(75,197,200,.1),transparent 45%,rgba(230,68,149,.08)); content:""; }
.pharma-hero-content { position:relative; z-index:2; min-height:690px; padding-block:68px 95px; }
.pharma-breadcrumb { display:flex; margin:0 0 70px; gap:12px; color:rgba(255,255,255,.64); font-size:11px; letter-spacing:.06em; }
.pharma-kicker { margin:0 0 21px; color:#91e4e2; font-size:11px; font-weight:700; letter-spacing:.19em; }
.pharma-hero h1 { max-width:880px; margin:0; font-size:clamp(60px,6.3vw,102px); font-weight:300; letter-spacing:-.064em; line-height:.98; }
.pharma-hero h1 em { color:#9ae7e4; font-style:normal; font-weight:500; }
.pharma-hero-content > p:not(.pharma-breadcrumb):not(.pharma-kicker):not(.pharma-name-note) { max-width:700px; margin:32px 0 0; color:rgba(255,255,255,.86); font-size:18px; line-height:1.75; }
.pharma-hero-actions { display:flex; margin-top:36px; gap:13px; }
.pharma-button { display:inline-flex; min-height:55px; align-items:center; justify-content:center; padding:13px 23px; gap:23px; border:1px solid transparent; font-size:13px; font-weight:600; transition:transform .2s ease,background .2s ease,border-color .2s ease; }
.pharma-button:hover { transform:translateY(-2px); }
.pharma-button-primary { background:#42bbb9; color:#102f42; }
.pharma-button-primary:hover { background:#72d8d5; }
.pharma-button-ghost { border-color:rgba(255,255,255,.55); color:#fff; }
.pharma-button-ghost:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.pharma-name-note { margin:28px 0 0; color:rgba(255,255,255,.58); font-size:9px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.pharma-launch-ribbon { position:relative; z-index:3; border-top:1px solid rgba(255,255,255,.2); background:rgba(13,58,81,.9); backdrop-filter:blur(12px); }
.pharma-launch-ribbon .page-shell { display:grid; grid-template-columns:.7fr .5fr 1.25fr; }
.pharma-launch-ribbon p { display:grid; min-height:150px; margin:0; padding:28px 27px; border-left:1px solid rgba(255,255,255,.18); }
.pharma-launch-ribbon p:last-child { border-right:1px solid rgba(255,255,255,.18); }
.pharma-launch-ribbon span { color:#8eddd9; font-size:9px; font-weight:700; letter-spacing:.15em; }
.pharma-launch-ribbon strong { align-self:end; font-size:17px; font-weight:500; line-height:1.45; }
.pharma-section { padding-block:125px; }
.pharma-purpose { background:#f5fbfb; }
.pharma-purpose-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; }
.pharma-section-label { display:flex; align-items:center; margin:0 0 24px; gap:13px; color:#197da0; font-size:10px; font-weight:700; letter-spacing:.16em; }
.pharma-section-label::before { width:31px; height:1px; background:currentColor; content:""; }
.pharma-section-label span { color:#9aaeb8; }
.pharma-purpose h2 { margin:0; font-size:clamp(45px,4.7vw,72px); font-weight:300; letter-spacing:-.05em; line-height:1.08; }
.pharma-purpose-grid > div:last-child { padding-top:55px; }
.pharma-purpose-grid > div:last-child p { margin:0; color:#5d717d; font-size:15px; line-height:1.85; }
.pharma-purpose-grid > div:last-child p + p { margin-top:23px; }
.pharma-purpose-grid > div:last-child .pharma-lead { color:#1b3545; font-size:22px; line-height:1.65; }
.nyksons-footer-lockup { color:#fff; }

@media(max-width:980px){.pharma-page .header-actions{display:none}.pharma-hero{min-height:auto}.pharma-purpose-grid{grid-template-columns:1fr;gap:40px}.pharma-purpose-grid>div:last-child{padding-top:0}}
@media(max-width:680px){.nyksons-lockup{min-width:0}.nyksons-lockup b{font-size:24px}.nyksons-lockup small{font-size:6px}.pharma-hero-content{min-height:680px;padding-top:42px}.pharma-breadcrumb{margin-bottom:48px}.pharma-hero h1{font-size:clamp(48px,15vw,65px)}.pharma-hero-content>p:not(.pharma-breadcrumb):not(.pharma-kicker):not(.pharma-name-note){font-size:15px}.pharma-hero-actions{align-items:stretch;flex-direction:column}.pharma-launch-ribbon .page-shell{grid-template-columns:1fr}.pharma-launch-ribbon p{min-height:105px;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18)}.pharma-section{padding-block:85px}.pharma-purpose h2{font-size:42px}}

.pharma-page-index { position:sticky; z-index:45; top:0; border-bottom:1px solid rgba(23,67,87,.14); background:rgba(255,255,255,.95); backdrop-filter:blur(14px); }
.pharma-page-index .page-shell { display:flex; min-height:65px; align-items:center; gap:36px; overflow-x:auto; scrollbar-width:none; }
.pharma-page-index .page-shell::-webkit-scrollbar { display:none; }
.pharma-page-index a { flex:0 0 auto; color:#58707d; font-size:12px; font-weight:600; }
.pharma-page-index a:hover { color:#147b9a; }

.pharma-identity { overflow:hidden; padding-block:100px; background:#163d55; color:#fff; }
.pharma-identity-grid { display:grid; grid-template-columns:.72fr 1.28fr; align-items:center; gap:95px; }
.pharma-identity-mark { position:relative; display:grid; min-height:440px; place-items:center; border:1px solid rgba(255,255,255,.15); background:radial-gradient(circle at 50% 50%,rgba(75,197,200,.25),transparent 42%),linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:auto,48px 48px,48px 48px; }
.pharma-identity-mark::before,.pharma-identity-mark::after { position:absolute; border:1px solid rgba(135,224,221,.27); border-radius:50%; content:""; }
.pharma-identity-mark::before { width:290px; height:290px; }
.pharma-identity-mark::after { width:365px; height:365px; border-style:dashed; }
.pharma-identity-mark .nyksons-symbol { z-index:2; width:120px; height:120px; border-radius:35px 14px 35px 14px; box-shadow:0 25px 55px rgba(0,0,0,.25); }
.pharma-identity-mark .nyksons-symbol i { width:48px; height:74px; border-width:4px; }
.pharma-identity-mark .nyksons-symbol i:first-child { top:13px; left:23px; }
.pharma-identity-mark .nyksons-symbol i:last-child { right:19px; bottom:10px; }
.pharma-identity-mark b { position:absolute; bottom:54px; font-size:48px; font-weight:600; letter-spacing:-.065em; }
.pharma-identity-copy h2,.pharma-heading-split h2,.pharma-portfolio-heading h2,.pharma-quality-heading h2,.pharma-partners-copy h2,.pharma-access-copy h2,.pharma-information-grid h2,.pharma-launch-heading h2,.pharma-contact h2 { margin:0; font-size:clamp(44px,4.8vw,74px); font-weight:300; letter-spacing:-.052em; line-height:1.07; }
.pharma-identity-copy>p:not(.pharma-section-label):not(.pharma-clearance-note) { max-width:780px; margin:27px 0 0; color:rgba(255,255,255,.72); font-size:16px; line-height:1.85; }
.pharma-identity-copy>p strong { color:#fff; }
.pharma-brand-stack { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:center; margin-top:50px; padding-block:22px; border-top:1px solid rgba(255,255,255,.2); border-bottom:1px solid rgba(255,255,255,.2); gap:18px; }
.pharma-brand-stack span { display:grid; color:#88dcd9; font-size:8px; font-weight:700; letter-spacing:.12em; }
.pharma-brand-stack b { margin-top:9px; color:#fff; font-size:15px; font-weight:500; letter-spacing:0; }
.pharma-brand-stack i { color:#e37cba; font-size:19px; font-style:normal; }
.pharma-clearance-note { margin:25px 0 0; color:rgba(255,255,255,.5); font-size:10px; line-height:1.7; }

.pharma-model { background:#fff; }
.pharma-heading-split,.pharma-portfolio-heading,.pharma-launch-heading { display:grid; grid-template-columns:1.25fr .75fr; align-items:end; gap:90px; }
.pharma-heading-split>p,.pharma-portfolio-heading>p,.pharma-launch-heading>p { margin:0 0 7px; color:#667c86; font-size:14px; line-height:1.8; }
.pharma-model-flow { display:grid; grid-template-columns:repeat(3,1fr); margin-top:70px; border-top:1px solid #cfdcdf; border-left:1px solid #cfdcdf; }
.pharma-model-flow article { display:grid; grid-template-columns:42px 1fr; min-height:290px; padding:30px; border-right:1px solid #cfdcdf; border-bottom:1px solid #cfdcdf; column-gap:18px; transition:background .22s ease,transform .22s ease; }
.pharma-model-flow article:hover { z-index:2; background:#f1fbfb; transform:translateY(-5px); }
.pharma-model-flow article>span { color:#138aa7; font-size:11px; font-weight:700; }
.pharma-model-flow article>div p { margin:0 0 10px; color:#2685a1; font-size:9px; font-weight:700; letter-spacing:.15em; }
.pharma-model-flow h3 { margin:0; font-size:23px; font-weight:500; line-height:1.3; }
.pharma-model-flow article>p { grid-column:2; align-self:end; margin:50px 0 0; color:#667983; font-size:13px; line-height:1.7; }
.pharma-model-note { margin:35px 0 0; padding:22px 26px; border-left:3px solid #20a6af; background:#f0fafb; color:#56707c; font-size:12px; line-height:1.8; }
.pharma-model-note strong { color:#173745; }

.pharma-portfolio { background:#143d55; color:#fff; }
.pharma-section-label-light { color:#7fd9d7; }
.pharma-portfolio-heading>p { color:rgba(255,255,255,.6); }
.pharma-portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); margin-top:70px; border-top:1px solid rgba(255,255,255,.18); border-left:1px solid rgba(255,255,255,.18); }
.pharma-portfolio-card { min-height:410px; padding:31px; border-right:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); transition:background .23s ease,transform .23s ease; }
.pharma-portfolio-card:hover { z-index:2; background:#196987; transform:translateY(-6px); }
.pharma-portfolio-card.is-primary { background:linear-gradient(140deg,#147f99,#512071); }
.pharma-portfolio-card>span { color:#89dedb; font-size:10px; font-weight:700; }
.pharma-portfolio-card>p { margin:65px 0 13px; color:#7fdad7; font-size:9px; font-weight:700; letter-spacing:.16em; }
.pharma-portfolio-card h3 { max-width:330px; margin:0; font-size:30px; font-weight:400; letter-spacing:-.025em; line-height:1.25; }
.pharma-portfolio-card>div { margin-top:56px; padding-top:20px; border-top:1px solid rgba(255,255,255,.18); }
.pharma-portfolio-card>div b { color:#9ee8e4; font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.pharma-portfolio-card>div p { margin:9px 0 0; color:rgba(255,255,255,.61); font-size:12px; line-height:1.7; }

.pharma-quality { overflow:hidden; background:#f3fbfb; }
.pharma-quality-heading { display:grid; grid-template-columns:.42fr 1fr .58fr; align-items:end; gap:50px; }
.pharma-quality-heading .pharma-section-label { align-self:start; }
.pharma-quality-heading>p:last-child { margin:0 0 6px; color:#617985; font-size:13px; line-height:1.8; }
.pharma-quality-system { display:grid; grid-template-columns:.62fr 1.38fr; align-items:center; margin-top:78px; gap:80px; }
.pharma-quality-core { position:relative; display:grid; width:min(100%,430px); aspect-ratio:1; place-items:center; margin-inline:auto; border:1px solid #b9d9db; border-radius:50%; background:radial-gradient(circle,rgba(75,197,200,.2),transparent 60%); }
.pharma-quality-core::before,.pharma-quality-core::after { position:absolute; border:1px solid #c9dedf; border-radius:50%; content:""; }
.pharma-quality-core::before { inset:12%; }
.pharma-quality-core::after { inset:26%; border-style:dashed; }
.pharma-quality-core .nyksons-symbol { z-index:2; width:96px; height:96px; border-radius:29px 10px 29px 10px; }
.pharma-quality-core .nyksons-symbol i { width:38px; height:59px; border-width:3px; }
.pharma-quality-core .nyksons-symbol i:first-child { top:11px; left:19px; }
.pharma-quality-core .nyksons-symbol i:last-child { right:15px; bottom:8px; }
.pharma-quality-core strong { position:absolute; bottom:21%; color:#1b6678; font-size:9px; letter-spacing:.16em; text-align:center; }
.pharma-quality-list { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid #c8dadd; border-left:1px solid #c8dadd; }
.pharma-quality-list article { min-height:215px; padding:24px; border-right:1px solid #c8dadd; border-bottom:1px solid #c8dadd; }
.pharma-quality-list span { color:#17869f; font-size:10px; font-weight:700; }
.pharma-quality-list h3 { margin:38px 0 11px; font-size:18px; font-weight:600; }
.pharma-quality-list p { margin:0; color:#637a85; font-size:12px; line-height:1.7; }

.pharma-partners { background:#fff; }
.pharma-partners-grid { display:grid; grid-template-columns:.9fr 1.1fr; align-items:start; gap:100px; }
.pharma-partners-copy { position:sticky; top:110px; }
.pharma-partners-copy>p:not(.pharma-section-label) { max-width:650px; margin:28px 0 0; color:#657b86; font-size:15px; line-height:1.85; }
.pharma-button-dark { margin-top:34px; background:#194f68; color:#fff; }
.pharma-button-dark:hover { background:#147f95; }
.pharma-partner-criteria { border-top:1px solid #cfdbde; }
.pharma-partner-criteria article { display:grid; grid-template-columns:42px .75fr 1fr; padding:30px 0; border-bottom:1px solid #cfdbde; gap:20px; }
.pharma-partner-criteria span { color:#1788a0; font-size:10px; font-weight:700; }
.pharma-partner-criteria h3 { margin:0; font-size:19px; font-weight:500; }
.pharma-partner-criteria p { margin:0; color:#687d86; font-size:12px; line-height:1.75; }

.pharma-access { background:#eff9fa; }
.pharma-access-grid { display:grid; grid-template-columns:1fr 1fr; min-height:760px; }
.pharma-access-visual { position:relative; overflow:hidden; }
.pharma-access-visual::after { position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(17,58,80,.88)); content:""; }
.pharma-access-visual img { width:100%; height:100%; object-fit:cover; object-position:64% center; }
.pharma-access-visual span { position:absolute; z-index:2; right:45px; bottom:45px; color:#fff; font-size:13px; font-weight:700; letter-spacing:.16em; line-height:1.5; text-align:right; }
.pharma-access-copy { padding:100px 0 90px 80px; }
.pharma-access-copy>p:not(.pharma-section-label) { max-width:650px; margin:27px 0 0; color:#627984; font-size:14px; line-height:1.85; }
.pharma-access-list { margin-top:45px; border-top:1px solid #c9dadd; }
.pharma-access-list article { display:grid; grid-template-columns:44px 1fr; padding:20px 0; border-bottom:1px solid #c9dadd; }
.pharma-access-list span { color:#1789a1; font-size:10px; font-weight:700; }
.pharma-access-list p { display:grid; margin:0; color:#6b818b; font-size:11px; line-height:1.6; }
.pharma-access-list b { margin-bottom:4px; color:#1b3947; font-size:14px; font-weight:600; }

.pharma-information { background:#fff; }
.pharma-information-grid { display:grid; grid-template-columns:1fr 1fr; gap:85px; }
.pharma-product-placeholder { align-self:end; padding:35px; border:1px solid #c8d9dc; background:linear-gradient(135deg,#f4fbfb,#fff); }
.pharma-product-placeholder>div { display:flex; align-items:center; justify-content:space-between; padding-bottom:22px; border-bottom:1px solid #ccdadd; gap:20px; }
.pharma-product-placeholder span { color:#16839c; font-size:9px; font-weight:700; letter-spacing:.14em; }
.pharma-product-placeholder strong { font-size:13px; font-weight:500; }
.pharma-product-placeholder p { margin:28px 0; color:#637985; font-size:13px; line-height:1.8; }
.pharma-product-placeholder a { display:inline-flex; align-items:center; gap:20px; color:#176d88; font-size:12px; font-weight:600; }

.pharma-launch { background:#153d54; color:#fff; }
.pharma-launch-heading>p { color:rgba(255,255,255,.6); }
.pharma-timeline { position:relative; display:grid; grid-template-columns:repeat(4,1fr); margin-top:72px; border-top:1px solid rgba(255,255,255,.2); }
.pharma-timeline::before { position:absolute; top:-1px; left:0; width:75%; height:2px; background:linear-gradient(to right,#43c1c0,#e268ad); content:""; }
.pharma-timeline article { position:relative; min-height:310px; padding:29px 24px; border-right:1px solid rgba(255,255,255,.18); }
.pharma-timeline article::before { position:absolute; top:-6px; left:25px; width:11px; height:11px; border:2px solid #153d54; border-radius:50%; background:#65d2cf; box-shadow:0 0 0 1px #65d2cf; content:""; }
.pharma-timeline article.is-target { background:linear-gradient(180deg,rgba(64,193,192,.25),transparent); }
.pharma-timeline span { color:#87dcda; font-size:9px; font-weight:700; letter-spacing:.12em; }
.pharma-timeline h3 { margin:92px 0 15px; font-size:22px; font-weight:400; }
.pharma-timeline p { margin:0; color:rgba(255,255,255,.6); font-size:12px; line-height:1.75; }
.pharma-regulatory-note { display:grid; grid-template-columns:.85fr 1.15fr; align-items:center; margin-top:65px; padding:35px 40px; border:1px solid rgba(255,255,255,.22); gap:55px; }
.pharma-regulatory-note>div { position:relative; padding-left:30px; }
.pharma-regulatory-note>div>span { position:absolute; top:2px; left:0; width:12px; height:12px; border:2px solid #76d7d4; border-radius:50%; box-shadow:0 0 0 6px rgba(118,215,212,.1); }
.pharma-regulatory-note div p { margin:0 0 8px; color:#83dcd9; font-size:9px; font-weight:700; letter-spacing:.14em; }
.pharma-regulatory-note h3 { margin:0; font-size:18px; font-weight:500; line-height:1.5; }
.pharma-regulatory-note>p { margin:0; color:rgba(255,255,255,.61); font-size:12px; line-height:1.8; }

.pharma-contact { padding-block:100px 38px; background:linear-gradient(115deg,#135c79,#168c9a 55%,#6b257f); color:#fff; }
.pharma-contact-grid { display:grid; grid-template-columns:1.05fr .95fr; align-items:end; gap:100px; }
.pharma-contact-grid>div:last-child>p { margin:0; color:rgba(255,255,255,.77); font-size:14px; line-height:1.85; }
.pharma-contact-grid>div:last-child>div { display:flex; margin-top:30px; gap:13px; }
.pharma-health-note { margin-top:70px; padding-top:24px; border-top:1px solid rgba(255,255,255,.22); }
.pharma-health-note p { margin:0; color:rgba(255,255,255,.6); font-size:10px; line-height:1.7; }

@media(max-width:1100px){.pharma-page .main-nav{gap:15px}.pharma-page .main-nav a{font-size:11px}.pharma-identity-grid{grid-template-columns:.85fr 1.15fr;gap:55px}.pharma-quality-system{grid-template-columns:.8fr 1.2fr;gap:45px}.pharma-access-copy{padding-left:50px}}
@media(max-width:980px){.pharma-identity-grid,.pharma-partners-grid,.pharma-access-grid,.pharma-information-grid,.pharma-contact-grid{grid-template-columns:1fr}.pharma-heading-split,.pharma-portfolio-heading,.pharma-launch-heading{grid-template-columns:1fr;gap:30px}.pharma-model-flow,.pharma-portfolio-grid{grid-template-columns:repeat(2,1fr)}.pharma-quality-heading{grid-template-columns:1fr 1fr}.pharma-quality-heading .pharma-section-label{grid-column:1/-1}.pharma-quality-system{grid-template-columns:1fr}.pharma-quality-core{width:390px}.pharma-partners-copy{position:static}.pharma-access-grid{width:100%}.pharma-access-visual{min-height:600px}.pharma-access-copy{width:var(--shell);margin-inline:auto;padding:85px 0}.pharma-timeline{grid-template-columns:repeat(2,1fr)}.pharma-contact-grid{gap:40px}}
@media(max-width:680px){.pharma-page-index .page-shell{gap:25px}.pharma-identity{padding-block:80px}.pharma-identity-grid{gap:48px}.pharma-identity-mark{min-height:370px}.pharma-identity-mark::before{width:240px;height:240px}.pharma-identity-mark::after{width:310px;height:310px}.pharma-identity-mark b{font-size:41px}.pharma-identity-copy h2,.pharma-heading-split h2,.pharma-portfolio-heading h2,.pharma-quality-heading h2,.pharma-partners-copy h2,.pharma-access-copy h2,.pharma-information-grid h2,.pharma-launch-heading h2,.pharma-contact h2{font-size:42px}.pharma-brand-stack{grid-template-columns:1fr}.pharma-brand-stack i{transform:rotate(90deg)}.pharma-model-flow,.pharma-portfolio-grid,.pharma-quality-list,.pharma-timeline{grid-template-columns:1fr}.pharma-model-flow article{min-height:245px;padding:25px}.pharma-model-flow article>p{margin-top:35px}.pharma-portfolio-card{min-height:365px;padding:26px}.pharma-quality-heading{grid-template-columns:1fr}.pharma-quality-core{width:min(100%,340px)}.pharma-partner-criteria article{grid-template-columns:35px 1fr}.pharma-partner-criteria article p{grid-column:2}.pharma-access-visual{min-height:480px}.pharma-access-visual span{right:25px;bottom:25px}.pharma-product-placeholder{padding:25px}.pharma-product-placeholder>div{align-items:flex-start;flex-direction:column}.pharma-timeline article{min-height:245px;border-bottom:1px solid rgba(255,255,255,.18)}.pharma-timeline h3{margin-top:55px}.pharma-regulatory-note{grid-template-columns:1fr;padding:27px 23px;gap:24px}.pharma-contact-grid>div:last-child>div{align-items:stretch;flex-direction:column}.pharma-contact .pharma-button{width:100%}}

/* Homepage NyKSONS introduction */
.home-pharma-preview { position:relative; min-height:720px; overflow:hidden; color:#fff; background:#164d68; }
.home-pharma-preview>img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.home-pharma-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(12,57,79,.97),rgba(18,93,120,.86) 42%,rgba(16,76,101,.18) 72%,transparent); }
.home-pharma-preview-grid { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,760px) 1fr; align-items:center; min-height:720px; }
.home-pharma-copy { padding-block:80px; }
.home-pharma-lockup { display:flex; align-items:center; margin-bottom:63px; gap:13px; }
.home-pharma-lockup>span:last-child { display:grid; line-height:1; }
.home-pharma-lockup b { font-size:31px; font-weight:600; letter-spacing:-.065em; }
.home-pharma-lockup small { margin-top:7px; font-size:7px; font-weight:600; letter-spacing:.18em; }
.home-pharma-copy h2 { max-width:760px; margin:0; font-size:clamp(52px,5.3vw,82px); font-weight:300; letter-spacing:-.055em; line-height:1.03; }
.home-pharma-copy>p:not(.eyebrow) { max-width:650px; margin:27px 0 0; color:rgba(255,255,255,.78); font-size:16px; line-height:1.8; }
.home-pharma-copy>div:not(.home-pharma-lockup) { display:flex; margin-top:33px; gap:33px; }
.home-pharma-copy>small { display:block; max-width:620px; margin-top:42px; color:rgba(255,255,255,.48); font-size:9px; line-height:1.7; }
@media(max-width:680px){.home-pharma-preview,.home-pharma-preview-grid{min-height:760px}.home-pharma-shade{background:linear-gradient(90deg,rgba(12,57,79,.96),rgba(18,83,109,.78))}.home-pharma-lockup{margin-bottom:48px}.home-pharma-copy h2{font-size:49px}.home-pharma-copy>div:not(.home-pharma-lockup){align-items:flex-start;flex-direction:column;gap:19px}}

/* Official division architecture */
.home-divisions { background:#fff; }
.home-divisions-heading { display:grid; grid-template-columns:1fr .8fr; align-items:end; gap:90px; }
.home-divisions-heading h2 { margin:0; font-size:clamp(49px,5vw,78px); font-weight:300; letter-spacing:-.052em; line-height:1.05; }
.home-divisions-heading>div:last-child>p { margin:0 0 25px; color:#6f5d6d; font-size:15px; line-height:1.8; }
.home-division-grid { display:grid; grid-template-columns:repeat(2,1fr); margin-top:65px; border-top:1px solid #d8cbd4; border-left:1px solid #d8cbd4; }
.home-division-card { position:relative; display:flex; min-height:470px; flex-direction:column; padding:34px; overflow:hidden; border-right:1px solid #d8cbd4; border-bottom:1px solid #d8cbd4; transition:transform .22s ease,box-shadow .22s ease; }
.home-division-card:hover { z-index:2; transform:translateY(-7px); box-shadow:0 24px 55px rgba(44,13,50,.15); }
.home-division-card::after { position:absolute; right:-85px; bottom:-110px; width:240px; height:240px; border:1px solid currentColor; border-radius:50%; opacity:.12; content:""; }
.home-division-card>div { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.home-division-card>div span { font-size:11px; font-weight:700; }
.home-division-card>div p { margin:0; font-size:8px; font-weight:700; letter-spacing:.13em; }
.home-division-card h3 { max-width:420px; margin:95px 0 8px; font-size:31px; font-weight:400; letter-spacing:-.035em; line-height:1.25; }
.home-division-card>strong { font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.home-division-card>p { max-width:390px; margin:23px 0 0; color:#746574; font-size:13px; line-height:1.75; }
.home-division-card>b { margin-top:auto; padding-top:35px; font-size:12px; font-weight:600; }
.home-division-consulting { background:#fff9fc; color:#6d1b83; }
.home-division-bank { background:#26062f; color:#fff; }
.home-division-bank>p { color:rgba(255,255,255,.64); }
.home-division-pharma { background:#eaf8f8; color:#166c82; }
.home-division-build { color:#fff; background:linear-gradient(90deg,rgba(42,12,43,.94),rgba(70,18,55,.68)),url('assets/construction/ramshan-sanjz-infrastructure-hero.png') center/cover; }
.home-division-build>p { color:rgba(255,255,255,.7); }
.home-division-green { grid-column:span 2; min-height:430px; color:#fff; background:linear-gradient(90deg,rgba(4,36,25,.96),rgba(7,54,35,.72) 58%,rgba(5,35,25,.25)),url('assets/green-earth/plantation-highway-hero.png') center 56%/cover; }
.home-division-green>p { color:rgba(255,255,255,.72); }
@media(max-width:980px){.home-divisions-heading{grid-template-columns:1fr;gap:30px}.home-division-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.home-divisions-heading h2{font-size:45px}.home-division-grid{grid-template-columns:1fr}.home-division-card{grid-column:auto;min-height:410px;padding:27px}.home-division-card h3{margin-top:68px}}

/* Divisions hub */
.divisions-page { background:#fff; color:#251528; }
.divisions-hero { position:relative; overflow:hidden; min-height:940px; padding-top:94px; background:radial-gradient(circle at 75% 42%,rgba(230,68,149,.22),transparent 25%),linear-gradient(135deg,#1a0421,#3a0948 60%,#19051f); color:#fff; }
.divisions-hero::before { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to right,transparent,#000 45%); content:""; }
.divisions-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; min-height:700px; padding-block:65px 85px; gap:65px; }
.divisions-hero-copy .breadcrumb { display:flex; margin:0 0 62px; gap:12px; color:rgba(255,255,255,.58); font-size:11px; }
.divisions-hero-copy h1 { max-width:800px; margin:0; font-size:clamp(61px,6.2vw,102px); font-weight:300; letter-spacing:-.064em; line-height:.98; }
.divisions-hero-copy h1 em { color:#f17bb6; font-style:normal; font-weight:500; }
.divisions-hero-copy>p:not(.breadcrumb):not(.eyebrow) { max-width:690px; margin:31px 0 0; color:rgba(255,255,255,.72); font-size:17px; line-height:1.8; }
.divisions-button { display:inline-flex; min-height:55px; align-items:center; margin-top:37px; padding:13px 23px; gap:24px; background:#e64495; color:#fff; font-size:13px; font-weight:600; transition:transform .2s ease,background .2s ease; }
.divisions-button:hover { background:#ef69ab; transform:translateY(-2px); }
.divisions-orbit { position:relative; min-height:580px; }
.divisions-orbit::before { position:absolute; inset:5%; border:1px solid rgba(255,255,255,.1); background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size:50px 50px; content:""; }
.divisions-orbit-ring { position:absolute; top:50%; left:50%; border:1px solid rgba(255,255,255,.23); border-radius:50%; transform:translate(-50%,-50%); }
.divisions-orbit-ring.ring-one { width:370px; height:370px; }
.divisions-orbit-ring.ring-two { width:500px; height:500px; border-style:dashed; }
.divisions-orbit-core { position:absolute; z-index:2; top:50%; left:50%; display:grid; width:190px; height:190px; place-items:center; border:1px solid rgba(255,255,255,.4); border-radius:50%; background:radial-gradient(circle at 36% 30%,#d6418d,#6d1b83 58%,#26052f); box-shadow:0 25px 65px rgba(0,0,0,.35); transform:translate(-50%,-50%); }
.divisions-orbit-core img { width:68px; filter:brightness(0) invert(1); }
.divisions-orbit-core b { position:absolute; bottom:36px; font-size:9px; letter-spacing:.16em; }
.divisions-orbit-node { position:absolute; z-index:3; display:grid; min-width:150px; padding:14px 16px; border:1px solid rgba(255,255,255,.22); background:rgba(25,4,32,.91); box-shadow:0 15px 35px rgba(0,0,0,.24); }
.divisions-orbit-node span { color:#ed70ae; font-size:9px; font-weight:700; }
.divisions-orbit-node b { margin-top:5px; font-size:10px; letter-spacing:.1em; }
.divisions-orbit-node:hover { border-color:#ef7bb5; }
.divisions-orbit-node.node-consulting { top:10%; right:4%; }
.divisions-orbit-node.node-banking { bottom:15%; right:0; }
.divisions-orbit-node.node-pharma { top:41%; left:0; }
.divisions-orbit-node.node-built { bottom:10%; left:6%; }
.divisions-orbit-node.node-green { top:2%; left:37%; border-color:rgba(198,236,114,.46); }
.divisions-orbit-node.node-green span { color:#c6ec72; }
.divisions-status-strip { position:relative; z-index:3; border-top:1px solid rgba(255,255,255,.14); background:rgba(9,1,12,.42); }
.divisions-status-strip .page-shell { display:grid; grid-template-columns:repeat(5,1fr); }
.divisions-status-strip p { display:grid; min-height:145px; margin:0; padding:26px; border-left:1px solid rgba(255,255,255,.14); }
.divisions-status-strip p:last-child { border-right:1px solid rgba(255,255,255,.14); }
.divisions-status-strip span { color:#f171b0; font-size:9px; font-weight:700; }
.divisions-status-strip strong { align-self:end; font-size:17px; font-weight:500; }
.divisions-status-strip small { color:rgba(255,255,255,.52); font-size:10px; }
.division-page-index { position:sticky; z-index:45; top:0; border-bottom:1px solid rgba(61,14,68,.14); background:rgba(255,255,255,.95); backdrop-filter:blur(14px); }
.division-page-index .page-shell { display:flex; min-height:65px; align-items:center; gap:36px; overflow-x:auto; scrollbar-width:none; }
.division-page-index a { flex:0 0 auto; color:#705e70; font-size:12px; font-weight:600; }

.division-directory { background:#fff; }
.division-directory-heading,.division-group-heading { display:grid; grid-template-columns:1.15fr .85fr; align-items:end; gap:85px; }
.division-directory-heading h2,.division-group-heading h2 { margin:0; font-size:clamp(47px,5vw,76px); font-weight:300; letter-spacing:-.052em; line-height:1.06; }
.division-directory-heading>p,.division-group-heading>p { margin:0 0 7px; color:#746274; font-size:14px; line-height:1.8; }
.division-directory-grid { display:grid; grid-template-columns:repeat(5,1fr); margin-top:68px; border-top:1px solid #d9cbd5; border-left:1px solid #d9cbd5; }
.division-directory-card { display:flex; min-height:430px; flex-direction:column; padding:32px; border-right:1px solid #d9cbd5; border-bottom:1px solid #d9cbd5; color:#6d1b83; transition:transform .22s ease,box-shadow .22s ease; }
.division-directory-card:hover { z-index:2; transform:translateY(-7px); box-shadow:0 25px 55px rgba(43,12,50,.15); }
.division-directory-card>span { font-size:10px; font-weight:700; }
.division-directory-card>p { margin:65px 0 12px; font-size:9px; font-weight:700; letter-spacing:.14em; }
.division-directory-card h3 { margin:0; font-size:30px; font-weight:400; letter-spacing:-.03em; line-height:1.3; }
.division-directory-card>strong { margin-top:13px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.division-directory-card>b { margin-top:auto; font-size:12px; }
.division-directory-card.is-dark { background:#25062e; color:#fff; }
.division-directory-card.is-aqua { background:#eaf8f8; color:#166c82; }
.division-directory-card.is-built { color:#fff; background:linear-gradient(0deg,rgba(48,13,43,.86),rgba(48,13,43,.52)),url('assets/construction/ramshan-sanjz-infrastructure-hero.png') center/cover; }
.division-directory-card.is-green { color:#fff; background:linear-gradient(0deg,rgba(5,41,28,.9),rgba(5,41,28,.42)),url('assets/green-earth/plantation-highway-hero.png') center/cover; }

.division-profile { padding-block:120px; }
.division-profile-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:90px; }
.division-profile-grid.is-reversed .division-profile-visual { order:2; }
.division-profile-visual { position:relative; min-height:650px; overflow:hidden; }
.division-profile-visual>img { width:100%; height:100%; min-height:650px; object-fit:cover; }
.division-profile-visual::after { position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(28,5,33,.72)); content:""; }
.division-profile-visual>span { position:absolute; z-index:2; right:28px; bottom:20px; color:#fff; font-size:62px; font-weight:300; }
.division-profile-copy .eyebrow { margin-top:27px; }
.division-status { display:inline-flex; align-items:center; margin:0; gap:9px; font-size:9px; font-weight:700; letter-spacing:.14em; }
.division-status i { width:9px; height:9px; border-radius:50%; background:#33b17c; box-shadow:0 0 0 5px rgba(51,177,124,.12); }
.division-status.is-planned i { background:#ee67aa; box-shadow:0 0 0 5px rgba(238,103,170,.12); }
.division-status.is-development i { background:#41babb; box-shadow:0 0 0 5px rgba(65,186,187,.12); }
.division-profile-copy h2 { margin:0; font-size:clamp(47px,4.7vw,72px); font-weight:300; letter-spacing:-.052em; line-height:1.07; }
.division-profile-copy>p:not(.eyebrow):not(.division-status) { margin:27px 0 0; color:#746474; font-size:14px; line-height:1.85; }
.division-fact-grid { display:grid; grid-template-columns:repeat(2,1fr); margin-top:45px; border-top:1px solid #d8cbd4; border-left:1px solid #d8cbd4; }
.division-fact-grid article { display:grid; min-height:112px; padding:19px; border-right:1px solid #d8cbd4; border-bottom:1px solid #d8cbd4; }
.division-fact-grid span { color:#b3377a; font-size:8px; font-weight:700; letter-spacing:.13em; }
.division-fact-grid strong { align-self:end; font-size:12px; font-weight:500; }
.division-profile-actions { display:flex; margin-top:32px; gap:30px; }
.division-profile-actions a { display:inline-flex; gap:18px; color:#8a2364; font-size:12px; font-weight:600; }
.division-consulting { background:#fff7fb; }
.division-banking { background:#22052a; color:#fff; }
.division-banking .division-profile-copy>p:not(.eyebrow):not(.division-status) { color:rgba(255,255,255,.64); }
.division-banking .division-fact-grid { border-color:rgba(255,255,255,.18); }
.division-banking .division-fact-grid article { border-color:rgba(255,255,255,.18); }
.division-banking .division-fact-grid span,.division-banking .division-profile-actions a { color:#ed78b3; }
.division-bank-visual { display:grid; place-items:center; border:1px solid rgba(255,255,255,.17); background:radial-gradient(circle at center,rgba(194,45,127,.28),transparent 42%),linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:auto,48px 48px,48px 48px; }
.division-bank-visual::after { display:none; }
.division-bank-visual>i { position:absolute; width:370px; height:370px; border:1px solid rgba(255,255,255,.19); border-radius:50%; }
.division-bank-visual>i:nth-of-type(2) { width:510px; height:510px; border-style:dashed; }
.bank-visual-mark { z-index:2; display:grid; width:185px; height:185px; place-items:center; border:1px solid rgba(255,255,255,.36); border-radius:50%; background:linear-gradient(145deg,#d43c89,#601676); box-shadow:0 25px 60px rgba(0,0,0,.3); }
.bank-visual-mark img { width:66px; filter:brightness(0) invert(1); }
.bank-visual-mark b { position:absolute; margin-top:105px; font-size:10px; letter-spacing:.15em; }
.division-bank-visual>strong { position:absolute; bottom:42px; font-size:9px; letter-spacing:.16em; }
.division-bank-visual>em { position:absolute; right:27px; bottom:18px; color:#fff; font-size:62px; font-style:normal; font-weight:300; }
.division-pharmaceuticals { background:#edf9f9; }
.division-nyksons-lockup { display:flex; align-items:center; margin:27px 0 28px; gap:13px; }
.division-nyksons-lockup>span:last-child { display:grid; line-height:1; }
.division-nyksons-lockup b { color:#176d82; font-size:31px; font-weight:600; letter-spacing:-.055em; }
.division-nyksons-lockup small { margin-top:7px; color:#176d82; font-size:7px; font-weight:600; letter-spacing:.18em; }
.division-pharmaceuticals .division-fact-grid span,.division-pharmaceuticals .division-profile-actions a { color:#167f94; }
.division-built-environment { background:#f3ede8; }
.division-built-environment .division-fact-grid span,.division-built-environment .division-profile-actions a { color:#9c3762; }
.division-status.is-built i { background:#d75a68; box-shadow:0 0 0 5px rgba(215,90,104,.13); }
.division-rs-lockup { display:block; width:min(100%,470px); height:150px; margin:20px 0 25px; object-fit:cover; object-position:center; mix-blend-mode:multiply; }
.division-green-earth { background:#e9f4e9; }
.division-green-earth .division-fact-grid span,.division-green-earth .division-profile-actions a { color:#2f7d45; }
.division-status.is-green i { background:#56a962; box-shadow:0 0 0 5px rgba(86,169,98,.14); }

.division-group-model { background:#fff; }
.division-group-grid { display:grid; grid-template-columns:repeat(3,1fr); margin-top:68px; border-top:1px solid #d9cbd5; border-left:1px solid #d9cbd5; }
.division-group-grid article { min-height:300px; padding:30px; border-right:1px solid #d9cbd5; border-bottom:1px solid #d9cbd5; }
.division-group-grid span { color:#b4357a; font-size:9px; font-weight:700; letter-spacing:.13em; }
.division-group-grid h3 { margin:70px 0 13px; font-size:23px; font-weight:500; }
.division-group-grid p { margin:0; color:#746474; font-size:12px; line-height:1.75; }
.division-contact { padding-block:105px; background:linear-gradient(115deg,#6b1d7e,#d63d88 55%,#1a637b); color:#fff; }
.division-contact-grid { display:grid; grid-template-columns:1.05fr .95fr; align-items:end; gap:90px; }
.division-contact h2 { margin:0; font-size:clamp(45px,4.8vw,72px); font-weight:300; letter-spacing:-.052em; line-height:1.06; }
.division-contact-grid>div:last-child>p { margin:0 0 30px; color:rgba(255,255,255,.75); font-size:14px; line-height:1.85; }
.division-contact-grid>div:last-child>a { display:inline-flex; min-height:54px; align-items:center; padding:13px 22px; gap:25px; background:#fff; color:#602071; font-size:13px; font-weight:600; }

@media(max-width:1100px){.divisions-page .main-nav{gap:15px}.divisions-page .main-nav a{font-size:11px}.divisions-hero-grid{grid-template-columns:1fr .85fr}.division-profile-grid{gap:55px}.division-directory-card{padding:24px}.division-directory-card h3{font-size:25px}}
@media(max-width:980px){.divisions-hero-grid{grid-template-columns:1fr}.divisions-orbit{width:min(100%,650px);margin-inline:auto}.division-directory-heading,.division-group-heading,.division-profile-grid,.division-contact-grid{grid-template-columns:1fr}.division-directory-grid,.division-group-grid{grid-template-columns:repeat(2,1fr)}.division-profile-grid.is-reversed .division-profile-visual{order:0}.division-profile-copy{max-width:760px}.division-contact-grid{gap:35px}}
@media(max-width:680px){.divisions-hero-grid{padding-top:35px}.divisions-hero-copy .breadcrumb{margin-bottom:42px}.divisions-hero-copy h1{font-size:clamp(48px,15vw,65px)}.divisions-orbit{min-height:580px}.divisions-orbit-ring.ring-one{width:260px;height:260px}.divisions-orbit-ring.ring-two{width:365px;height:365px}.divisions-orbit-core{width:150px;height:150px}.divisions-orbit-core img{width:54px}.divisions-orbit-core b{bottom:27px}.divisions-orbit-node{min-width:112px;padding:10px}.divisions-orbit-node.node-consulting{top:7%;right:0}.divisions-orbit-node.node-banking{right:0;bottom:7%}.divisions-orbit-node.node-pharma{top:36%;left:0}.divisions-orbit-node.node-built{bottom:7%;left:0}.divisions-orbit-node.node-green{top:0;left:31%}.divisions-status-strip .page-shell{grid-template-columns:1fr}.divisions-status-strip p{min-height:110px;border-right:1px solid rgba(255,255,255,.14);border-bottom:1px solid rgba(255,255,255,.14)}.division-page-index .page-shell{gap:25px}.division-directory-heading h2,.division-group-heading h2,.division-profile-copy h2,.division-contact h2{font-size:43px}.division-directory-grid,.division-group-grid{grid-template-columns:1fr}.division-directory-card{min-height:360px;padding:26px}.division-profile{padding-block:80px}.division-profile-visual,.division-profile-visual>img{min-height:480px}.division-profile-visual>span,.division-bank-visual>em{font-size:48px}.division-fact-grid{grid-template-columns:1fr}.division-profile-actions{align-items:flex-start;flex-direction:column;gap:18px}.division-bank-visual>i{width:270px;height:270px}.division-bank-visual>i:nth-of-type(2){width:370px;height:370px}.bank-visual-mark{width:150px;height:150px}.division-group-grid article{min-height:250px}.division-group-grid h3{margin-top:45px}}

/* RamShan & Sanjz — Real Estate, Construction and Infrastructure */
.rs-page { --rs-ink:#211c21; --rs-plum:#3d0d42; --rs-wine:#7b204f; --rs-coral:#dd5c65; --rs-sand:#f3eee8; --rs-line:#d8cec8; background:#fff; color:var(--rs-ink); }
.rs-header { color:#fff; }
.rs-header.is-scrolled { background:rgba(31,18,31,.96); }
.rs-lockup { display:flex; min-width:330px; align-items:center; gap:13px; color:inherit; }
.rs-lockup-logo { display:block; width:330px; height:auto; }
.rs-lockup>span:last-child { display:grid; line-height:1; }
.rs-lockup b { font-size:20px; font-weight:600; letter-spacing:-.045em; }
.rs-lockup b em { color:#f184a1; font-style:normal; font-weight:400; }
.rs-lockup small { margin-top:8px; font-size:6px; font-weight:600; letter-spacing:.15em; }
.rs-monogram { position:relative; display:block; width:50px; height:50px; flex:0 0 50px; border:1px solid rgba(255,255,255,.65); transform:rotate(45deg); }
.rs-monogram::before { position:absolute; inset:8px; border:1px solid rgba(255,255,255,.3); content:""; }
.rs-monogram i { position:absolute; font-size:13px; font-style:normal; font-weight:600; transform:rotate(-45deg); }
.rs-monogram i:first-child { top:5px; left:9px; color:#fff; }
.rs-monogram i:last-child { right:8px; bottom:5px; color:#f184a1; }

.rs-hero { position:relative; min-height:920px; overflow:hidden; padding-top:94px; color:#fff; background:#261425; }
.rs-hero>img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.rs-hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(22,10,24,.95) 0%,rgba(42,13,43,.83) 38%,rgba(38,11,42,.24) 73%,rgba(19,8,21,.12)),linear-gradient(0deg,rgba(20,8,21,.65),transparent 42%); }
.rs-hero-content { position:relative; z-index:2; display:flex; min-height:680px; align-items:flex-start; flex-direction:column; justify-content:center; padding-block:72px 110px; }
.rs-breadcrumb { display:flex; flex-wrap:wrap; margin:0 0 60px; gap:11px; color:rgba(255,255,255,.65); font-size:10px; }
.rs-breadcrumb a:hover { color:#fff; }
.rs-kicker { margin:0 0 17px; color:#f187a2; font-size:10px; font-weight:700; letter-spacing:.16em; }
.rs-hero h1 { max-width:900px; margin:0; font-size:clamp(66px,7vw,112px); font-weight:300; letter-spacing:-.065em; line-height:.96; }
.rs-hero h1 em { color:#f184a1; font-style:normal; font-weight:500; }
.rs-hero-content>p:not(.rs-breadcrumb):not(.rs-kicker) { max-width:730px; margin:31px 0 0; color:rgba(255,255,255,.78); font-size:17px; line-height:1.78; }
.rs-hero-actions { display:flex; flex-wrap:wrap; margin-top:38px; gap:14px; }
.rs-button { display:inline-flex; min-height:55px; align-items:center; justify-content:center; padding:13px 23px; gap:24px; font-size:12px; font-weight:600; transition:transform .2s ease,background .2s ease,color .2s ease; }
.rs-button:hover { transform:translateY(-2px); }
.rs-button-primary { background:#d84e68; color:#fff; }
.rs-button-primary:hover { background:#ed657d; }
.rs-button-ghost { border:1px solid rgba(255,255,255,.48); color:#fff; }
.rs-button-ghost:hover { background:#fff; color:var(--rs-plum); }
.rs-status { display:flex; align-items:center; margin-top:38px; gap:14px; color:rgba(255,255,255,.66); font-size:10px; }
.rs-status i { width:9px; height:9px; border-radius:50%; background:#f184a1; box-shadow:0 0 0 6px rgba(241,132,161,.15); }
.rs-status b { margin-right:9px; color:#fff; letter-spacing:.1em; }
.rs-hero-facts { position:absolute; z-index:3; right:0; bottom:0; left:0; border-top:1px solid rgba(255,255,255,.2); background:rgba(22,8,24,.58); backdrop-filter:blur(12px); }
.rs-hero-facts .page-shell { display:grid; grid-template-columns:repeat(4,1fr); }
.rs-hero-facts p { display:grid; min-height:128px; margin:0; padding:24px; border-left:1px solid rgba(255,255,255,.16); }
.rs-hero-facts p:last-child { border-right:1px solid rgba(255,255,255,.16); }
.rs-hero-facts span { color:#f184a1; font-size:8px; font-weight:700; letter-spacing:.14em; }
.rs-hero-facts strong { align-self:end; font-size:14px; font-weight:500; }

.rs-page-index { position:sticky; z-index:45; top:0; border-bottom:1px solid rgba(58,26,51,.13); background:rgba(255,255,255,.96); backdrop-filter:blur(14px); }
.rs-page-index .page-shell { display:flex; min-height:66px; align-items:center; gap:38px; overflow-x:auto; scrollbar-width:none; }
.rs-page-index a { flex:0 0 auto; color:#6f626c; font-size:11px; font-weight:600; }
.rs-page-index a:hover { color:var(--rs-wine); }
.rs-brand-signature { padding-block:65px; border-bottom:1px solid #ded4cf; background:#fff; }
.rs-brand-signature-grid { display:grid; grid-template-columns:1.35fr .65fr; align-items:center; gap:85px; }
.rs-brand-signature-grid>img { width:100%; height:340px; object-fit:cover; object-position:center; mix-blend-mode:multiply; }
.rs-brand-signature-grid h2 { margin:0; font-size:30px; font-weight:400; letter-spacing:-.035em; line-height:1.3; }
.rs-brand-signature-grid>div>p:not(.rs-section-label) { margin:18px 0 0; color:#71656c; font-size:12px; line-height:1.75; }
.rs-brand-signature-grid>div>div { display:flex; flex-wrap:wrap; margin-top:22px; gap:18px; }
.rs-brand-signature-grid a { color:#8d2857; font-size:10px; font-weight:600; text-decoration:underline; text-underline-offset:4px; }
.rs-section { padding-block:120px; }
.rs-section-label { margin:0 0 21px; color:#a13a66; font-size:9px; font-weight:700; letter-spacing:.15em; }
.rs-section-label span { margin-left:18px; color:#a89da3; }
.rs-section-label-light { color:#f3a1b7; }
.rs-purpose { background:#fff; }
.rs-purpose-grid { display:grid; grid-template-columns:1.1fr .9fr; align-items:start; gap:100px; }
.rs-purpose h2,.rs-heading h2,.rs-delivery-copy h2,.rs-digital-copy h2,.rs-contact h2 { margin:0; font-size:clamp(50px,5.2vw,80px); font-weight:300; letter-spacing:-.055em; line-height:1.04; }
.rs-purpose-grid>div:last-child { padding-top:48px; }
.rs-purpose-grid>div:last-child p { margin:0; color:#70656b; font-size:14px; line-height:1.9; }
.rs-purpose-grid .rs-lead { margin-bottom:25px!important; color:#382d35!important; font-size:22px!important; font-weight:400; line-height:1.55!important; }
.rs-heading { display:grid; grid-template-columns:1.12fr .88fr; align-items:end; gap:90px; }
.rs-heading>p { margin:0 0 7px; color:#75676e; font-size:14px; line-height:1.82; }

.rs-markets { background:var(--rs-sand); }
.rs-market-grid { display:grid; grid-template-columns:repeat(4,1fr); margin-top:70px; border-top:1px solid #cfc3bd; border-left:1px solid #cfc3bd; }
.rs-market-grid article { display:flex; min-height:320px; flex-direction:column; padding:27px; border-right:1px solid #cfc3bd; border-bottom:1px solid #cfc3bd; background:rgba(255,255,255,.32); transition:background .2s ease,transform .2s ease; }
.rs-market-grid article:hover { z-index:2; background:#fff; transform:translateY(-5px); }
.rs-market-grid span { color:#a13a66; font-size:9px; font-weight:700; }
.rs-market-grid h3 { margin:auto 0 15px; font-size:22px; font-weight:500; letter-spacing:-.025em; line-height:1.35; }
.rs-market-grid p { margin:0; color:#74686f; font-size:11px; line-height:1.75; }

.rs-lifecycle { background:linear-gradient(135deg,#231126,#3f123f); color:#fff; }
.rs-heading-light>p { color:rgba(255,255,255,.62); }
.rs-lifecycle-grid { margin-top:74px; border-top:1px solid rgba(255,255,255,.19); }
.rs-lifecycle-grid article { display:grid; min-height:210px; grid-template-columns:90px 1fr; padding:30px 0; border-bottom:1px solid rgba(255,255,255,.18); transition:padding .2s ease,background .2s ease; }
.rs-lifecycle-grid article:hover { padding-inline:26px; background:rgba(255,255,255,.045); }
.rs-lifecycle-grid>article>span { color:#f184a1; font-size:10px; font-weight:700; }
.rs-lifecycle-grid article>div { display:grid; grid-template-columns:.75fr 1fr .55fr; align-items:center; gap:55px; }
.rs-lifecycle-grid h3 { margin:0; font-size:27px; font-weight:400; letter-spacing:-.025em; }
.rs-lifecycle-grid p { margin:0; color:rgba(255,255,255,.65); font-size:12px; line-height:1.8; }
.rs-lifecycle-grid small { color:#f184a1; font-size:8px; font-weight:700; letter-spacing:.12em; text-align:right; }

.rs-delivery { background:#fff; }
.rs-delivery-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:100px; }
.rs-delivery-copy>p:not(.rs-section-label) { max-width:680px; margin:27px 0 0; color:#70646c; font-size:14px; line-height:1.85; }
.rs-delivery-principles { margin-top:42px; border-top:1px solid var(--rs-line); }
.rs-delivery-principles article { display:grid; grid-template-columns:.8fr 1.2fr; padding:22px 0; border-bottom:1px solid var(--rs-line); gap:28px; }
.rs-delivery-principles b { font-size:12px; font-weight:600; }
.rs-delivery-principles span { color:#776a71; font-size:11px; line-height:1.65; }
.rs-delivery-map { position:relative; min-height:650px; overflow:hidden; background:radial-gradient(circle at center,rgba(221,92,101,.16),transparent 34%),linear-gradient(rgba(59,22,57,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(59,22,57,.07) 1px,transparent 1px),#f2ece8; background-size:auto,48px 48px,48px 48px,auto; }
.rs-map-core { position:absolute; z-index:3; top:50%; left:50%; display:grid; width:160px; height:160px; place-items:center; border-radius:50%; background:linear-gradient(145deg,#411345,#a72f5d); color:#fff; box-shadow:0 25px 65px rgba(63,17,63,.3); transform:translate(-50%,-50%); }
.rs-map-core b { font-size:40px; font-weight:400; letter-spacing:-.06em; }
.rs-map-core small { position:absolute; bottom:35px; font-size:7px; letter-spacing:.15em; }
.rs-map-ring { position:absolute; top:50%; left:50%; border:1px solid rgba(69,26,64,.2); border-radius:50%; transform:translate(-50%,-50%); }
.rs-map-ring.ring-one { width:350px; height:350px; }
.rs-map-ring.ring-two { width:520px; height:520px; border-style:dashed; }
.rs-map-node { position:absolute; z-index:2; min-width:105px; padding:12px; border:1px solid rgba(75,32,68,.23); background:rgba(255,255,255,.86); color:#682350; font-size:8px; font-weight:700; letter-spacing:.13em; text-align:center; }
.rs-map-node.node-owner { top:12%; left:50%; transform:translateX(-50%); }.rs-map-node.node-design { top:32%; right:5%; }.rs-map-node.node-build { right:11%; bottom:15%; }.rs-map-node.node-capital { bottom:15%; left:11%; }.rs-map-node.node-digital { top:32%; left:5%; }
.rs-scope-note { display:grid; grid-template-columns:.35fr 1.65fr; margin-top:62px; padding:28px 32px; border:1px solid var(--rs-line); gap:48px; }
.rs-scope-note strong { color:#9f3763; font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.rs-scope-note p { margin:0; color:#74676e; font-size:11px; line-height:1.8; }

.rs-digital { background:#eee7e4; }
.rs-digital-grid { display:grid; grid-template-columns:.95fr 1.05fr; align-items:center; gap:100px; }
.rs-digital-board { min-height:610px; padding:38px; border:1px solid rgba(64,20,61,.17); background:#241126; color:#fff; box-shadow:25px 28px 0 rgba(111,31,78,.1); }
.rs-board-top { display:flex; align-items:center; justify-content:space-between; padding-bottom:25px; border-bottom:1px solid rgba(255,255,255,.17); }
.rs-board-top span { font-size:9px; font-weight:700; letter-spacing:.14em; }.rs-board-top b { color:#f184a1; font-size:9px; }
.rs-board-progress { position:relative; display:grid; min-height:150px; align-content:end; margin-top:30px; overflow:hidden; padding:24px; background:rgba(255,255,255,.055); }
.rs-board-progress::before { position:absolute; right:-45px; bottom:-65px; width:210px; height:210px; border:34px solid rgba(255,255,255,.07); border-radius:50%; content:""; }
.rs-board-progress i { position:absolute; bottom:0; left:0; width:var(--value); height:4px; background:linear-gradient(90deg,#d94f69,#f09ab4); }
.rs-board-progress span { color:rgba(255,255,255,.58); font-size:8px; letter-spacing:.13em; }.rs-board-progress strong { font-size:52px; font-weight:300; }
.rs-board-chart { display:flex; height:190px; align-items:end; margin-top:30px; padding:25px 23px 0; border-bottom:1px solid rgba(255,255,255,.18); gap:13px; }
.rs-board-chart span { width:100%; height:var(--h); background:linear-gradient(#f184a1,#7b204f); transform-origin:bottom; animation:rs-rise 1s ease both; }
@keyframes rs-rise { from { transform:scaleY(0); } }
.rs-board-metrics { display:grid; grid-template-columns:repeat(3,1fr); margin-top:32px; border-top:1px solid rgba(255,255,255,.15); border-left:1px solid rgba(255,255,255,.15); }
.rs-board-metrics p { display:grid; min-height:80px; margin:0; padding:13px; border-right:1px solid rgba(255,255,255,.15); border-bottom:1px solid rgba(255,255,255,.15); }
.rs-board-metrics span { color:rgba(255,255,255,.47); font-size:7px; letter-spacing:.12em; }.rs-board-metrics b { align-self:end; color:#f29ab3; font-size:9px; }
.rs-digital-copy>p:not(.rs-section-label) { margin:28px 0 0; color:#6d6168; font-size:14px; line-height:1.85; }
.rs-digital-copy ul { margin:40px 0 0; padding:0; list-style:none; }
.rs-digital-copy li { display:grid; grid-template-columns:.75fr 1.25fr; padding:21px 0; border-top:1px solid #cfc2bd; gap:28px; }
.rs-digital-copy li:last-child { border-bottom:1px solid #cfc2bd; }
.rs-digital-copy li b { font-size:12px; }.rs-digital-copy li span { color:#756970; font-size:11px; line-height:1.7; }

.rs-opportunities { background:#fff; }
.rs-opportunity-grid { display:grid; grid-template-columns:repeat(3,1fr); margin-top:68px; border-top:1px solid var(--rs-line); border-left:1px solid var(--rs-line); }
.rs-opportunity-grid article { display:flex; min-height:420px; flex-direction:column; padding:31px; border-right:1px solid var(--rs-line); border-bottom:1px solid var(--rs-line); }
.rs-opportunity-grid>article:nth-child(2) { background:#f4efeb; }.rs-opportunity-grid>article:nth-child(3) { background:#341037; color:#fff; }
.rs-opportunity-grid span { color:#a03865; font-size:8px; font-weight:700; letter-spacing:.14em; }.rs-opportunity-grid>article:nth-child(3) span { color:#f184a1; }
.rs-opportunity-grid h3 { margin:90px 0 19px; font-size:28px; font-weight:400; letter-spacing:-.03em; line-height:1.3; }
.rs-opportunity-grid p { margin:0; color:#766a71; font-size:12px; line-height:1.8; }.rs-opportunity-grid>article:nth-child(3) p { color:rgba(255,255,255,.65); }
.rs-opportunity-grid a { margin-top:auto; padding-top:30px; color:#a03865; font-size:11px; font-weight:600; }.rs-opportunity-grid>article:nth-child(3) a { color:#f18dab; }
.rs-contact { padding-block:110px; background:linear-gradient(115deg,#321035,#7b204f 58%,#c94e63); color:#fff; }
.rs-contact-grid { display:grid; grid-template-columns:1.08fr .92fr; align-items:end; gap:100px; }
.rs-contact-grid>div:last-child>p { margin:0; color:rgba(255,255,255,.73); font-size:14px; line-height:1.85; }
.rs-contact-grid>div:last-child>div { display:flex; align-items:center; margin-top:30px; gap:30px; }
.rs-button-light { background:#fff; color:#70204b; }.rs-button-light:hover { background:#f8d8e1; }
.rs-contact-grid>div:last-child>div>a:not(.rs-button) { color:#fff; font-size:11px; font-weight:600; }
.rs-footer-lockup { color:#fff; }

@media(max-width:1150px){.rs-page .main-nav{gap:14px}.rs-page .main-nav a{font-size:10px}.rs-lockup{min-width:280px}.rs-lockup-logo{width:280px}.rs-market-grid{grid-template-columns:repeat(2,1fr)}.rs-delivery-grid,.rs-digital-grid{gap:55px}.rs-map-ring.ring-two{width:460px;height:460px}}
@media(max-width:980px){.rs-brand-signature-grid,.rs-purpose-grid,.rs-heading,.rs-delivery-grid,.rs-digital-grid,.rs-contact-grid{grid-template-columns:1fr}.rs-brand-signature-grid{gap:25px}.rs-brand-signature-grid>img{max-width:760px}.rs-purpose-grid>div:last-child{padding-top:0}.rs-heading,.rs-delivery-grid,.rs-digital-grid,.rs-contact-grid{gap:45px}.rs-lifecycle-grid article>div{grid-template-columns:1fr 1fr}.rs-lifecycle-grid small{grid-column:1/-1;text-align:left}.rs-delivery-map{min-height:600px}.rs-scope-note{grid-template-columns:1fr;gap:14px}.rs-digital-board{order:2}.rs-opportunity-grid{grid-template-columns:1fr 1fr}.rs-opportunity-grid article:last-child{grid-column:1/-1;min-height:330px}}
@media(max-width:680px){.rs-lockup{min-width:0}.rs-lockup-logo{width:225px}.rs-footer-lockup .rs-lockup-logo{width:280px}.rs-brand-signature{padding-block:45px}.rs-brand-signature-grid>img{height:230px}.rs-brand-signature-grid h2{font-size:25px}.rs-hero{min-height:1040px}.rs-hero-content{min-height:760px;justify-content:flex-start;padding-top:55px}.rs-breadcrumb{margin-bottom:55px}.rs-hero h1{font-size:clamp(54px,16vw,72px)}.rs-hero-content>p:not(.rs-breadcrumb):not(.rs-kicker){font-size:14px}.rs-hero-actions{align-items:stretch;flex-direction:column}.rs-status{align-items:flex-start}.rs-hero-facts .page-shell{grid-template-columns:repeat(2,1fr)}.rs-hero-facts p{min-height:104px;border-bottom:1px solid rgba(255,255,255,.16)}.rs-section{padding-block:82px}.rs-purpose h2,.rs-heading h2,.rs-delivery-copy h2,.rs-digital-copy h2,.rs-contact h2{font-size:44px}.rs-purpose-grid .rs-lead{font-size:19px!important}.rs-market-grid,.rs-opportunity-grid{grid-template-columns:1fr}.rs-market-grid article{min-height:270px}.rs-lifecycle-grid article{grid-template-columns:42px 1fr;padding:25px 0}.rs-lifecycle-grid article>div{grid-template-columns:1fr;gap:20px}.rs-delivery-map{min-height:470px}.rs-map-ring.ring-one{width:270px;height:270px}.rs-map-ring.ring-two{width:390px;height:390px}.rs-map-core{width:130px;height:130px}.rs-map-node{min-width:78px;padding:9px;font-size:6px}.rs-digital-board{min-height:540px;padding:23px}.rs-board-metrics{grid-template-columns:1fr}.rs-board-metrics p{min-height:55px}.rs-digital-copy li,.rs-delivery-principles article{grid-template-columns:1fr;gap:9px}.rs-opportunity-grid article,.rs-opportunity-grid article:last-child{grid-column:auto;min-height:360px}.rs-opportunity-grid h3{margin-top:65px}.rs-contact-grid>div:last-child>div{align-items:flex-start;flex-direction:column}.rs-contact .rs-button{width:100%}}
@media(prefers-reduced-motion:reduce){.rs-board-chart span{animation:none}}

/* NyKinSky Green Earth Initiative — Plantation and ecosystem delivery */
.ge-page{--ge-ink:#10251d;--ge-forest:#0a3024;--ge-deep:#061d16;--ge-leaf:#55a860;--ge-lime:#c6ec72;--ge-mint:#e7f4e8;--ge-cream:#f4f3e8;--ge-line:#cbd8cc;--ge-pink:#e44f9b;background:#fff;color:var(--ge-ink)}
.ge-header{color:#fff}.ge-header.is-scrolled{background:rgba(6,29,22,.96)}.ge-header .main-nav a::after{background:var(--ge-lime)}
.ge-hero{position:relative;min-height:100svh;overflow:hidden;background:var(--ge-deep);color:#fff}
.ge-hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;animation:geHeroDrift 24s ease-in-out infinite alternate}
.ge-hero-wash{position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,24,17,.98) 0%,rgba(5,33,23,.91) 35%,rgba(8,38,26,.55) 62%,rgba(7,25,19,.14) 100%),linear-gradient(0deg,rgba(3,19,14,.58),transparent 55%)}
.ge-hero::after{position:absolute;inset:0;background:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:82px 82px;mask-image:linear-gradient(90deg,#000,transparent 72%);content:"";pointer-events:none}
.ge-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);align-items:end;min-height:100svh;padding-top:152px;padding-bottom:94px;gap:70px}
.ge-breadcrumb{display:flex;flex-wrap:wrap;margin:0 0 46px;gap:10px;color:rgba(255,255,255,.6);font-size:10px}.ge-breadcrumb a:hover{color:var(--ge-lime)}
.ge-identity{display:flex;align-items:center;margin-bottom:47px;gap:14px}.ge-identity>img{width:47px;height:47px;filter:brightness(0) invert(1)}.ge-identity>span{display:grid;line-height:1}.ge-identity b{font-size:11px;letter-spacing:.16em}.ge-identity small{margin-top:8px;color:var(--ge-lime);font-size:8px;font-weight:600;letter-spacing:.24em}
.ge-kicker,.ge-eyebrow{margin:0 0 16px;color:#3b8650;font-size:9px;font-weight:700;letter-spacing:.18em}.ge-hero .ge-kicker{color:var(--ge-lime)}
.ge-hero h1{max-width:880px;margin:0;font-size:clamp(68px,7.3vw,122px);font-weight:300;letter-spacing:-.07em;line-height:.89}.ge-hero h1 em{color:var(--ge-lime);font-style:normal;font-weight:500}
.ge-hero-copy>p:not(.ge-breadcrumb):not(.ge-kicker):not(.ge-since){max-width:720px;margin:31px 0 0;color:rgba(255,255,255,.76);font-size:16px;line-height:1.85}
.ge-hero-actions{display:flex;align-items:center;margin-top:35px;gap:16px}.ge-button{display:inline-flex;min-height:56px;align-items:center;justify-content:space-between;padding:14px 20px;gap:34px;font-size:12px;font-weight:600;transition:transform .22s ease,background .22s ease,color .22s ease}.ge-button:hover{transform:translateY(-3px)}.ge-button.is-primary{background:var(--ge-lime);color:var(--ge-deep)}.ge-button.is-primary:hover{background:#d7f58f}.ge-button.is-ghost{border:1px solid rgba(255,255,255,.35);color:#fff}.ge-button.is-ghost:hover{border-color:#fff;background:rgba(255,255,255,.1)}
.ge-since{display:flex;align-items:center;margin:40px 0 0!important;gap:12px!important;color:rgba(255,255,255,.68)!important;font-size:10px!important;letter-spacing:.05em}.ge-since i{width:9px;height:9px;border-radius:50%;background:var(--ge-lime);box-shadow:0 0 0 6px rgba(198,236,114,.14)}.ge-since strong{color:#fff}
.ge-hero-stage{align-self:end;border:1px solid rgba(255,255,255,.24);background:rgba(5,29,21,.48);backdrop-filter:blur(15px)}.ge-hero-stage p{display:grid;grid-template-columns:34px 1fr;margin:0;padding:19px 20px;border-bottom:1px solid rgba(255,255,255,.16)}.ge-hero-stage p:last-child{border-bottom:0}.ge-hero-stage span{grid-row:span 2;color:var(--ge-lime);font-size:8px;font-weight:700}.ge-hero-stage b{font-size:10px;letter-spacing:.13em}.ge-hero-stage small{margin-top:5px;color:rgba(255,255,255,.55);font-size:9px}
.ge-hero-scroll{position:absolute;z-index:3;right:28px;bottom:28px;display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.63);font-size:7px;font-weight:600;letter-spacing:.18em;writing-mode:vertical-rl}.ge-hero-scroll i{width:1px;height:54px;background:linear-gradient(var(--ge-lime) 50%,rgba(255,255,255,.25) 50%);background-size:100% 200%;animation:geScroll 2.2s linear infinite}
@keyframes geHeroDrift{to{transform:scale(1.055) translate3d(-.8%,.3%,0)}}@keyframes geScroll{to{background-position:0 200%}}

.ge-impact-bar{background:var(--ge-lime);color:var(--ge-deep)}.ge-impact-bar .page-shell{display:grid;grid-template-columns:repeat(4,1fr)}.ge-impact-bar article{display:grid;min-height:180px;align-content:center;padding:28px;border-left:1px solid rgba(8,49,36,.2)}.ge-impact-bar article:last-child{border-right:1px solid rgba(8,49,36,.2)}.ge-impact-bar strong{font-size:clamp(38px,3.5vw,58px);font-weight:500;letter-spacing:-.055em}.ge-impact-bar sup,.ge-workforce-metrics sup{font-size:.45em}.ge-impact-bar span{max-width:190px;margin-top:11px;font-size:10px;font-weight:600;line-height:1.6;text-transform:uppercase;letter-spacing:.08em}
.ge-section-nav{position:sticky;z-index:44;top:0;border-bottom:1px solid rgba(16,57,43,.14);background:rgba(255,255,255,.94);backdrop-filter:blur(15px)}.ge-section-nav .page-shell{display:flex;min-height:66px;align-items:center;gap:35px;overflow-x:auto;scrollbar-width:none}.ge-section-nav a{flex:0 0 auto;color:#586a61;font-size:11px;font-weight:600}.ge-section-nav a:hover{color:#23723f}
.ge-section{padding-block:125px}.ge-growth{background:var(--ge-cream)}.ge-growth-grid{display:grid;grid-template-columns:.9fr 1.1fr;align-items:center;gap:100px}.ge-growth h2,.ge-heading h2,.ge-project h2,.ge-intelligence h2,.ge-workforce h2,.ge-contact h2{margin:0;font-size:clamp(48px,5.2vw,80px);font-weight:300;letter-spacing:-.058em;line-height:1.03}.ge-growth h2 em,.ge-intelligence h2 em{color:#3c884d;font-style:normal}.ge-growth .ge-lead{max-width:620px;margin:27px 0 0;color:#607066;font-size:15px;line-height:1.9}
.ge-growth-list{margin:45px 0 0;padding:0;border-top:1px solid var(--ge-line);list-style:none}.ge-growth-list li{display:grid;grid-template-columns:48px 1fr;padding:21px 0;border-bottom:1px solid var(--ge-line);gap:16px}.ge-growth-list li>span{color:#3b8650;font-size:9px;font-weight:700}.ge-growth-list b{font-size:15px;font-weight:600}.ge-growth-list p{margin:6px 0 0;color:#6c796f;font-size:11px;line-height:1.65}
.ge-growth-visual>p{margin:15px 0 0;color:#68766d;font-size:9px;letter-spacing:.12em;text-transform:uppercase}.ge-growth-window{position:relative;aspect-ratio:1/1;overflow:hidden;background:#dbe8dc;box-shadow:0 34px 70px rgba(19,58,39,.16)}.ge-growth-window::after{position:absolute;inset:0;border:1px solid rgba(255,255,255,.35);box-shadow:inset 0 -140px 90px -80px rgba(3,24,16,.7);content:""}.ge-growth-frame{position:absolute;inset:0;background-image:url('assets/green-earth/tree-growth-stages.png');background-repeat:no-repeat;background-size:200% 200%;opacity:0;animation:geGrowthFrame 16s linear infinite}.ge-growth-frame.frame-one{background-position:0 0;animation-delay:0s}.ge-growth-frame.frame-two{background-position:100% 0;animation-delay:4s}.ge-growth-frame.frame-three{background-position:0 100%;animation-delay:8s}.ge-growth-frame.frame-four{background-position:100% 100%;animation-delay:12s}.ge-growth-stage-labels{position:absolute;z-index:2;left:25px;bottom:25px;color:#fff;font-size:9px;font-weight:700;letter-spacing:.16em}.ge-growth-stage-labels span{position:absolute;bottom:0;left:0;width:230px;opacity:0;animation:geGrowthLabel 16s linear infinite}.ge-growth-stage-labels span:nth-child(2){animation-delay:4s}.ge-growth-stage-labels span:nth-child(3){animation-delay:8s}.ge-growth-stage-labels span:nth-child(4){animation-delay:12s}
.ge-growth-progress{display:grid;grid-template-columns:1fr repeat(4,auto);align-items:center;margin-top:22px;gap:20px;color:#75907d;font-size:8px}.ge-growth-progress i{height:2px;background:var(--ge-line);transform-origin:left}.ge-growth-progress i::after{display:block;width:100%;height:100%;background:#3e9254;transform-origin:left;animation:geProgress 16s linear infinite;content:""}@keyframes geGrowthFrame{0%,20%{opacity:1;transform:scale(1)}24%,100%{opacity:0;transform:scale(1.035)}}@keyframes geGrowthLabel{0%,20%{opacity:1;transform:translateY(0)}24%,100%{opacity:0;transform:translateY(7px)}}@keyframes geProgress{from{transform:scaleX(0)}to{transform:scaleX(1)}}

.ge-mandates{background:#fff}.ge-heading{display:grid;grid-template-columns:1.15fr .85fr;align-items:end;gap:90px}.ge-heading>p{margin:0 0 5px;color:#617067;font-size:14px;line-height:1.85}.ge-mandate-grid{display:grid;grid-template-columns:repeat(4,1fr);margin-top:70px;border-top:1px solid var(--ge-line);border-left:1px solid var(--ge-line)}.ge-mandate-grid article{display:flex;min-height:400px;flex-direction:column;padding:29px;border-right:1px solid var(--ge-line);border-bottom:1px solid var(--ge-line);transition:background .22s ease,color .22s ease,transform .22s ease}.ge-mandate-grid article:hover{z-index:1;background:var(--ge-forest);color:#fff;transform:translateY(-6px)}.ge-mandate-grid article>span{color:#3d884e;font-size:9px;font-weight:700}.ge-mandate-grid h3{margin:82px 0 16px;font-size:24px;font-weight:500;letter-spacing:-.035em}.ge-mandate-grid article>p{margin:0;color:#68776e;font-size:12px;line-height:1.8}.ge-mandate-grid article:hover>p{color:rgba(255,255,255,.68)}.ge-mandate-grid b{margin-top:auto;color:#3b8650;font-size:8px;letter-spacing:.14em}.ge-mandate-grid article:hover b{color:var(--ge-lime)}
.ge-client-line{margin-top:65px;padding:32px 0;border-top:1px solid var(--ge-line);border-bottom:1px solid var(--ge-line)}.ge-client-line>p{margin:0;color:#6c786f;font-size:11px}.ge-client-line>div{display:flex;flex-wrap:wrap;margin-top:22px;gap:13px}.ge-client-line>div span{padding:12px 15px;background:var(--ge-mint);color:#265f38;font-size:10px;font-weight:600}.ge-client-line small{display:block;max-width:900px;margin-top:22px;color:#7a867d;font-size:9px;line-height:1.7}

.ge-climate{position:relative;overflow:hidden;background:#c6ec72;color:var(--ge-deep)}.ge-climate::after{position:absolute;right:-12vw;bottom:-38vw;width:62vw;height:62vw;border:1px solid rgba(9,48,35,.18);border-radius:50%;box-shadow:0 0 0 8vw rgba(9,48,35,.035),0 0 0 16vw rgba(9,48,35,.025);content:""}.ge-climate-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:100px}.ge-climate .ge-eyebrow{color:#28693c}.ge-climate h2{margin:0;font-size:clamp(50px,5.5vw,84px);font-weight:300;letter-spacing:-.06em;line-height:1.02}.ge-climate h2 em{color:#2f7e45;font-style:normal}.ge-climate-copy>p{max-width:640px;margin:0 0 43px;font-size:15px;line-height:1.85}.ge-climate-copy>div{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid rgba(9,48,35,.25);border-left:1px solid rgba(9,48,35,.25)}.ge-climate-copy article{min-height:220px;padding:22px;border-right:1px solid rgba(9,48,35,.25);border-bottom:1px solid rgba(9,48,35,.25)}.ge-climate-copy article>span{font-size:8px;font-weight:700}.ge-climate-copy h3{margin:48px 0 10px;font-size:18px;font-weight:600}.ge-climate-copy article p{margin:0;color:#325c44;font-size:10px;line-height:1.7}

.ge-services{background:var(--ge-deep);color:#fff}.ge-heading.is-light .ge-eyebrow{color:var(--ge-lime)}.ge-heading.is-light>p{color:rgba(255,255,255,.62)}.ge-service-grid{display:grid;grid-template-columns:repeat(3,1fr);margin-top:70px;border-top:1px solid rgba(255,255,255,.18);border-left:1px solid rgba(255,255,255,.18)}.ge-service-grid article{min-height:330px;padding:30px;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);background:linear-gradient(135deg,rgba(255,255,255,.025),transparent);transition:background .2s ease}.ge-service-grid article:hover{background:rgba(198,236,114,.09)}.ge-service-grid span{color:var(--ge-lime);font-size:9px;font-weight:700}.ge-service-grid h3{max-width:330px;margin:72px 0 15px;font-size:23px;font-weight:500;letter-spacing:-.025em}.ge-service-grid p{margin:0;color:rgba(255,255,255,.6);font-size:12px;line-height:1.8}

.ge-delivery{background:var(--ge-mint)}.ge-delivery-grid{display:grid;grid-template-columns:repeat(3,1fr);margin-top:70px;counter-reset:geDelivery}.ge-delivery-grid article{position:relative;display:grid;min-height:225px;grid-template-columns:55px 1fr;padding:30px 30px 30px 0;border-top:1px solid #afc8b3;gap:20px}.ge-delivery-grid article:nth-child(n+4){border-bottom:1px solid #afc8b3}.ge-delivery-grid article>span{color:#3b8650;font-size:9px;font-weight:700}.ge-delivery-grid article>div{padding-right:35px;border-right:1px solid #afc8b3}.ge-delivery-grid article:nth-child(3n)>div{border-right:0}.ge-delivery-grid p{margin:0;color:#3f8250;font-size:8px;font-weight:700;letter-spacing:.14em}.ge-delivery-grid h3{margin:35px 0 10px;font-size:22px;font-weight:500}.ge-delivery-grid small{color:#69786e;font-size:10px;line-height:1.65}

.ge-project{background:#0b261d;color:#fff}.ge-project-grid{display:grid;grid-template-columns:.85fr 1.15fr;align-items:center;gap:100px}.ge-project .ge-eyebrow{color:var(--ge-lime)}.ge-project-copy>p:not(.ge-eyebrow){max-width:640px;margin:28px 0 0;color:rgba(255,255,255,.67);font-size:14px;line-height:1.85}.ge-project-facts{display:grid;grid-template-columns:repeat(2,1fr);margin-top:42px;border-top:1px solid rgba(255,255,255,.2);border-left:1px solid rgba(255,255,255,.2)}.ge-project-facts p{display:grid;min-height:105px;margin:0;padding:18px;border-right:1px solid rgba(255,255,255,.2);border-bottom:1px solid rgba(255,255,255,.2)}.ge-project-facts span{color:var(--ge-lime);font-size:7px;font-weight:700;letter-spacing:.15em}.ge-project-facts b{align-self:end;font-size:11px;font-weight:500}.ge-project-copy>small{display:block;margin-top:25px;color:rgba(255,255,255,.4);font-size:8px;line-height:1.7}
.ge-project-map{position:relative;min-height:610px;padding:32px;border:1px solid rgba(255,255,255,.2);background:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),radial-gradient(circle at 50% 45%,rgba(85,168,96,.22),transparent 45%);background-size:58px 58px,58px 58px,auto}.ge-map-head{display:flex;align-items:center;justify-content:space-between}.ge-map-head span{color:rgba(255,255,255,.5);font-size:8px;letter-spacing:.14em}.ge-map-head b{font-size:10px;letter-spacing:.14em}.ge-route{position:relative;height:330px;margin-top:40px}.ge-route::before{position:absolute;top:50%;left:8%;width:82%;height:1px;background:linear-gradient(90deg,var(--ge-lime),#52a560 50%,var(--ge-lime));transform:rotate(-13deg);transform-origin:center;content:""}.ge-route i{position:absolute;z-index:2;width:15px;height:15px;border:3px solid #fff;border-radius:50%;background:var(--ge-leaf);box-shadow:0 0 0 8px rgba(198,236,114,.12)}.ge-route i:nth-child(1){top:64%;left:8%}.ge-route i:nth-child(2){top:48%;left:48%}.ge-route i:nth-child(3){top:29%;right:8%}.ge-route i:nth-child(4){top:39%;left:67%;width:7px;height:7px;border:0;background:var(--ge-lime);animation:geRoutePulse 1.8s ease-in-out infinite}.ge-route span{position:absolute;color:rgba(255,255,255,.58);font-size:7px;font-weight:700;letter-spacing:.14em}.ge-route span:nth-of-type(1){top:73%;left:5%}.ge-route span:nth-of-type(2){top:57%;left:44%}.ge-route span:nth-of-type(3){top:20%;right:4%}@keyframes geRoutePulse{50%{box-shadow:0 0 0 18px rgba(198,236,114,0)}}
.ge-map-cards{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.16);border-left:1px solid rgba(255,255,255,.16)}.ge-map-cards p{display:grid;min-height:110px;margin:0;padding:15px;border-right:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16)}.ge-map-cards span{color:rgba(255,255,255,.43);font-size:6px;letter-spacing:.13em}.ge-map-cards b{align-self:center;font-size:10px;font-weight:500}.ge-map-cards i{align-self:end;color:var(--ge-lime);font-size:6px;font-style:normal}.ge-project-map>small{display:block;margin-top:16px;color:rgba(255,255,255,.35);font-size:7px;letter-spacing:.1em}

.ge-intelligence{background:#fff}.ge-intelligence-grid{display:grid;grid-template-columns:1.1fr .9fr;align-items:center;gap:100px}.ge-dashboard{padding:29px;border:1px solid var(--ge-line);background:#f4f8f3;box-shadow:0 30px 80px rgba(12,54,35,.1)}.ge-dashboard-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:22px;border-bottom:1px solid var(--ge-line)}.ge-dashboard-head p{display:grid;margin:0}.ge-dashboard-head p span{color:#3f8951;font-size:8px;font-weight:700;letter-spacing:.14em}.ge-dashboard-head p b{margin-top:6px;font-size:10px;font-weight:500}.ge-dashboard-head>i{color:#3f8951;font-size:7px;font-style:normal}.ge-dashboard-main{display:grid;grid-template-columns:1.4fr .6fr;gap:25px;margin-top:30px}.ge-canopy-chart>span{font-size:7px;font-weight:700;letter-spacing:.12em}.ge-canopy-chart>div{display:flex;height:250px;align-items:flex-end;margin-top:18px;gap:8px;border-bottom:1px solid #9eb5a3}.ge-canopy-chart>div i{flex:1;height:var(--h);background:linear-gradient(#bfe96a,#459454);transform-origin:bottom;animation:geBarGrow 1.4s ease both}.ge-canopy-chart>div i:nth-child(2){animation-delay:.08s}.ge-canopy-chart>div i:nth-child(3){animation-delay:.16s}.ge-canopy-chart>div i:nth-child(4){animation-delay:.24s}.ge-canopy-chart>div i:nth-child(5){animation-delay:.32s}.ge-canopy-chart>div i:nth-child(6){animation-delay:.4s}.ge-canopy-chart>div i:nth-child(7){animation-delay:.48s}.ge-canopy-chart>div i:nth-child(8){animation-delay:.56s}.ge-canopy-chart>small{display:flex;justify-content:space-between;margin-top:8px;color:#7a8b7f;font-size:6px}.ge-canopy-chart>small em{font-style:normal}.ge-dashboard-metrics{display:grid;gap:9px}.ge-dashboard-metrics p{display:grid;margin:0;padding:15px;background:#fff}.ge-dashboard-metrics span{font-size:6px;font-weight:700;letter-spacing:.12em}.ge-dashboard-metrics b{align-self:end;color:#348148;font-size:11px;font-weight:500}.ge-dashboard-foot{display:flex;justify-content:space-between;margin-top:25px;padding-top:18px;border-top:1px solid var(--ge-line);gap:12px;color:#67776c;font-size:6px;font-weight:700;letter-spacing:.08em}@keyframes geBarGrow{from{transform:scaleY(0)}}
.ge-intelligence-copy>p:not(.ge-eyebrow){margin:27px 0 0;color:#65736a;font-size:14px;line-height:1.85}.ge-intelligence-copy ul{margin:40px 0 0;padding:0;border-top:1px solid var(--ge-line);list-style:none}.ge-intelligence-copy li{display:grid;grid-template-columns:42px 1fr;padding:16px 0;border-bottom:1px solid var(--ge-line);color:#45564c;font-size:11px}.ge-intelligence-copy li span{color:#3d884e;font-size:8px;font-weight:700}

.ge-workforce{background:var(--ge-cream)}.ge-workforce-grid{display:grid;grid-template-columns:1fr 1fr;gap:100px}.ge-workforce-copy>p:not(.ge-eyebrow){max-width:650px;margin:28px 0 0;color:#66736a;font-size:14px;line-height:1.85}.ge-workforce-metrics{display:grid;grid-template-columns:repeat(2,1fr);margin-top:47px;border-top:1px solid var(--ge-line);border-left:1px solid var(--ge-line)}.ge-workforce-metrics article{display:grid;min-height:190px;padding:24px;border-right:1px solid var(--ge-line);border-bottom:1px solid var(--ge-line)}.ge-workforce-metrics strong{font-size:45px;font-weight:400;letter-spacing:-.05em}.ge-workforce-metrics span{align-self:end;color:#607067;font-size:9px;line-height:1.65;text-transform:uppercase}.ge-workforce-principles{border-top:1px solid var(--ge-line)}.ge-workforce-principles>p{margin:0;padding:17px 0;color:#3b8650;font-size:8px;font-weight:700;letter-spacing:.14em}.ge-workforce-principles article{display:grid;grid-template-columns:45px 1fr;padding:23px 0;border-top:1px solid var(--ge-line);gap:16px}.ge-workforce-principles article>span{color:#3b8650;font-size:8px;font-weight:700}.ge-workforce-principles h3{margin:0;font-size:18px;font-weight:500}.ge-workforce-principles article p{margin:8px 0 0;color:#68766d;font-size:10px;line-height:1.7}

.ge-proof{background:#fff}.ge-proof-grid{display:grid;grid-template-columns:repeat(4,1fr);margin-top:70px;border-top:1px solid var(--ge-line);border-left:1px solid var(--ge-line)}.ge-proof-grid article{min-height:315px;padding:27px;border-right:1px solid var(--ge-line);border-bottom:1px solid var(--ge-line)}.ge-proof-grid span{color:#3b8650;font-size:8px;font-weight:700}.ge-proof-grid h3{margin:78px 0 14px;font-size:21px;font-weight:500}.ge-proof-grid p{margin:0;color:#68766e;font-size:11px;line-height:1.8}.ge-claims-note{margin:45px 0 0;padding:25px 28px;border-left:4px solid #4a9958;background:var(--ge-mint);color:#5d6d63;font-size:10px;line-height:1.75}.ge-claims-note b{color:var(--ge-ink)}
.ge-contact{position:relative;min-height:670px;overflow:hidden;background:var(--ge-deep);color:#fff}.ge-contact>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.ge-contact>span{position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,28,19,.98),rgba(8,48,32,.85) 54%,rgba(6,35,24,.45))}.ge-contact-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;align-items:end;min-height:670px;padding-block:100px;gap:100px}.ge-contact .ge-eyebrow{color:var(--ge-lime)}.ge-contact-grid>div:last-child>p{margin:0 0 30px;color:rgba(255,255,255,.73);font-size:14px;line-height:1.85}.ge-contact-secondary{display:block;width:max-content;margin-top:25px;border-bottom:1px solid rgba(255,255,255,.4);color:#fff;font-size:11px}

@media(max-width:1100px){.ge-hero-grid{grid-template-columns:1fr .55fr;gap:40px}.ge-hero h1{font-size:clamp(66px,9vw,95px)}.ge-growth-grid,.ge-project-grid,.ge-intelligence-grid,.ge-workforce-grid{gap:60px}.ge-mandate-grid{grid-template-columns:repeat(2,1fr)}.ge-service-grid{grid-template-columns:repeat(2,1fr)}.ge-proof-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.ge-hero{min-height:1050px}.ge-hero-grid{grid-template-columns:1fr;align-items:center;padding-top:150px}.ge-hero-stage{width:min(100%,620px)}.ge-growth-grid,.ge-heading,.ge-project-grid,.ge-intelligence-grid,.ge-workforce-grid,.ge-contact-grid{grid-template-columns:1fr}.ge-growth-grid,.ge-project-grid,.ge-intelligence-grid,.ge-workforce-grid{gap:65px}.ge-growth-visual{width:min(100%,700px)}.ge-heading{align-items:start;gap:27px}.ge-heading>p{max-width:720px}.ge-delivery-grid{grid-template-columns:repeat(2,1fr)}.ge-delivery-grid article:nth-child(n+4){border-bottom:0}.ge-delivery-grid article:nth-child(3n)>div{border-right:1px solid #afc8b3}.ge-delivery-grid article:nth-child(2n)>div{border-right:0}.ge-delivery-grid article:nth-child(n+5){border-bottom:1px solid #afc8b3}.ge-contact-grid{align-content:center;gap:35px}}
@media(max-width:680px){.ge-header .header-actions{display:none}.ge-hero{min-height:990px}.ge-hero-grid{align-content:start;padding-top:125px;padding-bottom:70px;gap:45px}.ge-breadcrumb{margin-bottom:32px}.ge-identity{margin-bottom:37px}.ge-identity>img{width:39px;height:39px}.ge-identity b{font-size:8px}.ge-identity small{font-size:6px}.ge-hero h1{font-size:clamp(57px,17vw,75px)}.ge-hero-copy>p:not(.ge-breadcrumb):not(.ge-kicker):not(.ge-since){font-size:13px;line-height:1.75}.ge-hero-actions{align-items:stretch;flex-direction:column}.ge-button{width:100%}.ge-hero-stage p{padding:15px}.ge-hero-scroll{display:none}.ge-impact-bar .page-shell{grid-template-columns:repeat(2,1fr)}.ge-impact-bar article{min-height:140px;padding:20px;border-bottom:1px solid rgba(8,49,36,.2)}.ge-impact-bar strong{font-size:36px}.ge-section{padding-block:82px}.ge-growth h2,.ge-heading h2,.ge-project h2,.ge-intelligence h2,.ge-workforce h2,.ge-contact h2{font-size:43px}.ge-growth-grid{gap:55px}.ge-growth-list li{grid-template-columns:38px 1fr}.ge-mandate-grid,.ge-service-grid,.ge-delivery-grid,.ge-proof-grid{grid-template-columns:1fr}.ge-mandate-grid article{min-height:340px}.ge-service-grid article{min-height:280px}.ge-service-grid h3{margin-top:55px}.ge-delivery-grid article{border-bottom:0}.ge-delivery-grid article>div,.ge-delivery-grid article:nth-child(3n)>div{border-right:0}.ge-delivery-grid article:last-child{border-bottom:1px solid #afc8b3}.ge-project-map{min-height:520px;padding:20px}.ge-route{height:280px}.ge-map-cards{grid-template-columns:1fr}.ge-map-cards p{min-height:75px}.ge-dashboard{padding:18px}.ge-dashboard-main{grid-template-columns:1fr}.ge-canopy-chart>div{height:190px}.ge-dashboard-metrics{grid-template-columns:repeat(3,1fr)}.ge-dashboard-metrics p{min-height:90px;padding:10px}.ge-dashboard-metrics b{font-size:9px}.ge-dashboard-foot{flex-wrap:wrap;justify-content:flex-start}.ge-workforce-metrics{grid-template-columns:1fr}.ge-workforce-metrics article{min-height:150px}.ge-proof-grid article{min-height:255px}.ge-proof-grid h3{margin-top:55px}.ge-contact{min-height:720px}.ge-contact-grid{min-height:720px;padding-block:80px}.ge-contact-grid>div:last-child>p{font-size:12px}}
@media(max-width:900px){.ge-climate-grid{grid-template-columns:1fr;gap:65px}}
@media(max-width:680px){.ge-climate h2{font-size:43px}.ge-climate-copy>div{grid-template-columns:1fr}.ge-climate-copy article{min-height:190px}}
@media(prefers-reduced-motion:reduce){.ge-hero-image,.ge-hero-scroll i,.ge-growth-frame,.ge-growth-stage-labels span,.ge-growth-progress i::after,.ge-route i:nth-child(4),.ge-canopy-chart>div i{animation:none}.ge-growth-frame{opacity:0}.ge-growth-frame.frame-four{opacity:1}.ge-growth-stage-labels span{opacity:0}.ge-growth-stage-labels span:last-child{opacity:1}}

/* NyKSONS Research & Development */
.rd-page{--rd-ink:#142d3b;--rd-navy:#071c32;--rd-deep:#06172a;--rd-blue:#1e799a;--rd-cyan:#66d6d4;--rd-violet:#7b3aa2;--rd-pink:#df5aaf;--rd-ice:#edf8fa;--rd-line:#c9dade;background:#fff;color:var(--rd-ink)}
.rd-header{color:#fff}.rd-header.is-scrolled{background:rgba(5,23,42,.97)}.rd-header .main-nav{gap:20px}.rd-header .main-nav a{font-size:10px}.rd-header .main-nav a::after{background:var(--rd-cyan)}
.rd-hero{position:relative;min-height:980px;overflow:hidden;background:var(--rd-deep);color:#fff}.rd-hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;animation:rdHeroDrift 22s ease-in-out infinite alternate}.rd-hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,15,30,.99),rgba(4,22,39,.88) 43%,rgba(5,24,42,.26) 76%,rgba(5,20,36,.1)),linear-gradient(0deg,rgba(4,17,31,.76),transparent 55%)}.rd-hero-gridlines{position:absolute;inset:0;background:linear-gradient(rgba(102,214,212,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(102,214,212,.055) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(90deg,#000,transparent 72%)}
.rd-hero-layout{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(330px,.65fr);align-items:center;min-height:805px;padding-top:125px;padding-bottom:70px;gap:80px}.rd-breadcrumb{display:flex;flex-wrap:wrap;margin:0 0 58px;gap:10px;color:rgba(255,255,255,.52);font-size:9px}.rd-breadcrumb a:hover{color:var(--rd-cyan)}.rd-kicker,.rd-label{margin:0 0 17px;color:#177d98;font-size:9px;font-weight:700;letter-spacing:.17em}.rd-hero .rd-kicker{color:var(--rd-cyan)}.rd-hero h1{max-width:900px;margin:0;font-size:clamp(70px,7vw,114px);font-weight:300;letter-spacing:-.068em;line-height:.91}.rd-hero h1 em{color:var(--rd-cyan);font-style:normal;font-weight:500}.rd-hero-copy>p:not(.rd-breadcrumb):not(.rd-kicker){max-width:720px;margin:29px 0 0;color:rgba(255,255,255,.72);font-size:15px;line-height:1.85}.rd-hero-actions{display:flex;margin-top:34px;gap:14px}.rd-button{display:inline-flex;min-height:56px;align-items:center;justify-content:space-between;padding:14px 20px;gap:35px;font-size:11px;font-weight:600;transition:transform .22s ease,background .22s ease}.rd-button:hover{transform:translateY(-3px)}.rd-button.is-primary{background:var(--rd-cyan);color:var(--rd-deep)}.rd-button.is-primary:hover{background:#8ce4e1}.rd-button.is-ghost{border:1px solid rgba(255,255,255,.35);color:#fff}.rd-button.is-ghost:hover{background:rgba(255,255,255,.1)}.rd-button.is-dark{background:var(--rd-navy);color:#fff}.rd-hero-copy>small{display:block;margin-top:35px;color:rgba(255,255,255,.4);font-size:8px;letter-spacing:.08em}
.rd-science-console{border:1px solid rgba(255,255,255,.24);background:rgba(4,20,36,.55);backdrop-filter:blur(15px)}.rd-console-head{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.16)}.rd-console-head span{font-size:7px;font-weight:700;letter-spacing:.15em}.rd-console-head i{color:var(--rd-cyan);font-size:7px;font-style:normal}.rd-orbit{position:relative;height:360px;overflow:hidden;background:radial-gradient(circle at center,rgba(102,214,212,.17),transparent 47%)}.rd-orbit>span{position:absolute;top:50%;left:50%;border:1px solid rgba(102,214,212,.35);border-radius:50%;transform:translate(-50%,-50%)}.rd-orbit .orbit-one{width:125px;height:125px}.rd-orbit .orbit-two{width:220px;height:220px;border-style:dashed;animation:rdSpin 14s linear infinite}.rd-orbit .orbit-three{width:310px;height:310px;animation:rdSpinReverse 22s linear infinite}.rd-orbit>b{position:absolute;top:50%;left:50%;display:grid;width:90px;height:90px;place-items:center;border-radius:50%;background:linear-gradient(145deg,#237f9c,#713598 58%,#df5aaf);box-shadow:0 0 45px rgba(82,201,208,.28);transform:translate(-50%,-50%);font-size:16px;letter-spacing:.08em}.rd-orbit>i{position:absolute;width:10px;height:10px;border:2px solid #fff;border-radius:50%;background:var(--rd-cyan);box-shadow:0 0 0 7px rgba(102,214,212,.1)}.rd-orbit>i:nth-of-type(1){top:21%;left:28%;animation:rdPulse 2s ease-in-out infinite}.rd-orbit>i:nth-of-type(2){top:31%;right:16%;animation:rdPulse 2s .5s ease-in-out infinite}.rd-orbit>i:nth-of-type(3){bottom:19%;left:22%;animation:rdPulse 2s 1s ease-in-out infinite}.rd-orbit>i:nth-of-type(4){right:26%;bottom:27%;animation:rdPulse 2s 1.5s ease-in-out infinite}.rd-console-signals{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid rgba(255,255,255,.16)}.rd-console-signals p{display:grid;min-height:72px;margin:0;padding:13px;border-right:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16)}.rd-console-signals span{color:rgba(255,255,255,.43);font-size:6px;letter-spacing:.12em}.rd-console-signals b{align-self:end;color:var(--rd-cyan);font-size:8px;letter-spacing:.12em}
.rd-hero-status{position:absolute;z-index:3;right:0;bottom:0;left:0;border-top:1px solid rgba(255,255,255,.16);background:rgba(2,14,27,.63);backdrop-filter:blur(12px)}.rd-hero-status .page-shell{display:grid;grid-template-columns:repeat(4,1fr)}.rd-hero-status p{display:grid;min-height:145px;margin:0;padding:23px;border-left:1px solid rgba(255,255,255,.14)}.rd-hero-status p:last-child{border-right:1px solid rgba(255,255,255,.14)}.rd-hero-status span{color:var(--rd-cyan);font-size:8px;font-weight:700}.rd-hero-status b{align-self:end;font-size:14px;font-weight:500}.rd-hero-status small{color:rgba(255,255,255,.47);font-size:8px}
@keyframes rdHeroDrift{to{transform:scale(1.045) translate3d(-.5%,.2%,0)}}@keyframes rdSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}@keyframes rdSpinReverse{to{transform:translate(-50%,-50%) rotate(-360deg)}}@keyframes rdPulse{50%{transform:scale(1.35);box-shadow:0 0 0 15px rgba(102,214,212,0)}}

.rd-page-index{position:sticky;z-index:44;top:0;border-bottom:1px solid rgba(18,55,72,.14);background:rgba(255,255,255,.95);backdrop-filter:blur(15px)}.rd-page-index .page-shell{display:flex;min-height:66px;align-items:center;gap:34px;overflow-x:auto;scrollbar-width:none}.rd-page-index a{flex:0 0 auto;color:#61737d;font-size:10px;font-weight:600}.rd-page-index a:hover{color:#137b96}.rd-section{padding-block:125px}.rd-model{background:#fff}.rd-model-grid{display:grid;grid-template-columns:1fr 1fr;gap:100px}.rd-model h2,.rd-heading h2,.rd-digital h2,.rd-evidence h2,.rd-governance h2,.rd-contact h2{margin:0;font-size:clamp(48px,5.1vw,78px);font-weight:300;letter-spacing:-.057em;line-height:1.05}.rd-model-copy>p{margin:0 0 22px;color:#617781;font-size:14px;line-height:1.88}.rd-model-copy .rd-lead{color:#244655;font-size:19px;line-height:1.7}.rd-model-note{display:grid;grid-template-columns:125px 1fr;margin-top:35px;padding:24px;border-left:4px solid var(--rd-cyan);background:var(--rd-ice);gap:20px}.rd-model-note b{color:#176f89;font-size:9px;letter-spacing:.12em;text-transform:uppercase}.rd-model-note span{color:#58717c;font-size:10px;line-height:1.7}
.rd-principles{background:var(--rd-ice)}.rd-principles-grid{display:grid;grid-template-columns:repeat(5,1fr);border-left:1px solid var(--rd-line)}.rd-principles article{display:flex;min-height:340px;flex-direction:column;padding:27px;border-right:1px solid var(--rd-line);border-bottom:1px solid var(--rd-line);transition:background .22s ease,color .22s ease,transform .22s ease}.rd-principles article:hover{z-index:2;background:var(--rd-navy);color:#fff;transform:translateY(-6px)}.rd-principles article>span{color:#17819b;font-size:8px;font-weight:700}.rd-principles h3{margin:80px 0 13px;font-size:20px;font-weight:500}.rd-principles p{margin:0;color:#657b84;font-size:11px;line-height:1.75}.rd-principles article:hover p{color:rgba(255,255,255,.62)}
.rd-heading{display:grid;grid-template-columns:1.15fr .85fr;align-items:end;gap:90px}.rd-heading>p{margin:0 0 5px;color:#667b84;font-size:13px;line-height:1.85}.rd-heading.is-light>p{color:rgba(255,255,255,.6)}.rd-heading.is-light .rd-label{color:var(--rd-cyan)}
.rd-platforms{background:var(--rd-navy);color:#fff}.rd-platform-grid{display:grid;grid-template-columns:repeat(3,1fr);margin-top:70px;border-top:1px solid rgba(255,255,255,.18);border-left:1px solid rgba(255,255,255,.18)}.rd-platform-grid article{position:relative;min-height:410px;padding:28px;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);overflow:hidden;transition:background .22s ease}.rd-platform-grid article:hover{background:rgba(102,214,212,.08)}.rd-platform-grid article>span{color:var(--rd-cyan);font-size:8px;font-weight:700}.rd-platform-grid h3{max-width:330px;margin:35px 0 13px;font-size:22px;font-weight:500;letter-spacing:-.02em}.rd-platform-grid p{margin:0;color:rgba(255,255,255,.6);font-size:11px;line-height:1.75}.rd-platform-grid article>b{position:absolute;right:28px;bottom:25px;left:28px;padding-top:15px;border-top:1px solid rgba(255,255,255,.15);color:var(--rd-cyan);font-size:7px;letter-spacing:.14em}.rd-mini-graphic{position:relative;height:90px;margin-top:26px;border-bottom:1px solid rgba(255,255,255,.15)}.rd-mini-graphic i{position:absolute;display:block}.rd-mini-graphic.bars{display:flex;align-items:flex-end;gap:8px}.rd-mini-graphic.bars i{position:static;width:12%;background:linear-gradient(var(--rd-cyan),rgba(123,58,162,.65));animation:rdMiniBar 2.2s ease-in-out infinite alternate}.rd-mini-graphic.bars i:nth-child(1){height:28%}.rd-mini-graphic.bars i:nth-child(2){height:48%;animation-delay:.2s}.rd-mini-graphic.bars i:nth-child(3){height:64%;animation-delay:.4s}.rd-mini-graphic.bars i:nth-child(4){height:82%;animation-delay:.6s}.rd-mini-graphic.particles i{width:11px;height:11px;border-radius:50%;background:var(--rd-cyan);box-shadow:0 0 0 7px rgba(102,214,212,.1);animation:rdParticle 3s ease-in-out infinite alternate}.rd-mini-graphic.particles i:nth-child(1){top:12%;left:8%}.rd-mini-graphic.particles i:nth-child(2){top:50%;left:35%;animation-delay:.4s}.rd-mini-graphic.particles i:nth-child(3){top:22%;right:25%;animation-delay:.8s}.rd-mini-graphic.particles i:nth-child(4){right:4%;bottom:12%;animation-delay:1.2s}.rd-mini-graphic.particles::before{position:absolute;top:45%;left:9%;width:86%;height:1px;background:linear-gradient(90deg,var(--rd-cyan),var(--rd-pink));transform:rotate(-7deg);content:""}.rd-mini-graphic.waveform{display:flex;align-items:center;gap:5px}.rd-mini-graphic.waveform i{position:static;width:15%;height:30%;border-top:2px solid var(--rd-cyan);transform:skewY(-25deg);animation:rdWave 1.8s ease-in-out infinite alternate}.rd-mini-graphic.waveform i:nth-child(2),.rd-mini-graphic.waveform i:nth-child(4){height:70%;border-color:var(--rd-pink)}.rd-mini-graphic.matrix{display:grid;grid-template-columns:repeat(3,28px);align-content:center;gap:8px}.rd-mini-graphic.matrix i{position:static;aspect-ratio:1;border:1px solid rgba(102,214,212,.5);background:rgba(102,214,212,.08);animation:rdMatrix 2.4s ease-in-out infinite}.rd-mini-graphic.matrix i:nth-child(2),.rd-mini-graphic.matrix i:nth-child(5){animation-delay:.5s}.rd-mini-graphic.shield i{border-radius:50%}.rd-mini-graphic.shield i:nth-child(1){inset:12px auto auto 22px;width:62px;height:62px;border:1px solid var(--rd-cyan)}.rd-mini-graphic.shield i:nth-child(2){top:30px;left:41px;width:24px;height:24px;background:var(--rd-cyan);box-shadow:0 0 0 10px rgba(102,214,212,.1)}.rd-mini-graphic.shield i:nth-child(3){top:42px;left:104px;width:58%;height:1px;background:linear-gradient(90deg,var(--rd-cyan),transparent)}.rd-mini-graphic.pack i:nth-child(1){bottom:12px;left:16px;width:54px;height:66px;border:1px solid var(--rd-cyan)}.rd-mini-graphic.pack i:nth-child(2){bottom:12px;left:85px;width:110px;height:36px;border:1px solid rgba(223,90,175,.7)}.rd-mini-graphic.pack i:nth-child(3){right:15px;bottom:32px;width:54px;height:1px;background:var(--rd-cyan);animation:rdScan 2s linear infinite}@keyframes rdMiniBar{to{transform:scaleY(.55)}}@keyframes rdParticle{to{transform:translate(12px,-11px)}}@keyframes rdWave{to{transform:skewY(22deg)}}@keyframes rdMatrix{50%{background:var(--rd-cyan);box-shadow:0 0 18px rgba(102,214,212,.5)}}@keyframes rdScan{to{transform:translateY(24px)}}
.rd-horizons{background:#fff}.rd-horizon-stage{display:grid;grid-template-columns:.72fr 1.28fr;align-items:center;margin-top:70px;gap:90px}.rd-horizon-orbit{position:relative;display:grid;aspect-ratio:1;place-items:center;border:1px solid #bdd5d9;border-radius:50%;background:radial-gradient(circle,rgba(102,214,212,.2),transparent 55%)}.rd-horizon-orbit>span{position:absolute;border:1px solid #c8dadd;border-radius:50%}.rd-horizon-orbit>span:nth-child(1){inset:12%}.rd-horizon-orbit>span:nth-child(2){inset:26%;border-style:dashed;animation:rdSpinFlat 18s linear infinite}.rd-horizon-orbit>span:nth-child(3){inset:39%;background:linear-gradient(145deg,#1f809c,#74379c);box-shadow:0 20px 45px rgba(23,75,97,.25)}.rd-horizon-orbit>b{z-index:2;color:#fff;font-size:10px;letter-spacing:.14em;line-height:1.5;text-align:center}.rd-horizon-orbit>i{position:absolute;padding:9px 12px;border:1px solid #bdd4d8;background:#fff;color:#24798f;font-size:7px;font-style:normal;font-weight:700;letter-spacing:.1em}.rd-horizon-orbit>i:nth-of-type(1){top:9%;left:40%}.rd-horizon-orbit>i:nth-of-type(2){right:-2%;bottom:31%}.rd-horizon-orbit>i:nth-of-type(3){bottom:8%;left:20%}@keyframes rdSpinFlat{to{transform:rotate(360deg)}}.rd-horizon-list{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid var(--rd-line);border-left:1px solid var(--rd-line)}.rd-horizon-list article{min-height:210px;padding:23px;border-right:1px solid var(--rd-line);border-bottom:1px solid var(--rd-line)}.rd-horizon-list span{color:#16809a;font-size:8px;font-weight:700}.rd-horizon-list h3{margin:35px 0 10px;font-size:18px;font-weight:600}.rd-horizon-list p{margin:0;color:#667b84;font-size:10px;line-height:1.7}
.rd-pathway{background:#12394f;color:#fff}.rd-pathway-line{display:grid;grid-template-columns:repeat(4,1fr);margin-top:70px;border-top:1px solid rgba(255,255,255,.18);border-left:1px solid rgba(255,255,255,.18)}.rd-pathway-line article{position:relative;min-height:270px;padding:25px;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);background:linear-gradient(145deg,rgba(255,255,255,.03),transparent)}.rd-pathway-line article::before{position:absolute;top:-3px;left:0;width:0;height:3px;background:linear-gradient(90deg,var(--rd-cyan),var(--rd-pink));animation:rdGate 5s ease-in-out infinite;content:""}.rd-pathway-line article:nth-child(2)::before{animation-delay:.3s}.rd-pathway-line article:nth-child(3)::before{animation-delay:.6s}.rd-pathway-line article:nth-child(4)::before{animation-delay:.9s}.rd-pathway-line article:nth-child(5)::before{animation-delay:1.2s}.rd-pathway-line article:nth-child(6)::before{animation-delay:1.5s}.rd-pathway-line article:nth-child(7)::before{animation-delay:1.8s}.rd-pathway-line article:nth-child(8)::before{animation-delay:2.1s}.rd-pathway-line article>span{color:var(--rd-cyan);font-size:8px;font-weight:700}.rd-pathway-line article>p{margin:56px 0 10px;color:var(--rd-cyan);font-size:7px;font-weight:700;letter-spacing:.14em}.rd-pathway-line h3{margin:0;font-size:19px;font-weight:500}.rd-pathway-line small{position:absolute;right:25px;bottom:24px;left:25px;color:rgba(255,255,255,.55);font-size:10px;line-height:1.6}.rd-pathway-note{margin:35px 0 0;padding:23px 26px;border-left:3px solid var(--rd-cyan);background:rgba(255,255,255,.07);color:rgba(255,255,255,.63);font-size:10px;line-height:1.75}@keyframes rdGate{0%,35%{width:0}60%,100%{width:100%}}
.rd-digital{background:var(--rd-ice)}.rd-digital-grid{display:grid;grid-template-columns:.9fr 1.1fr;align-items:center;gap:100px}.rd-digital-copy>p:not(.rd-label){margin:26px 0 0;color:#607680;font-size:13px;line-height:1.85}.rd-digital-copy ul{margin:40px 0 0;padding:0;border-top:1px solid var(--rd-line);list-style:none}.rd-digital-copy li{display:grid;grid-template-columns:42px 1fr;padding:17px 0;border-bottom:1px solid var(--rd-line)}.rd-digital-copy li>span{color:#16809a;font-size:8px;font-weight:700}.rd-digital-copy li b{font-size:13px;font-weight:600}.rd-digital-copy li p{margin:5px 0 0;color:#687b84;font-size:9px;line-height:1.65}.rd-data-board{padding:29px;border:1px solid #bed4d9;background:#fff;box-shadow:0 30px 75px rgba(10,53,71,.12)}.rd-board-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:20px;border-bottom:1px solid var(--rd-line)}.rd-board-head p{display:grid;margin:0}.rd-board-head span{color:#157d97;font-size:7px;font-weight:700;letter-spacing:.14em}.rd-board-head b{margin-top:5px;font-size:9px;font-weight:500}.rd-board-head>i{color:#248da1;font-size:6px;font-style:normal}.rd-board-body{display:grid;grid-template-columns:1.4fr .6fr;margin-top:28px;gap:24px}.rd-data-chart>span{font-size:7px;font-weight:700;letter-spacing:.12em}.rd-data-chart>div{display:flex;height:270px;align-items:flex-end;margin-top:15px;gap:7px;border-bottom:1px solid #a9c4ca}.rd-data-chart>div i{flex:1;height:var(--h);background:linear-gradient(#65d4d2,#70389a);transform-origin:bottom;animation:rdDataGrow 1.7s ease both}.rd-data-chart>div i:nth-child(2){animation-delay:.08s}.rd-data-chart>div i:nth-child(3){animation-delay:.16s}.rd-data-chart>div i:nth-child(4){animation-delay:.24s}.rd-data-chart>div i:nth-child(5){animation-delay:.32s}.rd-data-chart>div i:nth-child(6){animation-delay:.4s}.rd-data-chart>div i:nth-child(7){animation-delay:.48s}.rd-data-chart>div i:nth-child(8){animation-delay:.56s}.rd-data-chart>small{display:flex;justify-content:space-between;margin-top:8px;color:#718790;font-size:6px}.rd-data-chart em{font-style:normal}.rd-board-cards{display:grid;gap:8px}.rd-board-cards p{display:grid;min-height:80px;margin:0;padding:13px;background:var(--rd-ice)}.rd-board-cards span{font-size:6px;letter-spacing:.1em}.rd-board-cards b{align-self:end;color:#197d94;font-size:10px;font-weight:500}.rd-board-foot{display:flex;justify-content:space-between;margin-top:24px;padding-top:17px;border-top:1px solid var(--rd-line);gap:12px;color:#6c8089;font-size:6px;font-weight:700;letter-spacing:.08em}@keyframes rdDataGrow{from{transform:scaleY(0)}}
.rd-evidence{background:#fff}.rd-evidence-grid{display:grid;grid-template-columns:.78fr 1.22fr;align-items:center;gap:100px}.rd-evidence-visual{position:relative;display:grid;aspect-ratio:1;place-items:center;background:radial-gradient(circle,rgba(102,214,212,.18),transparent 58%)}.rd-evidence-visual .rd-ring{position:absolute;border:1px solid #bad4d8;border-radius:50%}.rd-evidence-visual .ring-a{inset:5%}.rd-evidence-visual .ring-b{inset:18%;border-style:dashed;animation:rdSpinFlat 20s linear infinite}.rd-evidence-visual .ring-c{inset:33%;background:linear-gradient(145deg,#1e809c,#69358f);box-shadow:0 25px 55px rgba(15,62,81,.23)}.rd-evidence-visual>b{z-index:2;color:#fff;font-size:10px;letter-spacing:.13em;line-height:1.55;text-align:center}.rd-evidence-visual>i{position:absolute;padding:9px 12px;border:1px solid #bdd4d8;background:#fff;color:#207990;font-size:7px;font-style:normal;font-weight:700;letter-spacing:.1em}.rd-evidence-visual>i:nth-of-type(1){top:3%;left:40%}.rd-evidence-visual>i:nth-of-type(2){top:43%;right:-3%}.rd-evidence-visual>i:nth-of-type(3){right:20%;bottom:5%}.rd-evidence-visual>i:nth-of-type(4){bottom:28%;left:-2%}.rd-evidence-copy>p:not(.rd-label){margin:26px 0 0;color:#617680;font-size:13px;line-height:1.85}.rd-evidence-list{display:grid;grid-template-columns:repeat(2,1fr);margin-top:40px;border-top:1px solid var(--rd-line);border-left:1px solid var(--rd-line)}.rd-evidence-list article{min-height:180px;padding:20px;border-right:1px solid var(--rd-line);border-bottom:1px solid var(--rd-line)}.rd-evidence-list span{color:#16809a;font-size:7px;font-weight:700}.rd-evidence-list h3{margin:30px 0 9px;font-size:15px;font-weight:600}.rd-evidence-list p{margin:0!important;color:#697d86!important;font-size:9px!important;line-height:1.65!important}
.rd-partners{background:#f8fbfb}.rd-partner-grid{display:grid;grid-template-columns:repeat(3,1fr);margin-top:70px;border-top:1px solid var(--rd-line);border-left:1px solid var(--rd-line)}.rd-partner-grid article{min-height:300px;padding:27px;border-right:1px solid var(--rd-line);border-bottom:1px solid var(--rd-line);transition:background .2s ease,transform .2s ease}.rd-partner-grid article:hover{z-index:2;background:#fff;transform:translateY(-6px);box-shadow:0 22px 50px rgba(18,64,82,.09)}.rd-partner-grid span{color:#16809a;font-size:8px;font-weight:700}.rd-partner-grid h3{margin:63px 0 13px;font-size:20px;font-weight:500}.rd-partner-grid p{margin:0;color:#657982;font-size:10px;line-height:1.75}.rd-partner-cta{display:grid;grid-template-columns:1fr 1fr;align-items:end;margin-top:70px;padding:45px;background:linear-gradient(115deg,#0d344b,#1a718d 60%,#6e3192);color:#fff;gap:80px}.rd-partner-cta>div:first-child>p{margin:0 0 17px;color:var(--rd-cyan);font-size:8px;font-weight:700;letter-spacing:.14em}.rd-partner-cta h3{margin:0;font-size:30px;font-weight:400;letter-spacing:-.035em;line-height:1.25}.rd-partner-cta>div:last-child>p{margin:0 0 25px;color:rgba(255,255,255,.66);font-size:10px;line-height:1.75}
.rd-governance{background:#0b2639;color:#fff}.rd-governance-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:100px}.rd-governance .rd-label{color:var(--rd-cyan)}.rd-governance-grid>div:last-child p{margin:0 0 20px;color:rgba(255,255,255,.63);font-size:12px;line-height:1.85}.rd-contact{position:relative;min-height:700px;overflow:hidden;background:var(--rd-deep);color:#fff}.rd-contact>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.rd-contact>span{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,16,30,.98),rgba(4,30,47,.84) 60%,rgba(5,24,42,.38))}.rd-contact-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;align-items:end;min-height:700px;padding-block:100px;gap:100px}.rd-contact .rd-label{color:var(--rd-cyan)}.rd-contact-grid>div:last-child>p{margin:0 0 29px;color:rgba(255,255,255,.7);font-size:13px;line-height:1.85}.rd-text-link{display:block;width:max-content;margin-top:25px;border-bottom:1px solid rgba(255,255,255,.38);padding-bottom:5px;color:#fff;font-size:10px}

.pharma-rd-entry{padding-block:65px;background:linear-gradient(110deg,#081d33,#166e8d 62%,#713392);color:#fff}.pharma-rd-entry-grid{display:grid;grid-template-columns:1fr .75fr;align-items:end;gap:80px}.pharma-rd-entry .pharma-section-label{color:var(--rd-cyan)}.pharma-rd-entry h2{margin:0;font-size:clamp(39px,4vw,62px);font-weight:300;letter-spacing:-.05em;line-height:1.07}.pharma-rd-entry-grid>div:last-child p{margin:0 0 25px;color:rgba(255,255,255,.68);font-size:12px;line-height:1.8}

@media(max-width:1100px){.rd-header .main-nav{gap:12px}.rd-header .main-nav a{font-size:9px}.rd-hero-layout{grid-template-columns:1fr .58fr;gap:45px}.rd-science-console{min-width:300px}.rd-principles-grid{grid-template-columns:repeat(3,1fr)}.rd-platform-grid{grid-template-columns:repeat(2,1fr)}.rd-horizon-stage,.rd-digital-grid,.rd-evidence-grid{gap:55px}}
@media(max-width:900px){.rd-hero{min-height:1320px}.rd-hero-layout{grid-template-columns:1fr;align-content:start;padding-top:145px}.rd-science-console{width:min(100%,610px)}.rd-hero-status .page-shell{grid-template-columns:repeat(2,1fr)}.rd-hero-status p{min-height:115px}.rd-model-grid,.rd-heading,.rd-horizon-stage,.rd-digital-grid,.rd-evidence-grid,.rd-governance-grid,.rd-contact-grid,.rd-partner-cta,.pharma-rd-entry-grid{grid-template-columns:1fr}.rd-model-grid,.rd-horizon-stage,.rd-digital-grid,.rd-evidence-grid,.rd-governance-grid{gap:55px}.rd-heading{align-items:start;gap:28px}.rd-horizon-orbit,.rd-evidence-visual{width:min(100%,540px);margin-inline:auto}.rd-pathway-line{grid-template-columns:repeat(2,1fr)}.rd-contact-grid{align-content:center;gap:35px}.rd-partner-cta{align-items:start;gap:35px}}
@media(max-width:680px){.rd-header .header-actions{display:none}.rd-hero{min-height:1370px}.rd-hero-layout{padding-top:122px;gap:50px}.rd-breadcrumb{margin-bottom:40px}.rd-hero h1{font-size:clamp(55px,17vw,73px)}.rd-hero-copy>p:not(.rd-breadcrumb):not(.rd-kicker){font-size:12px}.rd-hero-actions{align-items:stretch;flex-direction:column}.rd-button{width:100%}.rd-orbit{height:300px}.rd-hero-status .page-shell{grid-template-columns:1fr 1fr}.rd-hero-status p{padding:17px}.rd-hero-status b{font-size:11px}.rd-section{padding-block:82px}.rd-model h2,.rd-heading h2,.rd-digital h2,.rd-evidence h2,.rd-governance h2,.rd-contact h2{font-size:42px}.rd-model-copy .rd-lead{font-size:16px}.rd-model-note{grid-template-columns:1fr}.rd-principles-grid,.rd-platform-grid,.rd-horizon-list,.rd-pathway-line,.rd-evidence-list,.rd-partner-grid{grid-template-columns:1fr}.rd-principles article{min-height:270px}.rd-platform-grid article{min-height:365px}.rd-horizon-orbit>i{font-size:5px;padding:7px}.rd-pathway-line article{min-height:240px}.rd-board-body{grid-template-columns:1fr}.rd-data-chart>div{height:200px}.rd-board-cards{grid-template-columns:repeat(3,1fr)}.rd-board-cards p{min-height:85px;padding:9px}.rd-board-foot{flex-wrap:wrap;justify-content:flex-start}.rd-partner-cta{padding:27px}.rd-partner-cta h3{font-size:25px}.rd-contact{min-height:720px}.rd-contact-grid{min-height:720px;padding-block:80px}.pharma-rd-entry{padding-block:55px}}
@media(prefers-reduced-motion:reduce){.rd-hero-image,.rd-orbit .orbit-two,.rd-orbit .orbit-three,.rd-orbit>i,.rd-mini-graphic i,.rd-horizon-orbit>span:nth-child(2),.rd-pathway-line article::before,.rd-data-chart>div i,.rd-evidence-visual .ring-b{animation:none}.rd-pathway-line article::before{width:100%}}
