@import url("https://fonts.googleapis.com/css2?family=Anton&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --blue: #0037b5;
  --blue-ink: #00144a;
  --ice: #d7e4ff;
  --foam: #f4f7ff;
  --white: #fff;
  --ink: #111318;
  --muted: #5c6475;
  --line: #eceff5;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: 1rem;
  --display: Anton, sans-serif;
  --kicker-stack: 2.33rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip { position: absolute; left: -999px; }
.wrap { width: min(1280px, calc(100% - 5rem)); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.85rem 1.15rem 0.75rem;
  background: var(--white);
  pointer-events: none;
}
.nav {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: var(--white);
  border-radius: 0;
  padding: 0.5rem 0.35rem 0.5rem 0.45rem;
  box-shadow: none;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 0;
  padding: 0.5rem 0.75rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #3a4150;
  border-radius: 999px;
  isolation: isolate;
  transition: color 0.28s var(--ease), transform 0.45s cubic-bezier(0.22, 1.45, 0.36, 1);
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: inherit;
  transform: translateY(10px) scale(0.42);
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: -1;
  box-shadow: 0 10px 22px rgba(0, 55, 181, 0.28);
  transition: transform 0.5s cubic-bezier(0.22, 1.55, 0.32, 1), opacity 0.22s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  transform: translateY(-3px);
}
.nav-links a:hover::before,
.nav-links a.is-active::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.logo {
  display: flex;
  align-items: center;
  color: var(--blue);
  line-height: 0;
}
.logo-mark {
  height: 2rem;
  width: auto;
  display: block;
}
.site-footer .logo-mark { height: 2.15rem; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-cta .btn {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  padding: 0.5rem 0.95rem;
}
.enquire-tab {
  position: fixed;
  top: 38%;
  right: 0;
  z-index: 70;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  padding: 1.8rem 0;
  background: var(--blue-ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-50%);
}
.enquire-tab span {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
}
.enquire-tab::before,
.enquire-tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 260%;
  height: 260%;
  background: var(--blue);
  pointer-events: none;
  z-index: 0;
}
.enquire-tab::before {
  border-radius: 38% 62% 44% 56% / 56% 42% 58% 44%;
  transform: translate(112%, -50%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.7s ease;
}
.enquire-tab::after {
  border-radius: 62% 38% 58% 42% / 42% 62% 38% 58%;
  opacity: 0.9;
  transform: translate(124%, -50%);
  transition: transform 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, border-radius 0.82s ease 0.05s;
}
.enquire-tab:hover::before,
.enquire-tab:focus-visible::before {
  transform: translate(0, -50%);
  border-radius: 54% 46% 58% 42% / 42% 58% 42% 58%;
}
.enquire-tab:hover::after,
.enquire-tab:focus-visible::after {
  transform: translate(-6%, -50%);
  border-radius: 42% 58% 40% 60% / 60% 40% 60% 40%;
}
.menu-toggle {
  display: none;
  border: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--ice);
}

.btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.28s var(--ease), transform 0.45s cubic-bezier(0.22, 1.45, 0.36, 1), box-shadow 0.28s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateY(10px) scale(0.42);
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1.55, 0.32, 1), opacity 0.22s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}
.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.btn-dark { background: #1b1f29; color: #fff; }
.btn-ink { background: var(--blue-ink); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-ice { background: var(--ice); color: var(--blue); }
.btn-dark::before,
.btn-ink::before,
.btn-blue::before {
  background: #fff;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.2);
}
.btn-dark:hover,
.btn-dark:focus-visible,
.btn-ink:hover,
.btn-ink:focus-visible,
.btn-blue:hover,
.btn-blue:focus-visible { color: var(--blue); }
.btn-ice::before {
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 55, 181, 0.28);
}
.btn-ice:hover,
.btn-ice:focus-visible { color: #fff; }

.stage {
  position: relative;
  margin: 0;
  min-height: calc(100svh - 1.65rem);
  border-radius: 0 0 1.35rem 1.35rem;
  overflow: hidden;
  background: #0b1020;
  color: #fff;
}
.collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.1fr 1fr 1.15fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.collage img:nth-child(1),
.collage img:nth-child(3),
.collage img:nth-child(4) { grid-row: 1 / 3; }
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 12, 40, 0.72) 82%);
  pointer-events: none;
}
.stage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: inherit;
  width: 100%;
  padding: 8rem 2.4rem 2.35rem;
  max-width: none;
}
.stage h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  width: 100%;
  font-size: clamp(2.4rem, 6.15vw, 6.25rem);
  line-height: 1;
  color: #fff;
}
.stage h1 .line,
.stage h1 .accent {
  display: block;
  white-space: nowrap;
}
.stage h1 .accent {
  color: var(--ice);
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 800px) {
  .stage h1 { font-size: clamp(2rem, 9vw, 3.4rem); }
  .stage h1 .line,
  .stage h1 .accent { white-space: normal; }
}
.kicker {
  display: inline-flex;
  width: max-content;
  margin: 0 0 0.85rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}
