.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand__mark--header {
  /* width: 5.8rem;
  height: 5.8rem; */
  width: 6.8rem;
  height: 3.8rem;
}

.brand__mark--footer {
  width: clamp(4rem, 7vw, 4.9rem);
  height: clamp(4rem, 7vw, 4.9rem);
}

.brand__logo {
  display: block;
  color: var(--text-primary);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.brand__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.brand__image--footer {
  width: 100%;
  height: 100%;
}

.brand__image--header {
  width: 100%;
  height: 100%;
}

.brand__logo--small {
  font-size: 1.05rem;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__sub {
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.brand--footer {
  margin-bottom: var(--space-3);
}

.footer .brand__image--footer {
  max-height: 78px;
}

html[data-theme="dark"] .brand__image {
  filter: none;
}

html[data-theme="light"] .brand__image {
  filter: none;
}

.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 0.9vw, 0.8rem);
  min-width: 0;
  position: relative;
}

.nav__item {
  position: relative;
}

.nav__item--mega {
  position: static;
}

.nav__link,
.menu-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-secondary);
  background: transparent;
  font-size: 0.92rem;
  /* font-weight: var(--weight-bold); */
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav__link.is-current,
.nav__link[aria-current="page"],
.nav__link:hover,
.nav__link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--text-primary);
  border-color: var(--accent-ring);
  background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 9%, transparent),
    0 10px 26px color-mix(in srgb, var(--accent-primary) 14%, transparent);
}

.nav__link--contact {
  color: #ffffff !important;
  border-color: rgba(41, 98, 255, 0.4) !important;
  background: linear-gradient(135deg, #2972FF 0%, #040E14 100%) !important;
}

.nav__link--contact:hover,
.nav__link--contact:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #040E14 0%, #2972FF 100%) !important;
  border-color: rgba(41, 98, 255, 0.5) !important;
}

.nav__toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.16rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease, margin-top 180ms ease;
}

.nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1rem;
}

.nav__item:hover .nav__toggle::after,
.nav__item:focus-within .nav__toggle::after,
.nav__item.is-open .nav__toggle::after {
  transform: rotate(225deg);
  margin-top: 0.08rem;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 320px;
  display: none;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(41, 98, 255, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(41, 98, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 90% 90%, rgba(29, 233, 182, 0.12), transparent 22rem),
    radial-gradient(circle at 50% 50%, rgba(255, 196, 0, 0.04), transparent 18rem),
    color-mix(in srgb, var(--bg-glass) 96%, transparent);
  backdrop-filter: blur(22px);
  box-shadow:
    0 32px 72px rgba(4, 14, 20, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 20px rgba(41, 98, 255, 0.08);
}

.nav__dropdown--panel {
  min-width: 320px;
}

.nav__dropdown--mega {
  left: auto;
  right: 0;
  width: min(1240px, calc(100vw - 3rem));
  max-width: calc(100vw - 3rem);
  min-width: 0;
  max-height: calc(100vh - var(--header-height) - 2rem);
  overflow: auto;
  gap: 1.35rem;
  padding: 1.8rem 2.2rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(29, 233, 182, 0.22), transparent 28rem),
    radial-gradient(circle at 50% 30%, rgba(41, 98, 255, 0.25), transparent 30rem),
    radial-gradient(circle at 85% 85%, rgba(255, 196, 0, 0.15), transparent 28rem),
    #040E14 !important;
}

.nav__dropdown--mega::before,
.nav__dropdown--mega::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav__dropdown--mega::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  opacity: 0.36;
}

.nav__dropdown--mega::after {
  top: 3rem;
  right: 8rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 68%);
  filter: blur(8px);
  animation: nav-orb-float 8s ease-in-out infinite;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  display: grid;
}

.nav__item:focus-within .nav__dropdown--mega,
.nav__item.is-open .nav__dropdown--mega {
  transform: translateY(0);
}

.nav__menu-link {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.4;
  background: transparent;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav__menu-link:hover,
.nav__menu-link:focus-visible {
  color: var(--text-primary);
  border-color: color-mix(in srgb, var(--accent-primary) 22%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-primary) 9%, transparent), color-mix(in srgb, var(--accent-secondary) 7%, transparent)),
    color-mix(in srgb, var(--bg-card) 84%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 8%, transparent),
    0 16px 30px color-mix(in srgb, var(--accent-primary) 12%, transparent);
  transform: translateX(4px);
}

.nav__mega-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
  padding: 0.15rem 0.15rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border-primary) 88%, transparent);
}

.nav__mega-intro {
  display: grid;
  gap: 0.55rem;
}

.nav__mega-eyebrow {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__mega-title {
  color: var(--text-primary);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.nav__mega-copy {
  /* max-width: 64ch; */
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

.nav__mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 0.9rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 24%, transparent);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-primary) 12%, transparent), color-mix(in srgb, var(--accent-secondary) 9%, transparent)),
    transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav__mega-cta:hover,
.nav__mega-cta:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent-primary) 36%, transparent);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent-primary) 16%, transparent);
}

.nav__mega-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.nav__mega-card {
  --nav-pillar-start: rgba(96, 165, 250, 0.18);
  --nav-pillar-end: rgba(45, 212, 191, 0.14);
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--border-primary) 90%, transparent);
  border-radius: 24px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--text-primary) 4%, transparent), color-mix(in srgb, var(--text-primary) 1%, transparent)),
    color-mix(in srgb, var(--bg-card) 92%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 8%, transparent),
    0 18px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav__mega-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--nav-pillar-start), transparent 42%),
    radial-gradient(circle at bottom right, var(--nav-pillar-end), transparent 52%);
  opacity: 0.95;
  pointer-events: none;
}

.nav__mega-card--ai-in-microsoft-365 {
  --nav-pillar-start: rgba(56, 189, 248, 0.22);
  --nav-pillar-end: rgba(34, 211, 238, 0.15);
}

.nav__mega-card--migration-automation {
  --nav-pillar-start: rgba(59, 130, 246, 0.2);
  --nav-pillar-end: rgba(14, 165, 233, 0.14);
}

.nav__mega-card--power-bi {
  --nav-pillar-start: rgba(14, 165, 233, 0.18);
  --nav-pillar-end: rgba(56, 189, 248, 0.18);
}

.nav__mega-card:hover,
.nav__mega-card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-primary) 22%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 10%, transparent),
    0 22px 42px color-mix(in srgb, var(--accent-primary) 14%, transparent);
}

.nav__mega-card-top,
.nav__mega-card-copy,
.nav__mega-services,
.nav__mega-card-cta {
  position: relative;
  z-index: 1;
}

.nav__mega-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.95rem;
}

.nav__mega-visual {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    linear-gradient(180deg, color-mix(in srgb, #ffffff 8%, transparent), color-mix(in srgb, #ffffff 2%, transparent)),
    rgba(8, 12, 20, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 28px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.nav__mega-badge {
  position: absolute;
  top: 0.38rem;
  left: 0.38rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.58rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.09);
}

.nav__mega-icon {
  position: relative;
  z-index: 1;
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.nav__mega-visual-ring {
  position: absolute;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: nav-ring-spin 12s linear infinite;
}

.nav__mega-visual-ring--alt {
  width: 2.25rem;
  height: 2.25rem;
  border-style: dashed;
  opacity: 0.75;
  animation-duration: 9s;
  animation-direction: reverse;
}

.nav__mega-card-title {
  color: var(--text-primary);
  font-size: 1.12rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.nav__mega-card-line {
  margin-top: 0.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nav__mega-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.65rem;
  list-style: none;
}

.nav__mega-service-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.03);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav__mega-service-link::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.08);
}

.nav__mega-service-link:hover,
.nav__mega-service-link:focus-visible {
  color: var(--text-primary);
  border-color: color-mix(in srgb, var(--accent-primary) 18%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-primary) 8%, transparent), color-mix(in srgb, var(--accent-secondary) 6%, transparent)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px color-mix(in srgb, var(--accent-primary) 11%, transparent);
  transform: translateX(4px);
}

.nav__mega-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__mega-card-cta span {
  transition: transform 180ms ease;
}

.nav__mega-card-cta:hover span,
.nav__mega-card-cta:focus-visible span {
  transform: translateX(3px);
}

.nav {
  gap: clamp(0.75rem, 1vw, 1.35rem);
}

.nav__link,
.menu-toggle {
  min-height: auto;
  padding: 0.3rem 0;
  border: 0;
  border-radius: 0;
  color: var(--text-primary);
  background: transparent;
  font-size: 0.95rem;
  /* font-weight: 700; */
  line-height: 1.2;
  box-shadow: none;
}

.nav__link.is-current,
.nav__link[aria-current="page"],
.nav__link:hover,
.nav__link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border: 0;
  color: var(--text-primary);
  background: transparent;
  box-shadow: none;
}

