:root {
  --ink: #111015;
  --ink-soft: #5b5761;
  --paper: #f7f5f2;
  --white: #ffffff;
  --pink: #ef0c61;
  --pink-2: #ff4d8a;
  --coral: #ff6b5d;
  --violet: #7c4dff;
  --blue: #2471ff;
  --mint: #2dd4bf;
  --line: rgba(17, 16, 21, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(27, 12, 31, 0.15);
  --header-h: 84px;
  --ease: cubic-bezier(.2,.85,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--pink);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(239, 12, 97, .5);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.cursor-ring.is-hovering {
  width: 68px;
  height: 68px;
  border-color: transparent;
  background: rgba(239, 12, 97, .12);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: transform 1s var(--ease), visibility 1s;
}

.loader.is-hidden {
  transform: translateY(-110%);
  visibility: hidden;
}

.loader-inner {
  width: min(320px, 70vw);
  text-align: center;
  color: var(--white);
}

.loader-mark {
  width: 86px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(239, 12, 97, .4));
  animation: loaderFloat 1.6s ease-in-out infinite;
}

.loader-line {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--violet));
  transform-origin: left;
  animation: loaderProgress 1.25s var(--ease) forwards;
}

.loader p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes loaderFloat {
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes loaderProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.section-pad {
  padding-left: clamp(22px, 5vw, 78px);
  padding-right: clamp(22px, 5vw, 78px);
}

.site-header {
  position: absolute;
  top: 16px;
  left: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  z-index: 1000;
  height: 68px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 40px rgba(31, 21, 34, .08);
  backdrop-filter: blur(20px) saturate(160%);
  transition: transform .45s var(--ease), background .35s ease, border-color .35s ease;
}

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

.site-header.on-dark {
  color: var(--white);
  background: rgba(16,15,19,.72);
  border-color: rgba(255,255,255,.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy,
.footer-brand span {
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 13px;
  letter-spacing: -.02em;
}

.brand-copy small,
.footer-brand small {
  margin-top: 5px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}

.pill-button {
  justify-self: end;
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

.on-dark .pill-button {
  color: var(--ink);
  background: var(--white);
}

.pill-button i,
.primary-button i {
  font-style: normal;
  transition: transform .35s var(--ease);
}

.pill-button:hover i,
.primary-button:hover i {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  padding: 13px 11px;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  margin: 6px 0;
  background: var(--white);
  transition: transform .35s var(--ease);
}

.on-dark .menu-toggle {
  background: var(--white);
}

.on-dark .menu-toggle span {
  background: var(--ink);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 130px 28px 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(239,12,97,.42), transparent 35%),
    var(--ink);
  transform: translateY(-105%);
  transition: transform .75s var(--ease);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  align-content: center;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: clamp(34px, 9vw, 64px);
  font-weight: 650;
  letter-spacing: -.05em;
}

.mobile-menu nav span {
  font-size: 12px;
  letter-spacing: .12em;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 126px;
  padding-bottom: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 45%, rgba(239,12,97,.08), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(124,77,255,.08), transparent 32%),
    var(--paper);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .16;
  pointer-events: none;
  will-change: transform;
}

.glow-one {
  width: 420px;
  height: 420px;
  top: 20%;
  right: 2%;
  background: var(--pink);
}

.glow-two {
  width: 320px;
  height: 320px;
  left: -5%;
  bottom: 3%;
  background: var(--violet);
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(239,12,97,.1);
  animation: statusPulse 1.9s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 12px rgba(239,12,97,0); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  padding: 50px 0 40px;
}

.hero-title {
  max-width: 910px;
  margin: 0;
  font-size: clamp(58px, 8vw, 136px);
  line-height: .85;
  letter-spacing: -.072em;
  font-weight: 760;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: .07em;
}

.title-line > span {
  display: block;
  transform: translateY(115%);
  animation: titleIn 1.1s var(--ease) forwards;
}

.title-line:nth-child(2) > span { animation-delay: .12s; }
.title-line:nth-child(3) > span { animation-delay: .24s; }

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

.accent-line > span {
  color: transparent;
  background: linear-gradient(100deg, var(--pink), var(--coral) 43%, var(--violet) 94%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.58;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.primary-button {
  min-height: 58px;
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  box-shadow: 0 16px 32px rgba(17,16,21,.16);
}

.primary-button:hover {
  box-shadow: 0 22px 46px rgba(17,16,21,.23);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.text-button:hover .play-icon {
  color: var(--white);
  background: var(--pink);
  transform: scale(1.08);
}

.orbit-stage {
  position: relative;
  min-height: min(62vw, 690px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 1100px;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(17,16,21,.12);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.ring-a {
  width: 76%;
  aspect-ratio: 1;
  animation: ringRotate 18s linear infinite;
}

.ring-b {
  width: 57%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: ringRotateReverse 26s linear infinite;
}

.ring-c {
  width: 36%;
  aspect-ratio: 1;
  border-color: rgba(239,12,97,.25);
  box-shadow: 0 0 70px rgba(239,12,97,.12);
}

.ring-a::before,
.ring-b::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  left: -5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 24px rgba(239,12,97,.6);
}

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

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

.orbit-core {
  position: relative;
  z-index: 3;
  width: 29%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  box-shadow: 0 34px 100px rgba(61, 20, 61, .16);
  backdrop-filter: blur(15px);
  animation: coreFloat 5s ease-in-out infinite;
}

.core-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, transparent, rgba(239,12,97,.21), transparent 42%, rgba(124,77,255,.18), transparent 80%);
  filter: blur(14px);
  animation: ringRotate 8s linear infinite;
}

.orbit-core img {
  position: relative;
  z-index: 2;
  width: 68%;
  filter: drop-shadow(0 18px 25px rgba(239,12,97,.16));
}

@keyframes coreFloat {
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.orbit-node {
  position: absolute;
  z-index: 4;
  min-width: 92px;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .4s var(--ease);
}

.orbit-node span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 15px 38px rgba(17,16,21,.18);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .05em;
  backdrop-filter: blur(10px);
  transition: border-radius .35s var(--ease), transform .35s var(--ease), background .35s ease;
}

.orbit-node small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.orbit-node:hover span {
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-6px) rotate(6deg);
}

.node-1 { top: 12%; left: 16%; animation: nodeFloat 5s ease-in-out infinite; }
.node-2 { top: 13%; right: 10%; animation: nodeFloat 5.5s ease-in-out .4s infinite; }
.node-3 { top: 52%; right: 0; animation: nodeFloat 5.2s ease-in-out .8s infinite; }
.node-4 { bottom: 5%; right: 22%; animation: nodeFloat 5.8s ease-in-out 1.1s infinite; }
.node-5 { bottom: 12%; left: 7%; animation: nodeFloat 5.4s ease-in-out .2s infinite; }

@keyframes nodeFloat {
  50% { transform: translateY(-10px); }
}

.orbit-tooltip {
  position: absolute;
  bottom: 1%;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-line {
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-line i {
  display: block;
  width: 15%;
  height: 100%;
  background: var(--pink);
  animation: scrollLine 2.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateX(-100%); }
  to { transform: translateX(760%); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .2s; }
.delay-4 { transition-delay: .3s; }

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--pink);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  padding: 17px 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 760;
  letter-spacing: -.03em;
}

.ticker-track i {
  opacity: .55;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.story {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
  overflow: clip;
}

.story::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -280px;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,12,97,.18), transparent 68%);
  filter: blur(16px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  opacity: .6;
}

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

.story-sticky {
  position: sticky;
  top: 150px;
  align-self: start;
}

.micro-label {
  margin: 0 0 40px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: .02em;
}

.scrub-heading {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.16);
  font-size: clamp(44px, 5.5vw, 90px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 690;
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.story-cards {
  display: grid;
  gap: 22px;
}

.story-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.reveal-card {
  opacity: 0;
  transform: translateY(60px) scale(.97);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

.story-card span {
  margin-bottom: auto;
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 580px;
  margin: 80px 0 18px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.story-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.65;
}

.ecosystem {
  padding-top: 150px;
  padding-bottom: 170px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: end;
  gap: 50px;
  margin-bottom: 76px;
}

.display-heading {
  margin: 0;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 720;
}

.display-heading em,
.connect-title em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-intro {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.58;
  letter-spacing: -.02em;
}

.dark-section .section-intro {
  color: rgba(255,255,255,.58);
}

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

.brand-card {
  position: relative;
  min-width: 0;
  min-height: 590px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 36px;
  padding: 30px;
  color: var(--white);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: box-shadow .45s var(--ease);
}

.brand-card:hover {
  box-shadow: 0 45px 100px rgba(27,12,31,.22);
}

.brand-card:nth-child(1),
.brand-card:nth-child(2) {
  grid-column: span 6;
}

.brand-card:nth-child(3),
.brand-card:nth-child(4),
.brand-card:nth-child(5) {
  grid-column: span 4;
  min-height: 520px;
}

.brand-consultancy {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.32), transparent 27%),
    linear-gradient(145deg, #7a44ef, #ec3e91 76%);
}

.brand-matrimonial {
  background:
    radial-gradient(circle at 25% 10%, rgba(255,255,255,.28), transparent 25%),
    linear-gradient(145deg, #ff765e, #ef0c61 76%);
}

.brand-voice {
  background: linear-gradient(160deg, #0f1429, #3040c7 70%, #6c49ff);
}

.brand-alormichil {
  background: linear-gradient(145deg, #00568f, #00a3c7 70%, #27d2b7);
}

.brand-cloud {
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #e6eef7);
}

.brand-card-top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateZ(38px);
}

.brand-index,
.brand-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.brand-cloud .brand-index,
.brand-cloud .brand-arrow {
  border-color: rgba(17,16,21,.16);
}

.brand-arrow {
  font-size: 17px;
  transition: transform .4s var(--ease), background .4s ease;
}

.brand-card:hover .brand-arrow {
  color: var(--ink);
  background: var(--white);
  transform: rotate(45deg);
}

.brand-cloud:hover .brand-arrow {
  color: var(--white);
  background: var(--ink);
}

.brand-card-copy {
  position: relative;
  min-width: 0;
  z-index: 4;
  transform: translateZ(54px);
}

.brand-category {
  display: block;
  margin-bottom: 14px;
  opacity: .68;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand-card h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -.065em;
  overflow-wrap: anywhere;
}

.brand-card:nth-child(n+3) h3 {
  font-size: clamp(40px, 4vw, 62px);
}

.brand-card p {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.55;
}

.brand-cloud p {
  color: rgba(17,16,21,.6);
}

.brand-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(20px);
}

.art-consultancy i {
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.art-consultancy i:nth-child(1) { width: 340px; height: 340px; right: -30px; top: 70px; }
.art-consultancy i:nth-child(2) { width: 230px; height: 230px; right: 25px; top: 125px; }
.art-consultancy i:nth-child(3) { width: 110px; height: 110px; right: 85px; top: 185px; background: rgba(255,255,255,.14); box-shadow: 0 0 80px rgba(255,255,255,.2); }

.art-matrimonial i {
  position: absolute;
  width: 280px;
  height: 380px;
  top: 54px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50% 50% 58% 44%;
}

.art-matrimonial i:first-child { left: 120px; transform: rotate(-28deg); }
.art-matrimonial i:last-child { right: 70px; transform: rotate(29deg); }

.art-voice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  top: -80px;
}

.wave {
  width: 24px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(var(--pink-2), rgba(255,255,255,.2));
  animation: wavePulse 1.5s ease-in-out infinite;
}

.wave:nth-child(2) { height: 260px; animation-delay: .15s; }
.wave:nth-child(3) { height: 120px; animation-delay: .3s; }

@keyframes wavePulse {
  50% { transform: scaleY(.55); opacity: .5; }
}

.art-alormichil .sun {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ff8c42;
  transform: translateX(-50%);
  box-shadow: 0 0 0 22px rgba(255,140,66,.1), 0 0 0 44px rgba(255,140,66,.08);
}

.art-alormichil .person {
  position: absolute;
  top: 175px;
  left: 50%;
  width: 84px;
  height: 170px;
  border-radius: 42px 42px 28px 28px;
  background: rgba(255,255,255,.9);
  transform: translateX(-50%);
}

.art-alormichil .person::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  left: 5px;
  top: -55px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
}

.art-cloud .cloud-shape {
  position: absolute;
  width: 280px;
  height: 120px;
  top: 125px;
  left: 50%;
  border-radius: 80px;
  background: linear-gradient(145deg, #00a4b9, #0670aa);
  transform: translateX(-50%);
  box-shadow: 0 30px 70px rgba(0,119,163,.22);
}

.art-cloud .cloud-shape::before,
.art-cloud .cloud-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.art-cloud .cloud-shape::before { width: 130px; height: 130px; left: 42px; top: -62px; }
.art-cloud .cloud-shape::after { width: 105px; height: 105px; right: 42px; top: -45px; }

.art-cloud .spark {
  position: absolute;
  top: 95px;
  left: 50%;
  z-index: 2;
  color: #ffd54f;
  font-size: 82px;
  transform: translateX(-50%);
  animation: sparkSpin 5s linear infinite;
}

@keyframes sparkSpin {
  50% { transform: translateX(-50%) rotate(20deg) scale(1.1); }
}

.pulse-section {
  min-height: 220vh;
  background:
    radial-gradient(circle at 50% 25%, rgba(124,77,255,.22), transparent 32%),
    var(--ink);
}

.pulse-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
}

.pulse-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 90px;
}

.pulse-copy .section-intro {
  max-width: 540px;
  margin-top: 30px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.impact-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.impact-stats strong {
  display: block;
  font-size: clamp(38px, 4vw, 66px);
  line-height: 1;
  letter-spacing: -.05em;
}

.impact-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.4;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.phone {
  position: absolute;
  width: clamp(220px, 21vw, 315px);
  aspect-ratio: 9 / 18.8;
  overflow: hidden;
  border: 8px solid #050506;
  border-radius: 42px;
  background: #101014;
  box-shadow: 0 50px 120px rgba(0,0,0,.48);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-centre { z-index: 3; transform: translateY(0) scale(1); }
.phone-left { z-index: 2; transform: translate(-62%, 10%) rotateY(18deg) rotateZ(-6deg) scale(.87); }
.phone-right { z-index: 1; transform: translate(62%, -2%) rotateY(-18deg) rotateZ(6deg) scale(.87); }

.phone-bar {
  position: absolute;
  z-index: 6;
  top: 11px;
  left: 50%;
  width: 35%;
  height: 22px;
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
}

.reel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 22px 24px;
  color: var(--white);
}

.reel-one {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 20%),
    linear-gradient(165deg, #7c4dff, #ee0b62 62%, #ff7a59);
}

.reel-two {
  background:
    radial-gradient(circle at 50% 38%, rgba(239,12,97,.16), transparent 30%),
    #f4f1ed;
  color: var(--ink);
}

.reel-three {
  background:
    radial-gradient(circle at 50% 45%, rgba(46,91,255,.45), transparent 28%),
    linear-gradient(160deg, #101020, #1b215f 70%, #8c34e8);
}

.reel-tag {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reel-two .reel-tag {
  border-color: rgba(17,16,21,.12);
  background: rgba(255,255,255,.7);
}

.reel-quote {
  margin: auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.reel-quote.small {
  font-size: clamp(24px, 2.3vw, 36px);
}

.reel-two img {
  width: 42%;
  margin: 44% auto 0;
  filter: drop-shadow(0 15px 30px rgba(239,12,97,.15));
  animation: coreFloat 4s ease-in-out infinite;
}

.reel-big {
  margin-top: auto;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .84;
  letter-spacing: -.07em;
  font-weight: 850;
}

.reel-meta {
  display: grid;
  gap: 5px;
}

.reel-meta b {
  font-size: 12px;
}

.reel-meta small {
  opacity: .62;
  font-size: 9px;
}

.sound-orb {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(80,75,255,.35), inset 0 0 50px rgba(255,255,255,.06);
}

.sound-orb i {
  width: 8px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(var(--pink), #8f76ff);
  animation: soundBars 1.2s ease-in-out infinite;
}

.sound-orb i:nth-child(2) { height: 105px; animation-delay: .1s; }
.sound-orb i:nth-child(3) { height: 130px; animation-delay: .2s; }
.sound-orb i:nth-child(4) { height: 92px; animation-delay: .3s; }
.sound-orb i:nth-child(5) { height: 58px; animation-delay: .4s; }

@keyframes soundBars {
  50% { transform: scaleY(.4); opacity: .5; }
}

.principles {
  position: relative;
  padding-top: 150px;
  padding-bottom: 180px;
  overflow: hidden;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.principle > span {
  margin-bottom: auto;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
}

.principle h3 {
  margin: 80px 0 15px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}

.principle p {
  max-width: 380px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.kinetic-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  overflow: hidden;
  color: rgba(17,16,21,.06);
  white-space: nowrap;
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.08em;
}

.kinetic-line div {
  width: max-content;
  animation: marquee 30s linear infinite;
}

.leadership {
  padding-top: 150px;
  padding-bottom: 160px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.leader-card {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--ink);
  overflow: hidden;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(239,12,97,.12), transparent 68%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease);
}

.leader-card:hover::after {
  transform: translateX(110%);
}

.leader-avatar {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--violet));
  font-size: 17px;
  font-weight: 850;
  letter-spacing: .04em;
  box-shadow: 0 16px 40px rgba(239,12,97,.2);
}

.leader-card:nth-child(2n) .leader-avatar {
  background: linear-gradient(145deg, #f25c54, #ffb15a);
}

.leader-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -.03em;
}

.leader-card p {
  position: relative;
  z-index: 2;
  margin: 7px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.leader-card > span {
  position: relative;
  z-index: 2;
  align-self: start;
  color: rgba(255,255,255,.25);
  font-size: 10px;
}

.connect {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 80%, rgba(124,77,255,.08), transparent 35%),
    var(--paper);
}

.connect-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.connect-visual img {
  position: relative;
  z-index: 3;
  width: 37%;
  filter: drop-shadow(0 40px 60px rgba(239,12,97,.18));
  animation: coreFloat 4s ease-in-out infinite;
}

.connect-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.connect-ring.ring-1 {
  width: 72%;
  aspect-ratio: 1;
  animation: ringRotate 22s linear infinite;
}

.connect-ring.ring-2 {
  width: 45%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(239,12,97,.32);
  animation: ringRotateReverse 18s linear infinite;
}

.connect-ring::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: -9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 40px rgba(239,12,97,.5);
}

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

.connect-title {
  margin: 0;
  font-size: clamp(54px, 7.3vw, 118px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 720;
}

.connect-copy > p {
  max-width: 570px;
  margin: 32px 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.footer {
  padding: 44px clamp(22px, 5vw, 78px) 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: grid;
  align-items: center;
}

.footer-top {
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

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

.back-top {
  justify-self: end;
  font-size: 12px;
  font-weight: 750;
}

.footer-bottom {
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 24px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  letter-spacing: .04em;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom a {
  transition: color .25s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 40%, rgba(239,12,97,.25), transparent 32%),
    rgba(10,9,12,.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}

.showreel-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.showreel-content {
  width: min(720px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  text-align: center;
}

.showreel-count {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .18em;
}

.showreel-mark {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin: 50px 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(239,12,97,.22);
  animation: coreFloat 4s ease-in-out infinite;
}

.showreel-mark img {
  width: 68%;
}

.showreel-content p {
  margin: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 720;
}

.showreel-progress {
  width: 100%;
  height: 2px;
  margin-top: 60px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.showreel-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
}

.showreel-modal.is-open .showreel-progress i {
  animation: showreelProgress 8s linear forwards;
}

@keyframes showreelProgress {
  to { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  .section-heading-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .site-header > .pill-button {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .orbit-stage {
    min-height: 620px;
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-sticky {
    position: relative;
    top: 0;
  }

  .brand-card:nth-child(1),
  .brand-card:nth-child(2),
  .brand-card:nth-child(3),
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: span 6;
  }

  .brand-card:nth-child(5) {
    grid-column: 4 / span 6;
  }

  .pulse-sticky {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 110px;
  }

  .pulse-copy {
    min-height: 70svh;
  }

  .phone-stage {
    min-height: 760px;
  }

  .connect {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .connect-visual {
    min-height: 540px;
  }
}

@media (max-width: 900px) {
  .brand-card:nth-child(1),
  .brand-card:nth-child(2),
  .brand-card:nth-child(3),
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: span 12;
  }

  .brand-card:nth-child(5) {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .noise,
  .cursor {
    display: none;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 60px;
    border-radius: 20px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 24px;
  }

  .hero-eyebrow {
    max-width: 310px;
    line-height: 1.45;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-title {
    font-size: clamp(53px, 17vw, 78px);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 16px;
  }

  .primary-button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 12px;
  }

  .text-button {
    min-height: 52px;
    font-size: 12px;
  }

  .orbit-stage {
    min-height: 500px;
    margin-top: 18px;
  }

  .orbit-core {
    width: 35%;
  }

  .ring-a { width: 84%; }
  .ring-b { width: 64%; }
  .ring-c { width: 43%; }

  .orbit-node span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .orbit-node small {
    display: none;
  }

  .node-1 { top: 13%; left: 4%; }
  .node-2 { top: 13%; right: 1%; }
  .node-3 { top: 53%; right: -3%; }
  .node-4 { bottom: 8%; right: 13%; }
  .node-5 { bottom: 11%; left: 0; }

  .orbit-tooltip {
    bottom: 0;
  }

  .hero-bottom {
    grid-template-columns: auto 1fr;
  }

  .hero-bottom span:last-child {
    display: none;
  }

  .ticker-track {
    padding: 14px 0;
  }

  .story,
  .ecosystem,
  .principles,
  .leadership {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .section-kicker {
    margin-bottom: 28px;
  }

  .story-card {
    min-height: 340px;
    border-radius: 26px;
  }

  .story-card h3 {
    margin-top: 70px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 48px;
  }

  .display-heading {
    font-size: clamp(48px, 14.8vw, 72px);
  }

  .brand-grid {
    gap: 16px;
  }

  .brand-card:nth-child(1),
  .brand-card:nth-child(2),
  .brand-card:nth-child(3),
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: span 12;
    min-height: 500px;
  }

  .brand-card {
    border-radius: 28px;
    padding: 24px;
  }

  .brand-card h3,
  .brand-card:nth-child(n+3) h3 {
    font-size: 48px;
  }

  .pulse-section {
    min-height: auto;
  }

  .pulse-sticky {
    position: relative;
  }

  .pulse-copy {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .impact-stats {
    gap: 10px;
  }

  .impact-stats span {
    font-size: 9px;
  }

  .phone-stage {
    min-height: 590px;
    overflow: hidden;
  }

  .phone {
    width: 205px;
    border-width: 6px;
    border-radius: 33px;
  }

  .phone-left { transform: translate(-48%, 8%) rotateY(14deg) rotateZ(-7deg) scale(.78); }
  .phone-right { transform: translate(48%, 0) rotateY(-14deg) rotateZ(7deg) scale(.78); }

  .principle-row {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 250px;
  }

  .kinetic-line {
    font-size: 108px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    min-height: 142px;
    padding: 22px;
  }

  .leader-avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .connect {
    min-height: auto;
    padding-top: 95px;
    padding-bottom: 110px;
  }

  .connect-visual {
    min-height: 400px;
  }

  .connect-visual img {
    width: 40%;
  }

  .connect-title {
    font-size: clamp(50px, 15vw, 74px);
  }

  .connect-copy > p {
    font-size: 16px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 22px;
  }

  .back-top {
    justify-self: start;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .loader {
    display: none;
  }

  .reveal-up,
  .reveal-card {
    opacity: 1;
    transform: none;
  }
}

/* CMS-managed extensions */
.site-header,
.hero-grid,
.hero-bottom,
.story-grid,
.section-heading-row,
.brand-grid,
.pulse-sticky,
.principle-row,
.leadership-grid,
.events-section,
.connect,
.footer-top,
.footer-bottom {
  max-width: var(--cms-max-width, 1600px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  -webkit-backdrop-filter: blur(var(--cms-header-blur, 22px));
  backdrop-filter: blur(var(--cms-header-blur, 22px));
}

.story-card,
.brand-card,
.principle,
.leader-card,
.event-card {
  border-radius: var(--cms-card-radius, 34px);
}

.brand-card {
  display: block;
}

.brand-art-image {
  overflow: hidden;
  border-radius: calc(var(--cms-card-radius, 34px) - 10px);
}

.brand-art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-avatar {
  overflow: hidden;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-grid > a {
  display: block;
}

.leadership-grid > a .leader-card {
  height: 100%;
}

.events-section {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

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

.event-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 25px 70px rgba(17, 16, 21, .08);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(17, 16, 21, .14);
}

.event-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 12, 97, .15), rgba(124, 77, 255, .24));
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.event-card:hover .event-media img {
  transform: scale(1.06);
}

.event-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.5), transparent 20%),
    linear-gradient(145deg, var(--pink), var(--violet));
}

.event-placeholder span {
  font-size: 13px;
  letter-spacing: .18em;
}

.event-placeholder i {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  font-size: 30px;
  font-style: normal;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  animation: orbitSpin 12s linear infinite;
}

.event-copy {
  padding: 28px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin: 28px 0 12px;
  font-size: clamp(27px, 2.6vw, 42px);
  letter-spacing: -.05em;
  line-height: .98;
}

.event-copy p {
  min-height: 66px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.event-copy b {
  display: inline-block;
  margin-top: 18px;
  color: var(--pink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-details a {
  border-bottom: 1px solid currentColor;
}

.contact-form {
  width: min(720px, 100%);
  margin-top: 36px;
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 16, 21, .16);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.74);
  outline: none;
  font: inherit;
  font-size: 15px;
  text-transform: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(239,12,97,.09);
}

.contact-form button[disabled] {
  opacity: .55;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--pink);
  font-size: 14px;
}

@media (max-width: 980px) {
  .event-card { grid-column: span 6; }
}

@media (max-width: 680px) {
  .event-grid { grid-template-columns: 1fr; }
  .event-card { grid-column: 1; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-details { display: grid; }
}


/* FINAL EXPERIENCE UPGRADE */
:root { --page-gutter: clamp(22px, 4vw, 72px); }

/* Straight, vertically centered brand ticker */
.ticker {
  min-height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: none !important;
}
.ticker-track {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0;
  line-height: 1;
  transform: none;
}
.ticker-track span,
.ticker-track i { display: inline-flex; align-items: center; }

/* Smooth story heading fill */
.scrub-heading {
  --scrub-fill: 0%;
  background-image: linear-gradient(90deg, #fff 0 var(--scrub-fill), rgba(255,255,255,.19) var(--scrub-fill) 100%) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  will-change: background-image;
}

/* Evenly distributed, interactive orbit logos */
.orbit-stage { transform-style: preserve-3d; }
.orbit-nodes { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.orbit-node,
.orbit-node.node-1,
.orbit-node.node-2,
.orbit-node.node-3,
.orbit-node.node-4,
.orbit-node.node-5,
.orbit-node.node-6,
.orbit-node.node-7,
.orbit-node.node-8 {
  --orbit-radius: clamp(185px, 19vw, 285px);
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 110px;
  margin: -48px 0 0 -55px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
  pointer-events: auto;
  animation: orbitNodeTravel var(--orbit-duration, 28s) linear infinite;
}
.orbit-node-media {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(26,16,33,.14);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.orbit-node-media img { width: 100%; height: 100%; object-fit: contain; padding: 9px; }
.orbit-node-media b { font-size: 15px; letter-spacing: -.02em; }
.orbit-node small {
  display: block;
  max-width: 110px;
  margin: auto;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.orbit-node:hover .orbit-node-media,
.orbit-node:focus-visible .orbit-node-media { transform: scale(1.1); box-shadow: 0 18px 44px rgba(239,12,97,.2); }
.orbit-stage:hover .orbit-node { animation-play-state: paused; }
@keyframes orbitNodeTravel {
  from { transform: rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) rotate(var(--orbit-angle-neg)); }
  to { transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(var(--orbit-radius)) rotate(calc(var(--orbit-angle-neg) - 360deg)); }
}

/* Media-first ecosystem cards */
.brand-grid { align-items: stretch; }
.brand-card {
  position: relative;
  display: grid !important;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  color: #fff !important;
  background: #1b1720;
}
.brand-card:nth-child(-n+2) { min-height: 470px; aspect-ratio: 16 / 10; }
.brand-card:nth-child(n+3) { aspect-ratio: 4 / 5; }
.brand-art { position: absolute !important; inset: 0 !important; z-index: -3; width: 100% !important; height: 100% !important; }
.brand-art-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.brand-card:hover .brand-art-image img { transform: scale(1.055); }
.brand-card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13,10,17,.08) 14%, rgba(13,10,17,.1) 38%, rgba(13,10,17,.9) 100%);
}
.brand-card-top { z-index: 2; align-self: start; }
.brand-card-copy { z-index: 2; align-self: end; max-width: 650px; }
.brand-card-copy h3,
.brand-card-copy p,
.brand-card .brand-category,
.brand-card .brand-index,
.brand-card .brand-arrow { color: #fff !important; }
.brand-card-copy p { opacity: .8; }
.brand-card:not(:has(.brand-art-image)) .brand-art { opacity: .88; }

/* Combined digital exposure report */
.pulse-section { min-height: auto !important; padding-top: clamp(88px, 10vw, 160px); padding-bottom: clamp(88px, 10vw, 160px); }
.social-exposure-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 100px);
}
.social-exposure-head .section-intro { max-width: 650px; }
.overall-report {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--cms-card-radius);
  background: rgba(255,255,255,.055);
  box-shadow: 0 34px 100px rgba(0,0,0,.16);
}
.overall-report-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(239,12,97,.72), transparent 31%),
    radial-gradient(circle at 75% 65%, rgba(38,211,178,.42), transparent 34%),
    linear-gradient(145deg, rgba(97,70,255,.72), rgba(17,16,21,.96) 68%);
}
.overall-report-visual > img { width: 100%; height: 100%; object-fit: cover; }
.report-visual-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 8px;
  padding: clamp(28px, 4vw, 55px);
  background: linear-gradient(transparent, rgba(17,16,21,.88));
}
.report-visual-overlay small,
.report-overline {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.report-visual-overlay strong { max-width: 540px; font-size: clamp(31px, 4vw, 62px); line-height: .95; letter-spacing: -.055em; }
.report-visual-graphic { position: absolute; inset: 0; }
.report-visual-graphic::before,
.report-visual-graphic::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.report-visual-graphic::before { width: 74%; aspect-ratio: 1; top: 8%; left: 4%; }
.report-visual-graphic::after { width: 48%; aspect-ratio: 1; top: 24%; left: 28%; border-style: dashed; }
.report-visual-graphic span {
  position: absolute;
  bottom: 26%;
  width: 10%;
  min-width: 34px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(to top, rgba(255,255,255,.16), rgba(255,255,255,.85));
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transform-origin: bottom;
  animation: reportBar 3.8s ease-in-out infinite alternate;
}
.report-visual-graphic span:nth-child(1) { left: 15%; height: 19%; }
.report-visual-graphic span:nth-child(2) { left: 31%; height: 37%; animation-delay: -.8s; }
.report-visual-graphic span:nth-child(3) { left: 47%; height: 54%; animation-delay: -1.6s; }
.report-visual-graphic span:nth-child(4) { left: 63%; height: 70%; animation-delay: -2.4s; }
.report-visual-graphic i {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 19%;
  right: 18%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 14px rgba(255,255,255,.09), 0 0 50px rgba(255,255,255,.5);
}
@keyframes reportBar { to { transform: scaleY(.78); opacity: .72; } }
.overall-report-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 58px);
  padding: clamp(32px, 5vw, 76px);
}
.overall-report-content h3 { margin: 14px 0 22px; font-size: clamp(38px, 4.8vw, 72px); line-height: .93; letter-spacing: -.065em; }
.overall-report-content p { max-width: 650px; margin: 0; color: rgba(255,255,255,.62); font-size: clamp(15px, 1.3vw, 19px); line-height: 1.65; }
.report-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.report-metric { min-height: 122px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); padding: 20px; }
.report-metric strong { font-size: clamp(27px, 3vw, 45px); line-height: 1; letter-spacing: -.05em; }
.report-metric span { color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.report-highlights { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.report-highlights li { position: relative; border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0 0 23px; color: rgba(255,255,255,.7); line-height: 1.5; }
.report-highlights li::before { content: "✦"; position: absolute; left: 0; color: var(--pink); }
.report-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.report-footer small { max-width: 350px; color: rgba(255,255,255,.38); line-height: 1.5; text-align: right; }
.report-link { flex: 0 0 auto; border-bottom: 1px solid currentColor; padding-bottom: 5px; color: #fff; font-size: 11px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }

/* Improved working method */
.principles-heading { margin-bottom: 48px; }
.principle-row { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.principle {
  min-height: 390px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,16,21,.1) !important;
  border-radius: var(--cms-card-radius) !important;
  padding: clamp(25px, 3vw, 45px) !important;
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(245,241,248,.74)) !important;
  box-shadow: 0 18px 50px rgba(23,17,29,.045);
  transition: transform .35s ease, box-shadow .35s ease;
}
.principle:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(23,17,29,.09); }
.principle-top { display: flex; align-items: center; justify-content: space-between; }
.principle-top span { color: var(--ink-soft); font-size: 11px; letter-spacing: .1em; }
.principle-top i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-style: normal; }
.principle h3 { margin: 0 0 16px; font-size: clamp(34px, 4vw, 58px); line-height: .95; letter-spacing: -.06em; }
.principle p { max-width: 390px; margin: 0; color: var(--ink-soft); line-height: 1.65; }

/* News, publications and article pages */
.news-section { background: var(--paper); }
.section-text-link { display: inline-flex; margin-top: 24px; border-bottom: 1px solid currentColor; padding-bottom: 5px; color: var(--ink); font-size: 12px; font-weight: 760; text-transform: uppercase; letter-spacing: .09em; }
.news-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.news-card {
  grid-column: span 4;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17,16,21,.1);
  border-radius: var(--cms-card-radius);
  color: var(--ink);
  background: rgba(255,255,255,.8);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.news-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(23,17,29,.1); }
.news-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e9e3ed; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.news-card:hover .news-media img { transform: scale(1.045); }
.news-placeholder { width: 100%; height: 100%; display: flex; align-items: flex-start; justify-content: space-between; padding: 24px; color: #fff; background: linear-gradient(145deg, var(--pink), var(--violet)); }
.news-placeholder i { align-self: center; font-size: clamp(46px, 7vw, 92px); font-style: normal; font-weight: 850; letter-spacing: -.09em; opacity: .8; }
.news-copy { display: flex; flex-direction: column; min-height: 320px; padding: clamp(24px, 2.8vw, 38px); }
.news-meta, .news-byline { display: flex; justify-content: space-between; gap: 15px; color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.news-copy h3 { margin: 26px 0 14px; font-size: clamp(27px, 2.8vw, 42px); line-height: 1; letter-spacing: -.05em; }
.news-copy p { margin: 0 0 32px; color: var(--ink-soft); line-height: 1.65; }
.news-byline { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(17,16,21,.09); }
.news-byline b { color: var(--pink); }
.inner-page { padding-top: 110px; }
.page-hero { min-height: 62vh; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.page-hero h1 { margin: 28px 0 0; font-size: clamp(64px, 10vw, 158px); line-height: .82; letter-spacing: -.08em; }
.page-hero > p { max-width: 530px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 23px); line-height: 1.6; }
.news-archive { padding-top: 0; }
.article-shell, .legal-shell { max-width: 1420px; margin: auto; }
.article-back { display: inline-flex; margin-bottom: 54px; color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.article-header { max-width: 1100px; margin-bottom: 62px; }
.article-header h1, .legal-header h1 { margin: 26px 0; font-size: clamp(54px, 8vw, 122px); line-height: .87; letter-spacing: -.075em; }
.article-header > p, .legal-header > p { max-width: 810px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 27px); line-height: 1.55; }
.article-author { margin-top: 26px; font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .1em; }
.article-cover { aspect-ratio: 16 / 9; margin: 0 0 70px; overflow: hidden; border-radius: var(--cms-card-radius); background: #e9e3ed; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: clamp(55px, 9vw, 140px); max-width: 1120px; margin: auto; }
.article-content { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.85; }
.article-content h2, .legal-content h2 { margin: 2.2em 0 .7em; font-size: clamp(30px, 4vw, 55px); line-height: 1; letter-spacing: -.05em; }
.article-content h3, .legal-content h3 { margin: 2em 0 .6em; font-size: clamp(24px, 3vw, 38px); letter-spacing: -.04em; }
.article-content blockquote { margin: 2em 0; border-left: 4px solid var(--pink); padding-left: 26px; font-size: 1.35em; line-height: 1.45; }
.article-layout aside { height: fit-content; display: grid; gap: 12px; position: sticky; top: 120px; border-top: 1px solid rgba(17,16,21,.14); padding-top: 20px; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.article-layout aside strong { color: var(--ink); }
.related-news { padding-top: 80px; }

/* Larger, clean leadership portraits */
.leadership-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 30px); }
.leader-link { display: block; color: inherit; text-decoration: none; }
.leader-card {
  display: grid;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.leader-avatar {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--cms-card-radius) !important;
  background: linear-gradient(145deg, rgba(239,12,97,.58), rgba(97,70,255,.42)) !important;
}
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-avatar span { width: 100%; height: 100%; display: grid; place-items: center; font-size: clamp(56px, 7vw, 104px); font-weight: 800; letter-spacing: -.08em; }
.leader-copy { display: grid; grid-template-columns: 36px 1fr; gap: 8px 16px; padding: 21px 4px 12px; }
.leader-copy span { grid-row: span 2; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .1em; }
.leader-copy h3 { margin: 0; font-size: clamp(23px, 2.4vw, 37px); line-height: 1; letter-spacing: -.045em; }
.leader-copy p { margin: 5px 0 0; color: rgba(255,255,255,.55); }

/* Expanded footer */
.footer { padding: 0 var(--page-gutter); }
.footer-main { display: grid !important; grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(140px, .6fr)); gap: clamp(35px, 6vw, 100px); padding: clamp(70px, 9vw, 130px) 0 60px; }
.footer-intro { max-width: 430px; }
.footer-intro > p { margin: 26px 0 16px; color: rgba(255,255,255,.68); font-size: clamp(19px, 2vw, 28px); line-height: 1.35; }
.footer-intro > span { color: rgba(255,255,255,.42); font-size: 12px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-column h3 { margin: 0 0 12px; color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a { color: rgba(255,255,255,.78); transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { display: grid !important; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; border-top: 1px solid rgba(255,255,255,.12); padding: 28px 0 36px; color: rgba(255,255,255,.44); font-size: 11px; }
.footer-bottom .back-top { justify-self: end; }

/* Legal pages */
.legal-page { background: var(--paper); }
.legal-shell { max-width: 1120px; }
.legal-header { max-width: 900px; margin-bottom: 70px; }
.legal-header > span, .legal-header time { display: block; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.legal-header time { margin-top: 24px; }
.legal-content { max-width: 780px; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.8; }

@media (max-width: 1080px) {
  .orbit-node { --orbit-radius: clamp(170px, 28vw, 250px); }
  .overall-report { grid-template-columns: 1fr; }
  .overall-report-visual { min-height: 520px; }
  .principle-row, .leadership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-card { grid-column: span 6; }
  .footer-main { grid-template-columns: minmax(260px, 1.4fr) repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .orbit-node { --orbit-radius: min(40vw, 168px); width: 82px; margin-left: -41px; }
  .orbit-node-media { width: 54px; height: 54px; }
  .orbit-node small { max-width: 80px; font-size: 8px; }
  .brand-card, .brand-card:nth-child(-n+2), .brand-card:nth-child(n+3) { min-height: 460px; aspect-ratio: 4 / 5; }
  .social-exposure-head, .page-hero { grid-template-columns: 1fr; align-items: start; }
  .overall-report { grid-template-columns: 1fr; }
  .overall-report-visual { min-height: 430px; }
  .report-metrics { grid-template-columns: 1fr; }
  .report-footer { align-items: flex-start; flex-direction: column; }
  .report-footer small { text-align: left; }
  .news-grid { grid-template-columns: 1fr; }
  .principle-row, .leadership-grid { grid-template-columns: 1fr; }
  .principle { min-height: 330px; }
  .page-hero { min-height: auto; padding-top: 120px; padding-bottom: 70px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-layout aside { position: static; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom .back-top { justify-self: start; }
}


/* Leadership refresh v1.0.2 — uniform portrait system and rounded cards */
.leadership {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(110px, 12vw, 180px);
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 12, 97, .13), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(124, 77, 255, .12), transparent 34%),
    #111015;
}

.leadership::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  top: 12%;
  right: -25%;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, .018),
    0 0 0 180px rgba(255, 255, 255, .012);
  pointer-events: none;
}

.leadership-heading,
.leadership-grid {
  position: relative;
  z-index: 1;
}

.leadership-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: clamp(20px, 2.25vw, 34px);
  border: 0 !important;
  background: transparent !important;
}

.leader-link {
  display: block;
  min-width: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.leader-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding: 10px 10px 0 !important;
  border: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: clamp(26px, 2.4vw, 36px) !important;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025) 56%, rgba(239, 12, 97, .035)) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .08) !important;
  transform-origin: center bottom;
  transition:
    transform .48s var(--ease),
    border-color .48s ease,
    box-shadow .48s ease,
    background .48s ease !important;
}

.leader-card::after {
  display: none !important;
}

.leader-avatar {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: clamp(20px, 1.9vw, 28px) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(145deg, #2d1725, #211a32 52%, #171821) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.leader-avatar::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 21, .02) 42%, rgba(17, 16, 21, .42) 100%),
    linear-gradient(135deg, rgba(239, 12, 97, .08), transparent 44%, rgba(124, 77, 255, .08));
  pointer-events: none;
}

.leader-avatar img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(.9) contrast(1.035);
  transform: scale(1.002);
  transition: transform .72s var(--ease), filter .5s ease;
}

.leader-avatar .leader-initials {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(64px, 7vw, 112px) !important;
  font-weight: 780;
  letter-spacing: -.09em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, .28);
}

.leader-avatar .leader-index,
.leader-avatar .leader-profile-hint {
  position: absolute;
  z-index: 3;
  top: 16px;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  place-items: initial !important;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(17, 16, 21, .5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px) saturate(130%);
  color: rgba(255, 255, 255, .82);
  font-size: 9px !important;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.leader-avatar .leader-index {
  top: 16px;
  left: 16px;
  width: 42px !important;
  min-width: 0;
  height: 32px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
}

.leader-avatar .leader-profile-hint {
  right: 16px;
  gap: 7px;
  padding: 0 12px;
}

.leader-avatar .leader-profile-hint i {
  color: var(--pink-2);
  font-size: 12px;
  font-style: normal;
  transition: transform .35s var(--ease);
}

.leader-copy {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex !important;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px !important;
  padding: 24px 18px 28px !important;
}

.leader-copy p {
  position: relative;
  z-index: 2;
  order: 1;
  margin: 0 !important;
  color: var(--pink-2) !important;
  font-size: 10px !important;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.leader-copy h3 {
  position: relative;
  z-index: 2;
  order: 2;
  margin: 0 !important;
  color: #fff;
  font-size: clamp(23px, 2.25vw, 36px) !important;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.leader-copy > span:not(.leader-index) {
  display: none;
}

.leader-card:hover,
.leader-link:hover .leader-card {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .22) !important;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035) 56%, rgba(239, 12, 97, .06)) !important;
  box-shadow:
    0 34px 78px rgba(0, 0, 0, .38),
    0 0 0 1px rgba(239, 12, 97, .035),
    inset 0 1px 0 rgba(255, 255, 255, .1) !important;
}

.leader-card:hover .leader-avatar img,
.leader-link:hover .leader-avatar img {
  transform: scale(1.045);
  filter: saturate(.96) contrast(1.05);
}

.leader-link:hover .leader-avatar .leader-profile-hint i {
  transform: translate(2px, -2px);
}

@media (max-width: 1080px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .leadership {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .leadership-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .leader-card {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
    border-radius: 28px !important;
  }

  .leader-avatar {
    border-radius: 21px !important;
  }

  .leader-copy {
    padding: 22px 16px 25px !important;
  }

  .leader-copy h3 {
    font-size: clamp(26px, 8vw, 38px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-node { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) {
  .leader-card,
  .leader-avatar img,
  .leader-profile-hint i {
    transition: none !important;
  }

  .leader-card:hover,
  .leader-link:hover .leader-card {
    transform: none;
  }

  .leader-card:hover .leader-avatar img,
  .leader-link:hover .leader-avatar img {
    transform: scale(1.002);
  }
}

/* Final responsive overflow guard. */
.brand-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.brand-card,
.brand-card:nth-child(-n+2),
.brand-card:nth-child(n+3) {
  min-height: 0 !important;
}

@media (max-width: 1280px) {
  .section-heading-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .brand-card:nth-child(1),
  .brand-card:nth-child(2),
  .brand-card:nth-child(3),
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: span 12;
  }
}
