:root {
  --blue-black: #090d14;
  --blue-dark: #132438;
  --blue-mid: #203a5c;
  --gold: #d8a34b;
  --gold-light: #f0b456;
  --cream: #f3e1c5;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(19, 36, 56, 0.14);
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--blue-black);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

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

.text-nowrap {
  white-space: nowrap;
}

.container {
  width: min(100% - 80px, var(--container));
  margin-inline: auto;
}

section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
}

h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px 40px;
  background: rgba(9, 13, 20, 0.58);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 220ms var(--ease), min-height 220ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(9, 13, 20, 0.9);
}

.brand img {
  width: 154px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover {
  color: var(--gold-light);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
  transform-origin: center;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  color: var(--blue-black);
  background: var(--gold-light);
}

.header-cta {
  padding: 0 28px;
}

.header-contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-email-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--blue-black);
  background: var(--gold-light);
  border-radius: 50%;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.header-email-button svg,
.button-email svg,
.button-with-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.header-email-button:hover {
  background: var(--white);
  transform: translateY(-2px) rotate(-6deg);
}

.button {
  padding: 0 34px;
  transition:
    transform 260ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease);
}

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

.button-round {
  width: 60px;
  height: 60px;
  padding: 0;
  color: var(--blue-black);
  background: var(--gold-light);
  font-size: 22px;
  z-index: 2;
}

.button-email {
  font-size: 0;
}

.button-with-icon {
  gap: 10px;
}

.button-outline {
  color: var(--white);
  border: 1px solid var(--line);
}

.button-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms var(--ease);
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  padding: 170px 0 80px;
  background:
    radial-gradient(circle at 10% 30%, rgba(32, 58, 92, 0.8), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(216, 163, 75, 0.26), transparent 36%),
    var(--blue-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--blue-black);
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.96) contrast(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.68), rgba(9, 13, 20, 0.16) 52%, rgba(9, 13, 20, 0.44)),
    linear-gradient(180deg, rgba(9, 13, 20, 0.06), rgba(9, 13, 20, 0.56));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.hero-person {
  position: absolute;
  right: max(0px, calc((100vw - 1180px) / 2 - 80px));
  bottom: 0;
  width: min(48vw, 620px);
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  opacity: 0.98;
  transform: translateY(calc(var(--hero-drift, 0) * -0.35px));
  will-change: transform;
}

.hero-person::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(9, 13, 20, 0.2) 72%, var(--blue-black));
}

.hero-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 250px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(calc(var(--hero-drift, 0) * 1px));
}

.pill,
.section-label {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 800;
}

.pill {
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(240, 180, 86, 0.52);
  border-radius: 999px;
  background: rgba(19, 36, 56, 0.52);
}

.hero-content p {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero-actions .button-primary {
  min-width: 230px;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
}

.hero-actions.centered {
  justify-content: center;
  gap: 12px;
}

.hero-content .hero-actions:not(.centered) {
  width: 290px;
  flex-wrap: nowrap;
}

.hero-content .hero-actions:not(.centered) .button-primary,
.hero-content .hero-actions:not(.centered) .button-round {
  transition:
    background 220ms var(--ease),
    color 220ms var(--ease);
}

.hero-content .hero-actions:not(.centered):hover .button-primary,
.hero-content .hero-actions:not(.centered) .button-primary:focus-visible {
  color: var(--blue-black);
  background: var(--white);
  border-radius: 999px;
  transform: none;
}

.hero-content .hero-actions:not(.centered):hover .button-round,
.hero-content .hero-actions:not(.centered) .button-round:focus-visible {
  color: var(--blue-black);
  background: var(--white);
  border-radius: 999px;
  transform: none;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  color: var(--blue-black);
  background: var(--gold-light);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 42s linear infinite;
  will-change: transform;
}

.hero-marquee-set {
  display: flex;
  flex: 0 0 auto;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 34px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee span::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--blue-black);
  border-radius: 50%;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

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

.intro {
  background:
    radial-gradient(circle at 80% 90%, rgba(32, 58, 92, 0.42), transparent 35%),
    var(--blue-black);
}

.intro-copy {
  max-width: 900px;
  margin-bottom: 80px;
}

.intro-copy h2 {
  margin: 22px 0 46px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
}

.intro-copy p:not(.section-label) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.34;
}

.scroll-text-word {
  opacity: 0.08;
  transition: opacity 140ms linear;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold-light);
}

.scroll-video {
  height: 255vh;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 163, 75, 0.18), transparent 32%),
    var(--blue-black);
  overflow: visible;
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
}

.scroll-video-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: calc(0.2 - (var(--video-progress, 0) * 0.16));
  pointer-events: none;
}

.scroll-video-copy {
  position: absolute;
  top: clamp(96px, 12vh, 150px);
  left: max(32px, calc((100vw - var(--container)) / 2));
  z-index: 4;
  width: min(420px, calc(100vw - 64px));
  opacity: calc(1 - (var(--video-progress, 0) * 1.45));
  transform: translateY(calc(var(--video-progress, 0) * -42px));
  pointer-events: none;
}

.scroll-video-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
}

.scroll-video-frame {
  position: relative;
  z-index: 3;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(28px * (1 - var(--video-progress, 0)));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  background: #000;
  will-change: width, height, border-radius;
}

.scroll-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(216, 163, 75, calc(0.38 - (var(--video-progress, 0) * 0.24)));
  pointer-events: none;
}

.scroll-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%);
}

.numbers {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--blue-black);
  overflow: hidden;
}

.numbers-overview {
  display: grid;
  gap: clamp(48px, 7vw, 82px);
}

.numbers-heading {
  display: grid;
  max-width: 760px;
  gap: 18px;
}

.numbers-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.number-category {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px) clamp(22px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.number-category:first-child {
  padding-left: 0;
}

.number-category:last-child {
  padding-right: 0;
  border-right: 0;
}

.number-category-label {
  margin-bottom: clamp(48px, 7vw, 86px);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.number-category > strong {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.9;
  white-space: nowrap;
}

.number-category > strong span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.46em;
}

.number-category h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.number-category > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.center-title {
  position: relative;
  z-index: 3;
  margin-bottom: clamp(64px, 12vh, 130px);
  text-align: center;
  transform: translateY(calc(var(--metric-progress, 0) * -30px));
}

.number-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px) 1fr;
  align-items: center;
  gap: 60px;
}

.number-copy h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.number-copy p {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.number-copy.right {
  text-align: right;
}

.number-image {
  position: relative;
  z-index: 2;
  transform: rotate(calc((var(--metric-progress, 0) - 0.5) * -4deg));
  transition: transform 260ms var(--ease);
}

.number-image img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  filter: sepia(0.25) saturate(0.9);
  transition: opacity 220ms var(--ease), transform 420ms var(--ease), filter 260ms var(--ease);
}

.number-image strong {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--gold-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(90px, 13vw, 170px);
  line-height: 1;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.number-stage.is-changing .number-copy h3,
.number-stage.is-changing .number-copy p,
.number-stage.is-changing .number-image strong,
.number-stage.is-changing .number-image img {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}

.ghost-numbers {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Sora", sans-serif;
  font-size: clamp(86px, 15vw, 180px);
  font-weight: 800;
  line-height: 0.92;
  transform: translate(-50%, calc(-50% + var(--metric-shift, 0px)));
  transition: transform 240ms var(--ease);
  pointer-events: none;
  user-select: none;
}

.ghost-numbers span {
  min-height: 0.92em;
}

.helio,
.solutions,
.thinking {
  background: var(--blue-black);
}

.helio {
  padding: 118px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 163, 75, 0.10), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(32, 58, 92, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(9, 13, 20, 1) 0%, rgba(13, 24, 45, 1) 42%, rgba(9, 13, 20, 1) 100%);
}

.helio-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 380px);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.helio-profile-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 163, 75, 0.36);
  background: var(--gold-light);
}

.helio-profile-photo::before,
.helio-profile-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  mix-blend-mode: overlay;
}

.helio-profile-photo::before {
  top: -54px;
  left: 52px;
  width: 136px;
  height: 136px;
}

.helio-profile-photo::after {
  right: -42px;
  bottom: 112px;
  width: 178px;
  height: 178px;
}

.helio-profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 16%;
  filter: grayscale(1) sepia(0.5) saturate(1.15) hue-rotate(354deg) contrast(1.04);
  mix-blend-mode: multiply;
}

.helio-profile-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.helio-profile-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4.6vw, 42px);
  line-height: 1.1;
}