.nav__link--contact {
  min-height: 38px;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(41, 98, 255, 0.4) !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2972FF 0%, #040E14 100%) !important;
}

.nav__link--contact:hover,
.nav__link--contact:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #040E14 0%, #2972FF 100%) !important;
  border-color: rgba(41, 98, 255, 0.5) !important;
}

.nav__toggle::after {
  width: 0.36rem;
  height: 0.36rem;
  margin-left: 0.18rem;
  border-right-width: 1.25px;
  border-bottom-width: 1.25px;
}

.nav__item:hover .nav__toggle::after {
  transform: rotate(45deg);
  margin-top: -0.16rem;
}

.nav__item:focus-within .nav__toggle::after,
.nav__item.is-open .nav__toggle::after {
  transform: rotate(225deg);
  margin-top: 0.08rem;
}

.nav__item::after {
  height: 0.95rem;
}

.nav__dropdown {
  top: calc(100% + 0.85rem);
  min-width: 250px;
  padding: 0.95rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98)),
    #121212;
  backdrop-filter: blur(12px);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav__dropdown {
  scrollbar-width: none;
}

.nav__dropdown::-webkit-scrollbar {
  display: none;
}

.nav__dropdown--panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  max-height: calc(100vh - var(--header-height));
  padding: clamp(2rem, 3vw, 3rem) max(1.5rem, calc((100vw - var(--container)) / 2));
  gap: 0.25rem;
  overflow: auto;
  transform: translateY(0.5rem);
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.98), rgba(15, 15, 15, 0.98)),
    #121212;
}

.nav__panel-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 0.85rem;
}

.nav__panel-link-columns--single {
  grid-template-columns: 1fr;
}

.nav__panel-link-column {
  display: grid;
  gap: 0.2rem;
}

.nav__dropdown--panel-mega {
  gap: 0;
}

.nav__panel-mega {
  display: grid;
  grid-template-columns: minmax(18rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.nav__panel-mega-intro {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.03);
}

.nav__panel-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-items: stretch;
}

.nav__panel-mega-column {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.nav__panel-mega-link {
  display: grid;
  gap: 0.22rem;
  min-height: 4.7rem;
  padding: 0.78rem 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  background: transparent;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav__panel-mega-label {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: var(--weight-bold);
  line-height: 1.25;
}

.nav__panel-mega-link small {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.nav__panel-mega-link--product {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon helper";
  column-gap: 0.78rem;
  align-items: start;
}

.nav__panel-mega-link--product .nav__panel-mega-icon {
  grid-area: icon;
}

.nav__panel-mega-link--product .nav__panel-mega-label {
  grid-area: label;
}

.nav__panel-mega-link--product small {
  grid-area: helper;
}

.nav__panel-mega-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__panel-mega-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__panel-mega-link:hover,
.nav__panel-mega-link:focus-visible {
  color: var(--text-primary);
  border-left-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(3px);
}

.nav__panel-mega-link--product:hover .nav__panel-mega-icon,
.nav__panel-mega-link--product:focus-visible .nav__panel-mega-icon {
  border-color: rgba(251, 191, 36, 0.28);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(250, 204, 21, 0.05)),
    rgba(255, 255, 255, 0.04);
  color: #fcd34d;
}

.nav__dropdown--mega {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: auto;
  max-width: none;
  max-height: calc(100vh - var(--header-height));
  padding: clamp(1.35rem, 2.6vw, 2.1rem) max(1.15rem, calc((100vw - var(--container)) / 2));
  gap: clamp(0.85rem, 1.4vw, 1.2rem);
  overflow: auto;
  transform: translateY(0.5rem);
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.98), rgba(15, 15, 15, 0.98)),
    #121212;
}

.nav__dropdown--mega::after {
  display: none;
}

.nav__dropdown--mega::before {
  inset: 0;
  background:
    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: 56px 56px;
  opacity: 0.22;
}

.nav__item:hover .nav__dropdown {
  display: none;
}

.nav__item:focus-within .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  display: grid;
}

.nav__item:focus-within .nav__dropdown--mega,
.nav__item.is-open .nav__dropdown--mega {
  transform: translateY(0);
}

.nav__item:focus-within .nav__dropdown--panel,
.nav__item.is-open .nav__dropdown--panel {
  transform: translateY(0);
}

.nav__menu-link {
  display: block;
  padding: 0.72rem 0.1rem 0.72rem 0.8rem;
  border: 0;
  border-radius: 0;
  font-size: 0.92rem;
  background: transparent;
}

.nav__dropdown--panel .nav__menu-link {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  line-height: 1.35;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nav__menu-link:hover,
.nav__menu-link:focus-visible {
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transform: none;
}

.nav__dropdown--panel .nav__menu-link:hover,
.nav__dropdown--panel .nav__menu-link:focus-visible {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.28);
}

.nav__mega-head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  padding: 0 0 0.65rem;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__mega-title {
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.nav__mega-copy {
  /* max-width: 46ch; */
  font-size: 0.84rem;
  line-height: 1.45;
}

.nav__mega-cta {
  min-height: auto;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.nav__mega-cta:hover,
.nav__mega-cta:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nav__mega-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.nav__mega-grid--pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(0.75rem, 1.2vw, 1rem);
}

.nav__mega-section {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  min-width: 0;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav__mega-section:hover {
  /* transform: translateY(-2px); */
  border-color: rgba(41, 98, 255, 0.25);
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 12px 36px rgba(4, 14, 20, 0.2);
}

.nav__mega-label {
  color: var(--text-primary);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__mega-link-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.08rem;
  align-items: start;
  min-height: 0;
  max-height: min(28rem, calc(100vh - var(--header-height) - 10.5rem));
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.2rem;
}

.nav__mega-link-columns--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.nav__mega-link-column {
  display: grid;
  gap: 0.08rem;
}

.nav__mega-link-columns::-webkit-scrollbar {
  width: 0.4rem;
}

.nav__mega-link-columns::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
}

.nav__mega-link-columns::-webkit-scrollbar-track {
  background: transparent;
}

.nav__mega-section-copy {
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.35;
}

.nav__mega-link {
  display: block;
  padding: 0.33rem 0.1rem 0.33rem 0.58rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.22;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nav__mega-link:hover,
.nav__mega-link:focus-visible {
  color: var(--text-primary);
  border-left-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.nav__mega-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.1rem;
  color: var(--text-primary);
  font-size: 0.66rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__mega-section-cta span {
  transition: transform 180ms ease;
}

.nav__mega-section-cta:hover span,
.nav__mega-section-cta:focus-visible span {
  transform: translateX(3px);
}

.theme-toggle {
  --toggle-width: 4.55rem;
  --toggle-height: 2.45rem;
  --toggle-padding: 0.22rem;
  --toggle-thumb-size: 1.92rem;
  --toggle-shift: calc(var(--toggle-width) - var(--toggle-thumb-size) - (var(--toggle-padding) * 2));
  position: relative;
  width: var(--toggle-width);
  height: var(--toggle-height);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px !important;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: none;
}

.theme-toggle__track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(19, 23, 35, 0.98), rgba(4, 7, 14, 1)),
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.1), transparent 48%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 20px rgba(0, 0, 0, 0.26),
    0 16px 28px rgba(0, 0, 0, 0.26);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  width: 0.95rem;
  height: 0.95rem;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.52);
  pointer-events: none;
  z-index: 2;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.theme-toggle__icon--moon {
  left: 0.7rem;
  transform: translateY(-50%);
}

.theme-toggle__icon--sun {
  right: 0.7rem;
  transform: translateY(-50%) scale(0.92);
}

.theme-toggle__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle__icon--moon svg path {
  fill: currentColor;
  stroke: none;
}

.theme-toggle__thumb {
  position: absolute;
  top: var(--toggle-padding);
  left: var(--toggle-padding);
  width: var(--toggle-thumb-size);
  height: var(--toggle-thumb-size);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.96) 46%, rgba(220, 228, 242, 0.94) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(229, 235, 245, 0.95));
  box-shadow:
    0 10px 18px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateX(0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  z-index: 1;
}