.kicker.on-dark {
  background: var(--ice);
  color: var(--blue-ink);
}

.band {
  margin: 5.5rem var(--gutter);
  border-radius: 1.25rem;
  padding: 6rem 0;
  background: var(--blue);
  color: #fff;
}
.band h2 { color: #fff; max-width: none; }
.band .lede { color: rgba(255,255,255,0.82); }

.bubble {
  display: inline-block;
  background: var(--ice);
  color: var(--blue);
  border-radius: 0.85rem;
  padding: 0.1em 0.26em 0.08em;
  line-height: 1.02;
  margin-top: 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.band .bubble {
  background: var(--ice);
  color: var(--blue);
  white-space: nowrap;
}
.band .split {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.band .split:has(.kicker) > :last-child,
.band .split:has(.bubble) > :last-child {
  padding-top: var(--kicker-stack);
}

.mosaic-band {
  margin: 0 var(--gutter);
  border-radius: 1.25rem;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  padding: 4.5rem 0;
}
.mosaic-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.mosaic-copy h2 { color: #fff; max-width: none; }
.mosaic-copy .bubble { white-space: nowrap; }
.mosaic-copy .lede { color: rgba(255,255,255,0.86); }
.btn-line {
  background: transparent;
  color: var(--ice);
  box-shadow: inset 0 0 0 2px var(--ice);
}
.btn-line::before {
  background: #fff;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.2);
}
.btn-line:hover {
  color: var(--blue);
  box-shadow: inset 0 0 0 2px #fff;
}
.mosaic-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  height: 34rem;
  padding-top: var(--kicker-stack);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}
.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: mosaic-up 72s linear infinite;
}
.mosaic-col:nth-child(2) {
  animation-name: mosaic-down;
  animation-duration: 88s;
  margin-top: -2.5rem;
}
.mosaic-col:nth-child(3) { animation-duration: 64s; }
.mosaic-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.95rem;
  flex: none;
}
@keyframes mosaic-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes mosaic-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-links a::before,
  .btn,
  .btn::before,
  .tabs button,
  .tabs button::before,
  .slider-btn,
  .slider-btn::before { transition: none; transform: none; }
  .mosaic-col,
  .logo-track,
  .cut-track { animation: none; }
}

.title-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.title-lockup h2 { max-width: none; }
.title-lockup .kicker { margin-bottom: 0.15rem; }
.title-lockup + .lede,
.title-lockup + p,
h2 + .lede {
  margin-top: 1.9rem;
}
.mosaic-copy .title-lockup { margin-bottom: 0.15rem; }
.mosaic-copy .stage-actions { margin-top: 1.65rem; }
.mosaic-band.is-light {
  margin: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--blue-ink);
  padding: 2.5rem 0 3.5rem;
}
.mosaic-band.is-light .mosaic-copy h2 { color: var(--blue-ink); }
.mosaic-band.is-light .mosaic-copy .lede { color: var(--muted); }