.helio-profile-copy p:not(.section-label) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.helio-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.helio-profile-tags span {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.helio-card {
  width: min(100%, 378px);
  grid-template-rows: minmax(450px, 54vh) auto;
  justify-self: end;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.helio-profile .speaker-card:nth-child(n) {
  margin-top: 0;
}

.helio-card .speaker-photo {
  background: #aaaab7;
}

.helio-card .speaker-photo img {
  object-position: 50% 14%;
  filter: grayscale(1) contrast(1.04);
  mix-blend-mode: multiply;
}

.helio-card .speaker-info {
  min-height: 154px;
  padding: 24px;
}

.helio-card .speaker-info h3 {
  font-size: clamp(28px, 2.4vw, 34px);
}

.helio-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 520ms var(--ease),
    opacity 260ms var(--ease),
    transform 360ms var(--ease),
    margin-top 360ms var(--ease);
}

.helio-details p,
.speaker-info .helio-details p {
  margin: 0 0 12px;
  color: rgba(9, 13, 20, 0.76);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
}

.helio-details p:first-child {
  color: var(--blue-black);
}

.helio-card:hover .helio-details,
.helio-card:focus .helio-details,
.helio-card:focus-within .helio-details {
  max-height: 280px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.helio-lineup {
  display: grid;
  grid-auto-columns: minmax(300px, 344px);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.helio-lineup::-webkit-scrollbar {
  display: none;
}

.single-speaker {
  display: grid;
  justify-content: center;
}

.single-speaker .speaker-card {
  width: min(100%, 380px);
}

.speaker-card {
  display: grid;
  grid-template-rows: 430px auto;
  background: var(--white);
  scroll-snap-align: center;
  transition: transform 280ms var(--ease), filter 280ms var(--ease);
}

.speaker-card:nth-child(2) {
  margin-top: 48px;
}

.speaker-card:nth-child(3) {
  margin-top: 0;
}

.speaker-card:nth-child(4) {
  margin-top: 48px;
}

.speaker-card:hover {
  transform: translateY(-10px);
}

.speaker-photo {
  position: relative;
  overflow: hidden;
  background: var(--gold-light);
}

.speaker-photo::before,
.speaker-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  mix-blend-mode: overlay;
}

.speaker-photo::before {
  top: -48px;
  left: 44px;
  width: 112px;
  height: 112px;
}

.speaker-photo::after {
  right: -36px;
  bottom: 92px;
  width: 160px;
  height: 160px;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 420ms var(--ease), filter 280ms var(--ease);
}

.speaker-card:hover .speaker-photo img {
  transform: scale(1.045);
}

.speaker-gold img {
  filter: grayscale(1) sepia(1) saturate(1.6) hue-rotate(354deg) contrast(1.05);
  mix-blend-mode: multiply;
}

.speaker-blue {
  background: #00ddd5;
}

.speaker-blue img {
  filter: grayscale(1) sepia(1) saturate(1.8) hue-rotate(128deg) contrast(1.1);
  mix-blend-mode: multiply;
}

.speaker-muted {
  background: #b7b7c3;
}

.speaker-muted img {
  filter: grayscale(1) contrast(1.04);
  mix-blend-mode: multiply;
}

.speaker-indigo {
  background: #315cf6;
}

.speaker-indigo img {
  filter: grayscale(1) sepia(1) saturate(2) hue-rotate(186deg) contrast(1.04);
  mix-blend-mode: multiply;
}

.speaker-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 156px;
  padding: 24px;
  color: var(--blue-black);
}

.speaker-info h3 {
  margin: 0 0 8px;
  color: var(--blue-black);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.speaker-info p {
  margin-bottom: 14px;
  color: rgba(9, 13, 20, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.speaker-info span {
  display: inline-flex;
  padding: 6px 14px;
  color: rgba(9, 13, 20, 0.78);
  border: 1px solid rgba(9, 13, 20, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.speaker-info b {
  color: var(--blue-black);
  font-size: 34px;
  font-weight: 500;
  line-height: 0.9;
  transition: transform 240ms var(--ease);
}

.speaker-card:hover .speaker-info b {
  transform: rotate(90deg);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.section-split h2 {
  margin: 20px 0 0;
}

.section-split p:not(.section-label) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 21px;
}

.section-split.center-copy,
.connections-grid.center-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  text-align: center;
}

.section-split.center-copy {
  margin-bottom: 54px;
}

.section-split.center-copy h2,
.connections-grid.center-copy h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
}

.section-split.center-copy p:not(.section-label),
.connections-grid.center-copy p:not(.section-label) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.62;
}

.solution-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  perspective: 1800px;
}

.solution-flip-card {
  min-height: 620px;
  perspective: 1800px;
}

.solution-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  transition: transform 700ms var(--ease);
  transform-style: preserve-3d;
}

.solution-flip-card:hover .solution-flip-inner,
.solution-flip-card:focus-within .solution-flip-inner {
  transform: rotateY(180deg);
}

.solution-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  backface-visibility: hidden;
  background: var(--blue-dark);
}

.solution-front {
  display: grid;
  align-items: end;
}

.solution-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 20, 0.02), rgba(9, 13, 20, 0.88)),
    radial-gradient(circle at 24% 78%, rgba(216, 163, 75, 0.68), transparent 28%);
}

.solution-front img,
.solution-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-front img {
  position: absolute;
  inset: 0;
  filter: saturate(0.66) contrast(1.12);
  transition: transform 700ms var(--ease);
}

.solution-flip-card:hover .solution-front img,
.solution-flip-card:focus-within .solution-front img {
  transform: scale(1.08);
}

.solution-front h3 {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 52px);
  margin: 0;
  padding: 28px;
  color: var(--white);
  font-size: clamp(20px, 2.05vw, 30px);
  line-height: 1.02;
  white-space: nowrap;
  text-transform: none;
}

.solution-back {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.92fr);
  background: var(--white);
  transform: rotateY(180deg);
}

.solution-preview {
  min-height: 620px;
  background: var(--gold-light);
}

.solution-preview img {
  filter: saturate(0.72) contrast(1.08);
  transition: opacity 180ms var(--ease), transform 380ms var(--ease);
}

.solution-preview img.is-changing {
  opacity: 0.32;
  transform: scale(1.03);
}

.solution-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: var(--blue-black);
}

.solution-detail h3 {
  margin-bottom: 22px;
  color: var(--blue-black);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.05;
  white-space: normal;
  text-transform: none;
}

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

  .number-category,
  .number-category:first-child,
  .number-category:last-child {
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .number-category:last-child {
    border-bottom: 0;
  }

  .number-category-label {
    margin-bottom: 34px;
  }
}

/* Notícias e publicações */
.news-page {
  background: var(--blue-black);
}

.news-hero,
.post-hero,
.post-not-found {
  padding: 180px 0 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 163, 75, 0.2), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(32, 58, 92, 0.9), transparent 36%),
    var(--blue-black);
}

.news-hero::after,
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  pointer-events: none;
}

.news-hero .container,
.post-hero .container,
.post-not-found .container {
  position: relative;
  z-index: 1;
}

.news-hero h1,
.post-hero h1,
.post-not-found h1 {
  max-width: 930px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.news-hero p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}

.news-kicker,
.news-heading > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-listing {
  padding: 110px 0 128px;
  color: var(--blue-dark);
  background: #f5f3ef;
}

.news-heading {
  margin-bottom: 48px;
}

.news-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(34px, 5vw, 58px);
}

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

.news-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(19, 36, 56, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(9, 13, 20, 0.07);
}

.news-card-image {
  display: grid;
  height: 235px;
  overflow: hidden;
  place-items: center;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 70% 25%, rgba(240, 180, 86, 0.24), transparent 32%),
    var(--blue-dark);
  font: 800 72px "Sora", sans-serif;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card-body {
  display: flex;
  flex: 1;
  padding: 28px;
  flex-direction: column;
}

.news-card time,
.post-hero time {
  color: #8b672d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 14px 0 16px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.08;
}

.news-card p {
  flex: 1;
  margin-bottom: 26px;
  color: #5e6773;
  font-size: 16px;
}