html[data-theme="dark"] .theme-toggle {
  color: #ffffff;
}

html[data-theme="dark"] .theme-toggle__track {
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .theme-toggle__icon--moon,
.theme-toggle:not(.is-light) .theme-toggle__icon--moon {
  color: #f8fafc;
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

html[data-theme="dark"] .theme-toggle__icon--sun,
.theme-toggle:not(.is-light) .theme-toggle__icon--sun {
  color: rgba(191, 219, 254, 0.44);
  opacity: 0.72;
}

html[data-theme="light"] .theme-toggle {
  color: #0f172a;
}

html[data-theme="light"] .theme-toggle__track,
.theme-toggle.is-light .theme-toggle__track {
  border-color: rgba(125, 162, 210, 0.42);
  background:
    linear-gradient(180deg, rgba(243, 249, 255, 1), rgba(220, 235, 250, 0.98)),
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 48%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -12px 20px rgba(147, 197, 253, 0.24),
    0 16px 28px rgba(96, 165, 250, 0.22);
}

html[data-theme="light"] .theme-toggle__icon--moon,
.theme-toggle.is-light .theme-toggle__icon--moon {
  color: rgba(71, 85, 105, 0.54);
  opacity: 0.7;
}

html[data-theme="light"] .theme-toggle__icon--sun,
.theme-toggle.is-light .theme-toggle__icon--sun {
  color: #ea580c;
  opacity: 1;
  transform: translateY(-50%) scale(1.02);
}

html[data-theme="light"] .theme-toggle__thumb,
.theme-toggle.is-light .theme-toggle__thumb {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98) 38%, rgba(255, 242, 214, 0.98) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 243, 219, 0.96));
  box-shadow:
    0 10px 20px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateX(var(--toggle-shift));
}

.theme-toggle:hover .theme-toggle__track,
.theme-toggle:focus-visible .theme-toggle__track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -12px 22px rgba(0, 0, 0, 0.18),
    0 18px 32px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .theme-toggle:hover .theme-toggle__track,
html[data-theme="light"] .theme-toggle:focus-visible .theme-toggle__track,
.theme-toggle.is-light:hover .theme-toggle__track,
.theme-toggle.is-light:focus-visible .theme-toggle__track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -12px 20px rgba(147, 197, 253, 0.28),
    0 18px 32px rgba(59, 130, 246, 0.24);
}

.theme-toggle:focus-visible .theme-toggle__track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -12px 22px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(96, 165, 250, 0.34),
    0 18px 32px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .theme-toggle:focus-visible .theme-toggle__track,
.theme-toggle.is-light:focus-visible .theme-toggle__track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -12px 20px rgba(147, 197, 253, 0.28),
    0 0 0 3px rgba(37, 99, 235, 0.22),
    0 18px 32px rgba(59, 130, 246, 0.24);
}

.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 96%, transparent);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--text-primary) 4%, transparent), color-mix(in srgb, var(--text-primary) 1%, transparent)),
    color-mix(in srgb, var(--bg-card) 84%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 8%, transparent),
    0 14px 28px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hamburger:hover,
.hamburger:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent-primary) 20%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 10%, transparent),
    0 18px 32px color-mix(in srgb, var(--accent-primary) 10%, transparent);
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text-primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger[aria-expanded="true"] span {
  opacity: 0;
}

.hamburger[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 55%, transparent);
  border-radius: 0;
  color: var(--color-ink);
  background: transparent;
  font-weight: var(--weight-bold);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  color: var(--text-inverse);
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--color-ink);
  background: transparent;
}

.button--ghost:hover {
  color: var(--text-inverse);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 770px;
  display: grid;
  align-items: center;
  padding: 4rem 0 5rem;
  color: var(--color-ink);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--text-primary) 18%, transparent) 1px, transparent 1px),
    var(--bg-primary);
  background-size: 18px 18px;
  border-bottom: 1px solid var(--color-line);
}

.hero--page {
  min-height: 420px;
  padding: 3rem 0 5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.hero__content {
  max-width: 1100px;
  padding-top: 5rem;
}

.hero p {
  max-width: 1120px;
  margin-top: var(--space-4);
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__visual {
  width: min(100%, 660px);
  margin-left: auto;
  margin-top: 2.2rem;
}

.hero__visual-frame {
  height: 540px;
  border: 0;
  background: var(--bg-primary);
}

.team-hero .hero__content {
  max-width: 100%;
  padding-top: 2rem;
}

.team-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-hero__content .section__eyebrow {
  margin-bottom: 1.25rem;
}

.team-hero__title {
  max-width: 100%;
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
  text-wrap: balance;
}

.team-hero__title-strong {
  font-weight: 900;
}

.team-hero__title-light {
  font-weight: 300;
}

.team-hero__subtitle {
  max-width: 900px;
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-primary);
  font-size: clamp(1.15rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

.team-showcase {
  position: relative;
  overflow: hidden;
}

.team-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(65, 184, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(110, 231, 255, 0.06), transparent 22rem);
  pointer-events: none;
}

.team-showcase .container {
  position: relative;
  width: min(100% - 48px, 1400px);
}

.team-showcase__intro {
  max-width: 820px;
  margin-bottom: var(--space-6);
}

.team-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: baseline;
  margin-top: var(--space-5);
  color: var(--text-secondary);
}

.team-showcase__count {
  color: var(--color-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.team-showcase__count-label {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.circular-gallery-inline {
  width: 100%;
  margin-top: clamp(1.5rem, 4vw, 2.75rem);
}

.circular-gallery {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.circular-gallery__shell {
  position: relative;
  width: min(100%, 1140px);
  height: clamp(320px, 46vw, 620px);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 60px rgba(0, 0, 0, 0.42);
  cursor: grab;
  touch-action: pan-y;
}

.circular-gallery__shell.is-dragging {
  cursor: grabbing;
}

.circular-gallery__shell.is-lightbox-active {
  pointer-events: none;
}

.circular-gallery__halo,
.circular-gallery__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circular-gallery__halo {
  background:
    radial-gradient(circle at center, rgba(65, 184, 255, 0.18), transparent 32%),
    radial-gradient(circle at center, rgba(65, 184, 255, 0.1), transparent 55%);
  filter: blur(12px);
}

.circular-gallery__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 78%);
}

.circular-gallery__ring {
  position: absolute;
  inset: 0;
}

.circular-gallery__item {
  --gallery-x: 0px;
  --gallery-y: 0px;
  --gallery-scale: 1;
  --gallery-hover-scale: 1;
  --gallery-opacity: 1;
  --gallery-tilt: 0deg;
  --gallery-z: 1;
  --gallery-shadow: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(148px, 15vw, 238px);
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(6, 10, 16, 0.85);
  opacity: var(--gallery-opacity);
  z-index: var(--gallery-z);
  transform:
    translate(-50%, -50%) translate3d(var(--gallery-x), var(--gallery-y), 0) scale(calc(var(--gallery-scale) * var(--gallery-hover-scale))) rotate(var(--gallery-tilt));
  box-shadow:
    0 calc(10px + (var(--gallery-shadow) * 18px)) calc(18px + (var(--gallery-shadow) * 24px)) rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(65, 184, 255, calc(var(--gallery-shadow) * 0.14));
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.circular-gallery__item.is-back {
  pointer-events: none;
}

.circular-gallery__item.is-front {
  border-color: rgba(110, 231, 255, 0.42);
}

.circular-gallery__media,
.circular-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
}

.circular-gallery__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.circular-gallery__image {
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.circular-gallery__item:hover {
  --gallery-hover-scale: 1.14;
  border-color: rgba(110, 231, 255, 0.72);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(110, 231, 255, 0.24);
}

.circular-gallery__center {
  position: absolute;
  top: 45%;
  left: 50%;
  width: min(70%, 250px);
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(5, 8, 14, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.34);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.circular-gallery__eyebrow {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-brand);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.circular-gallery__center strong {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.05;
}

.circular-gallery__center p,
.circular-gallery__caption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.circular-gallery__center p {
  margin-top: 0.8rem;
}

.circular-gallery__caption {
  text-align: center;
}

.circular-gallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  isolation: isolate;
  opacity: 0;
  transition: opacity 220ms ease;
}

.circular-gallery__lightbox.is-open {
  opacity: 1;
}

.circular-gallery__lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2, 5, 10, 0.84);
  backdrop-filter: blur(18px);
}

.circular-gallery__lightbox[hidden] {
  display: none !important;
}

.circular-gallery__lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  width: 100%;
  touch-action: pan-y;
}

.circular-gallery__lightbox-image {
  display: block;
  width: min(100%, 1100px);
  max-height: calc(100vh - 7rem);
  object-fit: contain;
  object-position: center center;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.circular-gallery__lightbox-caption {
  width: min(100%, 760px);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-size: 0.95rem;
}

.circular-gallery__lightbox-close,
.circular-gallery__lightbox-nav {
  position: relative;
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 14, 22, 0.78);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.circular-gallery__lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

html.is-lightbox-open,
body.is-lightbox-open {
  overflow: hidden;
}

.team-chroma-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1600px;
}

.team-chroma-card {
  --team-spotlight-x: 50%;
  --team-spotlight-y: 50%;
  --animate-delay: var(--team-delay, 0ms);
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--team-accent) 45%, rgba(255, 255, 255, 0.12));
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 10, 14, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  contain: layout paint style;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.team-chroma-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-accent) 20%, transparent), rgba(8, 12, 18, 0.96));
  z-index: -3;
}