.faq-band {
  background: var(--white);
  padding: 5.5rem 0 4.5rem;
}
.faq-shell {
  max-width: 58rem;
}
.faq-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.faq-head-label {
  margin: 0 0 0.55rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.faq-head-title {
  max-width: none;
  font-size: clamp(3.6rem, 11vw, 8rem);
  line-height: 0.82;
  color: var(--blue-ink);
}
.faq-head-pair {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
}
.faq-head-pair span:not(.faq-head-dot) {
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.faq-head-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--blue);
}
.faq-group { margin-top: 2.15rem; }
.faq-cat {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.faq details {
  border-bottom: 1px solid var(--blue-ink);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.05rem 0.15rem 1.05rem 0.2rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--blue-ink);
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::before {
  content: "";
  position: absolute;
  inset: 0.18rem -0.45rem;
  z-index: -1;
  border-radius: 0.9rem;
  background: var(--ice);
  transform: translateX(-110%);
  transition: transform 0.55s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.faq summary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.28rem;
  height: 0;
  border-radius: 99px;
  background: var(--blue);
  transform: translateY(-50%);
  transition: height 0.4s cubic-bezier(0.22, 1.3, 0.36, 1);
}
.faq summary > span:first-child {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.faq summary:hover,
.faq summary:focus-visible {
  color: var(--blue);
}
.faq summary:hover::before,
.faq summary:focus-visible::before {
  transform: none;
}
.faq summary:hover::after,
.faq summary:focus-visible::after {
  height: 1.35rem;
}
.faq summary:hover > span:first-child,
.faq summary:focus-visible > span:first-child {
  transform: translateX(0.85rem);
}
.faq-plus {
  position: relative;
  z-index: 1;
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.55s cubic-bezier(0.22, 1.45, 0.36, 1);
}
.faq-plus::before {
  content: "";
  position: absolute;
  inset: -0.52rem;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.faq summary:hover .faq-plus::before,
.faq summary:focus-visible .faq-plus::before {
  transform: scale(1);
}
.faq summary:hover .faq-plus,
.faq summary:focus-visible .faq-plus {
  transform: rotate(90deg);
}
.faq-plus i {
  position: absolute;
  z-index: 1;
  background: var(--blue-ink);
  border-radius: 1px;
  transition: background 0.3s ease;
}
.faq summary:hover .faq-plus i,
.faq summary:focus-visible .faq-plus i {
  background: var(--blue);
}
.faq-plus i:first-child {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-plus i:last-child {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.faq details.is-open .faq-plus,
.faq details.is-open summary:hover .faq-plus,
.faq details.is-open summary:focus-visible .faq-plus {
  transform: rotate(135deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq details.is-open .faq-answer,
.faq:not(.faq-ready) details[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq p {
  color: var(--muted);
  margin: 0 2.6rem 1.15rem 0;
  max-width: 40rem;
  transform: translateY(-0.55rem);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq details.is-open p,
.faq:not(.faq-ready) details[open] p {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .faq-plus, .faq-plus::before, .faq-answer, .faq p, .faq summary, .faq summary::before, .faq summary::after, .faq summary > span:first-child, .faq-plus i { transition: none; }
  .faq summary:hover > span:first-child,
  .faq summary:focus-visible > span:first-child { transform: none; }
  .faq summary:hover .faq-plus,
  .faq summary:focus-visible .faq-plus { transform: none; }
  .faq details.is-open .faq-plus { transform: rotate(135deg); }
}
h1, h2, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}
h3, .faq summary, .track h3, .pillar h3, .value strong, .person h3 {
  font-weight: 400;
}
h1 {
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  max-width: none;
}
h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  max-width: 16ch;
  color: var(--blue-ink);
}
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
}
.accent { color: var(--ice); }
.stage-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }

.logo-bar {
  overflow: hidden;
  background: #fff;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.logo-set {
  display: flex;
  align-items: center;
  flex: none;
  gap: 3.25rem;
  padding-right: 3.25rem;
}
.logo-set span {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: #c2c7d2;
  white-space: nowrap;
}

.panel { background: var(--white); }
.section { padding: 5.5rem 0; }
.section-follow { margin-top: 2.4rem; }
.lede { color: var(--muted); font-size: 1.05rem; margin: 0 0 1rem; }
.lede:last-child { margin-bottom: 0; }
main > .panel:first-child,
main > .cta-band:first-child { padding-top: 8rem; }
main > .stage + * { margin-top: 0; }
.platforms { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.platforms a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.split:has(.kicker) > :last-child {
  padding-top: var(--kicker-stack);
}
.split:has(.bubble) > :last-child {
  padding-top: calc(var(--kicker-stack) + 0.55rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.pillar {
  position: relative;
  min-height: 28rem;
  border-radius: 1.15rem;
  overflow: hidden;
  color: #fff;
}
.pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pillar:hover img { transform: scale(1.06); }
.pillar-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(0,12,40,0.82));
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0.35rem 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.value {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.value strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.track {
  background: var(--foam, #f4f7ff);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem;
}
.track ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.track li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.track h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.6rem 0 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.work {
  position: relative;
  min-height: 22rem;
  border-radius: 1.1rem;
  overflow: hidden;
  color: #fff;
}
.work img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work:hover img { transform: scale(1.07); }
.work-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(0,12,40,0.15), rgba(0,12,40,0.82));
}
.metrics { display: flex; gap: 1.2rem; }
.metrics strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.03em; }

.chip {
  width: max-content;
  background: var(--ice);
  color: var(--blue);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.filters input, .filters select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  min-width: 13rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17,19,24,0.06);
}
.card img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.card:hover img { transform: scale(1.04); }
.card-body { padding: 1rem 1.1rem 1.25rem; }

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.person img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 1.05rem; }
.person h3 {
  margin: 0.7rem 0 0.2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cta-band {
  margin: 0 var(--gutter) var(--gutter);
  border-radius: 1.25rem;
  padding: 4.5rem 3.5rem;
  background: var(--blue);
  color: #fff;
}
.cta-band h2 { color: #fff; max-width: 14ch; }

.cta-contact {
  display: flex;
  justify-content: center;
  padding: 2.5rem clamp(1.25rem, 4vw, 4.5rem) 3rem;
  scroll-margin-top: 6.5rem;
}
.cta-contact-stack {
  position: relative;
  width: 100%;
  max-width: 72rem;
}
.cta-contact-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 32rem;
  padding: 5.25rem 2.5rem 4.75rem;
  border-radius: 1.15rem;
  background: var(--blue-ink);
  color: #fff;
  text-align: center;
}
.cta-contact-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 46%, #0037b5 0%, transparent 62%),
    var(--blue-ink);
  pointer-events: none;
}
.cta-contact-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118%;
  height: 78%;
  border: 2px solid rgba(215, 228, 255, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(-12deg);
  pointer-events: none;
}
.cta-contact-mark {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(14rem, 28vw, 26rem);
  line-height: 0.72;
  color: #001a63;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
}
.cta-contact-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 0.6rem;
}
.cta-contact-copy h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  margin: 0;
  color: #fff;
  max-width: none;
  width: 100%;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.9;
  text-align: center;
}
.cta-contact-copy .cta-contact-line {
  display: block;
  color: #fff;
}
.cta-contact-copy .bubble {
  background: var(--ice);
  color: var(--blue);
}
.cta-contact-copy .lede {
  max-width: 28rem;
  margin: 1.15rem auto 1.55rem;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
}
.cta-contact-tag {
  position: absolute;
  z-index: 2;
  padding: 0.42rem 0.85rem 0.38rem;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 20, 74, 0.16);
}
.cta-contact-tag-a {
  top: 0.85rem;
  left: -0.85rem;
  transform: rotate(-9deg);
}
.cta-contact-tag-b {
  right: -0.9rem;
  bottom: 1.15rem;
  transform: rotate(8deg);
}
.pillar h3, .value strong, .step b, .metrics strong {
  font-family: var(--display);
  font-weight: 800;
}

.form {
  display: grid;
  gap: 0.75rem;
  background: #fff;
  padding: 1.3rem;
  border-radius: 1.3rem;
  box-shadow: 0 18px 50px rgba(0,20,74,0.12);
}
.tabs { display: flex; gap: 0.4rem; }
.tabs button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem;
  background: var(--ice);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  transition: color 0.28s var(--ease), transform 0.45s cubic-bezier(0.22, 1.45, 0.36, 1);
}
.tabs button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: inherit;
  transform: translateY(10px) scale(0.42);
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1.55, 0.32, 1), opacity 0.22s ease;
}
.tabs button:hover {
  color: #fff;
  transform: translateY(-3px);
}
.tabs button:hover::before,
.tabs button.is-on::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.tabs button.is-on { color: #fff; background: var(--ice); }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
}