.news-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.news-read-link,
.linkedin-link {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.linkedin-link {
  color: #0a66c2;
}

.news-empty {
  padding: 70px 32px;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 22px;
  text-align: center;
}

.news-empty h3 {
  margin-bottom: 10px;
}

.news-empty p {
  margin: 0;
  color: #657080;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 54px;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(19, 36, 56, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.news-pagination span {
  color: var(--blue-black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.news-pagination i {
  padding: 0 4px;
}

.post-hero {
  padding-bottom: 78px;
}

.post-hero h1 {
  max-width: 980px;
  margin-top: 20px;
}

.post-back {
  display: inline-block;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.single-post {
  width: min(100% - 80px, 900px);
  padding: 72px 0 120px;
}

.single-post-image {
  width: 100%;
  max-height: 560px;
  margin-bottom: 48px;
  object-fit: cover;
  border-radius: 24px;
}

.single-post-summary {
  padding-bottom: 28px;
  margin-bottom: 36px;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
}

.single-post-content {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.85;
}

.single-post-content p,
.single-post-content li {
  color: inherit;
  font-size: inherit;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin: 54px 0 20px;
  color: var(--white);
  line-height: 1.12;
}

.single-post-content h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.single-post-content h3,
.single-post-content h4 {
  font-size: clamp(24px, 3vw, 34px);
}

.single-post-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post-content blockquote {
  padding: 24px 28px;
  margin: 36px 0;
  color: var(--white);
  background: var(--blue-dark);
  border-left: 4px solid var(--gold-light);
  border-radius: 0 14px 14px 0;
  font-size: 21px;
  font-weight: 700;
}

.single-post-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.post-back-bottom {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.post-not-found {
  min-height: 70vh;
}

.post-not-found p {
  max-width: 620px;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .news-hero,
  .post-hero,
  .post-not-found {
    padding: 140px 0 76px;
  }

  .news-listing {
    padding: 76px 0 90px;
  }

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

  .news-card-image {
    height: 220px;
  }

  .single-post {
    width: min(100% - 40px, 900px);
    padding: 46px 0 80px;
  }

  .single-post-image {
    margin-bottom: 34px;
    border-radius: 16px;
  }

  .single-post-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.solution-detail ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.solution-detail li {
  width: max-content;
  max-width: 100%;
  color: rgba(9, 13, 20, 0.72);
  cursor: default;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.24;
  overflow-wrap: anywhere;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.solution-detail li:hover {
  color: var(--blue-black);
  transform: translateX(8px);
}

.solution-detail a {
  width: fit-content;
  padding: 8px 18px;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.connections {
  padding: 98px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 163, 75, 0.18), transparent 30%),
    linear-gradient(135deg, var(--blue-black), var(--blue-dark));
}

.connections-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(30px, 5vw, 68px);
}

.connections-grid .section-label {
  grid-column: 1 / -1;
}

.connections-grid h2 {
  margin: 0;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.14;
}

.connections-grid p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.connections-grid.center-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.25vw, 18px);
}

.photo-carousel-section {
  padding: 0 0 110px;
  background: var(--blue-black);
  overflow: hidden;
}

.gallery-section {
  padding-top: 54px;
  background: #f5f2ea;
}

.photo-carousel-section.alt {
  padding-top: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(216, 163, 75, 0.12), transparent 28%),
    var(--blue-black);
}

.photo-carousel-track {
  --gallery-card-width: clamp(300px, 31vw, 470px);
  --gallery-card-height: clamp(198px, 19vw, 300px);
  --gallery-gap: 16px;
  display: grid;
  gap: 16px;
  overflow: visible;
}

.gallery-row {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery-row.is-dragging {
  cursor: grabbing;
}

.gallery-row-track {
  display: flex;
  width: max-content;
  gap: var(--gallery-gap);
  padding-right: var(--gallery-gap);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-row-track {
    transform: translateX(0) !important;
  }
}

.photo-carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.gallery-controls button,
.lightbox-nav {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-black);
  background: var(--gold-light);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.gallery-controls button:hover,
.lightbox-nav:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.gallery-card {
  position: relative;
  display: block;
  flex: 0 0 var(--gallery-card-width);
  width: var(--gallery-card-width);
  height: var(--gallery-card-height);
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-dark);
  cursor: zoom-in;
}

.gallery-card:hover img {
  filter: saturate(1) contrast(1.1);
  transform: scale(1.04);
}

.development-story {
  background:
    linear-gradient(135deg, var(--blue-black), var(--blue-dark));
}

.development-story .section-split {
  margin-bottom: 44px;
}

.highlight-line {
  max-width: var(--container);
  margin-top: 26px;
  margin-inline: auto;
  color: var(--gold-light);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.solution-row {
  display: grid;
  grid-auto-columns: minmax(340px, 31vw);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding-inline: max(40px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.solution-row::-webkit-scrollbar {
  display: none;
}

.solution-tile {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.solution-tile img {
  width: 100%;
  height: 68%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.08);
}

.solution-tile div {
  position: absolute;
  inset: auto 0 0;
  min-height: 190px;
  padding: 28px 30px;
  color: var(--blue-black);
  background: var(--white);
}

.solution-tile h3 {
  margin-bottom: 10px;
  color: var(--blue-black);
  font-size: 30px;
}

.solution-tile p {
  margin-bottom: 18px;
  color: rgba(9, 13, 20, 0.72);
}

.solution-tile span {
  display: inline-flex;
  padding: 7px 16px;
  border: 1px solid rgba(9, 13, 20, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-gold img {
  filter: sepia(0.5) saturate(0.85);
}

.tile-blue img {
  filter: saturate(0.75) hue-rotate(345deg);
}

.schedule {
  background: var(--blue-black);
  overflow: visible;
}

.schedule-head {
  max-width: 820px;
  margin: 0 auto 76px;
  text-align: center;
}

.schedule-head p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
}

.program-stack {
  position: relative;
  padding-bottom: 28vh;
  overflow: visible;
}

.program-card {
  position: sticky;
  top: calc(86px + ((var(--stack-index, 1) - 1) * 18px));
  z-index: var(--stack-index, 1);
  min-height: 520px;
  margin-bottom: 28vh;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  transform-origin: center top;
}

.program-card + .program-card {
  margin-top: -18vh;
}

.program-card:last-child {
  margin-bottom: 0;
}

.program-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.15);
}

@media (min-width: 769px) {
  .program-card img.program-image-diagnostico {
    object-position: 50% 16%;
  }

  .program-card-diagnostico::after {
    background:
      linear-gradient(90deg, rgba(9, 13, 20, 0.95), rgba(9, 13, 20, 0.78) 42%, rgba(9, 13, 20, 0.94)),
      linear-gradient(180deg, rgba(9, 13, 20, 0.48), rgba(9, 13, 20, 0.72)),
      radial-gradient(circle at 70% 62%, rgba(9, 13, 20, 0.72), transparent 34%),
      radial-gradient(circle at 12% 78%, rgba(216, 163, 75, 0.24), transparent 24%);
  }
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.82), rgba(9, 13, 20, 0.15) 55%, rgba(9, 13, 20, 0.75)),
    radial-gradient(circle at 12% 78%, rgba(216, 163, 75, 0.78), transparent 24%);
}

.program-day,
.program-card h3 {
  position: absolute;
  z-index: 2;
}

.program-day {
  left: 40px;
  bottom: 42px;
  display: grid;
  gap: 12px;
}

.program-day span {
  color: var(--gold-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(72px, 10vw, 138px);
  font-weight: 800;
  line-height: 0.8;
}

.program-day strong {
  color: var(--white);
  font-size: 16px;
}

.program-card h3 {
  right: 42px;
  bottom: 54px;
  max-width: 420px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin-inline: auto;
}

.principle-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.38fr);
  align-items: center;
  gap: 22px;
  min-height: 132px;
  padding: 24px 26px;
  color: var(--blue-black);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.principle-card:nth-child(2) {
  background: var(--gold-light);
}

.principle-card:nth-child(3) {
  color: var(--white);
  background: var(--blue-mid);
}

.principle-card span {
  display: block;
  margin-bottom: 70px;
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.principle-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.02;
}

.principle-card p {
  margin: 0;
  color: currentColor;
  opacity: 0.72;
  font-size: 16px;
  line-height: 1.42;
}

.connect-block {
  color: var(--white);
  background: var(--blue-black);
}

.connect-block h2 {
  color: var(--white);
}

.connect-block .section-label {
  color: var(--gold-light);
}

.connect-block .section-split {
  margin-bottom: 60px;
}

.connect-block .section-split p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.connect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.connect-card {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 13, 20, 0.24), rgba(9, 13, 20, 0.78)),
    var(--connect-bg) center / cover;
  border: 0px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.connect-card:nth-child(2) {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 13, 20, 0.22), rgba(9, 13, 20, 0.74)),
    var(--connect-bg) center / cover;
}

.connect-card:nth-child(3) {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 13, 20, 0.2), rgba(9, 13, 20, 0.8)),
    var(--connect-bg) center / cover;
}

.connect-card span {
  display: block;
  margin-bottom: 96px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  opacity: 0.72;
}

.connect-card h3 {
  color: inherit;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.06;
}

.connect-card p {
  color: currentColor;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.48;
  opacity: 0.78;
}

.connect-closing {
  margin-top: 28px;
}

.connect-closing p {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  text-align: center;
}

.media-showcase {
  background: #f3f0e9;
}

.media-showcase h2 {
  color: var(--blue-black);
}

.media-carousel {
  display: grid;
  grid-auto-columns: minmax(280px, 36vw);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.media-carousel::-webkit-scrollbar {
  display: none;
}

.media-card {
  position: relative;
  display: block;
  height: clamp(280px, 34vw, 500px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(9, 13, 20, 0.16);
  background: #080b12;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.media-card::after {
  content: "+";
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-black);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms var(--ease);
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 76px 84px 44px;
  background: rgba(9, 13, 20, 0.94);
}

.lightbox.is-open {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-content {
  width: min(1280px, 100%);
  max-height: calc(100vh - 120px);
}

.lightbox-content img,
.lightbox-content video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-black);
  background: var(--gold-light);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

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

.clients h2,
.clients .section-label {
  color: var(--blue-black);
}

.clients .section-split p:not(.section-label) {
  color: rgba(19, 36, 56, 0.66);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 68s linear infinite;
  will-change: transform;
}

.logo-marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  padding-inline: clamp(21px, 2.5vw, 38px);
}

.logo-marquee-set img {
  flex: 0 0 auto;
  width: clamp(118px, 11vw, 178px);
  height: clamp(62px, 7vw, 86px);
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.16);
  opacity: 0.86;
}

.muted img {
  filter: grayscale(1) saturate(0) contrast(1.16);
}

.muted img:hover {
  filter: grayscale(1) saturate(0) contrast(1.16);
}

.experience {
  background: #f3f0e9;
}

.final-cta {
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 163, 75, 0.28), transparent 32%),
    linear-gradient(135deg, var(--blue-black), var(--blue-dark));
}

.final-cta .container {
  max-width: 980px;
}

.final-cta h2 {
  margin: 18px 0 24px;
  font-size: 48px;
}

.final-cta p:not(.section-label) {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.service-hero {
  min-height: 72vh;
  padding: 170px 0 92px;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.96), rgba(9, 13, 20, 0.68)),
    url("https://images.unsplash.com/photo-1551818255-e6e10975bc17?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(34px, 7vw, 96px);
}

.service-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(44px, 7vw, 88px);
}

.service-hero p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.56;
}

.service-detail-section {
  background: var(--blue-black);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: stretch;
}

.service-image {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  color: var(--blue-black);
  background: var(--white);
}

.service-list h2 {
  color: var(--blue-black);
  font-size: clamp(30px, 3.4vw, 48px);
}

.service-list ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding-bottom: 14px;
  color: rgba(9, 13, 20, 0.78);
  border-bottom: 1px solid rgba(9, 13, 20, 0.14);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
}

.implementation-page {
  background: var(--blue-black);
}

.implementation-story-hero {
  min-height: clamp(700px, 86svh, 900px);
  display: grid;
  align-items: center;
  padding: 142px 0 84px;
  isolation: isolate;
  background: var(--blue-black);
}

.implementation-story-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.implementation-story-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.012);
}

.implementation-story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.98) 0%, rgba(9, 13, 20, 0.92) 38%, rgba(9, 13, 20, 0.36) 67%, rgba(9, 13, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 13, 20, 0.42) 0%, transparent 32%, rgba(9, 13, 20, 0.88) 100%);
}

.implementation-story-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(0px, calc((100% - var(--container)) / 2));
}

.implementation-story-hero h1 {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--gold-light);
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 0.98;
}

.implementation-story-copy {
  display: grid;
  width: 100%;
  max-width: 680px;
  gap: 16px;
}

.implementation-story-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.58;
}

.implementation-story-copy p:first-child {
  color: var(--white);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 700;
  line-height: 1.28;
}

.implementation-story-copy p:last-child {
  margin-top: 4px;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.94);
  border-left: 2px solid var(--gold-light);
  font-weight: 800;
}

.implementation-hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 148px 0 92px;
  background: var(--blue-black);
}

.implementation-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.implementation-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.06) translateY(calc(var(--hero-drift, 0) * -0.16px));
  will-change: transform;
}