.team-chroma-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(3, 4, 8, 0.62));
  z-index: -2;
}

.team-chroma-card__media {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(3, 4, 8, 0.4));
}

.team-chroma-card__picture {
  width: 100%;
  height: 100%;
  display: block;
}

.team-chroma-card__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  filter: grayscale(100%) opacity(0.85);
  transition: opacity 320ms ease, transform 420ms ease, filter 420ms ease;
}

.team-chroma-card__image.is-loaded {
  opacity: 1;
}

.team-chroma-grid.is-loading .team-chroma-card {
  pointer-events: none;
}

.team-chroma-card--skeleton {
  overflow: hidden;
}

.team-chroma-card__skeleton-block,
.team-chroma-card__skeleton-line {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.team-chroma-card__skeleton-block::after,
.team-chroma-card__skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: team-skeleton-shimmer 1.3s linear infinite;
}

.team-chroma-card__skeleton-block--media {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.team-chroma-card__skeleton-line {
  height: 0.9rem;
}

.team-chroma-card__skeleton-line--eyebrow {
  width: 38%;
  height: 0.72rem;
}

.team-chroma-card__skeleton-line--title {
  width: 72%;
  height: 1.5rem;
}

.team-chroma-card__skeleton-line--role {
  width: 56%;
}

.team-chroma-card__skeleton-line--short {
  width: 64%;
}

.team-chroma-card__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--team-spotlight-x) var(--team-spotlight-y), color-mix(in srgb, var(--team-accent) 26%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.team-chroma-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

.team-chroma-card__eyebrow {
  color: var(--team-accent);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-chroma-card h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.team-chroma-card__role {
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--weight-bold);
}

.team-chroma-card__meta {
  color: var(--team-accent);
  font-size: 0.78rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.team-chroma-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.team-chroma-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: var(--weight-bold);
}

.team-chroma-card__cta::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.team-chroma-card:hover,
.team-chroma-card:focus-visible,
.team-chroma-card.is-active {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--team-accent) 80%, white 10%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 35px color-mix(in srgb, var(--team-accent) 20%, transparent),
    0 24px 54px rgba(0, 0, 0, 0.42);
}

.team-chroma-card:hover .team-chroma-card__spotlight,
.team-chroma-card:focus-visible .team-chroma-card__spotlight,
.team-chroma-card.is-active .team-chroma-card__spotlight {
  opacity: 1;
}

.team-chroma-card:hover .team-chroma-card__image,
.team-chroma-card:focus-visible .team-chroma-card__image,
.team-chroma-card.is-active .team-chroma-card__image {
  transform: scale(1.03);
  filter: grayscale(0%) saturate(1.1);
  opacity: 1;
  will-change: transform, filter;
}

.team-chroma-card:hover .team-chroma-card__cta::after,
.team-chroma-card:focus-visible .team-chroma-card__cta::after,
.team-chroma-card.is-active .team-chroma-card__cta::after {
  transform: translateX(3px) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {

  .circular-gallery__item,
  .circular-gallery__image {
    transition: none !important;
  }

  .team-chroma-card,
  .team-chroma-card__spotlight,
  .team-chroma-card__image,
  .team-chroma-card__cta::after {
    transition: none !important;
  }

  .team-chroma-card:hover,
  .team-chroma-card:focus-visible,
  .team-chroma-card.is-active {
    transform: none;
  }

  .team-chroma-card__spotlight {
    display: none;
  }

  .team-chroma-card__skeleton-block::after,
  .team-chroma-card__skeleton-line::after {
    animation: none;
  }

}

.card {
  height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg-card) 82%, var(--bg-secondary));
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card__meta,
.tag {
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
}

.card p {
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: 0.82rem;
}

.core-expertise .section__header {
  max-width: 1080px;
}

.core-expertise .section__header h2 {
  max-width: 860px;
  text-wrap: balance;
}

.core-expertise__highlight {
  color: inherit;
  font-weight: inherit;
}

.core-expertise__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.core-expertise-card {
  --service-transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --service-accent-1: #8b5cf6;
  --service-accent-2: #2563eb;
  --service-accent-3: #60a5fa;
  --service-border: rgba(129, 140, 248, 0.45);
  --service-glow-weak: rgba(139, 92, 246, 0.24);
  --service-glow-strong: rgba(59, 130, 246, 0.18);
  --service-glow-ring: rgba(99, 102, 241, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  min-width: 0;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--service-transition),
    border-color var(--service-transition),
    box-shadow var(--service-transition),
    background var(--service-transition);
}

.core-expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, var(--service-glow-weak), transparent 36%),
    radial-gradient(circle at 88% 82%, var(--service-glow-strong), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity var(--service-transition), transform var(--service-transition);
  z-index: 0;
}

.core-expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px transparent, 0 0 0 transparent;
  transition:
    opacity var(--service-transition),
    border-color var(--service-transition),
    box-shadow var(--service-transition);
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform var(--service-transition),
    border-color var(--service-transition),
    background var(--service-transition),
    box-shadow var(--service-transition);
}

.service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter var(--service-transition), transform var(--service-transition);
}

.core-expertise-card h3 {
  color: #000000;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: initial;
}

.core-expertise-card p {
  margin-top: 0.8rem;
  color: rgba(15, 23, 42, 0.72);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  height: 4.65em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-card__tags {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
  max-width: 100%;
  list-style: none;
  padding: 0;
}

.service-card__tags li {
  display: block;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  color: rgba(15, 23, 42, 0.75);
  background: rgba(15, 23, 42, 0.02);
  transition:
    transform var(--service-transition),
    border-color var(--service-transition),
    background var(--service-transition),
    color var(--service-transition);
}

.service-card__tag-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 2.2rem;
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 0.8rem;
  color: inherit;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: var(--weight-medium);
  line-height: 1.35;
  box-sizing: border-box;
}

.service-card__tag-link:hover,
.service-card__tag-link:focus-visible {
  color: #fff;
}

.service-card__tag-link:focus-visible {
  outline: 2px solid var(--service-accent-3);
  outline-offset: -2px;
}

/* .service-card__tags li::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background var(--service-transition), transform var(--service-transition);
} */

.service-card__tag-icon {
  width: 0.82rem;
  height: 0.82rem;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 0.22rem;
  filter: grayscale(0%);
  transition: filter var(--service-transition), transform var(--service-transition);
}

.service-card__tag-code {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: transform var(--service-transition), background var(--service-transition);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 0.95rem;
  color: #0f172a;
  font-size: 0.74rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform var(--service-transition);
}

.service-card--ai {
  --service-accent-1: #99bd3c;
  --service-accent-2: #2563eb;
  --service-accent-3: #60a5fa;
  --service-border: rgba(129, 140, 248, 0.5);
  --service-glow-weak: rgba(139, 92, 246, 0.24);
  --service-glow-strong: rgba(59, 130, 246, 0.18);
  --service-glow-ring: rgba(99, 102, 241, 0.24);
}

.service-card--sharepoint {
  --service-accent-1: #16a34a;
  --service-accent-2: #0891b2;
  --service-accent-3: #38bdf8;
  --service-border: rgba(34, 197, 94, 0.42);
  --service-glow-weak: rgba(22, 163, 74, 0.24);
  --service-glow-strong: rgba(14, 165, 233, 0.2);
  --service-glow-ring: rgba(16, 185, 129, 0.2);
}