.site-footer {
  position: relative;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  margin-top: 0;
  padding: 4.8rem 0 0;
}
.footer-word {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  margin-top: 8.5rem;
  margin-bottom: 0;
  background: var(--blue);
  height: 0.52em;
  padding-top: 0.06em;
  font-size: 35.6vw;
  pointer-events: none;
  user-select: none;
}
.footer-word span {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #002070;
}
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(12rem, 18.5rem) minmax(0, 1fr);
  gap: 3rem 6.25rem;
  align-items: start;
}
.footer-intro p {
  max-width: 18.5rem;
  margin: 1.1rem 0 1.35rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
}
.footer-cols {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem 5.75rem;
}
.site-footer strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ice);
  margin: 0 0 1rem;
}
.site-footer a {
  display: block;
  opacity: 0.88;
  margin: 0.4rem 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-cols a {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  isolation: isolate;
  width: max-content;
  margin: 0.12rem 0;
  margin-left: -0.62rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  transition: color 0.28s var(--ease), transform 0.45s cubic-bezier(0.22, 1.45, 0.36, 1), opacity 0.22s ease;
}
.footer-cols a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: translateY(10px) scale(0.42);
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: -1;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1.55, 0.32, 1), opacity 0.22s ease;
}
.footer-cols a:hover {
  color: var(--blue);
  opacity: 1;
  transform: translateY(-3px);
}
.footer-cols a:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.site-footer .footer-mail {
  display: inline;
  margin: 0;
  color: var(--ice);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}