.implementation-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(216, 163, 75, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(9, 13, 20, 0.94), rgba(9, 13, 20, 0.66) 48%, rgba(9, 13, 20, 0.86)),
    linear-gradient(180deg, rgba(9, 13, 20, 0.2), rgba(9, 13, 20, 0.9));
}

.implementation-hero-orbits {
  position: absolute;
  right: max(-160px, calc((100vw - var(--container)) / 2 - 180px));
  bottom: -220px;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 180, 86, 0.28);
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(calc(var(--hero-drift, 0) * 0.55px));
}

.implementation-hero-orbits::before,
.implementation-hero-orbits::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.implementation-hero-orbits::before {
  inset: 11%;
}

.implementation-hero-orbits::after {
  inset: 24%;
  border-color: rgba(240, 180, 86, 0.2);
}

.implementation-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.implementation-hero-spacer {
  display: none;
}

.implementation-hero-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  align-items: stretch;
  justify-self: center;
  width: min(100%, 920px);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(9, 13, 20, 0.74);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.implementation-hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.implementation-hero-panel div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(28px, 4vw, 54px);
}

.implementation-hero-panel span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.implementation-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.24vw, 19px);
  line-height: 1.62;
}

.implementation-signal-band {
  overflow: hidden;
  color: var(--blue-black);
  background: var(--gold-light);
}

.implementation-signal-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.implementation-signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.implementation-signal-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue-black);
  border-radius: 50%;
}

.implementation-belief {
  padding: clamp(76px, 8vw, 118px) 0;
  background: #f4f0e8;
}

.implementation-page > .implementation-belief:first-child {
  padding-top: clamp(146px, 14vw, 190px);
}

.implementation-belief-grid {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 4vw, 46px);
  text-align: center;
}

.implementation-kicker {
  color: var(--blue-black);
  width: min(100%, 760px);
  border-top: 2px solid rgba(216, 163, 75, 0.78);
  padding-top: 24px;
}

.implementation-kicker span,
.implementation-kicker h1 {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.02;
}

.implementation-kicker h1 {
  margin-block: 0;
  color: var(--blue-black);
}

.implementation-large-copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.implementation-large-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(9, 13, 20, 0.86);
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 800;
  line-height: 1.16;
}

.implementation-large-copy p:nth-child(2) {
  max-width: 820px;
  color: rgba(9, 13, 20, 0.66);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.58;
}

.implementation-belief .implementation-large-copy {
  justify-items: center;
  width: min(100%, 860px);
}

.implementation-belief .implementation-large-copy p,
.implementation-belief .implementation-large-copy p:nth-child(2) {
  max-width: 760px;
}

.implementation-structure {
  padding: clamp(78px, 9vw, 124px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--blue-black);
}

.implementation-structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.implementation-image-panel {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.implementation-image-panel img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.1);
  transform: scale(1.04) translateY(calc(var(--hero-drift, 0) * -0.08px));
  will-change: transform;
}

.implementation-structure-copy {
  display: grid;
  gap: 22px;
  padding: clamp(8px, 2vw, 24px) 0;
}

.implementation-structure-copy h2 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.02;
}

.implementation-structure-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.24vw, 19px);
  line-height: 1.66;
}

.implementation-impact {
  padding: clamp(0px, 0vw, 0px) 0 clamp(78px, 9vw, 124px);
  background: var(--blue-black);
}

.implementation-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.implementation-impact-grid article {
  min-height: 250px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 3vw, 36px);
  color: var(--blue-black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #f4f0e8;
}

.implementation-impact-grid article:nth-child(2) {
  background: var(--gold-light);
}

.implementation-impact-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue-mid);
}

.implementation-impact-grid span {
  align-self: end;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(64px, 6.4vw, 88px);
  font-weight: 800;
  line-height: 0.9;
}

.implementation-impact-grid p {
  max-width: 300px;
  min-height: 60px;
  margin: 0;
  color: currentColor;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
  opacity: 0.78;
  text-transform: uppercase;
}

.implementation-impact-image {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.implementation-impact-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
  transition: transform 540ms var(--ease);
}

.implementation-impact-image:hover img {
  transform: scale(1.04);
}

.implementation-deliveries {
  padding: clamp(76px, 9vw, 124px) 0;
  background: #e9edf0;
}

.implementation-deliveries-head {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.implementation-deliveries-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-black);
  font-size: clamp(30px, 4.7vw, 58px);
}

.implementation-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.6fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.implementation-feature-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(9, 13, 20, 0.1);
  border-radius: 8px;
}

.implementation-feature-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04);
  transition: transform 520ms var(--ease);
}

.implementation-feature-card:hover img {
  transform: scale(1.035);
}

.implementation-feature-card div {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.implementation-feature-card p {
  margin: 0;
  color: rgba(9, 13, 20, 0.72);
  font-size: clamp(15px, 1.14vw, 18px);
  line-height: 1.58;
}

.implementation-feature-card p:first-child {
  color: var(--blue-black);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.implementation-accordion {
  display: grid;
  gap: 14px;
}

.implementation-accordion details {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 13, 20, 0.12);
  border-radius: 8px;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.implementation-accordion details::before {
  content: "";
  position: absolute;
  inset: auto 20px 0 auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216, 163, 75, 0.42);
  border-radius: 50%;
  transform: translate(34%, 38%);
  pointer-events: none;
}

.implementation-accordion details[open] {
  background: var(--white);
  border-color: rgba(216, 163, 75, 0.46);
}

.implementation-accordion summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 20px 24px;
  color: var(--blue-black);
  cursor: pointer;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.08;
  list-style: none;
}

.implementation-accordion summary span {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.2);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.implementation-accordion summary::-webkit-details-marker {
  display: none;
}

.implementation-accordion summary::after {
  content: "+";
  display: grid;
  flex: 0 0 34px;
  margin-left: auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.22);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.implementation-accordion details[open] summary::after {
  background: var(--gold-light);
  transform: rotate(45deg);
}

.implementation-accordion details > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0 24px 26px;
}

.implementation-accordion p {
  margin: 0;
  color: rgba(9, 13, 20, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

.implementation-intro {
  padding: clamp(78px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 163, 75, 0.16), transparent 28%),
    var(--blue-black);
}

.implementation-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.implementation-intro-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(16px, 2.6vw, 30px);
  width: min(100%, 1040px);
}

.implementation-intro-media img {
  width: 100%;
  aspect-ratio: 653 / 435;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.82) contrast(1.04);
}

.implementation-intro-copy {
  max-width: 920px;
  text-align: center;
}

.implementation-intro-copy p,
.implementation-intro-copy p:nth-child(2) {
  margin-inline: auto;
}

.implementation-intro-copy p:first-child {
  color: var(--gold-light);
}

.implementation-intro-copy p:nth-child(2) {
  color: rgba(255, 255, 255, 0.78);
}

.implementation-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.implementation-section-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-black);
  font-size: clamp(32px, 5.2vw, 68px);
}

.implementation-section-head p {
  max-width: 680px;
  margin: 0;
  color: rgba(9, 13, 20, 0.66);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.62;
}

.implementation-services {
  padding: clamp(76px, 9vw, 124px) 0;
  background: #f4f0e8;
}

.implementation-services .implementation-section-head {
  justify-items: center;
  text-align: center;
}

.implementation-services .implementation-section-head h2,
.implementation-services .implementation-section-head p {
  margin-inline: auto;
}

.implementation-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.implementation-service-card {
  display: grid;
  grid-template-rows: 330px 1fr;
  min-height: 620px;
  overflow: hidden;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.implementation-service-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  grid-template-rows: none;
  min-height: 430px;
}

.implementation-service-card img {
  width: 100%;
  height: 330px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 540ms var(--ease), filter 540ms var(--ease);
}

.implementation-service-card-wide img {
  height: 100%;
  min-height: 430px;
}

.implementation-service-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.08);
}

.implementation-service-card div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
}

.implementation-service-card-wide div {
  justify-content: center;
  min-height: auto;
}

.implementation-service-card h3 {
  max-width: 560px;
  min-height: 2.04em;
  margin: 0;
  color: var(--blue-black);
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.02;
}

.implementation-service-card-wide h3 {
  min-height: 0;
}

.implementation-service-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(9, 13, 20, 0.68);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
}

.implementation-service-card p:first-of-type {
  color: rgba(9, 13, 20, 0.88);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
  line-height: 1.32;
}

.implementation-approach {
  padding: clamp(76px, 9vw, 124px) 0;
  background: #f4f0e8;
}

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

.implementation-approach-grid article {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.implementation-approach-grid article:nth-child(2) {
  background: var(--gold-light);
}

.implementation-approach-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue-mid);
}

.implementation-approach-grid h3 {
  width: 100%;
  min-height: 2.16em;
  margin: 0;
  color: currentColor;
  font-size: clamp(21px, 1.55vw, 24px);
  line-height: 1.08;
}

.implementation-approach-grid h3 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.implementation-approach-grid p {
  min-height: 98px;
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.62;
  opacity: 0.72;
}

.implementation-gallery {
  padding: clamp(76px, 9vw, 124px) 0;
  background: var(--blue-black);
}

.implementation-gallery .implementation-section-head h2 {
  color: var(--gold-light);
}

.implementation-gallery .implementation-section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.development-cta.implementation-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.development-cta.implementation-cta p {
  margin-inline: auto;
}

.development-cta.implementation-cta .button {
  margin-inline: auto;
}

.development-page {
  background: var(--blue-black);
}

.development-quote-hero {
  min-height: clamp(680px, 82svh, 880px);
  display: grid;
  align-items: center;
  padding: 138px 0 78px;
  isolation: isolate;
  background: var(--blue-black);
}

.development-quote-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.development-quote-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.015);
}

.development-quote-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.98) 0%, rgba(9, 13, 20, 0.9) 34%, rgba(9, 13, 20, 0.28) 68%, rgba(9, 13, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(9, 13, 20, 0.5) 0%, transparent 30%, rgba(9, 13, 20, 0.8) 100%);
}

