:root {
  --ink: #f8f4ff;
  --muted: #b9afc9;
  --night: #0e0a17;
  --panel: rgba(30, 22, 50, 0.76);
  --line: rgba(214, 198, 255, 0.15);
  --mint: #8d6bce;
  --lime: #c3a7ff;
  --aqua: #9b82dc;
  --mx: 50%;
  --my: 45%;
  --orbit-rx: -3deg;
  --orbit-ry: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(141, 107, 206, 0.15), transparent 30%),
    linear-gradient(140deg, #0b0812 0%, #171026 48%, #0e0a18 100%);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

.ambient {
  position: fixed;
  z-index: -2;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient-one {
  top: -18rem;
  right: -12rem;
  background: #7656b5;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: -24rem;
  left: -13rem;
  background: #4e357c;
  animation: drift 20s ease-in-out -5s infinite alternate-reverse;
}

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

.site-header,
.site-footer,
main {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

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

.brand-mark {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  overflow: hidden;
  background: linear-gradient(145deg, #d5c2ff 0%, var(--mint) 50%, #4a2d77 100%);
  clip-path: polygon(50% 0, 100% 43%, 50% 100%, 0 43%);
  filter: drop-shadow(0 0 10px rgba(141, 107, 206, 0.38));
}

.brand-mark span {
  position: absolute;
  display: block;
}

.brand-mark span:first-child {
  inset: 43% 0 0;
  background: linear-gradient(145deg, rgba(42, 24, 73, 0.24), #51327e);
  clip-path: polygon(0 0, 50% 23%, 100% 0, 50% 100%);
}

.brand-mark span:last-child {
  inset: 0 26% 43%;
  background: rgba(238, 229, 255, 0.4);
  clip-path: polygon(50% 0, 100% 100%, 50% 80%, 0 100%);
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.055em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #e4dbf2;
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  margin-top: 28px;
  background: var(--mint);
  transition: width 240ms ease;
}

.header-link:hover::after {
  width: 102px;
}

.header-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

main {
  display: block;
  min-height: calc(100vh - 200px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 110px);
  padding: 46px 0 70px;
  gap: clamp(40px, 7vw, 110px);
}

.hero-copy {
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: #c3b5d8;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--lime);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 5.8vw, 6.9rem);
  font-weight: 570;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.accent-word {
  color: transparent;
  background: linear-gradient(100deg, #9575d5, var(--lime) 65%, #e7dcff);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 8px 9px 8px 24px;
  border-radius: 100px;
  color: #130d20;
  background: linear-gradient(105deg, var(--mint), var(--lime));
  font-size: 0.92rem;
  font-weight: 750;
  box-shadow: 0 12px 40px rgba(141, 107, 206, 0.18);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.primary-cta:hover {
  box-shadow: 0 17px 50px rgba(141, 107, 206, 0.32);
  transform: translateY(-3px);
}

.cta-icon {
  display: grid;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(18, 12, 31, 0.92);
  font-size: 1.1rem;
  place-items: center;
}

.micro-copy {
  color: #9588a9;
  font-size: 0.79rem;
}

.service-orbit {
  position: relative;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  margin-inline: auto;
  perspective: 1100px;
  user-select: none;
  touch-action: pan-y;
}

.orbit-stage {
  position: absolute;
  inset: 0;
  cursor: grab;
  transform: rotateX(var(--orbit-rx));
  transform-style: preserve-3d;
  will-change: transform;
}

.service-orbit.is-dragging .orbit-stage {
  cursor: grabbing;
}

.service-orbit:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 10px;
  border-radius: 50%;
}

.orbit-hint {
  position: absolute;
  right: 7%;
  bottom: -2%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #8f82a2;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: hint-pulse 2.8s ease-in-out infinite;
}

.orbit-hint span {
  color: var(--lime);
  font-size: 0.95rem;
}

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

.orbit-ring::before {
  position: absolute;
  top: -4px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px var(--mint);
}

.orbit-ring-outer {
  inset: 5%;
  animation: spin 36s linear infinite;
}

.orbit-ring-inner {
  inset: 21%;
  border-style: dashed;
  animation: spin 29s linear infinite reverse;
}

.orbit-ring-inner::before {
  top: auto;
  right: calc(50% - 3px);
  bottom: -3px;
  left: auto;
  width: 6px;
  height: 6px;
  background: var(--lime);
}

.core {
  position: absolute;
  inset: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(195, 167, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(155, 130, 220, 0.16), transparent 50%),
    rgba(18, 12, 31, 0.92);
  box-shadow:
    0 0 80px rgba(141, 107, 206, 0.2),
    inset 0 0 38px rgba(195, 167, 255, 0.06);
  text-align: center;
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.core::before {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
}

.core-gem {
  position: absolute;
  top: 15%;
  left: 25%;
  width: 50%;
  height: 56%;
  background: linear-gradient(145deg, #d3c0ff 0%, #8d6bce 52%, #42256d 100%);
  clip-path: polygon(50% 0, 100% 42%, 50% 100%, 0 42%);
  filter: drop-shadow(0 16px 18px rgba(67, 38, 110, 0.48));
  opacity: 0.72;
  animation: gem-turn 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.gem-face,
.gem-shine {
  position: absolute;
  display: block;
}

.gem-face-one {
  inset: 42% 0 0;
  background: linear-gradient(145deg, #7554b7, #3d2264);
  clip-path: polygon(0 0, 50% 23%, 100% 0, 50% 100%);
}

.gem-face-two {
  inset: 0 25% 58%;
  background: rgba(235, 225, 255, 0.42);
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
}

.gem-shine {
  top: 15%;
  left: 25%;
  width: 13%;
  height: 25%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(3px);
  transform: rotate(35deg);
}

.core-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8%;
  text-shadow: 0 2px 12px #160d26;
}

.core-label {
  color: #aa9bbb;
  font-size: clamp(0.48rem, 0.7vw, 0.68rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.core strong {
  margin: 5px 0;
  color: #fbf8ff;
  font-size: clamp(1rem, 1.8vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  transition: opacity 220ms ease, transform 220ms ease;
}

.core strong.changing {
  opacity: 0;
  transform: translateY(8px);
}

.service-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  width: clamp(142px, 12.5vw, 174px);
  min-height: 118px;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(222, 208, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(42, 31, 68, 0.94), rgba(18, 12, 31, 0.82));
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  transition: border-color 260ms ease, filter 260ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 80px;
  height: 80px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  filter: blur(40px);
  opacity: 0.08;
}

.service-card:hover {
  z-index: 5;
  border-color: rgba(195, 167, 255, 0.58);
  filter: brightness(1.16);
}

.service-card:focus-visible,
.service-card[aria-pressed="true"] {
  border-color: var(--lime);
  outline: none;
  box-shadow:
    0 0 0 2px rgba(195, 167, 255, 0.15),
    0 16px 55px rgba(74, 45, 119, 0.32);
  filter: brightness(1.14);
}

.service-number {
  color: #8f7fa5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-icon {
  justify-self: end;
}

.service-icon svg {
  width: 22px;
  fill: none;
  stroke: #b99af7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-card p {
  align-self: end;
  margin: 17px 0 0;
  color: #eee8f8;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 600;
  line-height: 1.38;
}

.card-one {
  animation: none;
}

.card-two {
  animation: none;
}

.card-three {
  animation: none;
}

.card-four {
  animation: none;
}

.card-five {
  animation: none;
}

.decision-section {
  padding: clamp(90px, 10vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.6fr);
  column-gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-index {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(195, 167, 255, 0.28);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.62rem;
  place-items: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.6vw, 5.3rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading h2 span {
  color: var(--lime);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.role-tabs {
  display: flex;
  gap: 8px;
  margin-top: clamp(45px, 6vw, 80px);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 12, 31, 0.52);
  width: fit-content;
}

.role-tab {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: #9f93b2;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.role-tab:hover {
  color: var(--ink);
}

.role-tab.active {
  color: #171023;
  background: linear-gradient(105deg, #a98be5, var(--lime));
  box-shadow: 0 8px 28px rgba(83, 55, 132, 0.28);
}

.role-tab:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.role-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  align-items: center;
  min-height: 560px;
  margin-top: 18px;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(46, 34, 73, 0.62), rgba(18, 12, 31, 0.72)),
    radial-gradient(circle at 85% 20%, rgba(141, 107, 206, 0.16), transparent 34%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.18);
  transition: border-color 260ms ease;
}

.role-panel.switching {
  border-color: rgba(195, 167, 255, 0.42);
}

.role-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.role-focus {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bda9e2;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.role-focus::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--mint);
}

.role-copy h3 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 560;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.role-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.outcome-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(214, 198, 255, 0.12);
  border-radius: 16px;
  background: rgba(13, 9, 23, 0.36);
  transition: border-color 220ms ease, transform 220ms ease;
}

.outcome-grid article:hover {
  border-color: rgba(195, 167, 255, 0.36);
  transform: translateY(-4px);
}

.outcome-grid article > span {
  color: #7f6f96;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.outcome-grid strong {
  display: block;
  margin-top: 24px;
  color: #f0eaff;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.outcome-grid p {
  margin: 7px 0 0;
  color: #9388a4;
  font-size: 0.74rem;
  line-height: 1.5;
}

.role-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
}

.role-cta span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(195, 167, 255, 0.34);
  border-radius: 50%;
  color: var(--lime);
  place-items: center;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.role-cta:hover span:last-child {
  color: #171023;
  background: var(--lime);
  transform: translate(3px, -3px);
}

.priority-map {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
}

.map-orbit,
.map-core {
  position: absolute;
  border-radius: 50%;
}

.map-orbit {
  border: 1px solid rgba(195, 167, 255, 0.16);
}

.map-orbit::before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--mint);
}

.map-orbit-one {
  inset: 4%;
  animation: spin 28s linear infinite;
}

.map-orbit-one::before {
  top: 15%;
  right: 9%;
}

.map-orbit-two {
  inset: 20%;
  border-style: dashed;
  animation: spin 20s linear infinite reverse;
}

.map-orbit-two::before {
  bottom: -4px;
  left: calc(50% - 4px);
}

.map-core {
  inset: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(195, 167, 255, 0.22);
  background:
    radial-gradient(circle at 38% 30%, rgba(195, 167, 255, 0.16), transparent 55%),
    rgba(20, 13, 35, 0.9);
  box-shadow: 0 0 70px rgba(89, 59, 139, 0.22);
  text-align: center;
}

.map-core span {
  color: #8d80a0;
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-core strong {
  max-width: 100px;
  margin-top: 7px;
  color: var(--lime);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  line-height: 1.25;
}

.map-point {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 88px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(214, 198, 255, 0.14);
  border-radius: 100px;
  color: #c4b8d6;
  background: rgba(26, 18, 43, 0.9);
  font-size: 0.66rem;
  font-weight: 650;
  text-align: center;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.point-one {
  top: 11%;
  left: 1%;
}

.point-two {
  top: 29%;
  right: -2%;
}

.point-three {
  right: 13%;
  bottom: 6%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  border-top: 1px solid var(--line);
  color: #82768f;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  animation: reveal 850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 100ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

.reveal-delay-3 {
  animation-delay: 360ms;
}

.page-ready .reveal {
  opacity: 1;
  animation: none;
  transform: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateZ(42px);
  }
  50% {
    transform: translateY(-10px) translateZ(58px);
  }
}

@keyframes drift {
  to {
    transform: translate3d(8%, 7%, 0) scale(1.1);
  }
}

@keyframes gem-turn {
  0%,
  100% {
    transform: rotateY(-12deg) rotateX(3deg) translateZ(14px);
  }
  50% {
    transform: rotateY(16deg) rotateX(-4deg) translateZ(25px);
  }
}

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .service-orbit {
    width: min(90vw, 650px);
    margin-top: 20px;
  }

  .orbit-hint {
    right: 12%;
    bottom: -5%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .role-panel {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .priority-map {
    width: min(100%, 400px);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 36px, 1440px);
  }

  .site-header {
    height: 84px;
  }

  .header-link span {
    display: none;
  }

  .header-link:hover::after {
    width: 0;
  }

  .hero {
    gap: 46px;
    min-height: auto;
    padding: 54px 0 70px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.64rem;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(3rem, 15.5vw, 5rem);
  }

  .intro {
    margin-top: 28px;
    font-size: 0.98rem;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .service-orbit {
    width: min(112vw, 540px);
    margin-left: -7vw;
  }

  .service-card {
    width: 132px;
    min-height: 103px;
    padding: 13px;
    border-radius: 15px;
  }

  .service-card p {
    margin-top: 11px;
    font-size: 0.71rem;
  }

  .service-icon svg {
    width: 19px;
  }

  .decision-section {
    padding: 84px 0 90px;
  }

  .section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .section-heading h2 br {
    display: none;
  }

  .role-tabs {
    width: 100%;
    margin-top: 44px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .role-tabs::-webkit-scrollbar {
    display: none;
  }

  .role-tab {
    flex: 0 0 auto;
    padding-inline: 16px;
  }

  .role-panel {
    min-height: 0;
    padding: 28px 20px 40px;
    border-radius: 22px;
  }

  .role-copy h3 {
    font-size: clamp(2.1rem, 10.5vw, 3.2rem);
  }

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

  .outcome-grid article {
    min-height: 116px;
  }

  .outcome-grid strong {
    margin-top: 17px;
  }

  .priority-map {
    width: min(100%, 330px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 20px 0;
    line-height: 1.5;
  }

  .site-footer p {
    margin: 0;
  }
}

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