.site-footer .footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  overflow: visible;
  color: #fff;
  opacity: 0.92;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer .footer-socials a:hover {
  opacity: 1;
  color: var(--ice);
}
.footer-socials svg {
  width: 1.28rem;
  height: 1.28rem;
  fill: currentColor;
  display: block;
  overflow: visible;
  flex: none;
}
.footer-bar {
  position: relative;
  z-index: 2;
  background: var(--blue-ink);
  color: #fff;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  padding: 0.8rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
}
.site-footer .footer-bar a {
  display: inline;
  margin: 0;
  color: #fff;
  opacity: 1;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: uppercase;
}
.site-footer .footer-bar a:hover { opacity: 0.75; }
.footer-bar-mail {
  margin-left: auto;
}

.slider-nav { display: flex; gap: 0.45rem; flex: none; }
.slider-btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: color 0.28s var(--ease), transform 0.45s cubic-bezier(0.22, 1.45, 0.36, 1);
}
.slider-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: translateY(10px) scale(0.42);
  transform-origin: 50% 100%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1.55, 0.32, 1), opacity 0.22s ease;
}
.slider-btn:hover {
  color: var(--blue);
  transform: translateY(-3px) scale(1.04);
}
.slider-btn:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cut-band {
  background: var(--blue);
  color: #fff;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}
.cut-band h2 { color: #fff; max-width: none; }
.cut-band .bubble { white-space: nowrap; }
.cut-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: start;
  margin-bottom: 2.4rem;
}
.cut-copy {
  padding-top: calc(1.48rem + 0.15rem + 0.5rem);
  max-width: 34rem;
}
.cut-copy .lede {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: none;
}
.cut-copy .lede:last-child { margin-bottom: 0; }
.cut-band .slider-btn {
  background: var(--ice);
  color: var(--blue);
}
.cut-band .slider-btn::before { background: #fff; }
.cut-band .slider-btn:hover { color: var(--blue); }
.cut-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 3.2rem;
}
.cut-step {
  background: rgba(255,255,255,0.08);
  border-radius: 1.15rem;
  padding: 1.6rem 1.5rem 1.7rem;
  min-height: 14rem;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.cut-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}
.cut-num {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ice);
  margin-bottom: 1.1rem;
}
.cut-step h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.cut-step p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  max-width: 28ch;
}
.cut-carousel-head {
  margin-bottom: 1.15rem;
}
.cut-carousel-head .kicker { margin: 0; }
.cut-viewport {
  overflow: hidden;
}
.cut-track {
  display: flex;
  width: max-content;
  justify-content: flex-start;
  animation: cut-marquee 48s linear infinite;
}
.cut-set {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
  flex: 0 0 auto;
}
.cut-card {
  flex: 0 0 18.75rem;
  width: 18.75rem;
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}
.cut-photo { position: relative; }
.cut-card img { width: 100%; height: 24rem; object-fit: cover; display: block; }
.cut-stats {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: var(--blue-ink);
  border-radius: 0.95rem;
  padding: 0.7rem 0.6rem 0.75rem;
  box-shadow: 0 10px 28px rgba(0, 20, 74, 0.16);
}
.cut-stats strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.05rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--blue-ink);
}
.cut-stats span {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.cut-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.15rem 1rem 1.35rem;
}
.cut-meta .chip { margin: 0 auto 0.5rem; }
.cut-meta h3 {
  margin: 0;
  font-size: 2.05rem;
  line-height: 1.05;
  color: var(--blue-ink);
}
@keyframes cut-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.cut-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 3.4rem 1.5rem 0.4rem;
}
.cut-cta .title-lockup { align-items: center; }
.cut-cta h2 { text-align: center; }