.development-quote-hero-content {
  position: relative;
  z-index: 1;
}

.development-quote-hero blockquote {
  max-width: 780px;
  margin: 0;
}

.development-quote-hero blockquote p {
  margin: 0;
  color: var(--white);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.development-quote-hero blockquote footer {
  margin-top: 26px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.implementation-story-quote {
  max-width: 680px;
  margin: 0 0 clamp(64px, 8vh, 96px);
  padding-left: 20px;
  border-left: 2px solid var(--gold-light);
}

.implementation-story-quote p {
  margin: 0;
  color: var(--white);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.implementation-story-quote footer {
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.development-hero {
  min-height: 46vh;
  display: grid;
  align-items: end;
  padding: 118px 0 46px;
  background: var(--blue-black);
}

.development-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.development-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.66) contrast(1.08);
  transform: scale(1.06) translateY(calc(var(--hero-drift, 0) * -0.14px));
  will-change: transform;
}

.development-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(216, 163, 75, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(9, 13, 20, 0.96), rgba(9, 13, 20, 0.66) 50%, rgba(9, 13, 20, 0.86)),
    linear-gradient(180deg, rgba(9, 13, 20, 0.16), rgba(9, 13, 20, 0.92));
}

.development-hero-orbits {
  position: absolute;
  right: max(-180px, calc((100vw - var(--container)) / 2 - 220px));
  bottom: -260px;
  width: min(66vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 180, 86, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(calc(var(--hero-drift, 0) * 0.5px));
}

.development-hero-orbits::before,
.development-hero-orbits::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.development-hero-orbits::before {
  inset: 12%;
}

.development-hero-orbits::after {
  inset: 25%;
  border-color: rgba(240, 180, 86, 0.2);
}

.development-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(30px, 7vw, 88px);
}

.development-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 8.4vw, 112px);
  line-height: 0.9;
}

.development-hero-panel {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(240, 180, 86, 0.32);
  border-radius: 8px;
  background: var(--gold-light);
}

.development-hero-panel img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  object-position: 50% 12%;
  filter: grayscale(1) sepia(0.65) saturate(1.45) hue-rotate(354deg) contrast(1.06);
  mix-blend-mode: multiply;
}

.development-intro,
.development-belief {
  padding: clamp(76px, 8vw, 118px) 0;
  background: #f4f0e8;
}

.development-page > .development-belief:first-child {
  padding-top: clamp(146px, 14vw, 190px);
}

.development-intro-grid,
.development-belief-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.development-photo-stack {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
  align-items: end;
  padding-top: 6px;
}

.development-photo-stack img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.68) contrast(1.06);
}

.development-photo-stack img:first-child {
  transform: translateY(42px);
}

.implementation-page .development-photo-stack .implementation-photo-thumbnail {
  --implementation-photo-offset: 0px;
  position: relative;
  z-index: 1;
  transform: translateY(var(--implementation-photo-offset));
}

.implementation-page .development-photo-stack .implementation-photo-thumbnail:first-child {
  --implementation-photo-offset: 42px;
}

.implementation-page .development-photo-stack img.implementation-photo-preview {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 9999;
  width: auto;
  height: auto;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  box-shadow: 0 30px 90px rgba(9, 13, 20, 0.58);
  transform: translate(-50%, -50%) scale(0.96);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 320ms;
}

@media (hover: hover) and (pointer: fine) {
  .implementation-page .development-photo-stack .implementation-photo-thumbnail {
    cursor: zoom-in;
    transition: filter 240ms ease;
  }

  .implementation-page .development-photo-stack .implementation-photo-thumbnail:hover {
    filter: saturate(0.92) contrast(1.08);
  }

  .implementation-page .development-photo-stack .implementation-photo-thumbnail:hover + .implementation-photo-preview {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0s;
  }
}

.development-page .development-photo-stack .development-photo-thumbnail {
  --development-photo-offset: 0px;
  position: relative;
  z-index: 1;
  transform: translateY(var(--development-photo-offset));
}

.development-page .development-photo-stack .development-photo-thumbnail:first-child {
  --development-photo-offset: 42px;
}

.development-page .development-photo-stack img.development-photo-preview {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 9999;
  width: auto;
  height: auto;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: none;
  box-shadow: 0 30px 90px rgba(9, 13, 20, 0.58);
  transform: translate(-50%, -50%) scale(0.96);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 320ms;
}

@media (hover: hover) and (pointer: fine) {
  .development-page .development-photo-stack .development-photo-thumbnail {
    cursor: zoom-in;
    transition: filter 240ms ease;
  }

  .development-page .development-photo-stack .development-photo-thumbnail:hover {
    filter: saturate(0.92) contrast(1.08);
  }

  .development-page .development-photo-stack .development-photo-thumbnail:hover + .development-photo-preview {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0s;
  }
}

.development-large-copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.development-large-copy p {
  max-width: 840px;
  margin: 0;
  color: rgba(9, 13, 20, 0.84);
  font-size: clamp(22px, 2.65vw, 36px);
  font-weight: 800;
  line-height: 1.16;
}

.development-large-copy p:nth-child(2) {
  color: rgba(9, 13, 20, 0.66);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.58;
}

.development-kicker {
  color: var(--blue-black);
  border-top: 2px solid rgba(216, 163, 75, 0.78);
  padding-top: 22px;
}

.development-kicker span,
.development-kicker h1 {
  display: block;
  max-width: 430px;
  margin-block: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.02;
}

.development-kicker h1 {
  color: var(--blue-black);
}

.development-belief .development-large-copy p:nth-child(2) {
  color: rgba(9, 13, 20, 0.84);
  font-size: clamp(22px, 2.65vw, 36px);
  font-weight: 800;
  line-height: 1.16;
}

.development-belief .development-large-copy p:nth-child(3) {
  color: rgba(9, 13, 20, 0.66);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.58;
}

.development-support,
.development-approach,
.development-journeys {
  padding: clamp(78px, 9vw, 124px) 0;
  background: var(--blue-black);
}

.development-speakers {
  padding: 0 0 clamp(78px, 9vw, 124px);
  background: var(--blue-black);
  overflow: hidden;
}

.development-speakers-track {
  display: flex;
  width: max-content;
  gap: 22px;
}

.development-speakers-set {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeMove 58s linear infinite;
}

.development-speakers-track:hover .development-speakers-set,
.development-speakers-track.has-expanded-card .development-speakers-set {
  animation-play-state: paused;
}

.development-person-card {
  position: relative;
  width: min(74vw, 342px);
  min-height: 650px;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  overflow: hidden;
  color: var(--blue-black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  scroll-snap-align: center;
  transition:
    width 420ms var(--ease),
    transform 260ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.development-person-card:hover,
.development-person-card:focus-visible,
.development-person-card.is-expanded {
  z-index: 4;
  border-color: rgba(240, 180, 86, 0.62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(-6px);
}

.development-person-card.is-expanded {
  width: min(86vw, 720px);
}

.development-person-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform 420ms var(--ease), filter 260ms var(--ease);
}

.development-person-card:hover img,
.development-person-card.is-expanded img {
  transform: scale(1.035);
  filter: grayscale(1) sepia(0.42) saturate(1.18) hue-rotate(354deg) contrast(1.04);
}

.development-person-copy {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 166px;
  max-height: 280px;
  padding: 24px;
  background: var(--white);
  transition: max-height 420ms var(--ease);
}

.development-person-card:hover .development-person-copy {
  max-height: 430px;
}

.development-person-card.is-expanded .development-person-copy {
  max-height: 560px;
  overflow-y: auto;
}

.development-person-copy h3 {
  margin: 0;
  color: var(--blue-black);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.02;
}

.development-person-role {
  margin: 0;
  color: rgba(9, 13, 20, 0.7);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.development-person-text {
  display: grid;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), max-height 420ms var(--ease);
}

.development-person-card:hover .development-person-text,
.development-person-card.is-expanded .development-person-text {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
}

.development-person-card.is-expanded .development-person-text {
  max-height: none;
}

.development-person-text p {
  margin: 0;
  color: rgba(9, 13, 20, 0.72);
  font-size: 14px;
  line-height: 1.52;
}

.development-person-more {
  display: none;
}

.development-person-card.is-expanded .development-person-more {
  display: block;
}

.development-page .development-section-head {
  text-align: center;
}

.development-page .development-section-head h2 {
  margin-inline: auto;
}

.development-page .development-intro-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(34px, 5vw, 64px);
  text-align: center;
}

.development-page .development-intro {
  padding: clamp(78px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 163, 75, 0.16), transparent 28%),
    var(--blue-black);
}

.development-page .development-intro .development-large-copy p:first-child {
  color: var(--gold-light);
}

.development-page .development-intro .development-large-copy p:nth-child(2),
.development-page .development-intro .development-large-copy p:nth-child(3) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.58;
}

.development-page .development-intro .development-large-copy p:nth-child(3) {
  color: rgba(255, 255, 255, 0.58);
}

.development-page .development-intro-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(16px, 2.6vw, 30px);
  width: min(100%, 1040px);
}

.development-page .development-intro-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.82) contrast(1.04);
}

.development-page .development-intro-grid .development-large-copy {
  max-width: 900px;
  margin-inline: auto;
}

.development-page .development-intro-grid .development-large-copy p {
  margin-inline: auto;
}

.development-page .development-belief-grid {
  grid-template-columns: 1fr;
  max-width: 960px;
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
  text-align: center;
}

.development-page .development-belief .development-kicker {
  border-top: 0;
  padding-top: 0;
}

.development-page .development-belief .development-kicker span,
.development-page .development-belief .development-kicker h1,
.development-page .development-belief .development-large-copy p {
  margin-inline: auto;
}

.development-page .development-belief .development-kicker span,
.development-page .development-belief .development-kicker h1 {
  max-width: 760px;
}

.development-page .development-belief .development-large-copy {
  justify-items: center;
}

.development-page .development-approach-grid article {
  align-items: center;
  text-align: center;
}

.development-cta .container {
  text-align: center;
}