.service-card--power {
  --service-accent-1: #f59e0b;
  --service-accent-2: #fbbf24;
  --service-accent-3: #facc15;
  --service-border: rgba(147, 51, 234, 0.42);
  --service-glow-weak: rgba(139, 92, 246, 0.22);
  --service-glow-strong: rgba(250, 204, 21, 0.16);
  --service-glow-ring: rgba(96, 165, 250, 0.2);
}

.service-card--azure {
  --service-accent-1: #0ea5e9;
  --service-accent-2: #2563eb;
  --service-accent-3: #7dd3fc;
  --service-border: rgba(14, 165, 233, 0.48);
  --service-glow-weak: rgba(14, 165, 233, 0.24);
  --service-glow-strong: rgba(37, 99, 235, 0.18);
  --service-glow-ring: rgba(56, 189, 248, 0.23);
}

.service-card--data {
  --service-accent-1: #22c55e;
  --service-accent-2: #eab308;
  --service-accent-3: #3b82f6;
  --service-border: rgba(34, 197, 94, 0.42);
  --service-glow-weak: rgba(34, 197, 94, 0.16);
  --service-glow-strong: rgba(59, 130, 246, 0.12);
  --service-glow-ring: rgba(234, 179, 8, 0.18);
}

.service-card--security {
  --service-accent-1: #2563eb;
  --service-accent-2: #0891b2;
  --service-accent-3: #67e8f9;
  --service-border: rgba(14, 165, 233, 0.42);
  --service-glow-weak: rgba(37, 99, 235, 0.16);
  --service-glow-strong: rgba(8, 145, 178, 0.12);
  --service-glow-ring: rgba(103, 232, 249, 0.18);
}

.core-expertise-card:hover,
.core-expertise-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--service-border);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.14);
}

.core-expertise-card:hover::before,
.core-expertise-card:focus-within::before {
  opacity: 0.55;
  transform: scale(1);
}

.core-expertise-card:hover::after,
.core-expertise-card:focus-within::after {
  opacity: 1;
  border-color: rgba(15, 23, 42, 0.04);
  box-shadow: 0 0 0 1px var(--service-border), 0 0 34px var(--service-glow-ring);
}

.core-expertise-card:hover .service-card__icon,
.core-expertise-card:focus-within .service-card__icon {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.03);
  box-shadow: 0 0 20px var(--service-glow-ring);
}

.core-expertise-card:hover .service-card__icon img,
.core-expertise-card:focus-within .service-card__icon img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.core-expertise-card:hover .service-card__tags li,
.core-expertise-card:focus-within .service-card__tags li {
  border-color: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.75);
}

.service-card__tags li:hover,
.service-card__tags li:focus-within {
  transform: translateX(6px);
  border-color: var(--service-border);
  color: #000000;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent-1) 12%, transparent), rgba(0, 0, 0, 0.015)),
    rgba(0, 0, 0, 0.02);
}

.core-expertise-card:hover .service-card__tag-icon,
.core-expertise-card:focus-within .service-card__tag-icon {
  filter: grayscale(0%);
}

.core-expertise-card:hover .service-card__tag-code,
.core-expertise-card:focus-within .service-card__tag-code {
  background: rgba(255, 255, 255, 0.2);
}

.core-expertise-card:hover .service-card__cta-arrow,
.core-expertise-card:focus-within .service-card__cta-arrow {
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .core-expertise__grid {
    grid-template-columns: 1fr;
  }

  .core-expertise-card {
    padding: 1rem;
  }

  .service-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0.9rem;
  }

  .service-card__icon img {
    width: 30px;
    height: 30px;
  }

  .service-card__tag-icon {
    width: 0.8rem;
    height: 0.8rem;
  }

  .service-card__tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .service-card__tags li {
    width: 100%;
    font-size: 11.25px;
  }

  .service-card__tag-link {
    width: 100%;
    min-height: 1.8rem;
    padding: 0.31rem 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .core-expertise-card,
  .core-expertise-card::before,
  .core-expertise-card::after,
  .service-card__icon,
  .service-card__icon img,
  .service-card__tag-icon,
  .service-card__tags li::before,
  .service-card__tags li,
  .service-card__cta-arrow {
    transition: none;
  }

  .core-expertise-card:hover,
  .core-expertise-card:focus-within {
    transform: none;
  }
}

.why-reality-craft .section__header {
  max-width: 1040px;
}

.why-reality-craft__highlight {
  color: #fff;
}

.why-reality-craft__grid {
  gap: 1.5rem;
}

.why-reality-craft-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.005) 50%, rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(12, 14, 24, 0.94), rgba(4, 5, 10, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition:
    transform 300ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 300ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.why-reality-craft-card::before {
  content: "";
  position: absolute;
  inset: auto -14% -36% auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.why-card__header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.why-card__number {
  font-size: 0.86rem;
  font-weight: 800;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

.why-reality-craft-card h3 {
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.why-reality-craft-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-reality-craft-card:hover,
.why-reality-craft-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 60px rgba(37, 99, 235, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.35);
}

.why-reality-craft-card:hover::before,
.why-reality-craft-card:focus-within::before {
  opacity: 1;
  transform: scale(1.08);
}

.visual-panel {
  min-height: 320px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(42, 42, 42, 0.76)),
    url("../assets/images/brand/section-placeholder.svg") center/cover;
  border: 1px solid var(--color-line);
}

.cta {
  padding: var(--space-7);
  color: var(--color-ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg-primary) 92%, black), color-mix(in srgb, var(--bg-secondary) 88%, var(--accent-secondary) 12%));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.testimonial {
  max-width: 1200px;
  margin-inline: auto;
}

.partners-section {
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4.5rem, 6vw, 6.5rem);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partners {
  min-height: 140px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners__track {
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.partners__item {
  width: 220px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 300ms ease;
}

.partners__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.partners__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) opacity(0.55);
  transition: all 300ms ease;
}

.partners__item:hover .partners__logo {
  filter: grayscale(0) brightness(1) invert(0) opacity(1);
}

.form {
  display: grid;
  gap: var(--space-4);
}

.form__field {
  display: grid;
  gap: var(--space-2);
}

.form__field label {
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: var(--weight-medium);
}

.form__error {
  color: var(--color-error);
  font-size: var(--text-sm);
}

.form__status {
  min-height: 1.5rem;
  color: var(--color-success);
  font-weight: var(--weight-medium);
}

.talk-modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 30);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.talk-modal[hidden] {
  display: none !important;
}

.talk-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.74);
  backdrop-filter: blur(16px);
}

.talk-modal__dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: calc(100vh - 1rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(0.85rem, 1.4vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 7, 14, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.talk-modal.is-open .talk-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.talk-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.talk-modal__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.talk-modal__panel {
  min-width: 0;
  padding: clamp(0.8rem, 1.3vw, 0.95rem);
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.talk-modal__panel--full {
  width: 100%;
}

.talk-modal__panel--details {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.talk-modal h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.talk-modal__lead {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.76);
  max-width: 58ch;
  font-size: 0.88rem;
}

.talk-modal__form {
  margin-top: 0.75rem;
}

.talk-modal__form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
}

.talk-modal .form__field {
  gap: 0.25rem;
}

.talk-modal .form__field label {
  font-size: 0.78rem;
}

.talk-modal input,
.talk-modal textarea,
.talk-modal select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.78rem;
  color: var(--color-ink);
  background: #090b0f;
  font-size: 0.92rem;
}

.talk-modal textarea {
  min-height: 92px;
}

.talk-modal .button {
  min-height: 38px;
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
}

.talk-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.talk-modal__info-section {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.talk-modal__info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.8rem;
}

.talk-modal__info-item {
  display: grid;
  gap: 0.08rem;
}

.talk-modal__info-list p,
.talk-modal__info-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.talk-modal__info-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem;
}

.talk-modal__info-list>p:last-child {
  grid-column: 1 / -1;
}

.talk-modal .form__status {
  min-height: 1.1rem;
  font-size: 0.82rem;
}

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

.talk-modal__info-inline-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex: 0 0 auto;
}

.talk-modal__info-inline-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talk-modal__info-list strong {
  color: #fff;
  font-weight: var(--weight-bold);
}

.talk-modal__info-list a:hover,
.talk-modal__info-list a:focus-visible {
  color: #fff;
}

.talk-modal__group {
  display: grid;
  gap: 0.9rem;
}