.desk-band {
  background: var(--blue);
  color: #fff;
  padding: 5.5rem 0 3.2rem;
  overflow: hidden;
}
.desk-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.2rem;
}
.desk-copy h2 {
  color: #fff;
  max-width: 9ch;
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  line-height: 0.98;
}
.desk-copy h2 span { display: block; white-space: nowrap; }
.desk-copy .lede {
  color: rgba(255,255,255,0.78);
  max-width: 32rem;
  margin-top: 1.4rem;
}
.desk-stage {
  display: grid;
  grid-template-columns: 6.6rem 1fr;
  gap: 1.15rem;
  align-items: center;
  min-height: 6.6rem;
  margin-bottom: 1.6rem;
}
.desk-note {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  max-width: 22rem;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.desk-illo {
  position: relative;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 1.15rem;
  background: rgba(215,228,255,0.12);
  overflow: hidden;
  flex: none;
}
.illo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.86);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.illo.is-on { opacity: 1; transform: none; }
.illo .clip {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  height: 1.05rem;
  border-radius: 0.28rem;
  background: var(--ice);
}
.illo .c1 { top: 1.15rem; animation: clip-shift 1.6s var(--ease) infinite alternate; }
.illo .c2 { top: 2.55rem; opacity: 0.7; animation: clip-shift 1.6s var(--ease) 0.15s infinite alternate; }
.illo .c3 { top: 3.95rem; opacity: 0.4; animation: clip-shift 1.6s var(--ease) 0.3s infinite alternate; }
.illo .tick {
  position: absolute;
  left: 1.35rem;
  top: 1.28rem;
  width: 0.55rem;
  height: 1rem;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(40deg);
  animation: tick-pop 1.6s var(--ease) infinite;
}
.illo .frame {
  position: absolute;
  top: 1.4rem;
  width: 2.1rem;
  height: 3.6rem;
  border-radius: 0.35rem;
  background: var(--ice);
}
.illo .f1 { left: -0.4rem; opacity: 0.45; animation: frames 1.4s linear infinite; }
.illo .f2 { left: 2.25rem; animation: frames 1.4s linear infinite; }
.illo .f3 { left: 4.9rem; opacity: 0.45; animation: frames 1.4s linear infinite; }
.illo .pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin: -0.35rem;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 1.4s var(--ease) infinite;
}
.illo .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid var(--ice);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.illo .r1 { width: 2.4rem; height: 2.4rem; animation: ring-spin 4s linear infinite; }
.illo .r2 { width: 4.2rem; height: 4.2rem; opacity: 0.45; animation: ring-spin 6s linear infinite reverse; }
.illo .diamond {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  margin: -0.45rem;
  background: var(--ice);
  transform: rotate(45deg);
  animation: diamond-pulse 1.5s var(--ease) infinite;
}
@keyframes clip-shift {
  from { transform: translateX(0); }
  to { transform: translateX(8px); }
}
@keyframes tick-pop {
  0%, 55% { opacity: 0; transform: rotate(40deg) scale(0.4); }
  70%, 100% { opacity: 1; transform: rotate(40deg) scale(1); }
}
@keyframes frames {
  from { transform: translateX(0); }
  to { transform: translateX(2.65rem); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.45); }
}
@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes diamond-pulse {
  0%, 100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.2); }
}
.desk-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.desk-line {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.12;
  color: rgba(255,255,255,0.32);
  background: none;
  border: 0;
  padding: 0.2rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s var(--ease);
}
.desk-line:hover { color: rgba(255,255,255,0.7); }
.desk-line[aria-selected="true"] { color: var(--ice); }
.desk-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}
.desk-carousel-head .kicker { margin: 0; }
.desk-viewport {
  overflow: hidden;
  padding-left: max(2.5rem, calc((100% - min(1280px, calc(100% - 5rem))) / 2));
  padding-right: 2.5rem;
}
.desk-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.desk-card {
  flex: 0 0 min(70vw, 22rem);
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
}
.desk-card img { width: 100%; height: 18rem; object-fit: cover; display: block; }
.desk-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}
@media (prefers-reduced-motion: reduce) {
  .illo .clip, .illo .tick, .illo .frame, .illo .pulse, .illo .ring, .illo .diamond { animation: none; }
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.rule-card {
  background: var(--ice);
  border-radius: 1.15rem;
  padding: 1.7rem 1.55rem 1.8rem;
  min-height: 16rem;
}
.rule-num {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 0.9;
  color: var(--blue);
}
.rule-card h3 {
  margin: 1.15rem 0 0.7rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--blue-ink);
}
.rule-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.stat-monument {
  margin: 0 var(--gutter);
  border-radius: 1.25rem;
  background: var(--blue);
  color: #fff;
  padding: 3.6rem 0 3.9rem;
}
.stat-monument-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
  text-align: center;
}
.stat-monument article { padding: 0; border: 0; }
.stat-monument strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 5.6vw, 4.8rem);
  line-height: 1;
  min-height: 1em;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.stat-monument-label {
  display: block;
  margin: 0.4rem 0 0.85rem;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  opacity: 0.82;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stat-monument p:last-child {
  margin: 0 auto;
  max-width: 16.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}
.story-band {
  padding: 2.5rem 0 5.5rem;
}
.story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4.5vw, 4.75rem);
  align-items: center;
  padding: 3.25rem 0;
}
.story-row.is-flip {
  grid-template-columns: 0.95fr 1.05fr;
}
.story-row.is-flip .story-photo { order: 2; }
.story-photo {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
}
.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-copy h2 {
  max-width: 12ch;
}
.story-copy .bubble { white-space: nowrap; }
.title-mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--blue);
  white-space: nowrap;
  padding: 0 0.05em 0.12em;
}
.title-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0.14em;
  height: 0.42em;
  border-radius: 3px;
  background: var(--ice);
}
.title-blue { color: var(--blue); }
.story-copy .lede { max-width: 38rem; }
.story-copy .btn { margin-top: 0.85rem; }
.owners-band {
  padding: 4.5rem 0 5.5rem;
  background: var(--ice);
  overflow: hidden;
}
.owners-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.4rem;
  padding: 0 var(--gutter);
}
.owners-head h2 { max-width: none; }
.owners-head .bubble {
  background: #fff;
  color: var(--blue);
}
.owners-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 19rem);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.35rem max(1.5rem, calc((100vw - 72rem) / 2)) 1.2rem;
  scrollbar-width: none;
}
.owners-rail::-webkit-scrollbar { display: none; }
.owner-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1.15rem;
  padding: 0.7rem 0.7rem 1.15rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.owner-card:hover { transform: translateY(-7px); }