.development-cta p {
  margin-inline: auto;
}

.development-programs-grid {
  align-items: center;
}

.development-programs-grid > div {
  align-self: center;
  text-align: left;
}

.development-programs p {
  margin-inline: 0;
}

.development-programs li {
  text-align: left;
}

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

.development-speakers-grid .development-person-card {
  width: 100%;
  min-height: 520px;
  grid-template-rows: minmax(292px, 1fr) auto;
}

.development-speakers-grid .development-person-card.is-expanded {
  width: 100%;
}

.development-speakers-grid .development-person-card img {
  min-height: 292px;
}

.development-speakers-grid .development-person-copy {
  min-height: 166px;
  padding: 20px;
}

.development-speakers-grid .development-person-copy h3 {
  font-size: clamp(20px, 1.7vw, 27px);
}

.development-speakers-grid .development-person-role {
  font-size: 11px;
}

.development-speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.development-speaker-modal.is-open {
  display: flex;
}

.development-speaker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 20, 0.82);
  backdrop-filter: blur(12px);
}

.development-speaker-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.72fr);
  overflow: hidden;
  color: var(--blue-black);
  border: 1px solid rgba(240, 180, 86, 0.34);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.development-speaker-modal-content {
  display: contents;
}

.development-speaker-modal-photo {
  min-height: 100%;
  background: var(--gold-light);
}

.development-speaker-modal-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: grayscale(1) sepia(0.35) saturate(1.15) hue-rotate(354deg) contrast(1.05);
}

.development-speaker-modal-copy {
  max-height: min(88vh, 820px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 54px);
}

.development-speaker-modal-copy h3 {
  margin: 0 0 12px;
  color: var(--blue-black);
  font-size: clamp(30px, 4vw, 54px);
}

.development-speaker-modal-copy .development-person-role {
  margin-bottom: 24px;
}

.development-speaker-modal-copy p:not(.development-person-role) {
  margin: 0 0 14px;
  color: rgba(9, 13, 20, 0.72);
  font-size: 16px;
  line-height: 1.66;
}

.development-speaker-close,
.development-speaker-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.development-speaker-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.development-speaker-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 36px;
  transform: translateY(-50%);
}

.development-speaker-prev {
  left: 18px;
}

.development-speaker-next {
  right: 18px;
}

.development-speaker-close:hover,
.development-speaker-nav:hover {
  background: var(--gold-light);
  transform: translateY(-50%) scale(1.04);
}

.development-speaker-close:hover {
  transform: scale(1.04);
}

body.speaker-modal-open {
  overflow: hidden;
}

.development-section-head {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.development-section-head h2 {
  max-width: 900px;
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(30px, 4.7vw, 58px);
}

.development-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.development-service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: clamp(24px, 3.2vw, 38px);
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.12);
  border-radius: 8px;
  background: #f4f0e8;
}

.development-service-card:nth-child(2),
.development-service-card:nth-child(5) {
  background: var(--gold-light);
}

.development-service-card:nth-child(5) {
  grid-column: 1 / -1;
}

@media (min-width: 1041px) {
  .development-service-card:nth-child(3) {
    order: 4;
  }

  .development-service-card:nth-child(4) {
    order: 5;
  }

  .development-service-card:nth-child(5) {
    order: 3;
  }
}

.development-service-card:nth-child(4) {
  color: var(--white);
  background: var(--blue-mid);
}

.development-service-card h3 {
  min-height: 2.08em;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: currentColor;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.04;
}

.development-service-card p {
  max-width: 620px;
  margin: 0;
  color: currentColor;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
  opacity: 0.72;
}

.development-service-card p + p {
  margin-top: -2px;
}

.development-service-card:nth-child(5) p {
  max-width: 760px;
}

.development-speaker-card {
  grid-row: span 2;
  min-height: 680px;
  justify-content: space-between;
  background: var(--white);
}

.development-speaker-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 auto;
}

.development-speaker-photos img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.76) contrast(1.05);
}

.development-speaker-photos img:first-child {
  object-position: 50% 12%;
  filter: grayscale(1) sepia(0.6) saturate(1.2) hue-rotate(354deg) contrast(1.05);
  background: var(--gold-light);
}

.development-approach {
  background: #e9edf0;
}

.development-approach .development-section-head h2 {
  color: var(--blue-black);
}

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

.development-approach-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.development-approach-grid article:nth-child(2) {
  background: var(--gold-light);
}

.development-approach-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue-mid);
}

.development-approach-grid h3 {
  width: 100%;
  min-height: 2.16em;
  margin: 0;
  color: currentColor;
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.08;
}

.development-approach-grid h3 span {
  display: block;
  white-space: nowrap;
}

.development-approach-copy {
  display: grid;
  gap: 16px;
  min-height: 142px;
  align-content: start;
}

.development-approach-grid p {
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.62;
  opacity: 0.72;
}

.development-programs {
  padding: clamp(78px, 9vw, 124px) 0;
  background: #f4f0e8;
}

.development-programs-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.development-programs h2 {
  margin: 0 0 20px;
  color: var(--blue-black);
  font-size: clamp(30px, 4.7vw, 58px);
}

.development-programs p {
  max-width: 360px;
  margin: 0;
  color: rgba(9, 13, 20, 0.62);
  font-size: 17px;
  line-height: 1.62;
}

.development-programs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.development-programs li {
  display: block;
  min-height: 76px;
  padding: 0;
  overflow: hidden;
  color: var(--blue-black);
  border: 1px solid rgba(9, 13, 20, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.development-program-item {
  width: 100%;
}

.development-program-item summary {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  line-height: 1.24;
  transition: color 180ms ease, background 180ms ease;
}

.development-program-item summary::-webkit-details-marker {
  display: none;
}

.development-program-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--blue-black);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition: transform 220ms ease, background 180ms ease;
}

.development-program-item summary:hover,
.development-program-item summary:focus-visible {
  color: #9b651f;
  background: rgba(216, 163, 75, 0.08);
}

.development-program-item summary:focus-visible {
  outline: 2px solid #9b651f;
  outline-offset: -3px;
}

.development-program-item[open] summary::after {
  content: "−";
  background: #9b651f;
  transform: rotate(180deg);
}

.development-program-copy {
  padding: 0 20px 20px;
  animation: developmentProgramReveal 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.development-program-copy p,
.development-programs .development-program-copy p {
  max-width: none;
  margin: 0;
  color: rgba(9, 13, 20, 0.7);
  font-size: 15px;
  line-height: 1.58;
}

@keyframes developmentProgramReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.development-programs-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(32px, 5vw, 62px);
  align-items: start;
  text-align: center;
}

.development-programs h2 {
  margin: 0 0 18px;
}

.development-programs p {
  max-width: 620px;
  margin-inline: auto;
}

.development-program-board {
  width: 100%;
}

.development-programs .development-program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  width: 100%;
}

.development-programs li {
  max-width: none;
  min-height: 0;
  color: var(--blue-black);
  border-color: rgba(9, 13, 20, 0.14);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.development-programs li:has(.development-program-item[open]) {
  border-color: rgba(155, 101, 31, 0.5);
  box-shadow: 0 14px 34px rgba(9, 13, 20, 0.08);
}

.development-program-item {
  display: block;
  height: auto;
}

.development-program-item summary {
  min-height: 92px;
  height: auto;
  grid-template-columns: minmax(0, 1fr) 30px;
  justify-items: start;
  gap: 14px;
  padding: 20px;
  color: var(--blue-black);
  line-height: 1.22;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.development-program-item summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--blue-black);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.development-program-item summary:hover,
.development-program-item summary:focus-visible,
.development-program-item[open] summary {
  color: var(--blue-black);
  background: rgba(216, 163, 75, 0.2);
}

.development-program-item summary:focus-visible {
  outline: 3px solid rgba(9, 13, 20, 0.42);
  outline-offset: -5px;
}

.development-program-item[open] summary::after {
  content: "−";
  background: #9b651f;
  transform: rotate(180deg);
}

.development-programs .development-program-copy {
  display: none;
  padding: 0 20px 22px;
}

.development-programs .development-program-item[open] .development-program-copy {
  display: grid;
  gap: 10px;
  animation: developmentProgramReveal 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.development-programs .development-program-copy p {
  max-width: none;
  margin: 0;
  color: rgba(9, 13, 20, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.development-programs-grid > div {
  text-align: center;
}

@media (max-width: 1040px) {
  .development-programs .development-program-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .development-programs .development-program-list {
    grid-template-columns: 1fr;
  }

  .development-program-item summary {
    min-height: 78px;
  }
}

.development-journey-strip {
  display: grid;
  grid-auto-columns: minmax(340px, 42vw);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding-inline: max(40px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.development-journey-strip::-webkit-scrollbar {
  display: none;
}

.development-journey-shell {
  position: relative;
}

.development-journey-card,
.development-video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.development-journey-card {
  height: clamp(320px, 38vw, 540px);
  scroll-snap-align: start;
}

.development-journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.development-journey-card:hover img,
.development-journey-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.development-journey-card:focus-visible,
.development-video-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.development-journey-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-black);
  border: 0;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.development-journey-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.development-journey-prev {
  left: max(18px, calc((100vw - var(--container)) / 2 - 26px));
}

.development-journey-next {
  right: max(18px, calc((100vw - var(--container)) / 2 - 26px));
}

.development-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(18px, 3vw, 34px);
}

.development-video-card {
  aspect-ratio: 16 / 9;
}

.development-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.development-video-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent, rgba(9, 13, 20, 0.18));
}

.development-video-card span::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.development-video-card span::after {
  content: "";
  position: absolute;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--blue-black);
  transform: translateX(3px);
}

.development-cta {
  padding: clamp(82px, 10vw, 140px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 30%, rgba(216, 163, 75, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-black), var(--blue-dark));
}

.development-cta .container {
  max-width: 920px;
}

.development-cta h2 {
  max-width: 850px;
  margin: 0 auto 26px;
  color: var(--gold-light);
  font-size: clamp(34px, 5.8vw, 76px);
}

.development-cta p {
  max-width: 760px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.development-cta .button {
  margin-top: 28px;
  margin-inline: auto;
}

.partners-section {
  padding: clamp(72px, 8vw, 118px) 0;
  color: var(--blue-black);
  background: var(--white);
}

.partners-head {
  display: grid;
  justify-items: center;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 58px);
  text-align: center;
}

.partners-head .section-label {
  color: var(--gold);
  border-color: rgba(19, 36, 56, 0.16);
}

.partners-head h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--blue-black);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.05;
  text-align: center;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1060px;
  margin-inline: auto;
  gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 68px);
}