.talk-modal__kicker {
  color: var(--color-brand);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.talk-modal__testimonials,
.talk-modal__office-grid {
  display: grid;
  gap: 0.85rem;
}

.talk-modal__quote,
.talk-modal__office-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.talk-modal__quote p,
.talk-modal__office-card p {
  color: rgba(255, 255, 255, 0.76);
}

.talk-modal__quote strong,
.talk-modal__office-card h3 {
  display: block;
  margin-top: 0.8rem;
  color: #fff;
}

.talk-modal__office-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.talk-modal__contact-list {
  display: grid;
  gap: 0.45rem;
}

.talk-modal__contact-list a {
  color: rgba(255, 255, 255, 0.86);
}

.talk-modal__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.talk-modal__cert {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(65, 184, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(65, 184, 255, 0.08);
  font-size: 0.83rem;
  font-weight: var(--weight-medium);
}

html[data-theme="light"] .talk-modal__backdrop {
  background: rgba(236, 241, 248, 0.72);
}

html[data-theme="light"] .talk-modal__dialog {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 30px 80px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .talk-modal__close {
  border-color: var(--border-primary);
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
}

html[data-theme="light"] .talk-modal__panel,
html[data-theme="light"] .talk-modal__quote,
html[data-theme="light"] .talk-modal__office-card {
  border-color: var(--border-primary);
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .talk-modal__lead,
html[data-theme="light"] .talk-modal__quote p,
html[data-theme="light"] .talk-modal__office-card p,
html[data-theme="light"] .talk-modal__contact-list a {
  color: var(--text-secondary);
}

html[data-theme="light"] .talk-modal__quote strong,
html[data-theme="light"] .talk-modal__office-card h3,
html[data-theme="light"] .service-card__cta,
html[data-theme="light"] .team-chroma-card__cta,
html[data-theme="light"] .talk-modal__info-list a:hover,
html[data-theme="light"] .talk-modal__info-list a:focus-visible {
  color: var(--text-primary);
}

html[data-theme="light"] .talk-modal__cert {
  border-color: rgba(30, 106, 255, 0.18);
  color: var(--text-primary);
  background: rgba(30, 106, 255, 0.08);
}

.is-talk-modal-open {
  overflow: hidden;
}

.footer {
  padding: clamp(4rem, 6vw, 6rem) 0 clamp(2.5rem, 4vw, 4rem);
  background: #06070c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
}

html[data-theme="light"] .footer {
  background: #fbfbfb !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px) !important;
}

.footer__shell {
  display: flex;
  flex-direction: column;
}

/* Top Row: Offices & Collaborate */
.footer__top-row {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .footer__top-row {
  border-bottom-color: rgba(15, 23, 42, 0.06) !important;
}

.footer__offices-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__office-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__office-list li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

html[data-theme="light"] .footer__office-list li {
  color: #64748b !important;
}

.footer__cta-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__cta-headline {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  text-decoration: none;
  transition: color 240ms ease;
  width: fit-content;
}

.footer__cta-headline:hover {
  background: linear-gradient(90deg, #2972FF 0%, #1DE9B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

html[data-theme="light"] .footer__cta-headline {
  color: #000000 !important;
}

html[data-theme="light"] .footer__cta-headline:hover {
  background: linear-gradient(90deg, #2972FF 0%, #1DE9B6 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.footer__cta-arrow {
  width: clamp(2rem, 4vw, 3.8rem);
  height: clamp(2rem, 4vw, 3.8rem);
  stroke-width: 2.2;
  transition: transform 300ms ease;
}

.footer__cta-headline:hover .footer__cta-arrow {
  transform: translateX(10px);
  stroke: #2972FF;
}

html[data-theme="light"] .footer__cta-headline:hover .footer__cta-arrow {
  stroke: #2972FF !important;
}

.footer__cta-subtext {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

html[data-theme="light"] .footer__cta-subtext {
  color: #7c7c7c !important;
}

/* Middle Row: Grid of Links */
.footer__middle-row {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 2rem;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .footer__middle-row {
  border-bottom-color: rgba(15, 23, 42, 0.06) !important;
}

.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  font-weight: 500;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

html[data-theme="light"] .footer__title {
  color: #475569 !important;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 240ms ease;
}

.footer__link:hover {
  color: #ffffff;
}

html[data-theme="light"] .footer__link {
  color: #64748b !important;
}

html[data-theme="light"] .footer__link:hover {
  color: #0f172a !important;
}

/* Bottom Row */
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  flex-wrap: wrap;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer__social-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: color 240ms ease, transform 240ms ease;
  display: inline-flex;
  align-items: center;
}

.footer__social-icon svg {
  width: 20px;
  height: 20px;
}

.footer__social-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

html[data-theme="light"] .footer__social-icon {
  color: #000000 !important;
}

html[data-theme="light"] .footer__social-icon:hover {
  color: var(--accent-primary) !important;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

html[data-theme="light"] .footer__copyright {
  color: #7c7c7c !important;
}

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

html[data-theme="light"] .footer__brand-logo {
  color: #000000 !important;
}

.footer__brand-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer__copyright-text {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1rem;
}

html[data-theme="light"] {
  border-left-color: rgba(15, 23, 42, 0.12) !important;
}

.footer__scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  font-size: 0.86rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.footer__scroll-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.footer__scroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

html[data-theme="light"] .footer__scroll-btn {
  background: #000000 !important;
  color: #ffffff !important;
}

html[data-theme="light"] .footer__scroll-btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 900px) {
  .footer__top-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__middle-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__grid-spacer {
    display: none;
  }

  .footer__links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .footer__bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer__copyright {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer__copyright-text {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .footer__links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

html[data-theme="light"] .nav__link,
html[data-theme="light"] .menu-toggle {
  color: var(--text-primary);
}

html[data-theme="light"] .nav__link.is-current,
html[data-theme="light"] .nav__link[aria-current="page"],
html[data-theme="light"] .nav__link:hover,
html[data-theme="light"] .nav__link:focus-visible,
html[data-theme="light"] .menu-toggle:hover {
  color: var(--accent-primary);
}

html[data-theme="light"] .nav__dropdown {
  border-color: rgba(41, 98, 255, 0.12);
  background:
    radial-gradient(circle at 10% 10%, rgba(41, 98, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 90% 90%, rgba(29, 233, 182, 0.05), transparent 20rem),
    radial-gradient(circle at 50% 50%, rgba(255, 196, 0, 0.03), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96)) !important;
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 18px rgba(41, 98, 255, 0.04);
}

html[data-theme="light"] .nav__dropdown--panel,
html[data-theme="light"] .nav__dropdown--mega {
  background:
    radial-gradient(circle at 15% 15%, rgba(29, 233, 182, 0.24), transparent 28rem),
    radial-gradient(circle at 50% 50%, rgba(41, 98, 255, 0.25), transparent 28rem),
    radial-gradient(circle at 85% 85%, rgba(255, 196, 0, 0.14), transparent 28rem),
    #ffffff !important;
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 18px rgba(41, 98, 255, 0.04);
}

html[data-theme="light"] .nav__mega-head {
  border-bottom-color: rgba(148, 163, 184, 0.22);
}

html[data-theme="light"] .nav__mega-section {
  border-color: rgba(41, 98, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.52) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

html[data-theme="light"] .nav__mega-section:hover {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(41, 98, 255, 0.2) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05) !important;
}

html[data-theme="light"] .nav__mega-section-copy {
  color: var(--text-secondary);
}

html[data-theme="light"] .nav__panel-mega-intro,
html[data-theme="light"] .nav__panel-mega-column {
  border-color: rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 12rem),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

html[data-theme="light"] .nav__panel-mega-link {
  border-left-color: rgba(148, 163, 184, 0.24);
}

html[data-theme="light"] .nav__panel-mega-label {
  color: var(--text-primary);
}

html[data-theme="light"] .nav__panel-mega-link small {
  color: var(--text-muted);
}

html[data-theme="light"] .nav__panel-mega-icon {
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .nav__panel-mega-link:hover,
html[data-theme="light"] .nav__panel-mega-link:focus-visible {
  border-left-color: rgba(37, 99, 235, 0.38);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 18px rgba(37, 99, 235, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

html[data-theme="light"] .nav__panel-mega-link--product:hover .nav__panel-mega-icon,
html[data-theme="light"] .nav__panel-mega-link--product:focus-visible .nav__panel-mega-icon {
  border-color: rgba(245, 158, 11, 0.24);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(250, 204, 21, 0.06)),
    rgba(255, 255, 255, 0.98);
  color: #b45309;
}

html[data-theme="light"] .nav__menu-link,
html[data-theme="light"] .nav__mega-link {
  color: var(--text-secondary);
}

html[data-theme="light"] .nav__dropdown--panel .nav__menu-link {
  border-left-color: rgba(148, 163, 184, 0.24);
}

html[data-theme="light"] .nav__menu-link:hover,
html[data-theme="light"] .nav__menu-link:focus-visible,
html[data-theme="light"] .nav__mega-link:hover,
html[data-theme="light"] .nav__mega-link:focus-visible {
  color: var(--accent-primary);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 18px rgba(37, 99, 235, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

html[data-theme="light"] .nav__mega-link {
  border-left-color: rgba(148, 163, 184, 0.24);
}

html[data-theme="light"] .nav__mega-link:hover,
html[data-theme="light"] .nav__mega-link:focus-visible {
  border-left-color: rgba(37, 99, 235, 0.34);
}

html[data-theme="light"] .nav__dropdown--panel .nav__menu-link:hover,
html[data-theme="light"] .nav__dropdown--panel .nav__menu-link:focus-visible {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: rgba(37, 99, 235, 0.34);
}

html[data-theme="light"] .button {
  border-color: color-mix(in srgb, var(--accent-primary) 48%, transparent);
  color: var(--text-inverse);
  background: var(--accent-gradient);
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

html[data-theme="light"] .button:hover,
html[data-theme="light"] .button:focus-visible {
  color: var(--text-inverse);
  border-color: color-mix(in srgb, var(--accent-secondary) 52%, transparent);
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 50%, #7c3aed 100%);
  box-shadow:
    0 16px 32px rgba(37, 99, 235, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

html[data-theme="light"] .button--ghost {
  color: var(--accent-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 254, 0.96)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

html[data-theme="light"] .button--ghost:hover,
html[data-theme="light"] .button--ghost:focus-visible {
  color: var(--text-inverse);
}

html[data-theme="light"] .hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(37, 99, 235, 0.12), transparent 24rem),
    radial-gradient(circle at 14% 0%, rgba(124, 58, 237, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 252, 0.96));
}

html[data-theme="light"] .hero__visual-frame,
html[data-theme="light"] .cta,
html[data-theme="light"] .card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.96)),
    var(--bg-card);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

html[data-theme="light"] .card {
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-theme="light"] .card:hover,
html[data-theme="light"] .card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-primary) 22%, var(--border-primary));
  box-shadow:
    0 22px 42px rgba(37, 99, 235, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

html[data-theme="light"] .core-expertise__highlight,
html[data-theme="light"] .why-reality-craft__highlight,
html[data-theme="light"] .circular-gallery__eyebrow {
  color: var(--text-primary);
}

html[data-theme="light"] .core-expertise-card,
html[data-theme="light"] .why-reality-craft-card {
  border-color: rgba(148, 163, 184, 0.2) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05) !important;
}

html[data-theme="light"] .why-reality-craft-card:hover,
html[data-theme="light"] .why-reality-craft-card:focus-within {
  border-color: rgba(37, 99, 235, 0.45) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 50px rgba(37, 99, 235, 0.08),
    0 18px 40px rgba(15, 23, 42, 0.06) !important;
}

html[data-theme="light"] .core-expertise-card h3,
html[data-theme="light"] .why-reality-craft-card h3,
html[data-theme="light"] .team-chroma-card h3,
html[data-theme="light"] .circular-gallery__center strong {
  color: var(--text-primary);
}

html[data-theme="light"] .core-expertise-card p,
html[data-theme="light"] .why-reality-craft-card p,
html[data-theme="light"] .team-chroma-card p,
html[data-theme="light"] .circular-gallery__center p,
html[data-theme="light"] .circular-gallery__caption p,
html[data-theme="light"] .team-showcase__meta {
  color: var(--text-secondary);
}

html[data-theme="light"] .service-card__icon,
html[data-theme="light"] .why-reality-craft-card .service-card__icon {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.06)),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 20px rgba(37, 99, 235, 0.12);
}

html[data-theme="light"] .service-card__tags li {
  border-color: rgba(148, 163, 184, 0.22);
  color: var(--text-secondary);
  background: rgba(248, 250, 252, 0.94);
}

html[data-theme="light"] .service-card__tag-link:hover,
html[data-theme="light"] .service-card__tag-link:focus-visible {
  color: var(--text-primary);
}

html[data-theme="light"] .service-card__tags li:hover,
html[data-theme="light"] .service-card__tags li:focus-within {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent-1) 10%, transparent), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.98);
}

html[data-theme="light"] .service-card__tag-code {
  color: var(--text-inverse);
  background: var(--accent-gradient);
}

html[data-theme="light"] .service-card__cta,
html[data-theme="light"] .team-chroma-card__cta {
  color: var(--text-primary);
}

html[data-theme="light"] .testimonial__quote {
  border-color: rgba(15, 23, 42, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05) !important;
}

html[data-theme="light"] .testimonial__quote:hover {
  border-color: rgba(37, 99, 235, 0.45) !important;
  box-shadow:
    0 24px 50px rgba(37, 99, 235, 0.08),
    0 18px 40px rgba(15, 23, 42, 0.06) !important;
}

html[data-theme="light"] .testimonial__quote p {
  color: rgba(15, 23, 42, 0.72) !important;
}

html[data-theme="light"] .testimonial__quote strong {
  color: #0f172a !important;
}

html[data-theme="light"] .testimonial__avatar {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

html[data-theme="light"] .testimonial__client {
  border-top-color: rgba(15, 23, 42, 0.08) !important;
}

html[data-theme="light"] .testimonial__quote-mark {
  color: rgba(37, 99, 235, 0.12) !important;
}

html[data-theme="light"] .partners-section {
  background: #f8fafc !important;
  border-top-color: rgba(15, 23, 42, 0.08) !important;
}

html[data-theme="light"] .partners__item {
  border-color: rgba(15, 23, 42, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
}

html[data-theme="light"] .partners__logo {
  filter: grayscale(1) opacity(0.4) !important;
}

html[data-theme="light"] .partners__item:hover {
  border-color: rgba(15, 23, 42, 0.16) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
}

html[data-theme="light"] .partners__item:hover .partners__logo {
  filter: grayscale(0) opacity(1) !important;
}

html[data-theme="light"] .service-card__cta:hover {
  color: var(--text-primary);
}

html[data-theme="light"] .team-showcase::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(37, 99, 235, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.08), transparent 22rem);
}

html[data-theme="light"] .circular-gallery__shell {
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

html[data-theme="light"] .circular-gallery__halo {
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.14), transparent 34%),
    radial-gradient(circle at center, rgba(124, 58, 237, 0.08), transparent 58%);
}

html[data-theme="light"] .circular-gallery__grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
  opacity: 0.28;
}

html[data-theme="light"] .circular-gallery__item,
html[data-theme="light"] .circular-gallery__center,
html[data-theme="light"] .team-chroma-card {
  border-color: rgba(148, 163, 184, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96)),
    var(--bg-card);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

html[data-theme="light"] .team-chroma-card::before {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-accent) 15%, transparent), rgba(255, 255, 255, 0.96));
}

html[data-theme="light"] .team-chroma-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 245, 252, 0.92));
}

html[data-theme="light"] .team-chroma-card__media {
  border-bottom-color: rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.3), rgba(255, 255, 255, 0.5));
}