.owner-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  background: var(--ice);
  aspect-ratio: 4 / 5;
}
.owner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.owner-card:hover img { transform: scale(1.06); }
.owner-idx {
  position: absolute;
  z-index: 1;
  top: 0.65rem;
  left: 0.65rem;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--blue);
  background: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.52rem 0.22rem;
  line-height: 1;
}
.owner-in {
  position: absolute;
  z-index: 1;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  transition: transform 0.4s cubic-bezier(0.22, 1.4, 0.36, 1), background 0.25s;
}
.owner-in svg { width: 0.85rem; height: 0.85rem; fill: currentColor; }
.owner-in:hover {
  transform: rotate(12deg) scale(1.08);
  background: var(--blue);
  color: #fff;
}
.owner-card h3 {
  margin: 0.85rem 0.35rem 0.2rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--blue-ink);
}
.owner-card p {
  margin: 0 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.owner-join {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.owner-join-plus {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
}
.owner-join-plus i {
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
}
.owner-join-plus i:first-child {
  width: 2.1rem;
  height: 3px;
}
.owner-join-plus i:last-child {
  width: 3px;
  height: 2.1rem;
}
.owner-join:hover .owner-join-plus { background: #fff; }
.owner-join:hover .owner-join-plus i:first-child,
.owner-join:hover .owner-join-plus i:last-child {
  transform: rotate(90deg);
}
.owners-foot {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
.stat-band {
  margin: 0 var(--gutter) 0;
  border-radius: 1.25rem;
  padding: 3.2rem 0;
  background: var(--blue);
  color: #fff;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-grid strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  min-height: 1em;
  font-variant-numeric: tabular-nums;
}
.stat-grid span {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.82;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-blue { display: none; }
  .enquire-tab { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
  .nav.open .nav-links a { transform: none; }
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .collage img:nth-child(n) { grid-row: auto; }
  .cta-contact-frame { padding: 4.2rem 1.2rem 3.8rem; min-height: 26rem; }
  .cta-contact-tag-a { left: 0.35rem; }
  .cta-contact-tag-b { right: 0.35rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .band .bubble,
  .cut-band .bubble,
  .mosaic-copy .bubble { white-space: normal; }
  .mosaic-slider { height: 22rem; }
  .pillar, .work { min-height: 18rem; }
  .cut-intro { grid-template-columns: 1fr; gap: 1.6rem; }
  .cut-copy { padding-top: 0; }
  .cut-steps { grid-template-columns: 1fr 1fr; }
  .rule-grid { grid-template-columns: 1fr; }
  .story-row, .story-row.is-flip { grid-template-columns: 1fr; }
  .story-row.is-flip .story-photo { order: 0; }
  .stat-monument-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
  .stat-monument article,
  .stat-monument article:nth-child(odd),
  .stat-monument article:nth-child(even) {
    padding: 0;
    border: 0;
  }
}
@media (max-width: 640px) {
  .split, .pillars, .values, .work-grid, .cards, .people, .mosaic-split, .tracks, .stat-grid, .cut-steps, .footer-top, .footer-cols, .story-row, .story-row.is-flip, .stat-monument-grid { grid-template-columns: 1fr; }
  .stat-monument article,
  .stat-monument article:nth-child(even) {
    padding: 0 0 1.25rem;
    border: 0;
  }
  .story-row.is-flip .story-photo { order: 0; }
  .story-photo, .story-photo img { min-height: 18rem; }
  .stat-monument strong { font-size: clamp(3.6rem, 18vw, 5.5rem); }
  .split:has(.kicker) > :last-child,
  .mosaic-slider { padding-top: 0; }
  .footer-cols {
    display: grid;
    justify-content: start;
  }
}