.partners-grid img {
  flex: 0 1 190px;
  width: min(100%, 190px);
  height: clamp(56px, 7vw, 82px);
  object-fit: contain;
  filter: grayscale(1) saturate(0);
  opacity: 1;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.partners-grid img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partners-grid img.partner-logo-gaia {
  filter: grayscale(1) saturate(0) invert(1) contrast(1.08);
}

.site-footer {
  padding: 70px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  background: #070a10;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
}

.footer-grid img {
  width: 170px;
  margin-bottom: 24px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-contact {
  font-style: normal;
}

.footer-contact strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  transition: transform 180ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-marquee {
    overflow-x: auto;
  }

  .logo-marquee-track {
    animation: none;
    transform: none;
  }

  .logo-marquee-set[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 170px auto auto;
  }

  .site-nav {
    gap: 24px;
  }

  .hero-person {
    width: 52vw;
    opacity: 0.7;
  }

  .number-stage,
  .helio-profile,
  .connections-grid,
  .section-split,
  .service-hero-grid,
  .service-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .number-copy.right {
    text-align: left;
  }

  .partners-head {
    display: grid;
    justify-items: center;
  }

  .partners-head h2 {
    text-align: center;
  }

  .center-title {
    margin-bottom: 70px;
  }

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

  .connect-cards {
    grid-template-columns: 1fr;
  }

  .implementation-hero-grid,
  .implementation-intro-grid,
  .implementation-belief-grid,
  .implementation-structure-grid,
  .implementation-delivery-grid,
  .implementation-service-card-wide,
  .development-hero-grid,
  .development-intro-grid,
  .development-belief-grid,
  .development-programs-grid {
    grid-template-columns: 1fr;
  }

  .development-page .development-intro-grid {
    grid-template-columns: 1fr;
  }

  .implementation-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .development-support-grid,
  .development-approach-grid,
  .implementation-services-grid,
  .implementation-approach-grid {
    grid-template-columns: 1fr;
  }

  .development-speaker-card {
    grid-row: auto;
    min-height: auto;
  }

  .implementation-hero {
    min-height: 68vh;
  }

  .implementation-large-copy p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  section {
    padding: 88px 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .brand img {
    width: 136px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(9, 13, 20, 0.98);
    border: 1px solid var(--line);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }

  body.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section-split.center-copy,
  .connections-grid.center-copy {
    gap: 14px;
    max-width: 100%;
    text-align: center;
  }

  .section-split.center-copy h2,
  .connections-grid.center-copy h2 {
    font-size: clamp(25px, 7.2vw, 38px);
    line-height: 1.1;
  }

  .section-split.center-copy p:not(.section-label),
  .connections-grid.center-copy p:not(.section-label) {
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.58;
  }

  .highlight-line {
    font-size: clamp(18px, 5vw, 24px);
  }

  .site-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-bg video {
    object-position: 68% 50%;
  }

  .hero-person {
    right: -24vw;
    width: 82vw;
    min-height: 520px;
    opacity: 0.42;
  }

  h1 {
    font-size: clamp(30px, 9vw, 46px);
  }

  .hero-content p {
    max-width: 92%;
    font-size: 16px;
    line-height: 1.58;
  }

  h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .intro-copy p:not(.section-label) {
    font-size: 22px;
  }

  .solution-row {
    grid-auto-columns: minmax(282px, 84vw);
    padding-inline: 16px;
  }

  .photo-carousel-track {
    --gallery-card-width: min(86vw, 420px);
    --gallery-card-height: 260px;
    --gallery-gap: 16px;
    gap: 16px;
  }

  .gallery-row-track {
    padding-right: var(--gallery-gap);
  }

  .gallery-controls {
    justify-content: center;
  }

  .gallery-card {
    height: var(--gallery-card-height);
  }

  .principle-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    min-height: 154px;
  }

  .connect-card {
    min-height: 260px;
  }

  .connect-card span {
    margin-bottom: 72px;
  }

  .lightbox {
    padding: 72px 18px 28px;
  }

  .lightbox-content {
    max-height: calc(100vh - 128px);
  }

  .lightbox-content img,
  .lightbox-content video {
    max-height: calc(100vh - 128px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 30px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: calc(50% - 54px);
  }

  .lightbox-next {
    right: calc(50% - 54px);
  }

  .media-carousel {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .media-card {
    height: 330px;
  }

  .solution-flip-grid {
    grid-template-columns: 1fr;
  }

  .solution-flip-card,
  .solution-flip-inner {
    min-height: 720px;
  }

  .solution-back {
    grid-template-columns: 1fr;
  }

  .solution-preview {
    min-height: 300px;
  }

  .solution-detail {
    min-height: 420px;
    justify-content: flex-start;
    padding: 28px 24px;
  }

  .solution-detail h3 {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .solution-front h3 {
    max-width: calc(100% - 36px);
    padding: 22px 18px;
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .program-card,
  .program-card img {
    min-height: 560px;
    height: 560px;
  }

  .program-stack {
    padding-bottom: 18vh;
  }

  .program-card {
    top: calc(78px + ((var(--stack-index, 1) - 1) * 12px));
    margin-bottom: 22vh;
  }

  .program-card + .program-card {
    margin-top: -12vh;
  }

  .program-day {
    left: 22px;
    bottom: 180px;
  }

  .program-card h3 {
    right: 22px;
    left: 22px;
    bottom: 34px;
    font-size: clamp(20px, 5.4vw, 26px);
    line-height: 1.16;
  }

  .scroll-video {
    height: 230vh;
  }

  .scroll-video-copy {
    top: 104px;
    left: 16px;
  }

  .helio {
    padding: 96px 0;
  }

  .helio-profile {
    gap: 34px;
  }

  .helio-card {
    width: min(100%, 360px);
    grid-template-rows: 390px auto;
    justify-self: center;
  }

  .helio-profile-photo img {
    aspect-ratio: 1 / 1.12;
    object-position: 50% 14%;
  }

  .helio-profile-copy h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .service-hero {
    min-height: 66vh;
    padding: 132px 0 74px;
  }

  .service-hero h1 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .service-image {
    min-height: 360px;
  }

  .implementation-hero {
    min-height: auto;
    padding: 108px 0 42px;
  }

  .implementation-story-hero {
    min-height: 790px;
    align-items: end;
    padding: 126px 0 62px;
  }

  .implementation-story-hero-media img {
    object-position: 67% center;
  }

  .implementation-story-hero::after {
    background:
      linear-gradient(180deg, rgba(9, 13, 20, 0.38) 0%, rgba(9, 13, 20, 0.62) 34%, rgba(9, 13, 20, 0.99) 100%),
      linear-gradient(90deg, rgba(9, 13, 20, 0.76), rgba(9, 13, 20, 0.18));
  }

  .implementation-story-hero-content {
    max-width: none;
    margin-left: auto;
  }

  .implementation-story-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(31px, 9vw, 40px);
  }

  .implementation-story-copy {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    gap: 12px;
  }

  .implementation-story-copy p,
  .implementation-story-copy p:first-child {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .implementation-story-copy p:first-child {
    font-size: 19px;
    line-height: 1.32;
  }

  .implementation-hero-grid {
    gap: 18px;
  }

  .implementation-hero-orbits {
    right: -42vw;
    bottom: -30vw;
    width: 92vw;
  }

  .implementation-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 42px);
    overflow-wrap: anywhere;
  }

  .implementation-hero-panel p {
    max-width: none;
    font-size: 14px;
    line-height: 1.52;
  }

  .implementation-hero-panel {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    min-height: 0;
  }

  .implementation-hero-panel img {
    height: auto;
    min-height: 220px;
    aspect-ratio: 2.15 / 1;
  }

  .implementation-hero-panel div {
    padding: 18px;
  }

  .implementation-signal-track span {
    padding: 14px 22px;
  }

  .implementation-belief,
  .implementation-structure,
  .implementation-deliveries,
  .implementation-intro,
  .implementation-services,
  .implementation-approach,
  .implementation-gallery {
    padding: 68px 0;
  }

  .implementation-kicker {
    padding-top: 14px;
  }

  .implementation-kicker span,
  .implementation-kicker h1 {
    max-width: 330px;
    font-size: clamp(25px, 7vw, 34px);
  }

  .implementation-large-copy {
    gap: 18px;
  }

  .implementation-large-copy p {
    font-size: clamp(20px, 5.4vw, 28px);
    line-height: 1.22;
  }

  .implementation-large-copy p:nth-child(2) {
    font-size: 16px;
    line-height: 1.56;
  }

  .implementation-image-panel {
    min-height: 300px;
  }

  .implementation-impact {
    padding-bottom: 68px;
  }

  .implementation-impact-grid {
    grid-template-columns: 1fr;
  }

  .implementation-impact-grid article {
    min-height: 190px;
  }

  .implementation-impact-image img {
    min-height: 260px;
  }

  .implementation-section-head {
    margin-bottom: 30px;
  }

  .implementation-section-head h2 {
    font-size: clamp(30px, 9vw, 46px);
  }

  .implementation-service-card,
  .implementation-service-card-wide {
    min-height: auto;
  }

  .implementation-service-card img {
    height: auto;
    min-height: 280px;
    aspect-ratio: 1 / 0.78;
  }

  .implementation-service-card div {
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .implementation-service-card h3 {
    min-height: auto;
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .implementation-approach-grid article {
    min-height: 260px;
  }

  .implementation-approach-grid h3,
  .implementation-approach-grid p {
    min-height: auto;
  }

  .implementation-deliveries-head {
    margin-bottom: 30px;
  }

  .implementation-feature-card img {
    aspect-ratio: 1 / 0.78;
  }

  .implementation-accordion summary {
    min-height: 72px;
    padding: 20px;
  }

  .implementation-accordion details > div {
    padding: 0 20px 24px;
  }

  .development-hero {
    min-height: auto;
    padding: 88px 0 34px;
  }

  .development-quote-hero {
    min-height: 760px;
    align-items: end;
    padding: 124px 0 62px;
  }

  .development-quote-hero-media img {
    object-position: 66% center;
  }

  .development-quote-hero::after {
    background:
      linear-gradient(180deg, rgba(9, 13, 20, 0.4) 0%, rgba(9, 13, 20, 0.54) 36%, rgba(9, 13, 20, 0.98) 100%),
      linear-gradient(90deg, rgba(9, 13, 20, 0.78), rgba(9, 13, 20, 0.18));
  }

  .development-quote-hero blockquote p {
    font-size: clamp(26px, 7vw, 32px);
    letter-spacing: -0.045em;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .development-quote-hero blockquote footer {
    margin-top: 20px;
  }

  .development-hero-orbits {
    right: -42vw;
    bottom: -30vw;
    width: 92vw;
  }

  .development-hero-grid {
    gap: 24px;
  }

  .development-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.8vw, 44px);
    overflow-wrap: anywhere;
  }

  .development-hero-panel {
    max-width: 360px;
  }

  .development-hero-panel img {
    aspect-ratio: 1 / 1.08;
  }

  .development-intro,
  .development-belief,
  .development-support,
  .development-approach,
  .development-programs,
  .development-journeys,
  .development-cta {
    padding: 68px 0;
  }

  .development-speakers {
    padding-bottom: 68px;
  }

  .development-speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .development-speakers-grid.reveal {
    opacity: 1;
    transform: none;
  }

  .development-speakers-track,
  .development-speakers-set {
    gap: 14px;
  }

  .development-person-card {
    width: min(82vw, 310px);
    min-height: 560px;
    grid-template-rows: minmax(300px, 1fr) auto;
  }

  .development-person-card.is-expanded {
    width: min(88vw, 344px);
  }

  .development-speakers-grid .development-person-card,
  .development-speakers-grid .development-person-card.is-expanded {
    width: 100%;
    min-height: 470px;
  }

  .development-person-card img {
    min-height: 300px;
  }

  .development-speakers-grid .development-person-card img {
    min-height: 250px;
  }

  .development-person-copy {
    min-height: 156px;
    padding: 20px;
  }

  .development-person-copy h3 {
    font-size: 24px;
  }

  .development-person-card.is-expanded .development-person-copy {
    max-height: 520px;
  }

  .development-speaker-modal {
    padding: 16px;
  }

  .development-speaker-modal-card {
    max-height: 90vh;
    grid-template-columns: 1fr;
  }

  .development-speaker-modal-photo img {
    min-height: 280px;
    max-height: 36vh;
  }

  .development-speaker-modal-copy {
    max-height: 54vh;
    padding: 24px 20px 28px;
  }

  .development-speaker-close {
    top: 12px;
    right: 12px;
  }

  .development-speaker-nav {
    top: 34%;
    width: 44px;
    height: 44px;
  }

  .development-photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .development-photo-stack img {
    min-height: 210px;
  }

  .development-photo-stack img:first-child {
    transform: translateY(24px);
  }

  .implementation-page .development-photo-stack .implementation-photo-thumbnail:first-child {
    --implementation-photo-offset: 24px;
  }

  .development-page .development-photo-stack .development-photo-thumbnail:first-child {
    --development-photo-offset: 24px;
  }

  .development-kicker {
    padding-top: 14px;
  }

  .development-kicker span,
  .development-kicker h1 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .development-large-copy p,
  .development-belief .development-large-copy p:nth-child(2) {
    font-size: clamp(20px, 5.4vw, 28px);
    line-height: 1.22;
  }

  .development-large-copy p:nth-child(2),
  .development-belief .development-large-copy p:nth-child(3) {
    font-size: 16px;
    line-height: 1.56;
  }

  .development-service-card,
  .development-approach-grid article {
    min-height: 260px;
  }

  .development-approach-grid h3,
  .development-approach-grid p {
    min-height: auto;
  }

  .development-speaker-photos {
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .development-programs ul {
    grid-template-columns: 1fr;
  }

  .development-journey-strip {
    grid-auto-columns: minmax(260px, 82vw);
    padding-inline: 16px;
  }

  .development-journey-card {
    height: 340px;
  }

  .development-journey-nav {
    top: auto;
    bottom: -66px;
    width: 46px;
    height: 46px;
    font-size: 34px;
    transform: none;
  }

  .development-journey-nav:hover {
    transform: scale(1.04);
  }

  .development-journey-prev {
    left: calc(50% - 54px);
  }

  .development-journey-next {
    right: calc(50% - 54px);
  }

  .development-video-grid {
    grid-template-columns: 1fr;
    margin-top: 88px;
  }

  .implementation-page .development-video-grid {
    margin-top: 24px;
  }

  .helio-lineup {
    grid-auto-columns: minmax(282px, 82vw);
    padding-inline: 16px;
  }

  .speaker-card {
    grid-template-rows: 390px auto;
  }

  .speaker-card:nth-child(n) {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .development-speakers-grid {
    grid-template-columns: 1fr;
  }

  .partners-section {
    padding: 58px 0;
  }

  .partners-grid {
    justify-content: center;
    gap: 26px 22px;
  }

  .partners-grid img {
    flex-basis: calc(50% - 22px);
    height: 54px;
  }

  .implementation-intro-media {
    grid-template-columns: 1fr;
  }

  .development-page .development-intro-media {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button-primary {
    width: calc(100% - 72px);
    min-width: 0;
  }

  .section-split {
    gap: 28px;
    margin-bottom: 44px;
  }

  .scroll-video-frame {
    width: calc(100vw - 32px);
    height: calc(100vw - 32px);
  }

  .number-stage {
    gap: 34px;
  }

  .ghost-numbers {
    font-size: 86px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* Navegação e módulos consolidados */
.site-header {
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 16px;
  padding-inline: 24px;
}

.site-nav {
  gap: clamp(12px, 1.25vw, 22px);
  font-size: 11px;
}

.brand-method {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 163, 75, 0.16), transparent 30%),
    var(--blue-black);
}

.brand-method-head,
.credentials-leadership-head,
.proof-head {
  display: grid;
  max-width: 900px;
  gap: 20px;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.brand-method-head h2,
.credentials-leadership-head h2,
.proof-head h2 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.03;
}

.brand-method-head > p:last-child,
.credentials-leadership-head > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.brand-method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-method-step {
  min-height: 330px;
  padding: 34px clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-method-step:first-child {
  padding-left: 0;
}

.brand-method-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.brand-method-step > span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold-light);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.brand-method-step h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.brand-method-step p,
.brand-method-principles p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.58;
}

.brand-method-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.brand-method-principles p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(216, 163, 75, 0.28);
  border-radius: 999px;
  text-align: center;
}

.credentials-leadership {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 163, 75, 0.12), transparent 30%),
    var(--blue-dark);
}

.credentials-leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 378px);
  align-items: stretch;
  gap: clamp(36px, 6vw, 84px);
}

.credential-metrics {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.credential-metrics article {
  display: grid;
  grid-template-columns: minmax(245px, 0.5fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.credential-metrics article:last-child > span {
  max-width: 420px;
}

.credential-metrics strong {
  color: var(--gold-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 0.92;
  white-space: nowrap;
}

.credential-metrics small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.45em;
}

.credential-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.credentials-leadership .helio-card {
  align-self: stretch;
}

@media (max-width: 1040px) {
  .credentials-leadership-grid {
    grid-template-columns: 1fr;
  }

  .credentials-leadership .helio-card {
    justify-self: center;
  }
}

.proof {
  padding: clamp(96px, 10vw, 136px) 0 0;
  background: #f5f2ea;
}

.proof-head h2,
.proof .section-split h2 {
  color: var(--blue-black);
}

.proof-head {
  text-align: center;
}

.proof-head h2 {
  max-width: 980px;
  margin-inline: auto;
}

.proof-clients {
  padding: clamp(82px, 9vw, 120px) 0;
  background: var(--white);
}

.proof-clients .section-split {
  margin-bottom: 52px;
}

@media (min-width: 1181px) {
  .site-nav a[href$="#contato"] {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: grid;
    max-height: calc(100vh - 94px);
    justify-content: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 14px 18px;
    background: rgba(9, 13, 20, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }

  .site-nav a {
    padding: 13px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .header-contact-actions {
    display: none;
  }
}

@media (max-width: 820px) {
  .brand-method-steps,
  .brand-method-principles,
  .credentials-leadership-grid {
    grid-template-columns: 1fr;
  }

  .brand-method-step,
  .brand-method-step:first-child,
  .brand-method-step:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .brand-method-step > span {
    margin-bottom: 34px;
  }

  .brand-method-principles p {
    border-radius: 12px;
  }

  .credential-metrics article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .credentials-leadership .helio-card {
    justify-self: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .helio-details,
  .header-email-button {
    transition: none;
  }
}

/* Títulos posteriores ao perfil de Hélio: leitura compacta e equilibrada. */
.proof-head h2,
.proof-clients .section-split h2,
.partners-head h2,
.final-cta h2 {
  max-width: 980px;
  margin-inline: auto;
  line-height: 1.08;
  text-wrap: balance;
}

@media (max-width: 820px) {
  .proof-head h2,
  .proof-clients .section-split h2,
  .partners-head h2,
  .final-cta h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(22px, 6.2vw, 34px);
    line-height: 1.12;
  }

  .final-cta h2 br {
    display: none;
  }
}