html[data-theme="light"] .team-chroma-card__role {
  color: color-mix(in srgb, var(--text-primary) 82%, var(--team-accent));
}

html[data-theme="light"] .team-chroma-card__meta,
html[data-theme="light"] .team-chroma-card__eyebrow,
html[data-theme="light"] .team-showcase__count {
  color: var(--accent-primary);
}

html[data-theme="light"] .team-chroma-card__cta {
  width: fit-content;
  margin-top: 0.55rem;
  padding: 0.56rem 0.8rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
}

html[data-theme="light"] .team-chroma-card:hover,
html[data-theme="light"] .team-chroma-card:focus-visible,
html[data-theme="light"] .team-chroma-card.is-active {
  box-shadow:
    0 26px 52px rgba(37, 99, 235, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
}

html[data-theme="light"] .partners__item,
html[data-theme="light"] .partners__item--no-border {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

html[data-theme="light"] .partners__logo--decisioninc {
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(1790%) hue-rotate(202deg) brightness(92%) contrast(98%);
}

html[data-theme="light"] .talk-modal input,
html[data-theme="light"] .talk-modal textarea,
html[data-theme="light"] .talk-modal select {
  border-color: rgba(148, 163, 184, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.95)),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .talk-modal input:focus,
html[data-theme="light"] .talk-modal textarea:focus,
html[data-theme="light"] .talk-modal select:focus {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* Old footer light overrides deleted */

#products-menu .nav__panel-mega {
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
}

#company-menu .nav__panel-mega {
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
}

#company-menu .nav__panel-mega-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#products-menu .nav__panel-mega-columns {
  grid-template-columns: minmax(0, 1fr);
}

#products-menu .nav__panel-mega-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

#products-menu .nav__panel-mega-link {
  min-height: 6rem;
}

/* Old footer grid and columns deleted */

body[data-page="home"] .core-expertise-card {
  align-content: start;
}

body[data-page="home"] .core-expertise-card>h3:first-child {
  margin-top: 0;
}

/* Old light overrides deleted */

html[data-theme="light"] #products-menu .nav__panel-mega-link {
  border-left-color: rgba(37, 99, 235, 0.24);
}

html[data-theme="light"] .nav__link--contact {
  color: var(--text-inverse);
  border-color: color-mix(in srgb, var(--accent-primary) 52%, transparent);
  background: var(--accent-gradient);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}

.header__inner {
  justify-content: flex-start;
}

@media (min-width: 981px) {
  .header__inner .nav {
    margin-left: auto;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__menu-links {
    display: flex;
    align-items: center;
    gap: clamp(0.35rem, 0.9vw, 0.8rem);
    margin: 0 auto;
  }
}

#knowledge-menu .nav__panel-mega {
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
}

#knowledge-menu .nav__panel-mega-columns {
  grid-template-columns: minmax(0, 1fr);
}

#knowledge-menu .nav__panel-mega-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

#knowledge-menu .nav__panel-mega-link {
  min-height: 6rem;
}

body[data-page="home"] .core-expertise-card .service-card__tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .core-expertise-card .service-card__tags li {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .core-expertise-card .service-card__tag-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
  min-height: auto;
  padding: 0.58rem 0;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.35;
}

body[data-page="home"] .core-expertise-card .service-card__tag-link::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  margin-top: 0.43rem;
  border-radius: 999px;
  background: var(--service-accent-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--service-accent-2) 12%, transparent);
}

body[data-page="home"] .core-expertise-card .service-card__tag-icon {
  display: none;
}

body[data-page="home"] .core-expertise-card .service-card__tags li:hover,
body[data-page="home"] .core-expertise-card .service-card__tags li:focus-within,
body[data-page="home"] .core-expertise-card:hover .service-card__tags li,
body[data-page="home"] .core-expertise-card:focus-within .service-card__tags li {
  transform: none;
  color: var(--text-primary);
  background: transparent;
}

html[data-theme="light"] body[data-page="home"] .core-expertise-card .service-card__tags {
  border-top-color: rgba(148, 163, 184, 0.24);
}

html[data-theme="light"] body[data-page="home"] .core-expertise-card .service-card__tags li {
  border-bottom-color: rgba(148, 163, 184, 0.2);
  color: var(--text-secondary);
  background: transparent;
}

@media (max-width: 980px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-height) - 0.0rem);
    left: 1rem;
    right: 1rem;
    inset-inline: 1rem;
    z-index: var(--z-menu);
    display: none;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    max-height: calc(100vh - var(--header-height) - 1.25rem);
    overflow: auto;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--border-primary) 94%, transparent);
    border-radius: 28px;
    /* background:
      linear-gradient(180deg, color-mix(in srgb, var(--text-primary) 3%, transparent), color-mix(in srgb, var(--text-primary) 1%, transparent)),
      color-mix(in srgb, var(--bg-glass) 96%, transparent); */
    background: white;
      box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 color-mix(in srgb, #ffffff 8%, transparent);
  }

  .nav.is-open {
    display: grid;
    align-items: start;
    justify-items: stretch;
  }

  .nav__item::after {
    display: none;
  }

  .nav__item,
  .nav__item--mega {
    position: relative;
    display: grid;
    width: 100%;
    min-width: 0;
  }

  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding-inline: 1rem;
  }

  .nav__link--contact {
    justify-content: flex-start;
  }

  .nav__dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0.85rem;
    border-radius: 22px;
    box-shadow: none;
  }

  .nav__item.is-open .nav__dropdown {
    display: grid;
  }

  .nav__dropdown--panel,
  .nav__dropdown--mega {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    max-height: none;
    gap: 1rem;
    overflow: visible;
    transform: none;
  }

  .nav__mega-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .nav__mega-link-columns {
    grid-template-columns: 1fr;
  }

  .nav__panel-link-columns {
    grid-template-columns: 1fr;
  }

  .nav__panel-mega {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav__panel-mega-intro {
    padding: 1rem;
  }

  .nav__panel-mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav__panel-mega-column {
    padding: 0.7rem;
  }

  .nav__panel-mega-link {
    min-height: auto;
    padding: 0.72rem 0.8rem;
  }

  .nav__submenu-links {
    padding-left: 0.5rem;
  }

  .team-chroma-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  #products-menu .nav__panel-mega-column {
    grid-template-columns: 1fr;
  }

  #company-menu .nav__panel-mega-columns {
    grid-template-columns: 1fr;
  }

  #knowledge-menu .nav__panel-mega-column {
    grid-template-columns: 1fr;
  }

  .theme-toggle {
    --toggle-width: 3.55rem;
    --toggle-height: 1.95rem;
    --toggle-padding: 0.16rem;
    --toggle-thumb-size: 1.58rem;
  }

  .theme-toggle__icon {
    width: 0.8rem;
    height: 0.8rem;
  }

  .theme-toggle__icon--moon {
    left: 0.54rem;
  }

  .theme-toggle__icon--sun {
    right: 0.54rem;
  }
}

@media (max-width: 900px) {
  .talk-modal__layout {
    grid-template-columns: 1fr;
  }

  .talk-modal__dialog {
    max-height: calc(100vh - 1.2rem);
    padding: 0.9rem;
    border-radius: 24px;
  }

  .talk-modal__form-grid {
    grid-template-columns: 1fr;
  }

  .talk-modal__info-list {
    grid-template-columns: 1fr;
  }

  .brand__logo {
    font-size: 1.25rem;
  }

  .brand__mark {
    width: 2rem;
    height: 2rem;
  }

  .brand__mark--header {
    width: 5.2rem;
    height: 2.2rem;
  }

  .brand__mark--footer {
    width: clamp(3.3rem, 11vw, 4rem); 
    height: clamp(3.3rem, 11vw, 4rem);
  }

  .brand__logo {
    font-size: 1.1rem;
  }

  .brand__sub {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

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

  .hero__content {
    padding-top: 0;
  }

  .hero__visual {
    margin: 0 auto;
  }

  .team-showcase .container {
    width: min(100% - 32px, 1400px);
  }

  .circular-gallery__center {
    width: min(72%, 250px);
    padding: 1.05rem 1rem;
  }

  .circular-gallery__lightbox {
    grid-template-columns: 1fr;
  }

  .circular-gallery__lightbox-caption {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .partners {
    align-items: flex-start;
  }
  .partners__track{
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav {
    left: 0.75rem;
    right: 0.75rem;
    inset-inline: 0.75rem;
  }

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

  .nav__panel-mega-columns {
    grid-template-columns: 1fr;
  }

  .nav__panel-mega-column {
    gap: 0.35rem;
  }

  .nav__panel-mega-link,
  .nav__panel-mega-link:hover,
  .nav__panel-mega-link:focus-visible {
    transform: none;
  }

  .talk-modal {
    padding: 0.75rem;
  }

  .talk-modal__panel {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .talk-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .talk-modal__actions .button {
    width: 100%;
  }

  .circular-gallery__shell {
    height: 360px;
    border-radius: 24px;
  }

  .circular-gallery__item {
    width: clamp(112px, 28vw, 156px);
    border-radius: 18px;
  }

  .circular-gallery__center {
    width: min(78%, 220px);
  }

  .team-chroma-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom,
  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes nav-orb-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-12px, 10px, 0);
  }
}

@keyframes nav-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

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

@keyframes team-skeleton-shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (hover: none),
(pointer: coarse),
(prefers-reduced-motion: reduce) {

  .nav__dropdown--mega::after,
  .nav__mega-visual-ring {
    animation: none;
  }

  .partners__track {
    animation: none;
  }
}