@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;600;700;800&display=swap");main {
  min-height: calc(100svh - var(--navbar-height));
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.route-transition-shell {
  width: 100%;
}

@media (max-width: 960px) {
  main {
    min-height: calc(100svh - var(--navbar-height));
  }
}
.theme-toggle {
  --toggle-size: 42px;
  position: relative;
  width: var(--toggle-size);
  height: var(--toggle-size);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--border-primary) 88%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
    var(--surface-soft);
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 58%);
  opacity: 0.65;
  pointer-events: none;
}

.theme-toggle:hover {
  transform: scale(1.06);
  border-color: var(--border-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 42%),
    var(--surface-primary);
}

.theme-toggle:focus-visible {
  transform: scale(1.04);
  border-color: var(--border-strong);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--accent-primary) 18%, transparent),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.theme-toggle-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--accent-primary);
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.theme-toggle[data-mode="dark"] .theme-toggle-icon {
  transform: rotate(-10deg);
}

.theme-toggle[data-mode="light"] .theme-toggle-icon {
  transform: rotate(10deg);
}

.theme-toggle[data-mode="system"] .theme-toggle-icon {
  transform: rotate(0deg);
  color: var(--accent-secondary);
}

.theme-toggle-orbits {
  position: absolute;
  inset: -4px;
  pointer-events: none;
  z-index: 0;
}

.theme-toggle-orbits span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent-primary) 40%, transparent);
}

.theme-toggle-orbits span:nth-child(1) {
  animation: themeOrbitA 7.8s linear infinite;
}

.theme-toggle-orbits span:nth-child(2) {
  animation: themeOrbitB 9.2s linear infinite;
  background: var(--accent-secondary);
}

.theme-toggle-orbits span:nth-child(3) {
  animation: themeOrbitC 11s linear infinite;
}

@keyframes themeOrbitA {
  0% {
    transform: rotate(0deg) translateX(13px) rotate(0deg);
    opacity: 0.6;
  }

  100% {
    transform: rotate(360deg) translateX(13px) rotate(-360deg);
    opacity: 0.6;
  }
}

@keyframes themeOrbitB {
  0% {
    transform: rotate(120deg) translateX(15px) rotate(-120deg);
    opacity: 0.48;
  }

  100% {
    transform: rotate(480deg) translateX(15px) rotate(-480deg);
    opacity: 0.48;
  }
}

@keyframes themeOrbitC {
  0% {
    transform: rotate(240deg) translateX(10px) rotate(-240deg);
    opacity: 0.55;
  }

  100% {
    transform: rotate(600deg) translateX(10px) rotate(-600deg);
    opacity: 0.55;
  }
}

.navbar-theme-toggle,
.admin-theme-toggle,
.mobile-theme-toggle {
  margin-left: 0;
}

.navbar-theme-toggle,
.admin-theme-toggle {
  --toggle-size: 42px;
}

.mobile-theme-toggle {
  --toggle-size: 40px;
}

.navbar-mobile-theme-toggle {
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .theme-toggle {
    --toggle-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .theme-toggle-icon {
    transition: none !important;
  }

  .theme-toggle-orbits span {
    animation: none !important;
  }
}
.nav-radial-action {
  --nav-action-size: 48px;
  position: relative;
  width: var(--nav-action-size);
  height: var(--nav-action-size);
  min-width: var(--nav-action-size);
  flex: 0 0 var(--nav-action-size);
  overflow: visible;
  isolation: isolate;
}

.nav-action-button {
  width: 100%;
  height: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--border-primary) 88%, transparent);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 42%),
    color-mix(in srgb, var(--surface-primary) 74%, transparent);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.nav-action-button:hover {
  transform: scale(1.05);
  border-color: color-mix(in srgb, var(--accent-primary) 32%, var(--border-strong));
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent-primary) 16%, rgba(255, 255, 255, 0.12)), transparent 42%),
    color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(239, 91, 42, 0.12),
    0 0 0 6px rgba(239, 91, 42, 0.04);
}

.nav-action-button:active {
  transform: scale(0.96);
}

.nav-action-button:focus-visible {
  transform: scale(1.03);
  outline: none;
  border-color: color-mix(in srgb, var(--accent-primary) 52%, var(--border-strong));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--accent-primary) 18%, transparent),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.nav-action-button-inner {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.nav-action-avatar {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent-primary) 36%, #1f2937),
      color-mix(in srgb, var(--accent-secondary) 48%, #111827)
    );
  color: var(--text-inverse);
}

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

.nav-action-avatar span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-radial-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--radial-menu-size, 168px);
  height: var(--radial-menu-size, 168px);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
}

.nav-radial-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-radial-menu-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav-radial-guide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--radial-radius) * 2);
  height: calc(var(--radial-radius) * 2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 18%, transparent);
  background:
    radial-gradient(circle, transparent 64%, rgba(255, 255, 255, 0.012) 65%, transparent 66%);
  opacity: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(239, 91, 42, 0.04) inset,
    0 0 32px rgba(239, 91, 42, 0.035);
}

.nav-radial-menu.is-open .nav-radial-guide {
  opacity: 1;
}

.nav-radial-orbit-layer {
  position: absolute;
  inset: 0;
  overflow: visible;
  transform-origin: 50% 50%;
  will-change: transform;
}

.nav-radial-item-position {
  position: absolute;
  left: 50%;
  top: 50%;
  transform:
    translate(-50%, -50%)
    translate3d(var(--orbit-x, 0px), var(--orbit-y, 0px), 0);
  pointer-events: none;
}

.nav-radial-item {
  --radial-item-size: 36px;
  width: var(--radial-item-size);
  height: var(--radial-item-size);
  min-width: var(--radial-item-size);
  min-height: var(--radial-item-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--border-primary) 85%, transparent);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 38%),
    color-mix(in srgb, var(--surface-secondary) 80%, transparent);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  transform: scale(0.62);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-radial-item:hover,
.nav-radial-item:focus-visible {
  border-color: color-mix(in srgb, var(--accent-primary) 42%, var(--border-strong));
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent-primary) 20%, rgba(255, 255, 255, 0.16)), transparent 40%),
    color-mix(in srgb, var(--surface-primary) 84%, transparent);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--accent-primary) 14%, transparent),
    0 14px 24px rgba(0, 0, 0, 0.16);
  outline: none;
}

.nav-radial-item--active {
  color: var(--accent-primary);
  border-color: color-mix(in srgb, var(--accent-primary) 46%, var(--border-strong));
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent-primary) 18%, rgba(255, 255, 255, 0.16)), transparent 40%),
    color-mix(in srgb, var(--surface-primary) 84%, transparent);
}

.nav-radial-item--danger {
  color: var(--danger-text);
}

.nav-radial-item--danger:hover,
.nav-radial-item--danger:focus-visible {
  border-color: color-mix(in srgb, var(--danger-text) 40%, var(--border-strong));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--danger-text) 14%, transparent),
    0 14px 24px rgba(0, 0, 0, 0.16);
}

.nav-radial-item-icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
}

.nav-radial-item-inner {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.nav-radial-menu.is-open .nav-radial-item {
  opacity: 1;
}

.nav-radial-menu.is-compact {
  left: 50%;
  top: calc(100% + 8px);
  width: auto;
  height: auto;
  transform: translateX(-50%);
}

.nav-radial-menu.is-compact .nav-radial-guide,
.nav-radial-menu.is-compact .nav-radial-orbit-layer {
  display: none;
}

.nav-radial-touch-panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 88%, transparent);
  border-radius: 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-secondary) 94%, transparent), color-mix(in srgb, var(--surface-primary) 88%, transparent));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-radial-touch-panel .nav-radial-item-position {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  pointer-events: auto;
}

.nav-radial-touch-panel .nav-radial-item {
  opacity: 1;
  transform: scale(0.8);
}

.nav-radial-menu.is-open .nav-radial-touch-panel .nav-radial-item {
  transform: scale(1);
}

@media (max-width: 860px) {
  .nav-action-button {
    /* inherited size is set on the wrapper */
  }

  .nav-radial-action {
    --nav-action-size: 42px;
  }

  .nav-radial-menu {
    --radial-menu-size: 160px;
  }

  .nav-radial-item {
    --radial-item-size: 32px;
  }
}

@media (max-width: 640px) {
  .nav-radial-action {
    --nav-action-size: 40px;
  }

  .nav-radial-menu.is-compact {
    width: min(220px, calc(100% - 28px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-action-button,
  .nav-radial-item,
  .nav-radial-menu,
  .nav-radial-guide,
  .nav-action-avatar {
    transition: none !important;
  }
}

/* Premium spacing and orbit polish */
.navbar-actions {
  gap: 20px;
}

.nav-radial-menu.is-open .nav-radial-guide {
  opacity: 1;
}

.nav-radial-menu.is-open .nav-radial-item {
  opacity: 1;
}

.nav-radial-menu.is-open .nav-radial-item-inner {
  transform: translateZ(0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-radial-action:hover .nav-action-button {
    transform: translateY(-1px) scale(1.04);
  }

  .nav-radial-action:hover .nav-radial-guide {
    opacity: 1;
  }
}
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.48));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.navbar.navbar-scrolled {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.68));
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

:root[data-theme="light"] .navbar.navbar-scrolled {
  background: rgba(248, 245, 237, 0.88);
}

.navbar-shell {
  width: min(calc(100% - 20px), 1380px);
  margin: 0 auto;
  overflow: visible;
}

.navbar-container {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  overflow: visible;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.navbar-logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.03);
  color: var(--accent-primary);
}

.navbar-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar-logo-copy strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-logo-copy span {
  color: var(--text-tertiary);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar-nav {
  justify-self: center;
  min-width: 0;
}

.navbar-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.navbar-link-wrap {
  position: relative;
}

.navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.navbar-link:hover,
.navbar-link.is-active {
  color: var(--text-primary);
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
  transform: translateY(-1px);
}

.navbar-link-caret {
  transition: transform 0.18s ease;
}

.navbar-link-caret.open {
  transform: rotate(180deg);
}

.navbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: visible;
}

.navbar-login-btn,
.mobile-login-btn,
.mobile-logout-btn,
.services-mega-primary,
.services-mega-secondary,
.services-mega-feature-link,
.mobile-services-close {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.navbar-login-btn {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.navbar-login-btn::after,
.services-mega-primary::after,
.services-mega-secondary::after,
.services-mega-feature-link::after,
.mobile-login-btn::after,
.mobile-logout-btn::after,
.mobile-services-close::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 60%);
  transform: translateX(-110%);
  transition: transform 0.35s ease;
}

.navbar-login-btn:hover::after,
.services-mega-primary:hover::after,
.services-mega-secondary:hover::after,
.services-mega-feature-link:hover::after,
.mobile-login-btn:hover::after,
.mobile-logout-btn:hover::after,
.mobile-services-close:hover::after {
  transform: translateX(0);
}

.navbar-mobile-toggle {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
}

.navbar-mobile-toggle.is-open {
  background: rgba(239, 91, 42, 0.12);
  border-color: rgba(239, 91, 42, 0.24);
}

.navbar-account-trigger {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.navbar-account-dropdown {
  z-index: 1201;
}

.services-mega-menu {
  position: fixed;
  top: 78px;
  left: 50%;
  width: min(calc(100% - 20px), 1300px);
  transform: translateX(-50%);
  z-index: 1200;
}

.services-mega-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.92);
  box-shadow: var(--shadow-card);
  border-radius: 0 0 28px 28px;
}

:root[data-theme="light"] .services-mega-shell {
  background: rgba(252, 250, 244, 0.94);
}

.services-mega-intro {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services-mega-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-mega-intro h3 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.services-mega-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-mega-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-mega-primary,
.services-mega-secondary {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.services-mega-primary {
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.services-mega-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.services-mega-feature {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.services-mega-feature-label {
  color: var(--accent-secondary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-mega-feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(239, 91, 42, 0.12);
  color: var(--accent-primary);
}

.services-mega-feature h4 {
  font-size: 1rem;
}

.services-mega-feature p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-mega-feature-link {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-primary);
  background: transparent;
}

.services-mega-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  padding: 18px;
  align-items: start;
}

.services-mega-categories {
  display: grid;
  gap: 10px;
}

.services-mega-category {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  text-align: left;
}

.services-mega-category span {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-mega-category small {
  color: var(--text-tertiary);
  line-height: 1.55;
}

.services-mega-category.is-active {
  border-color: rgba(239, 91, 42, 0.24);
  background: rgba(239, 91, 42, 0.08);
}

.services-mega-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.services-mega-panel-label {
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-mega-panel p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-mega-items {
  display: grid;
  gap: 10px;
}

.services-mega-items .services-menu-link {
  min-height: 62px;
  padding: 12px 0;
}

.services-mega-items .services-menu-link-copy small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-menu-group {
  display: grid;
  gap: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-menu-group-label {
  display: inline-flex;
  width: fit-content;
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-menu-group-copy p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-menu-links {
  display: grid;
  gap: 10px;
}

.services-menu-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 10px 0;
  color: var(--text-primary);
}

.services-menu-link-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 91, 42, 0.1);
  color: var(--accent-primary);
}

.services-menu-link-copy {
  display: grid;
  gap: 2px;
}

.services-menu-link-copy strong {
  font-size: 0.95rem;
}

.services-menu-link-copy small {
  color: var(--text-tertiary);
  font-size: 0.76rem;
  line-height: 1.35;
}

.services-menu-link-arrow {
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
}

.services-menu-link:hover .services-menu-link-arrow {
  transform: translateX(3px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 92px 0 0;
  z-index: 990;
  width: 100%;
  height: calc(100vh - 92px);
  border: 0;
  background: rgba(3, 3, 3, 0.66);
  cursor: default;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .mobile-menu {
  background: rgba(252, 250, 244, 0.96);
}

.mobile-nav {
  width: min(calc(100% - 24px), 720px);
  margin: 0 auto;
  padding: 20px 0 26px;
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 700;
}

.mobile-nav-link.is-active {
  border-color: rgba(239, 91, 42, 0.2);
  background: rgba(239, 91, 42, 0.08);
}

.mobile-services-toggle {
  width: 100%;
  cursor: pointer;
}

.mobile-services-caret {
  transition: transform 0.18s ease;
}

.mobile-services-caret.open {
  transform: rotate(180deg);
}

.mobile-services-panel {
  display: grid;
  gap: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mobile-services-panel.is-open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-services-group {
  display: grid;
  gap: 10px;
}

.mobile-services-group-trigger {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 700;
}

.mobile-services-group-trigger.is-open {
  border-color: rgba(239, 91, 42, 0.2);
  background: rgba(239, 91, 42, 0.08);
}

.mobile-services-group-panel {
  display: grid;
  gap: 10px;
  padding: 0 4px 8px;
}

.mobile-services-group-panel p {
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 2px 14px 0;
}

.mobile-services-group-panel .services-menu-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-services {
  display: grid;
  gap: 10px;
}

.mobile-services-close {
  min-height: 46px;
  padding: 0 16px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.mobile-theme-toggle {
  justify-self: start;
}

.mobile-login-btn,
.mobile-logout-btn {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.mobile-logout-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

@media (max-width: 1200px) {
  .navbar-container {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .navbar-link {
    padding: 0 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 960px) {
  :root {
    --navbar-height: 78px;
  }

  .navbar-container {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .navbar-nav,
  .services-mega-menu {
    display: none;
  }

  .navbar-mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu-overlay {
    inset: 78px 0 0;
    height: calc(100vh - 78px);
  }

  .mobile-services-group-panel .services-menu-link small {
    display: none;
  }
}

@media (max-width: 640px) {
  .navbar-shell {
    width: min(calc(100% - 16px), 100%);
  }

  .navbar-login-btn {
    display: none;
  }

  .navbar-logo-copy span {
    font-size: 0.62rem;
  }

  .navbar-logo-mark {
    width: 40px;
    height: 40px;
  }

  .services-menu-link small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.navbar {
  padding: 12px 0 0;
  background: transparent;
  overflow: visible;
}

.navbar-shell {
  width: min(calc(100% - 24px), 1460px);
  margin: 0 auto;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    color-mix(in srgb, var(--surface-secondary) 76%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar.navbar-scrolled .navbar-shell {
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    color-mix(in srgb, var(--surface-secondary) 88%, transparent);
  box-shadow: var(--shadow-card);
}

.navbar-container {
  min-height: 72px;
  gap: 12px;
}

.navbar-logo {
  gap: 10px;
}

.navbar-logo-mark {
  width: 40px;
  height: 40px;
  border-color: var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.18), transparent 42%),
    color-mix(in srgb, var(--surface-primary) 82%, transparent);
}

.navbar-logo-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.navbar-logo-copy span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.navbar-links {
  gap: 0;
  padding: 4px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-primary) 74%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-link {
  min-height: 34px;
  padding: 0 12px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  transform: none;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.navbar-link:hover::after,
.navbar-link.is-active::after {
  transform: scaleX(1);
}

.navbar-link:hover,
.navbar-link.is-active {
  transform: none;
  background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
  color: var(--text-primary);
}

.navbar-actions {
  gap: 12px;
}

.navbar-theme-toggle {
  --toggle-size: 42px;
}

.navbar-login-btn,
.navbar-account-trigger {
  min-height: 42px;
  height: 42px;
  border-radius: 999px;
  border-color: var(--border-primary);
  background: color-mix(in srgb, var(--surface-primary) 72%, transparent);
  color: var(--text-primary);
}

.navbar-login-btn {
  padding: 0 16px;
  border-color: transparent;
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.navbar-account-trigger {
  width: 42px;
  min-width: 42px;
}

.navbar-mobile-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-primary);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface-primary) 74%, transparent);
  box-shadow: none;
}

.navbar-mobile-toggle.is-open {
  background: color-mix(in srgb, var(--accent-primary) 14%, transparent);
  border-color: color-mix(in srgb, var(--accent-primary) 34%, var(--border-primary));
}

.services-mega-menu {
  top: 88px;
}

.services-mega-shell {
  border-color: var(--border-primary);
  background: color-mix(in srgb, var(--surface-secondary) 94%, transparent);
  box-shadow: var(--shadow-elevated);
}

:root[data-theme="light"] .navbar-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 246, 239, 0.78)),
    rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] .navbar.navbar-scrolled .navbar-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.96)),
    rgba(255, 255, 255, 0.92);
}

:root[data-theme="light"] .navbar-link {
  color: var(--text-secondary);
}

:root[data-theme="light"] .navbar-link:hover,
:root[data-theme="light"] .navbar-link.is-active {
  color: var(--text-primary);
}

:root[data-theme="light"] .navbar-links,
:root[data-theme="light"] .navbar-login-btn,
:root[data-theme="light"] .navbar-account-trigger,
:root[data-theme="light"] .navbar-mobile-toggle,
:root[data-theme="light"] .services-mega-shell,
:root[data-theme="light"] .services-mega-category,
:root[data-theme="light"] .services-mega-panel,
:root[data-theme="light"] .services-mega-feature,
:root[data-theme="light"] .mobile-menu,
:root[data-theme="light"] .mobile-nav-link,
:root[data-theme="light"] .mobile-services-group-trigger,
:root[data-theme="light"] .mobile-services-close {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .services-mega-shell,
:root[data-theme="light"] .mobile-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 241, 232, 0.96)),
    rgba(255, 255, 255, 0.96);
}

:root[data-theme="light"] .services-mega-intro,
:root[data-theme="light"] .services-mega-grid {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .services-mega-category,
:root[data-theme="light"] .services-mega-panel,
:root[data-theme="light"] .services-mega-feature,
:root[data-theme="light"] .services-menu-link,
:root[data-theme="light"] .mobile-nav-link,
:root[data-theme="light"] .mobile-services-group-trigger,
:root[data-theme="light"] .mobile-services-close {
  background: var(--surface-secondary);
}

:root[data-theme="light"] .services-mega-intro h3,
:root[data-theme="light"] .services-mega-feature h4,
:root[data-theme="light"] .services-mega-panel p,
:root[data-theme="light"] .services-menu-link-copy strong,
:root[data-theme="light"] .mobile-nav-link,
:root[data-theme="light"] .mobile-services-group-trigger,
:root[data-theme="light"] .mobile-services-close {
  color: var(--text-primary);
}

:root[data-theme="light"] .services-mega-intro p,
:root[data-theme="light"] .services-mega-feature p,
:root[data-theme="light"] .services-mega-panel p,
:root[data-theme="light"] .services-menu-link-copy small,
:root[data-theme="light"] .mobile-services-group-panel p {
  color: var(--text-secondary);
}

.navbar-theme-toggle,
.mobile-theme-toggle {
  margin-left: 0;
}

@media (max-width: 1200px) {
  .navbar-container {
    gap: 10px;
  }

  .navbar-link {
    padding: 0 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .navbar {
    padding-top: 10px;
  }

  .navbar-shell {
    width: min(calc(100% - 16px), 100%);
    padding: 0 12px;
  }

  .navbar-container {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .navbar-nav,
  .services-mega-menu {
    display: none;
  }

  .navbar-actions {
    gap: 10px;
  }

  .navbar-mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu-overlay {
    inset: 80px 0 0;
    height: calc(100vh - 80px);
  }
}

@media (max-width: 640px) {
  .navbar-shell {
    width: min(calc(100% - 12px), 100%);
  }

  .navbar-logo-copy span {
    display: none;
  }

  .navbar-login-btn {
    display: none;
  }

  .navbar-theme-toggle,
  .mobile-theme-toggle {
    --toggle-size: 40px;
  }
}
/* Full-width navbar container */
.navbar {
  width: 100%;
  padding: 0;
}

.navbar-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 28px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.navbar-container {
  width: 100%;
  max-width: none;
  min-height: 88px;
  margin: 0;
}

/* Keep mobile spacing responsive */
@media (max-width: 960px) {
  .navbar {
    padding-top: 0;
  }

  .navbar-shell {
    width: 100%;
    padding: 0 18px;
    border-radius: 0;
  }

  .navbar-container {
    min-height: 74px;
  }
}

@media (max-width: 640px) {
  .navbar-shell {
    width: 100%;
    padding: 0 12px;
  }
}.footer.footer-editorial {
  position: relative;
  padding: clamp(100px, 12vw, 170px) 0 clamp(28px, 4vw, 52px);
  overflow: clip;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0), rgba(8, 10, 16, 0.12)),
    radial-gradient(circle at var(--footer-pointer-x, 72%) var(--footer-pointer-y, 16%), rgba(14, 165, 233, 0.12), transparent 22%),
    radial-gradient(circle at 14% 8%, rgba(239, 91, 42, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.98), rgba(8, 10, 16, 1));
}

.footer-editorial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(239, 91, 42, 0.1), rgba(239, 91, 42, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.footer-editorial::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0), rgba(8, 10, 16, 0.94));
}

.footer-background {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
  opacity: 0.95;
}

.footer-background__network {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1560px, 100%);
  height: clamp(240px, 30vw, 420px);
  transform: translateX(-50%);
  opacity: 0.9;
}

.footer-shell.footer-editorial-shell {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
  display: grid;
  gap: clamp(30px, 4vw, 54px);
}

.footer-brand-panel {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--text-primary);
}

.footer-brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.2), transparent 44%),
    rgba(255, 255, 255, 0.03);
  color: var(--accent-primary);
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-copy span {
  color: var(--text-tertiary);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand-copy__text {
  max-width: 72ch;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
}

.footer-brand-statement {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(14, 165, 233, 0.06);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-updates {
  display: grid;
  gap: 10px;
  max-width: 520px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-primary);
}

.footer-updates__label,
.footer-nav-title,
.footer-contact-label {
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-updates__row {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-updates__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  padding: 0 14px;
  font-size: 0.98rem;
}

.footer-updates__input::placeholder {
  color: var(--text-tertiary);
}

.footer-updates__button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 18px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  cursor: pointer;
}

.footer-updates__button:disabled,
.footer-updates__input:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.24);
  background: rgba(14, 165, 233, 0.1);
  color: #fff;
}

.footer-social-link:focus-visible,
.footer-nav-link:focus-visible,
.footer-bottom-links a:focus-visible,
.footer-back-to-top:focus-visible,
.footer-brand-link:focus-visible,
.footer-updates__button:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.72);
  outline-offset: 3px;
}

.footer-navigation-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.footer-nav-column {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-primary);
}

.footer-nav-link {
  width: fit-content;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.55;
  border-bottom: 1px solid transparent;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.footer-nav-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--border-strong);
  transform: translateX(3px);
}

.footer-contact-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 16% 14%, rgba(14, 165, 233, 0.08), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(239, 91, 42, 0.08), transparent 20%),
    rgba(255, 255, 255, 0.02);
}

.footer-contact-panel__heading {
  display: grid;
  gap: 6px;
}

.footer-contact-panel__heading p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-contact-row + .footer-contact-row {
  padding-top: 12px;
  border-top: 1px solid var(--border-primary);
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-primary);
}

.footer-contact-copy {
  display: grid;
  gap: 4px;
}

.footer-contact-copy a,
.footer-contact-copy span {
  color: var(--text-primary);
  line-height: 1.65;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--border-primary);
}

.footer-bottom-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.footer-bottom-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 91, 42, 0.1);
  color: var(--accent-primary);
}

.footer-bottom-copy p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--border-strong);
}

.footer-back-to-top {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.footer-back-to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 91, 42, 0.28);
  background: rgba(239, 91, 42, 0.12);
}

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

@media (max-width: 900px) {
  .footer-navigation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .footer.footer-editorial {
    padding: 84px 0 28px;
  }

  .footer-shell.footer-editorial-shell {
    padding-inline: 20px;
  }

  .footer-brand-link {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 44px;
    height: 44px;
  }

  .footer-brand-copy__text {
    font-size: 0.98rem;
  }

  .footer-updates__row {
    border-radius: 24px;
  }

  .footer-updates__button {
    width: 44px;
    height: 44px;
  }

  .footer-navigation-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-column {
    padding-top: 14px;
  }

  .footer-contact-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .footer-bottom-links {
    gap: 10px;
  }

  .footer-back-to-top {
    width: 40px;
    height: 40px;
  }
}

:root[data-theme="light"] .footer.footer-editorial {
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(255, 250, 242, 0.18)),
    radial-gradient(circle at var(--footer-pointer-x, 72%) var(--footer-pointer-y, 16%), rgba(14, 165, 233, 0.08), transparent 22%),
    radial-gradient(circle at 14% 8%, rgba(239, 91, 42, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(248, 244, 236, 0.98), rgba(236, 229, 219, 1));
}

:root[data-theme="light"] .footer-editorial::before {
  background:
    linear-gradient(180deg, rgba(239, 91, 42, 0.08), rgba(239, 91, 42, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
}

:root[data-theme="light"] .footer-editorial::after {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(236, 229, 219, 0.96));
}

:root[data-theme="light"] .footer-brand-mark,
:root[data-theme="light"] .footer-social-link,
:root[data-theme="light"] .footer-contact-panel,
:root[data-theme="light"] .footer-nav-column,
:root[data-theme="light"] .footer-updates__row,
:root[data-theme="light"] .footer-bottom-bar {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .footer-brand-mark,
:root[data-theme="light"] .footer-contact-icon,
:root[data-theme="light"] .footer-bottom-mark {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.92);
}

:root[data-theme="light"] .footer-brand-copy__text,
:root[data-theme="light"] .footer-nav-link,
:root[data-theme="light"] .footer-contact-panel__heading p,
:root[data-theme="light"] .footer-contact-copy span,
:root[data-theme="light"] .footer-contact-copy a,
:root[data-theme="light"] .footer-bottom-copy,
:root[data-theme="light"] .footer-bottom-links a {
  color: var(--text-secondary);
}

:root[data-theme="light"] .footer-brand-link,
:root[data-theme="light"] .footer-brand-statement,
:root[data-theme="light"] .footer-nav-title,
:root[data-theme="light"] .footer-contact-label,
:root[data-theme="light"] .footer-bottom-copy p {
  color: var(--text-primary);
}

:root[data-theme="light"] .footer-social-link,
:root[data-theme="light"] .footer-updates__row {
  background: rgba(255, 255, 255, 0.74);
}

:root[data-theme="light"] .footer-contact-panel {
  background:
    radial-gradient(circle at 16% 14%, rgba(14, 165, 233, 0.06), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(239, 91, 42, 0.06), transparent 20%),
    rgba(255, 255, 255, 0.92);
}

:root[data-theme="light"] .footer-nav-link:hover,
:root[data-theme="light"] .footer-bottom-links a:hover,
:root[data-theme="light"] .footer-social-link:hover,
:root[data-theme="light"] .footer-back-to-top:hover {
  color: var(--accent-primary);
}
.account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.account-menu.align-left .account-menu-dropdown {
  right: auto;
  left: 0;
}

.account-menu-trigger {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(124, 58, 237, 0.16)),
    var(--surface-tertiary);
  box-shadow: var(--shadow-soft);
}

.account-menu-trigger.compact {
  width: 48px;
  height: 48px;
}

.account-menu-trigger:hover {
  border-color: rgba(0, 212, 255, 0.38);
  transform: translateY(-1px);
}

.account-avatar {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #7c3aed 0%,
    #4f46e5 50%,
    #06b6d4 100%
  );

  color: #ffffff;
  font-weight: 800;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 6px 18px rgba(79, 70, 229, 0.22);
}

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

.account-menu-caret {
  display: none;
}

.account-menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1200;
  min-width: 260px;
  padding: 14px;
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  background: var(--surface-secondary);
  box-shadow: var(--shadow-elevated);
}

.account-menu-header {
  padding: 6px 6px 12px;
  border-bottom: 1px solid var(--border-primary);
}

.account-menu-name {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.account-menu-email {
  margin-top: 2px;
  color: var(--text-tertiary);
  font-size: 0.88rem;
  word-break: break-word;
}

.account-menu-items {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.account-menu-item,
.account-menu-logout {
  min-height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text-secondary);
  background: transparent;
  text-align: left;
}

.account-menu-item:hover,
.account-menu-logout:hover {
  color: var(--text-primary);
  background: var(--surface-soft);
  border-color: var(--border-strong);
}

.account-menu-logout {
  justify-content: flex-start;
  color: var(--danger-text);
  background: var(--surface-muted);
}

.account-menu-logout svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .account-menu-dropdown {
    min-width: 230px;
  }
}
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: linear-gradient(
    180deg,
    var(--bg-primary),
    var(--bg-secondary)
  );
}

.admin-sidebar {
  padding: var(--spacing-2xl);
  border-right: 1px solid var(--border-primary);
  background: rgba(6, 10, 28, 0.92);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.admin-brand .logo-icon {
  font-size: 2rem;
}

.admin-brand h1 {
  font-size: 1.35rem;
}

.admin-brand p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--text-secondary);
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.admin-nav-link.active,
.admin-nav-link:hover {
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.08);
}

.admin-shell-main {
  min-width: 0;
  padding: var(--spacing-2xl);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.admin-topbar h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.admin-topbar p {
  color: var(--text-tertiary);
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.admin-mobile-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  color: var(--text-primary);
  background: rgba(6, 10, 28, 0.78);
}

.admin-content {
  min-width: 0;
  display: grid;
  gap: var(--spacing-2xl);
}

.admin-page {
  display: grid;
  gap: var(--spacing-2xl);
}

.admin-card,
.admin-form-panel,
.admin-table-panel,
.admin-preview-panel {
  border: 1px solid var(--border-primary);
  border-radius: 22px;
  background: rgba(15, 20, 54, 0.72);
  padding: var(--spacing-2xl);
}

.admin-grid {
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: 1.1fr 0.9fr;
}

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

.admin-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.admin-section-title h3 {
  font-size: 1.45rem;
}

.admin-note {
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.admin-form {
  display: grid;
  gap: var(--spacing-md);
}

.admin-form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field label {
  color: var(--text-primary);
  font-weight: 600;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-primary);
  background: rgba(6, 10, 28, 0.9);
  color: var(--text-primary);
}

.admin-field textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.admin-actions .btn-secondary,
.admin-actions .btn-primary {
  min-width: 120px;
  min-height: 44px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.admin-table th {
  color: var(--text-primary);
  font-size: 0.92rem;
}

.admin-table td {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.admin-status-dot.active {
  background: #32d583;
}

.admin-status-dot.inactive {
  background: #f97066;
}

.admin-image-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08)),
    rgba(6, 10, 28, 0.85);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.admin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-upload-help {
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.admin-success {
  padding: var(--spacing-2xl);
  border: 1px solid rgba(50, 213, 131, 0.22);
  border-radius: 20px;
  text-align: center;
  color: #7ce8a9;
  background: rgba(50, 213, 131, 0.08);
}

.admin-empty,
.admin-loading,
.admin-error {
  padding: var(--spacing-2xl);
  border: 1px dashed rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  color: var(--text-secondary);
  background: rgba(0, 212, 255, 0.04);
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.admin-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  color: var(--text-secondary);
  background: transparent;
}

.admin-chip.active {
  background: rgba(0, 212, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.25);
}

.admin-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-mini-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-feature-list {
  display: grid;
  gap: var(--spacing-md);
}

.admin-feature-item {
  border: 1px solid var(--border-primary);
  border-radius: 18px;
  padding: var(--spacing-lg);
  background: rgba(6, 10, 28, 0.7);
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.admin-feature-item h4 {
  margin-bottom: 8px;
}

.admin-feature-item p {
  font-size: 0.9rem;
}

.admin-grid .admin-preview-panel {
  display: grid;
  gap: var(--spacing-lg);
}

.admin-heading-preview {
  display: grid;
  gap: 6px;
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(8, 191, 255, 0.08)),
    rgba(6, 10, 28, 0.8);
}

.admin-heading-line {
  display: block;
  width: fit-content;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(
    90deg,
    #7c3cff 0%,
    #5962f5 48%,
    #08bfff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.admin-quick-link {
  padding: 20px;
}

.admin-sidebar-overlay {
  display: none;
}

@media (max-width: 1080px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: min(86vw, 320px);
    height: 100vh;
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    border-right: 1px solid var(--border-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .admin-shell.drawer-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(2, 6, 23, 0.58);
  }

  .admin-mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .admin-shell-main {
    padding: var(--spacing-lg);
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-grid,
  .admin-form .field-grid {
    grid-template-columns: 1fr;
  }

  .admin-card,
  .admin-form-panel,
  .admin-table-panel,
  .admin-preview-panel,
  .admin-sidebar {
    padding: var(--spacing-lg);
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }

  .admin-feature-item {
    flex-direction: column;
  }
}

.admin-card h2,
.admin-card h3 {
  letter-spacing: -0.03em;
}

.admin-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.admin-card h3 {
  font-size: 1.35rem;
  margin: 8px 0 6px;
}

.admin-mini-grid .admin-card {
  min-height: 100%;
}

.admin-quick-link {
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.admin-quick-link:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.26);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.admin-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-md);
}

.admin-trust-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(24, 33, 58, 0.92), rgba(15, 23, 42, 0.88));
  display: grid;
  gap: 8px;
  min-height: 140px;
}

.admin-trust-card svg {
  color: var(--accent-primary);
  font-size: 1.15rem;
}

.admin-trust-card strong {
  font-size: 1rem;
}

.admin-trust-card span {
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

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

@media (max-width: 640px) {
  .admin-trust-grid {
    grid-template-columns: 1fr;
  }
}
.homepage-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  --home-pointer-x: 50%;
  --home-pointer-y: 34%;
  --home-scroll: 0;
  --home-scroll-shift: 0px;
  --home-scene-strength: 1;
  background:
    linear-gradient(180deg, #02070d 0%, #030912 48%, #02070d 100%);
}

.homepage-content {
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] .homepage-background {
  background:
    linear-gradient(180deg, #f8f6f0 0%, #f1eee7 48%, #f8f6f0 100%);
}

.homepage-background__base,
.homepage-background__grid,
.homepage-background__glow,
.homepage-background__transition,
.homepage-background__network,
.homepage-background__particles {
  position: absolute;
  inset: 0;
}

.homepage-background__base {
  background:
    radial-gradient(circle at 82% 16%, rgba(45, 212, 200, 0.08), transparent 22%),
    radial-gradient(circle at 18% 14%, rgba(74, 141, 255, 0.06), transparent 24%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.02), transparent 28%);
  transform: translate3d(0, var(--home-scroll-shift), 0);
}

:root[data-theme="light"] .homepage-background__base {
  background:
    radial-gradient(circle at 82% 16%, rgba(45, 212, 200, 0.05), transparent 22%),
    radial-gradient(circle at 18% 14%, rgba(74, 141, 255, 0.04), transparent 24%),
    radial-gradient(circle at 50% 52%, rgba(17, 17, 17, 0.012), transparent 28%);
}

.homepage-background__grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.12) 72%, transparent);
  animation: homepageGridDrift 120s linear infinite;
  transform: translate3d(0, calc(var(--home-scroll-shift) * 0.15), 0);
}

:root[data-theme="light"] .homepage-background__grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
}

.homepage-background__glow {
  background:
    radial-gradient(circle 300px at var(--home-pointer-x) var(--home-pointer-y), rgba(45, 212, 200, 0.14), transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(74, 141, 255, 0.1), transparent 26%),
    radial-gradient(circle at 16% 12%, rgba(239, 91, 42, 0.06), transparent 22%);
  opacity: calc(0.72 * var(--home-scene-strength));
  transition: opacity 0.24s ease;
  transform: translate3d(0, calc(var(--home-scroll-shift) * 0.08), 0);
}

:root[data-theme="light"] .homepage-background__glow {
  background:
    radial-gradient(circle 280px at var(--home-pointer-x) var(--home-pointer-y), rgba(45, 212, 200, 0.08), transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(74, 141, 255, 0.06), transparent 26%),
    radial-gradient(circle at 16% 12%, rgba(239, 91, 42, 0.035), transparent 22%);
  opacity: calc(0.54 * var(--home-scene-strength));
}

.homepage-background__transition {
  opacity: 0.48;
  transition: opacity 0.24s ease;
}

.homepage-background__transition--top {
  background:
    linear-gradient(180deg, rgba(2, 7, 13, 0.58), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(45, 212, 200, 0.08), transparent 42%);
}

.homepage-background__transition--bottom {
  inset: auto 0 0;
  height: 24%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 7, 13, 0.18) 24%, rgba(2, 7, 13, 0.6) 100%),
    radial-gradient(circle at 50% 100%, rgba(239, 91, 42, 0.06), transparent 38%);
}

:root[data-theme="light"] .homepage-background__transition--top {
  background:
    linear-gradient(180deg, rgba(248, 246, 240, 0.88), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(45, 212, 200, 0.05), transparent 42%);
}

:root[data-theme="light"] .homepage-background__transition--bottom {
  background:
    linear-gradient(180deg, transparent 0%, rgba(241, 238, 231, 0.24) 24%, rgba(241, 238, 231, 0.72) 100%),
    radial-gradient(circle at 50% 100%, rgba(239, 91, 42, 0.03), transparent 38%);
}

.homepage-background__network {
  inset: -8% 0 -10%;
  width: 100%;
  height: 118%;
  transform: translate3d(0, var(--home-scroll-shift), 0);
  opacity: calc(0.9 * var(--home-scene-strength));
}

.homepage-background__network-line {
  fill: none;
  stroke: url(#homepage-network-gradient);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 10 20;
  opacity: 0.7;
  animation: homepageNetworkFlow 18s linear infinite;
  animation-delay: var(--line-delay);
}

.homepage-background__network-group--1 .homepage-background__network-line {
  stroke-dasharray: 8 18;
  opacity: 0.54;
}

.homepage-background__network-group--2 .homepage-background__network-line {
  stroke-dasharray: 12 24;
  opacity: 0.4;
}

.homepage-background__network-node circle:first-child {
  fill: url(#homepage-node-gradient);
  opacity: 0.96;
}

.homepage-background__network-node circle:last-child {
  fill: none;
  stroke: rgba(45, 212, 200, 0.24);
  stroke-width: 1;
  opacity: 0.42;
  transform-origin: center;
  animation: homepageNodePulse 8s ease-in-out var(--node-delay) infinite;
}

.homepage-background__terrain path {
  fill: none;
  stroke: rgba(45, 212, 200, 0.18);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 6 18;
  opacity: 0.32;
  animation: homepageTerrainFlow 22s linear infinite;
}

.homepage-background__terrain path:nth-child(2) {
  stroke: rgba(74, 141, 255, 0.14);
  opacity: 0.24;
  animation-direction: reverse;
}

.homepage-background__terrain path:nth-child(3) {
  stroke: rgba(239, 91, 42, 0.08);
  opacity: 0.2;
}

.homepage-background__particles {
  overflow: hidden;
}

.homepage-background__particle {
  position: absolute;
  left: var(--particle-x);
  top: var(--particle-y);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-secondary) 72%, transparent);
  opacity: var(--particle-opacity);
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent-secondary) 38%, transparent);
  animation: homepageParticleFloat var(--particle-duration) ease-in-out var(--particle-delay) infinite alternate;
  transform: translate3d(0, calc(var(--home-scroll-shift) * 0.04), 0);
}

.homepage-background[data-scene="hero"] .homepage-background__network {
  opacity: 1;
}

.homepage-background[data-scene="hero"] .homepage-background__glow {
  opacity: 0.92;
}

.homepage-background[data-scene="services"] .homepage-background__network-line,
.homepage-background[data-scene="products"] .homepage-background__network-line {
  opacity: 0.84;
}

.homepage-background[data-scene="statistics"] .homepage-background__terrain path {
  opacity: 0.44;
}

.homepage-background[data-scene="testimonials"] .homepage-background__glow {
  opacity: 0.5;
}

.homepage-background[data-scene="footer"] .homepage-background__terrain path {
  opacity: 0.5;
}

.homepage-background.is-reduced .homepage-background__grid,
.homepage-background.is-reduced .homepage-background__terrain path,
.homepage-background.is-reduced .homepage-background__network-line,
.homepage-background.is-reduced .homepage-background__particle,
.homepage-background.is-reduced .homepage-background__network-node circle:last-child {
  animation: none !important;
}

@keyframes homepageGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 240px;
  }
}

@keyframes homepageNetworkFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -260;
  }
}

@keyframes homepageTerrainFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -200;
  }
}

@keyframes homepageParticleFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(4px, -10px, 0);
  }
}

@keyframes homepageNodePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.76;
    transform: scale(1.08);
  }
}

@media (max-width: 1180px) {
  .homepage-background__network {
    opacity: 0.88;
  }

  .homepage-background__particle {
    opacity: calc(var(--particle-opacity) * 0.88);
  }
}

@media (max-width: 768px) {
  .homepage-background__grid {
    opacity: 0.12;
    background-size: 96px 96px;
  }

  .homepage-background__network {
    opacity: 0.72;
  }

  .homepage-background__terrain {
    opacity: 0.8;
  }

  .homepage-background__particle {
    opacity: calc(var(--particle-opacity) * 0.7);
  }
}

@media (max-width: 560px) {
  .homepage-background__grid {
    background-size: 84px 84px;
  }

  .homepage-background__glow {
    opacity: calc(0.42 * var(--home-scene-strength));
  }

  .homepage-background__network {
    opacity: 0.58;
  }

  .homepage-background__terrain {
    opacity: 0.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-background__grid,
  .homepage-background__terrain path,
  .homepage-background__network-line,
  .homepage-background__particle,
  .homepage-background__network-node circle:last-child {
    animation: none !important;
    transition: none !important;
  }
}
.digital-earth-hero {
  position: relative;
  isolation: isolate;

  min-height: calc(100svh - var(--navbar-height));

  padding: clamp(24px, 3vw, 44px) 0 clamp(40px, 5vw, 72px);

  overflow-x: clip;
  overflow-y: visible;

  color: var(--text-primary);

  background:
    radial-gradient(
      circle at 78% 14%,
      rgba(45, 212, 200, 0.11),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 10%,
      rgba(74, 141, 255, 0.08),
      transparent 22%
    ),
    linear-gradient(180deg, #02070d 0%, #040a11 52%, #02070d 100%);
}

:root[data-theme="light"] .digital-earth-hero {
  background:
    radial-gradient(
      circle at 78% 14%,
      rgba(45, 212, 200, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 18% 10%,
      rgba(74, 141, 255, 0.05),
      transparent 22%
    ),
    linear-gradient(
      180deg,
      rgba(249, 247, 241, 0.98) 0%,
      rgba(241, 238, 230, 0.98) 52%,
      rgba(246, 243, 236, 0.98) 100%
    );
}

.digital-earth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018),
      transparent 10%,
      transparent 90%,
      rgba(255, 255, 255, 0.018)
    );
}
.digital-earth-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(2, 7, 13, 0.98) 0%,
    rgba(2, 7, 13, 0.88) 24%,
    rgba(2, 7, 13, 0.48) 43%,
    rgba(2, 7, 13, 0.12) 58%,
    transparent 74%
  );
}

.digital-earth-shell {
  position: relative;

  /* Important: separate stacking context mat banao */
  z-index: auto;

  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 72px);
  box-sizing: border-box;

  display: flex;
  align-items: center;
}
.digital-earth-copy {
  position: relative;
  z-index: 5;

  min-width: 0;
  width: min(48%, 760px);
  max-width: 760px;

  display: grid;
  gap: 18px;

  /*
   * Text readability ke liye subtle shadow.
   * Earth peeche visible rahegi.
   */
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(0, 0, 0, 0.38);
}
.digital-earth-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid
    color-mix(in srgb, var(--accent-primary) 26%, var(--border-primary));
  background: color-mix(in srgb, var(--surface-primary) 82%, transparent);
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.digital-earth-title {
  display: grid;
  gap: 0.04em;
  margin: 0;
  max-width: 14.2ch;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.digital-earth-title span {
  display: block;
}

.digital-earth-title-accent {
  color: var(--accent-primary);
}

.digital-earth-lead {
  max-width: 600px;
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.65;
}

.digital-earth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}

.digital-earth-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.digital-earth-button--primary {
  gap: 10px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    color-mix(in srgb, var(--accent-primary) 72%, #000 28%) 100%
  );
  box-shadow: 0 14px 28px rgba(239, 91, 42, 0.22);
}

.digital-earth-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: color-mix(in srgb, var(--surface-primary) 72%, transparent);
  color: var(--text-primary);
}

:root[data-theme="light"] .digital-earth-button--secondary {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.digital-earth-trustline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  padding-top: 8px;
}

.digital-earth-trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-earth-visual {
  --pointer-x: 50%;
  --pointer-y: 38%;

  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  /*
   * Complete Earth + orbit background size.
   */
  width: 114%;
  height: calc(100% + 70px);
  min-height: 100%;
  max-width: none;

  display: grid;
  place-items: center;

  /*
   * Negative X = left side.
   * Positive Y = neeche.
   */
  transform: translateX(clamp(-92px, -5vw, -44px))
    translateY(clamp(18px, 2vw, 40px));

  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

@media (min-width: 1440px) {
  .digital-earth-visual {
    width: 116%;
    height: calc(100% + 82px);

    transform: translateX(clamp(-120px, -5vw, -70px))
      translateY(clamp(22px, 2.2vw, 38px));
  }
}

@media (min-width: 1800px) {
  .digital-earth-visual {
    width: 118%;
    height: calc(100% + 96px);

    transform: translateX(clamp(-160px, -6vw, -100px))
      translateY(clamp(28px, 2.4vw, 44px));
  }
}

.digital-earth-grid,
.digital-earth-glow,
.digital-earth-particles,
.digital-earth-core,
.digital-earth-orbits {
  position: absolute;
  inset: 0;
}

.digital-earth-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.12;
  pointer-events: none;
}

:root[data-theme="light"] .digital-earth-grid {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
}

.digital-earth-glow {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(45, 212, 200, 0.12),
      transparent 18%
    ),
    radial-gradient(circle at 50% 46%, rgba(74, 141, 255, 0.1), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.digital-earth-particles {
  display: block;
  pointer-events: none;
  z-index: 2;
}

.digital-earth-core {
  left: 50%;
  top: 50%;

  display: grid;
  place-items: center;

  width: clamp(440px, 38vw, 760px);
  aspect-ratio: 1;

  transform: translate(-50%, -50%);

  z-index: 3;
  pointer-events: none;

  animation: digitalEarthBreath 7s ease-in-out infinite;

  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.digital-earth-core::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45, 212, 200, 0.34) 0%,
    rgba(74, 141, 255, 0.2) 36%,
    transparent 70%
  );
  filter: blur(28px);
  opacity: 0.9;
  z-index: -1;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.digital-earth-core::after {
  content: "";
  position: absolute;
  inset: -5%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.64;
  z-index: -1;
}

.digital-earth-core.is-hovered {
  transform: translate(-50%, -50%) scale(1.03);
  filter: saturate(1.08);
}

.digital-earth-core.is-hovered::before {
  transform: scale(1.04);
  opacity: 1;
}

.digital-earth-core__svg {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.36));
}
.digital-earth-copy > * {
  position: relative;
  z-index: 1;
}

.digital-earth__rajasthan-brand {
  position: absolute;
  left: 50%;
  top: 50%;

  width: clamp(250px, 21vw, 410px);

  transform: translate(-50%, -50%);

  display: grid;
  place-items: center;

  z-index: 4;
  pointer-events: none;
  user-select: none;
}

.digital-earth__rajasthan-brand-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 0 10px rgba(255, 159, 75, 0.6))
    drop-shadow(0 0 24px rgba(239, 91, 42, 0.34));
  user-select: none;
  pointer-events: none;
}

.digital-earth-core__halo {
  opacity: 0.96;
}

.digital-earth-core__base {
  opacity: 0.98;
}

.digital-earth-core__shadow {
  fill: rgba(1, 8, 18, 0.7);
  transform: translateY(16px) scaleX(1.02);
  filter: blur(10px);
  opacity: 0.62;
}

.digital-earth-core__surface {
  transform-box: fill-box;
  transform-origin: center;
  animation: digitalEarthSpin 150s linear infinite;
}

.digital-earth-core__grid {
  opacity: 0.88;
  mix-blend-mode: screen;
}

.digital-earth-core__line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 1.1;
  opacity: 0.48;
}

.digital-earth-core__line--lat {
  stroke: rgba(145, 224, 255, 0.32);
}

.digital-earth-core__line--long {
  stroke: rgba(255, 255, 255, 0.14);
}

.digital-earth-core__continents {
  opacity: 0.96;
}

.digital-earth-core__land {
  fill: url(#digital-earth-continent);
  filter: drop-shadow(0 0 10px rgba(45, 212, 200, 0.14));
}

.digital-earth-core__land--one,
.digital-earth-core__land--two,
.digital-earth-core__land--three,
.digital-earth-core__land--four {
  opacity: 0.66;
}

.digital-earth-core__sweep {
  transform-box: fill-box;
  transform-origin: center;
  mix-blend-mode: screen;
  opacity: 0.86;
  animation: digitalEarthSweep 12s ease-in-out infinite;
}

.digital-earth-core__sweep-line {
  fill: none;
  stroke: rgba(45, 212, 200, 0.34);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.digital-earth-core__sweep-line--accent {
  stroke: rgba(239, 91, 42, 0.44);
  opacity: 0.8;
}

.digital-earth-orbits {
  z-index: 5;
  pointer-events: none;
}

.digital-earth-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.digital-earth-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.digital-earth-orbit__track {
  fill: none;

  /* Chhote lekin clearly visible round dots */
  stroke-linecap: round;
  stroke-width: 0.85;
  stroke-dasharray: 0.65 11.5;

  opacity: 0.78;

  filter: drop-shadow(0 0 4px rgba(45, 212, 200, 0.13));

  transition:
    opacity 220ms ease,
    stroke 220ms ease,
    stroke-width 220ms ease;
}

.digital-earth-orbit.is-hovered .digital-earth-orbit__track {
  opacity: 0.82;
  stroke-width: 0.7;
}
.digital-earth-orbit__track--inner {
  stroke: rgba(45, 212, 200, 0.82);
}

.digital-earth-orbit__track--inner-mid {
  stroke: rgba(74, 141, 255, 0.7);
}

.digital-earth-orbit__track--middle {
  stroke: rgba(95, 225, 255, 0.66);
}

.digital-earth-orbit__track--middle-mid {
  stroke: rgba(239, 91, 42, 0.52);
}

.digital-earth-orbit__track--outer {
  stroke: rgba(255, 196, 84, 0.54);
}

.digital-earth-orbit__track--outer-mid {
  stroke: rgba(120, 138, 255, 0.54);
}

.digital-earth-orbit__track--far {
  stroke: rgba(45, 212, 200, 0.58);
}

.digital-earth-orbit.is-hovered .digital-earth-orbit__track {
  opacity: 0.92;
  stroke-width: 1.46;
}

.digital-earth-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
    translate3d(var(--planet-x), var(--planet-y), 0);
  transform-origin: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  pointer-events: auto;
  cursor: pointer;
  will-change: transform;
  z-index: 6;
}

.digital-earth-planet__content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 220ms ease;
  transform-origin: center;
}

.digital-earth-planet__orb {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 220px;
  min-height: 60px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(255, 255, 255, 0.34),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(3, 10, 18, 0.82), rgba(10, 22, 34, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.digital-earth-planet__icon {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255, 255, 255, 0.34),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(45, 212, 200, 0.92), rgba(74, 141, 255, 0.9));
  color: #f4fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 22px rgba(0, 0, 0, 0.2);
}

.digital-earth-planet__label {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-wrap: balance;
  white-space: normal;
}

.digital-earth-planet__label strong {
  display: block;
  max-width: 156px;
}

.digital-earth-planet[data-label-position="left"]
  .digital-earth-planet__content {
  flex-direction: row-reverse;
}

.digital-earth-planet[data-label-position="left"] .digital-earth-planet__label {
  align-items: flex-end;
  text-align: right;
}

.digital-earth-planet[data-label-position="right"]
  .digital-earth-planet__content {
  flex-direction: row;
}

.digital-earth-planet[data-label-position="right"]
  .digital-earth-planet__label {
  align-items: flex-start;
  text-align: left;
}

.digital-earth-planet[data-label-position="top"]
  .digital-earth-planet__content {
  flex-direction: column;
}

.digital-earth-planet[data-label-position="top"] .digital-earth-planet__label {
  align-items: center;
  text-align: center;
}

.digital-earth-planet[data-label-position="bottom"]
  .digital-earth-planet__content {
  flex-direction: column-reverse;
}

.digital-earth-planet[data-label-position="bottom"]
  .digital-earth-planet__label {
  align-items: center;
  text-align: center;
}

.digital-earth-planet.is-hovered .digital-earth-planet__orb,
.digital-earth-planet:hover .digital-earth-planet__orb {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.24);
}

.digital-earth-planet:focus-visible {
  outline: 2px solid rgba(45, 212, 200, 0.56);
  outline-offset: 5px;
}

.digital-earth-planet:focus-visible .digital-earth-planet__orb {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.24);
}

.digital-earth-planet.is-hovered .digital-earth-planet__label,
.digital-earth-planet:hover .digital-earth-planet__label {
  color: var(--accent-primary);
}

.digital-earth-planet.is-hovered .digital-earth-planet__icon,
.digital-earth-planet:hover .digital-earth-planet__icon {
  transform: scale(1.03);
}

.digital-earth-planet.is-hovered .digital-earth-planet__content,
.digital-earth-planet:hover .digital-earth-planet__content {
  transform: scale(1.015);
}

.digital-earth-hero.is-ready .digital-earth-copy > * {
  animation: digitalEarthFadeIn 0.72s ease both;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(1) {
  animation-delay: 0.04s;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(2) {
  animation-delay: 0.1s;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(4) {
  animation-delay: 0.22s;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(5) {
  animation-delay: 0.28s;
}

.digital-earth-hero.is-ready .digital-earth-copy > *:nth-child(6) {
  animation-delay: 0.34s;
}

.digital-earth-hero.is-reduced .digital-earth-core__surface,
.digital-earth-hero.is-reduced .digital-earth-core__sweep,
.digital-earth-hero.is-reduced .digital-earth-orbit__track,
.digital-earth-hero.is-reduced .digital-earth-core,
.digital-earth-hero.is-reduced .digital-earth-grid,
.digital-earth-hero.is-reduced .digital-earth-glow {
  animation: none !important;
  transition: none !important;
}

.digital-earth-hero.is-reduced .digital-earth-orbit__track {
  stroke-dasharray: 0;
}

.digital-earth-hero:not(.is-visible) .digital-earth-core__surface,
.digital-earth-hero:not(.is-visible) .digital-earth-core__sweep,
.digital-earth-hero:not(.is-visible) .digital-earth-orbit__track {
  animation-play-state: paused !important;
}

@keyframes digitalEarthSpin {
  from {
    transform: rotate(0deg);
  }

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

@keyframes digitalEarthBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: saturate(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.02);
    filter: saturate(1.05);
  }
}

@keyframes digitalEarthSweep {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes digitalEarthFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1199px) {
  .digital-earth-shell {
    gap: clamp(24px, 4vw, 48px);
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .digital-earth-title {
    font-size: clamp(3rem, 4.8vw, 5rem);
  }

  .digital-earth-visual {
    width: min(100%, clamp(700px, 50vw, 960px));
    min-height: clamp(640px, 52vw, 880px);
  }

  .digital-earth-core {
    width: clamp(320px, 35vw, 540px);
  }
}

@media (max-width: 900px) {
  .digital-earth-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .digital-earth-copy,
  .digital-earth-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .digital-earth-title {
    max-width: 100%;
  }

  .digital-earth-visual {
    width: min(100%, 92vw);
    justify-self: center;
    transform: none;
    min-height: 640px;
  }

  .digital-earth-core {
    width: clamp(280px, 44vw, 380px);
  }

  .digital-earth-planet__orb {
    max-width: 190px;
    min-height: 54px;
  }
}

@media (max-width: 768px) {
  .digital-earth-hero {
    padding: calc(var(--navbar-height) + 26px) 0 76px;
  }

  .digital-earth-shell {
    padding-inline: clamp(20px, 4vw, 28px);
  }

  .digital-earth-title {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    line-height: 0.98;
  }

  .digital-earth-lead {
    font-size: 1rem;
  }

  .digital-earth-button {
    min-height: 50px;
  }

  .digital-earth-visual {
    width: min(100%, 96vw);
    min-height: clamp(560px, 92vw, 740px);
  }

  .digital-earth-core {
    width: clamp(240px, 50vw, 320px);
  }

  .digital-earth-planet__orb {
    gap: 8px;
    min-height: 50px;
    max-width: 176px;
    padding: 8px 12px 8px 9px;
  }

  .digital-earth-planet__icon {
    width: 34px;
    height: 34px;
  }

  .digital-earth-planet__label {
    font-size: 0.66rem;
  }

  .digital-earth-planet__content {
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .digital-earth-hero {
    padding-top: calc(var(--navbar-height) + 20px);
  }

  .digital-earth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .digital-earth-button {
    width: 100%;
    justify-content: center;
  }

  .digital-earth-trustline {
    gap: 8px;
  }

  .digital-earth-visual {
    min-height: clamp(460px, 98vw, 620px);
  }

  .digital-earth-core {
    width: clamp(200px, 54vw, 260px);
  }

  .digital-earth-planet__orb {
    min-height: 46px;
    max-width: 156px;
  }

  .digital-earth-planet__icon {
    width: 30px;
    height: 30px;
  }

  .digital-earth-planet__label strong {
    max-width: 100px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }
}
@media (max-width: 1024px) {
  .digital-earth-shell {
    min-height: calc(100svh - var(--navbar-height) - 48px);

    align-items: flex-start;
  }

  .digital-earth-copy {
    width: min(62%, 680px);
  }

  .digital-earth-visual {
    width: 130%;
    transform: translateX(14%);
    opacity: 0.78;
  }

  .digital-earth-hero::after {
    background: linear-gradient(
      90deg,
      rgba(2, 7, 13, 0.98) 0%,
      rgba(2, 7, 13, 0.88) 38%,
      rgba(2, 7, 13, 0.38) 66%,
      transparent 88%
    );
  }
}

@media (max-width: 767px) {
  .digital-earth-hero {
    padding: 28px 0 48px;
  }

  .digital-earth-shell {
    min-height: calc(100svh - var(--navbar-height));

    padding-inline: 18px;
  }

  .digital-earth-copy {
    width: 100%;
    max-width: 100%;
  }

  .digital-earth-visual {
    left: 50%;
    top: 26%;

    width: 165%;
    height: 74%;

    transform: translateX(-50%);

    opacity: 0.52;
  }

  .digital-earth-core {
    width: clamp(280px, 72vw, 400px);
  }

  .digital-earth__rajasthan-brand {
    width: clamp(170px, 46vw, 250px);
  }

  .digital-earth-hero::after {
    background: linear-gradient(
      180deg,
      rgba(2, 7, 13, 0.86) 0%,
      rgba(2, 7, 13, 0.68) 54%,
      rgba(2, 7, 13, 0.84) 100%
    );
  }
}
.service-mesh {
  --mesh-focus: 0;
  --mesh-pointer-x: 50%;
  --mesh-pointer-y: 50%;
  position: relative;
  min-height: 228px;
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 74%, transparent);
  background:
    radial-gradient(circle at var(--mesh-pointer-x) var(--mesh-pointer-y), color-mix(in srgb, var(--mesh-accent) 20%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 56%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface-secondary) 86%, transparent), color-mix(in srgb, var(--surface-primary) 84%, transparent));
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  perspective: 1100px;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    filter 0.24s ease;
}

.service-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mesh-pointer-x) var(--mesh-pointer-y), color-mix(in srgb, var(--mesh-accent) 14%, transparent), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px, 22px 22px;
  opacity: calc(0.22 + var(--mesh-focus) * 0.2);
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.service-mesh::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid color-mix(in srgb, var(--mesh-accent) 12%, transparent);
  border-radius: inherit;
  opacity: calc(0.2 + var(--mesh-focus) * 0.3);
  pointer-events: none;
}

.service-mesh:hover {
  border-color: color-mix(in srgb, var(--mesh-accent) 42%, var(--border-strong));
}

.service-mesh-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.service-mesh svg * {
  vector-effect: non-scaling-stroke;
}

.service-mesh-frame,
.service-mesh-device,
.service-mesh-cloud,
.service-mesh-cloud-node,
.service-mesh-loop,
.service-mesh-stage,
.service-mesh-ai-core,
.service-mesh-orbit,
.service-mesh-detail,
.service-mesh-line,
.service-mesh-path,
.service-mesh-node {
  fill: none;
  stroke: color-mix(in srgb, var(--mesh-accent) 86%, white);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.service-mesh-frame,
.service-mesh-device,
.service-mesh-cloud,
.service-mesh-loop,
.service-mesh-stage,
.service-mesh-ai-core,
.service-mesh-orbit {
  fill: color-mix(in srgb, var(--mesh-accent) 6%, transparent);
}

.service-mesh-cloud,
.service-mesh-cloud-node,
.service-mesh-loop,
.service-mesh-stage,
.service-mesh-ai-core,
.service-mesh-orbit {
  stroke-dasharray: 4 5;
}

.service-mesh-line {
  stroke: color-mix(in srgb, var(--mesh-accent) 58%, var(--accent-secondary));
  opacity: 0.72;
}

.service-mesh-path {
  stroke: color-mix(in srgb, var(--accent-secondary) 65%, var(--mesh-accent));
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
}

.service-mesh-node {
  fill: color-mix(in srgb, var(--mesh-accent) 88%, white);
  stroke: none;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--mesh-accent) 28%, transparent));
}

.service-mesh-cloud-node {
  fill: color-mix(in srgb, var(--mesh-accent) 12%, transparent);
  stroke: color-mix(in srgb, var(--mesh-accent) 72%, white);
}

.service-mesh-stage {
  fill: color-mix(in srgb, var(--surface-primary) 70%, transparent);
  stroke: color-mix(in srgb, var(--mesh-accent) 78%, white);
}

.service-mesh-ai-core {
  fill: color-mix(in srgb, var(--mesh-accent) 18%, transparent);
}

.service-mesh-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--mesh-accent) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-overlay) 76%, transparent);
  color: var(--text-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: calc(0.7 + var(--mesh-focus) * 0.25);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.service-mesh-glow {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at var(--mesh-pointer-x) var(--mesh-pointer-y), color-mix(in srgb, var(--mesh-accent) 16%, transparent), transparent 38%),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-secondary) 8%, transparent), transparent 54%);
  opacity: calc(0.36 + var(--mesh-focus) * 0.24);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.service-mesh--web .service-mesh-svg {
  animation: meshDrift 11s ease-in-out infinite alternate;
}

.service-mesh--mobile .service-mesh-svg {
  animation: meshDrift 13s ease-in-out infinite alternate-reverse;
}

.service-mesh--cloud .service-mesh-svg {
  animation: meshDrift 15s ease-in-out infinite alternate;
}

.service-mesh--devops .service-mesh-svg {
  animation: meshDrift 12s ease-in-out infinite alternate-reverse;
}

.service-mesh--ai .service-mesh-svg {
  animation: meshDrift 14s ease-in-out infinite alternate;
}

.service-mesh--web .service-mesh-frame,
.service-mesh--mobile .service-mesh-device,
.service-mesh--cloud .service-mesh-cloud,
.service-mesh--devops .service-mesh-loop,
.service-mesh--ai .service-mesh-ai-core {
  animation: meshPulse 4.5s ease-in-out infinite;
}

@keyframes meshDrift {
  from {
    transform: translate3d(-2px, -1px, 0) scale(1.03);
  }

  to {
    transform: translate3d(2px, 1px, 0) scale(1.05);
  }
}

@keyframes meshPulse {
  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .service-mesh {
    min-height: 188px;
  }
}

@media (max-width: 640px) {
  .service-mesh {
    min-height: 168px;
  }

  .service-mesh-label {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-mesh-svg,
  .service-mesh-frame,
  .service-mesh-device,
  .service-mesh-cloud,
  .service-mesh-loop,
  .service-mesh-ai-core {
    animation: none !important;
  }
}
.process-wheel-shell {
  width: min(calc(100% - 32px), var(--container-width));
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.process-wheel-desktop {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: center;  
} 

.process-wheel-visual {
  display: grid;
  place-items: center;
  min-height: 640px;
}

.process-wheel-ring {
  position: relative;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(circle at center, rgba(239, 91, 42, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.process-wheel-ring-outline {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px dashed rgba(239, 91, 42, 0.2);
}

.process-wheel-ring {
  transform-origin: center center;
  will-change: transform;
}

.process-wheel-node {
  will-change: transform;
  z-index: 2;
}

.process-wheel-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
   margin: -51px 0 0 -74px;
  min-height: 102px;
  display: grid;
  gap: 6px;
  justify-items: center;
  align-content: center;
  padding: 14px 12px;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: rgba(16, 16, 16, 0.88);
  color: var(--text-primary);
  transform-origin: center center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.process-wheel-node-index {
  color: var(--text-tertiary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.process-wheel-node-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 91, 42, 0.12);
  color: var(--accent-primary);
}

.process-wheel-node strong {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-wheel-node.is-active {
  border-color: rgba(239, 91, 42, 0.3);
  background: rgba(239, 91, 42, 0.1);
}

.process-wheel-center {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(239, 91, 42, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.04);
}

.process-wheel-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-primary);
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.process-wheel-center h3 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.process-wheel-center p {
  color: var(--text-secondary);
  line-height: 1.85;
}

.process-wheel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-wheel-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.process-wheel-mobile {
  display: none;
}

.process-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.process-timeline-item.is-active {
  border-color: rgba(239, 91, 42, 0.28);
  background: rgba(239, 91, 42, 0.08);
}

.process-timeline-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(239, 91, 42, 0.12);
  color: var(--accent-primary);
}

.process-timeline-copy {
  display: grid;
  gap: 8px;
}

.process-timeline-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-timeline-top span {
  color: var(--text-tertiary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.process-timeline-top strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-timeline-copy p {
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .process-wheel-desktop {
    grid-template-columns: 1fr;
  }

  .process-wheel-visual {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .process-wheel-shell {
    width: min(calc(100% - 24px), 100%);
  }

  .process-wheel-visual {
    display: none;
  }

  .process-wheel-mobile {
    display: grid;
    gap: 12px;
  }

  .process-wheel-desktop {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-wheel-node,
  .process-timeline-item {
    transition: none;
  }
}  .why-process-section {
  position: relative;
  padding-block: clamp(100px, 12vw, 170px);
  overflow-x: clip;
  color: var(--text-primary);
}

.why-process-container {
  width: min(1700px, calc(100% - 48px));
  margin-inline: auto;
}

.why-process-header {
  max-width: 900px;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.why-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-process-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.why-process-header h2 {
  margin: 14px 0 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 780px;
  text-wrap: balance;
}

.why-process-header p {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.why-process-content {
  display: grid;
  grid-template-columns: minmax(780px, 0.98fr) minmax(460px, 1.02fr);
  gap: clamp(80px, 8vw, 140px);
  align-items: center;
  min-width: 0;
}

.why-process-wheel-column {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: visible;
}

.why-process-detail-column {
  position: relative;
  min-width: 0;
  z-index: 4;
  justify-self: end;
  width: 100%;
}

.why-process-detail-column .why-detail-panel {
  max-width: 460px;
  margin: 0;
  justify-self: end;
}

.why-wheel-panel,
.why-detail-panel {
  min-width: 0;
}

.why-wheel-panel {
  position: relative;
  width: 100%;
}

.why-wheel {
  position: relative;
  width: min(var(--process-wheel-size, clamp(560px, 43vw, 700px)), 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  flex-shrink: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.why-wheel__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.process-orbit-layer {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}

.process-orbit-layer .why-stage-node {
  pointer-events: auto;
}

/* Single circular wheel tracks */
.process-circle-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.process-circle-track__outer,
.process-circle-track__middle,
.process-circle-track__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.process-circle-track__outer {
  width: calc(100% - 120px);
  height: calc(100% - 120px);

  border: 1px dashed color-mix(in srgb, var(--accent-primary) 32%, transparent);

  box-shadow:
    0 0 34px color-mix(in srgb, var(--accent-secondary) 8%, transparent),
    inset 0 0 34px color-mix(in srgb, var(--accent-secondary) 6%, transparent);
}

.process-circle-track__middle {
  width: calc(100% - 180px);
  height: calc(100% - 180px);

  border: 1px solid color-mix(in srgb, var(--accent-secondary) 22%, transparent);
}

.process-circle-track__inner {
  width: calc(100% - 260px);
  height: calc(100% - 260px);

  border: 1px solid color-mix(in srgb, var(--accent-primary) 14%, transparent);

  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-secondary) 7%, transparent),
    transparent 68%
  );
}

.why-wheel.is-radius-hovered .process-circle-track__outer {
  border-color: color-mix(in srgb, var(--accent-primary) 70%, transparent);

  box-shadow:
    0 0 42px color-mix(in srgb, var(--accent-primary) 18%, transparent),
    inset 0 0 42px color-mix(in srgb, var(--accent-secondary) 10%, transparent);
}

.why-stage-node {
  position: absolute;
  left: 0;
  top: 0;

  width: var(--process-node-width, clamp(128px, 9vw, 154px));
  min-height: var(--process-node-height, clamp(88px, 7vw, 108px));

  display: grid;
  place-items: center;

  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;

  transform: translate3d(var(--node-x, 50%), var(--node-y, 50%), 0)
    translate(-50%, -50%) scale(var(--node-scale, 1));

  transform-origin: center center;
  will-change: transform;

  opacity: 0.84;
  visibility: visible;

  pointer-events: auto;
  cursor: default;
  z-index: 12;

  transition:
    opacity 220ms ease,
    filter 220ms ease;
}

.why-stage-node.is-top-stage,
.why-stage-node.is-active {
  opacity: 1;
  z-index: 18;

  filter: drop-shadow(
    0 0 20px color-mix(in srgb, var(--accent-primary) 22%, transparent)
  );
}

.why-stage-node.is-active {
  opacity: 1;
  z-index: 14;
}

.why-stage-node.is-completed {
  opacity: 0.82;
}

.why-stage-node.is-hovered {
  opacity: 1;
  z-index: 16;
}

.why-stage-node__motion {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  transform: none;
}

.why-stage-node__card {
  width: 100%;
  min-height: inherit;

  display: block;

  padding: 0;
  border: 0;
  outline: none;

  background: transparent;
  color: inherit;

  cursor: pointer;
}

.why-stage-node__card:focus-visible {
  outline: none;
}

.why-stage-node__inner {
  width: 100%;
  min-height: inherit;

  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;

  padding: 8px 6px;

  /* Rectangle completely removed */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  opacity: 1;
  visibility: visible;

  transform: scale(1);
  transform-origin: center;

  transition:
    transform 220ms ease,
    filter 220ms ease;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.why-stage-node__index {
  display: block;

  color: var(--accent-secondary);

  font-family: "Manrope", "Inter", system-ui, sans-serif;

  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.why-stage-node__icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 999px;

  background: color-mix(in srgb, var(--accent-primary) 14%, transparent);

  color: var(--accent-primary);

  transition: transform 220ms ease;
}

.why-stage-node__title {
  display: block;
  width: max-content;
  max-width: 150px;

  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;

  opacity: 1;
  visibility: visible;
}

.why-stage-node__card:hover .why-stage-node__inner,
.why-stage-node__card:focus-visible .why-stage-node__inner {
  transform: scale(1.06);
  filter: drop-shadow(
    0 0 12px
    color-mix(
      in srgb,
      var(--accent-primary) 30%,
      transparent
    )
  );
}

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 24px color-mix(in srgb, var(--accent-primary) 14%, transparent);
}

.why-stage-node.is-hovered .why-stage-node__inner {
  transform: translateY(-1px) scale(1.03);

  border-color: color-mix(
    in srgb,
    var(--accent-primary) 46%,
    var(--border-primary)
  );

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    0 0 26px color-mix(in srgb, var(--accent-primary) 14%, transparent);
}

.why-stage-node__card:hover .why-stage-node__icon,
.why-stage-node__card:focus-visible .why-stage-node__icon {
  transform: translateY(-1px) rotate(-8deg);
}

.why-stage-node.is-hovered .why-stage-node__icon {
  transform: translateY(-1px) scale(1.04);
}



.why-stage-node.is-top-stage .why-stage-node__inner,
.why-stage-node.is-active .why-stage-node__inner {
  transform: scale(1.1);

  filter: drop-shadow(
    0 0 16px
    color-mix(
      in srgb,
      var(--accent-primary) 42%,
      transparent
    )
  );
}

.why-stage-node.is-completed .why-stage-node__index {
  color: var(--accent-primary);
}

.why-wheel__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--process-core-size, clamp(220px, 18vw, 268px));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 26px 22px 22px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background:
    radial-gradient(
      circle at var(--hero-pointer-x, 50%) var(--hero-pointer-y, 50%),
      rgba(45, 212, 200, 0.11),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 255, 255, 0.14),
      transparent 44%
    ),
    color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 8;
}

.why-wheel__eyebrow {
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-wheel__core strong {
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.why-wheel__core p {
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-wheel__core h3 {
  margin: 2px 0 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.why-wheel__coreOrb {
  position: relative;
  width: clamp(84px, 8vw, 108px);
  height: clamp(84px, 8vw, 108px);
  margin-bottom: 4px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 20%, transparent);
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 52% 48%,
      rgba(45, 212, 200, 0.18),
      transparent 46%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(7, 18, 28, 0.94),
      rgba(7, 18, 28, 0.84)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 8px rgba(45, 212, 200, 0.03);
  overflow: hidden;
}

.why-wheel__coreOrb::before,
.why-wheel__coreOrb::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  pointer-events: none;
}

.why-wheel__coreOrb::before {
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.72;
  transform: rotate(18deg);
}

.why-wheel__coreOrb::after {
  inset: 24%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(45, 212, 200, 0.25),
      transparent 58%
    ),
    linear-gradient(
      135deg,
      transparent 34%,
      rgba(255, 255, 255, 0.12) 35%,
      transparent 52%
    );
  opacity: 0.82;
  animation: processCoreOrbit 24s linear infinite;
}

.why-wheel__coreOrbGlow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(45, 212, 200, 0.16),
      transparent 42%
    ),
    radial-gradient(circle at 50% 50%, rgba(239, 91, 42, 0.08), transparent 58%);
  filter: blur(8px);
  opacity: 0.82;
}

.why-wheel__coreOrbGrid {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 74%);
  opacity: 0.22;
}

.why-wheel__coreCaption {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-wheel.is-static .process-orbit__track {
  stroke-dasharray: 0;
}

.why-wheel.is-hover-paused .process-orbit__track {
  opacity: 0.82;
}

.why-detail-panel {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 48px auto 0;
  padding: 28px 32px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(45, 212, 200, 0.06),
      transparent 24%
    ),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-soft);
  opacity: 1;
  visibility: visible;
}

.why-detail-panel__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.why-detail-panel__eyebrow,
.why-detail-panel__state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-detail-panel__eyebrow {
  color: var(--accent-secondary);
  background: color-mix(in srgb, var(--surface-primary) 74%, transparent);
}

.why-detail-panel__state {
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--surface-primary) 70%, transparent);
}

.why-detail-panel__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.why-detail-panel__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent-primary);
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
}

.why-detail-panel__header h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.why-detail-panel__header p,
.why-detail-panel__copy p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.why-detail-panel__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-detail-panel__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid
    color-mix(in srgb, var(--border-primary) 74%, transparent);
}

.why-detail-panel__points li span:first-child {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 6px
    color-mix(in srgb, var(--accent-primary) 10%, transparent);
}

.why-detail-panel__points li span:last-child {
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
}

.why-detail-panel__context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-detail-panel__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background: color-mix(in srgb, var(--surface-primary) 78%, transparent);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-detail-panel__chip--project {
  color: var(--accent-secondary);
}

.why-detail-panel__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.why-detail-panel__nav {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 80%, transparent);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.why-detail-panel__nav--primary {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: 0 16px 34px rgba(239, 91, 42, 0.16);
}

.why-detail-panel__nav:hover,
.why-detail-panel__nav:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(
    in srgb,
    var(--accent-primary) 34%,
    var(--border-primary)
  );
}

.why-process-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 48px);
}

.why-process-trust__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 80%, transparent);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-primary) 80%, transparent);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.why-process-trust__item:hover {
  transform: translateY(-4px);
  border-color: color-mix(
    in srgb,
    var(--accent-primary) 34%,
    var(--border-primary)
  );
  background: color-mix(in srgb, var(--surface-secondary) 88%, transparent);
}

.why-process-trust__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.why-process-trust__item:hover .why-process-trust__icon {
  transform: translateY(-1px) rotate(-6deg);
}

.why-process-trust__item strong {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.why-process-trust__item p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
}

.why-process-trust__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid
    color-mix(in srgb, var(--accent-primary) 20%, var(--border-primary));
  background: color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.why-process-trust__cta:hover,
.why-process-trust__cta:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(
    in srgb,
    var(--accent-primary) 34%,
    var(--border-primary)
  );
}

@media (max-width: 1000px) {
  .why-process-content {
    grid-template-columns: 1fr;
  }

  .why-process-detail-column .why-detail-panel {
    max-width: 760px;
    margin-top: 28px;
    justify-self: stretch;
  }

  .why-process-section {
    --process-wheel-size: clamp(680px, 74vw, 820px);
    --process-core-size: clamp(210px, 20vw, 248px);
    --process-node-width: clamp(110px, 10vw, 126px);
    --process-node-height: clamp(82px, 7vw, 96px);
  }

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

@media (max-width: 900px) {
  .why-process-container {
    width: min(1480px, calc(100% - 32px));
  }

  .why-detail-panel {
    margin-top: 28px;
  }

  .why-process-section {
    --process-wheel-size: clamp(620px, 82vw, 760px);
    --process-core-size: clamp(198px, 22vw, 226px);
  }
}

@media (max-width: 767px) {
  .why-process-section {
    padding-block: clamp(84px, 11vw, 120px);
    --process-wheel-size: clamp(520px, 92vw, 660px);
    --process-core-size: clamp(182px, 32vw, 206px);
    --process-node-width: clamp(94px, 24vw, 114px);
    --process-node-height: clamp(72px, 19vw, 88px);
  }

  .why-process-detail-column .why-detail-panel {
    margin-top: 24px;
  }

  .why-stage-node__inner {
    padding: 13px 11px;
    gap: 6px;
    border-radius: 18px;
  }

  .why-stage-node__icon {
    width: 32px;
    height: 32px;
  }

  .why-stage-node__title {
    font-size: 0.78rem;
  }

  .why-wheel__core {
    padding: 22px 18px 18px;
  }

  .why-wheel__coreOrb {
    width: clamp(72px, 14vw, 92px);
    height: clamp(72px, 14vw, 92px);
  }

  .why-wheel__core strong {
    font-size: clamp(0.98rem, 4.4vw, 1.18rem);
  }

  .why-wheel__core p {
    font-size: 0.74rem;
  }

  .why-wheel__core h3 {
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
  }

  .why-process-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .why-process-container {
    width: min(1480px, calc(100% - 20px));
  }

  .why-process-header h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .why-process-section {
    --process-wheel-size: clamp(460px, 96vw, 560px);
    --process-core-size: clamp(168px, 34vw, 188px);
    --process-node-width: clamp(88px, 28vw, 104px);
    --process-node-height: clamp(68px, 22vw, 82px);
  }

  .why-detail-panel {
    padding: 22px 20px;
  }

  .why-detail-panel__header {
    grid-template-columns: 1fr;
  }

  .why-detail-panel__icon {
    width: 38px;
    height: 38px;
  }

  .why-detail-panel__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .why-process-section {
    --process-wheel-size: clamp(410px, 98vw, 500px);
    --process-core-size: clamp(156px, 38vw, 176px);
    --process-node-width: clamp(82px, 30vw, 96px);
    --process-node-height: clamp(64px, 24vw, 76px);
  }
}

@media (max-width: 480px) {
  .why-process-container {
    width: min(1480px, calc(100% - 20px));
  }

  .why-process-header h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .why-detail-panel__header {
    grid-template-columns: 1fr;
  }

  .why-detail-panel__icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-wheel,
  .process-orbit-layer,
  .why-stage-node__motion,
  .why-stage-node__inner,
  .why-stage-node__card,
  .why-stage-node__icon,
  .why-detail-panel__nav,
  .why-process-trust__item,
  .why-process-trust__icon,
  .why-process-trust__cta,
  .why-stage-pill,
  .why-wheel__coreOrb::after {
    transition: none !important;
    animation: none !important;
  }
}

:root[data-theme="light"] .why-process-section {
  color: var(--text-primary);
}

:root[data-theme="light"] .why-stage-node__inner {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.6),
      transparent 34%
    ),
    color-mix(in srgb, var(--surface-secondary) 92%, transparent);
  border-color: color-mix(in srgb, var(--border-primary) 92%, transparent);
}

:root[data-theme="light"] .why-wheel__core {
  background:
    radial-gradient(
      circle at var(--hero-pointer-x, 50%) var(--hero-pointer-y, 50%),
      rgba(45, 212, 200, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 255, 255, 0.3),
      transparent 44%
    ),
    color-mix(in srgb, var(--surface-secondary) 92%, transparent);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

:root[data-theme="light"] .why-wheel__coreOrb {
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.42),
      transparent 28%
    ),
    radial-gradient(
      circle at 52% 48%,
      rgba(45, 212, 200, 0.16),
      transparent 46%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 247, 250, 0.98),
      rgba(232, 236, 240, 0.9)
    );
}

:root[data-theme="light"] .why-wheel__coreOrbGrid {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
}

:root[data-theme="light"] .process-orbit__track--inner {
  stroke: rgba(45, 212, 200, 0.26);
}

:root[data-theme="light"] .process-orbit__track--middle {
  stroke: rgba(74, 141, 255, 0.22);
}

:root[data-theme="light"] .process-orbit__track--outer,
:root[data-theme="light"] .process-orbit__track--far {
  stroke: rgba(239, 91, 42, 0.18);
}

:root[data-theme="light"] .process-orbit__track--diagonal {
  stroke: rgba(45, 212, 200, 0.18);
}

:root[data-theme="light"] .process-orbit__track--vertical {
  stroke: rgba(74, 141, 255, 0.18);
}

:root[data-theme="light"] .why-detail-panel__nav--primary {
  background: var(--gradient-primary);
}

:root[data-theme="light"] .why-process-trust__cta {
  background: var(--surface-secondary);
}

:root[data-theme="light"] .why-stage-node__title,
:root[data-theme="light"] .why-wheel__core strong,
:root[data-theme="light"] .why-wheel__core h3,
:root[data-theme="light"] .why-detail-panel__header h3,
:root[data-theme="light"] .why-process-trust__item strong {
  color: var(--text-primary);
}

:root[data-theme="light"] .why-wheel__core p,
:root[data-theme="light"] .why-detail-panel__header p,
:root[data-theme="light"] .why-detail-panel__copy p,
:root[data-theme="light"] .why-detail-panel__points li span:last-child,
:root[data-theme="light"] .why-process-trust__item p {
  color: var(--text-secondary);
}

@keyframes processCoreOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.editorial-home {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #0b0b0b;
}

.editorial-home h1,
.editorial-home h2 {
  background: none;
  -webkit-text-fill-color: initial;
  color: inherit;
}

.editorial-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(239, 91, 42, 0.12), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(85, 149, 165, 0.14), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 30%);
  z-index: -2;
}

.editorial-home::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
  opacity: 0.25;
  z-index: -1;
}

.editorial-shell {
  width: min(calc(100% - 48px), 1500px);
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  box-sizing: border-box;
}

.editorial-section-index,
.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.editorial-section-index::before,
.editorial-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.editorial-hero,
.editorial-manifesto,
.editorial-services,
.editorial-projects,
.editorial-stats,
.editorial-why,
.editorial-testimonials,
.editorial-footer {
  padding: 0;
}

.editorial-hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  padding-top: calc(var(--navbar-height) + 48px);
  padding-bottom: clamp(72px, 8vw, 120px);
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.editorial-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.editorial-hero-copy {
  display: grid;
  gap: 22px;
}

.editorial-hero-title {
  display: block;
  margin: 0;
  font-size: clamp(2.95rem, 6.2vw, 7.1rem);
  line-height: 0.98;
  max-width: 10.6ch;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.editorial-hero-line {
  display: block;
}

.editorial-hero-rotator {
  display: block;
  min-height: clamp(9.5rem, 17vw, 15rem);
  overflow: hidden;
}

.editorial-hero-lead {
  max-width: 40ch;
  color: var(--text-primary);
  font-size: clamp(1.12rem, 1.6vw, 1.55rem);
  line-height: 1.55;
  text-wrap: balance;
}

.editorial-hero-body {
  max-width: 62ch;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.editorial-button,
.editorial-inline-link,
.editorial-footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
  overflow: hidden;
}

.editorial-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.editorial-button-primary,
.editorial-footer-cta {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: 0 20px 48px rgba(239, 91, 42, 0.16);
}

.editorial-button-secondary {
  border-color: var(--border-primary);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.editorial-button::before,
.editorial-inline-link::before,
.editorial-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 60%);
  transform: translateX(-115%);
  transition: transform 0.42s ease;
}

.editorial-button:hover::before,
.editorial-inline-link:hover::before,
.editorial-footer-cta:hover::before {
  transform: translateX(0);
}

.editorial-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.editorial-support-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--border-primary);
}

.editorial-support-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 91, 42, 0.08);
  color: var(--accent-primary);
}

.editorial-support-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.editorial-support-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.editorial-hero-visual {
  position: relative;
  min-width: 0;
  z-index: 1;
  padding-top: 18px;
}

.editorial-hero-image-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.editorial-hero-particles {
  opacity: 0.52;
  z-index: 0;
}

.editorial-hero-image-frame {
  position: relative;
  overflow: clip;
  min-height: clamp(320px, 48vw, 680px);
  border-radius: 34px 120px 34px 96px;
  background:
    radial-gradient(circle at top, rgba(239, 91, 42, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-elevated);
  transform: translateY(10px) rotate(-1.25deg);
  isolation: isolate;
}

.editorial-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.editorial-hero-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 8px;
  max-width: 340px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.55);
  transform: translate3d(0, 0, 0);
}

.editorial-hero-overlay span,
.editorial-hero-feature-label,
.editorial-service-category,
.editorial-project-category,
.editorial-testimonials-meta {
  color: var(--accent-secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-hero-overlay strong {
  color: var(--text-primary);
  font-size: 1.02rem;
  line-height: 1.4;
}

.editorial-hero-sideband {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.editorial-hero-statline,
.editorial-hero-feature {
  border-top: 1px solid var(--border-primary);
  padding-top: 18px;
}

.editorial-hero-statline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.editorial-hero-stat strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.06em;
}

.editorial-hero-stat span {
  color: var(--text-tertiary);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-hero-feature {
  display: grid;
  gap: 10px;
}

.editorial-hero-image-frame:hover .editorial-hero-image {
  transform: scale(1.06);
}

.editorial-hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-pointer-x, 50%) var(--hero-pointer-y, 50%), rgba(45, 212, 200, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.editorial-hero-feature h3,
.editorial-manifesto-copy h2,
.editorial-services-intro h2,
.editorial-projects-head h2,
.editorial-why-sticky h2,
.editorial-testimonials-copy h2,
.editorial-footer-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.editorial-hero-feature p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.editorial-inline-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-primary);
  cursor: pointer;
}

.editorial-manifesto {
  position: relative;
  padding: clamp(80px, 10vw, 124px) 0;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
    linear-gradient(180deg, transparent, transparent);
}

.editorial-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 212, 200, 0.07), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(239, 91, 42, 0.05), transparent 22%);
  opacity: 0.9;
}

.manifesto-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.manifesto-copy {
  min-width: 0;
  width: 100%;
  max-width: 720px;
  display: grid;
  gap: 20px;
}

.manifesto-title {
  display: grid;
  gap: 0.02em;
  margin: 0;
  max-width: 13.5ch;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.3vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.manifesto-title span {
  display: block;
}

.manifesto-copy-text {
  max-width: 620px;
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.65;
}

.manifesto-statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  max-width: 620px;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 88%, transparent);
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 212, 200, 0.08), transparent 32%),
    color-mix(in srgb, var(--surface-primary) 84%, transparent);
  box-shadow: var(--shadow-soft);
}

.manifesto-statement-mark {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-primary) 10%, transparent);
}

.manifesto-statement p {
  margin: 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.55;
}

.manifesto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 24%, var(--border-primary));
  background: color-mix(in srgb, var(--surface-primary) 82%, transparent);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.manifesto-link svg {
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.manifesto-link:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-primary) 42%, var(--border-primary));
}

.manifesto-link:hover svg {
  transform: translateX(2px);
}

.manifesto-project-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: color-mix(in srgb, var(--surface-primary) 78%, transparent);
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.manifesto-system {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 850px;
  justify-self: end;
}

.manifesto-system-frame {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background:
    radial-gradient(circle at 50% 40%, rgba(45, 212, 200, 0.08), transparent 28%),
    radial-gradient(circle at 50% 52%, rgba(74, 141, 255, 0.05), transparent 54%),
    color-mix(in srgb, var(--surface-primary) 72%, transparent);
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.manifesto-system-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 76%);
  opacity: 0.22;
  pointer-events: none;
}

.manifesto-system-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.manifesto-system-link {
  fill: none;
  stroke: url(#manifesto-system-gradient);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
  opacity: 0.72;
  animation: manifestoLinkFlow 16s linear infinite;
}

.manifesto-system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, 32%);
  padding: 20px 22px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 212, 200, 0.12), transparent 28%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 42%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
}

.manifesto-system-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-system-core strong {
  display: block;
  margin-top: 8px;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.06rem, 1.5vw, 1.38rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.manifesto-system-core p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
}

.manifesto-system-metric {
  position: absolute;
  left: 5%;
  bottom: 5%;
  display: grid;
  gap: 6px;
  min-width: 148px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.manifesto-system-metric span {
  color: var(--text-muted);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-system-metric strong {
  color: var(--accent-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.manifesto-modules {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.manifesto-module {
  position: absolute;
  width: min(220px, 28%);
  padding: 14px 15px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.1), transparent 30%),
    color-mix(in srgb, var(--surface-primary) 80%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.manifesto-module:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-primary) 36%, var(--border-primary));
}

.manifesto-module--top-left {
  left: 6%;
  top: 11%;
}

.manifesto-module--top-right {
  right: 6%;
  top: 12%;
}

.manifesto-module--bottom-left {
  left: 7%;
  bottom: 11%;
}

.manifesto-module--bottom-right {
  right: 7%;
  bottom: 12%;
}

.manifesto-module-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-primary) 12%, transparent);
  color: var(--accent-primary);
}

.manifesto-module-title {
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.manifesto-module-copy {
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}

.editorial-manifesto h2,
.editorial-manifesto p,
.editorial-manifesto a,
.editorial-manifesto span {
  text-wrap: balance;
}

.editorial-manifesto [data-manifesto-reveal],
.editorial-manifesto [data-manifesto-node],
.editorial-manifesto [data-manifesto-connector] {
  will-change: transform, opacity;
}

@keyframes manifestoLinkFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }
}

@media (max-width: 1180px) {
  .manifesto-shell {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: clamp(34px, 4.5vw, 72px);
  }

  .manifesto-title {
    font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  }

  .manifesto-system-frame {
    min-height: 580px;
  }

  .manifesto-module {
    width: min(200px, 30%);
  }
}

@media (max-width: 900px) {
  .manifesto-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .manifesto-copy,
  .manifesto-system {
    max-width: 100%;
    justify-self: stretch;
  }

  .manifesto-system-frame {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  .manifesto-title {
    font-size: clamp(2.3rem, 8.8vw, 4rem);
    max-width: 100%;
  }

  .manifesto-copy-text {
    font-size: 1rem;
  }

  .manifesto-actions {
    align-items: stretch;
  }

  .manifesto-link {
    width: fit-content;
  }

  .manifesto-system-frame {
    min-height: auto;
    padding: 20px;
    display: grid;
    gap: 16px;
  }

  .manifesto-system-grid,
  .manifesto-system-links {
    display: none;
  }

  .manifesto-system-core,
  .manifesto-system-metric {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .manifesto-modules {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .manifesto-module {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .manifesto-shell {
    width: min(calc(100% - 24px), 100%);
    padding-inline: 0;
  }

  .manifesto-title {
    font-size: clamp(2.05rem, 11vw, 3.45rem);
  }

  .manifesto-system-core strong {
    font-size: 1rem;
  }

  .manifesto-modules {
    grid-template-columns: 1fr;
  }

  .manifesto-project-chip {
    width: 100%;
    justify-content: center;
  }
}

.editorial-manifesto.is-reduced [data-manifesto-reveal],
.editorial-manifesto.is-reduced [data-manifesto-node],
.editorial-manifesto.is-reduced [data-manifesto-connector] {
  animation: none !important;
  transition: none !important;
}

.editorial-services {
  position: relative;
  padding: clamp(90px, 10vw, 136px) 0;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.34), rgba(8, 11, 16, 0.08));
}

.editorial-services-shell {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.editorial-services-intro {
  display: grid;
  gap: 16px;
  max-width: 58ch;
}

.editorial-services-intro .editorial-section-kicker {
  color: var(--text-secondary);
}

.editorial-services-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.15vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.editorial-services-intro p {
  max-width: 60ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.75;
}

.editorial-services-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editorial-services-note span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: var(--surface-secondary);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.editorial-services-grid.has-active-service .editorial-service-card:not(.is-active) {
  opacity: 0.82;
  transform: translate3d(0, 2px, 0) scale(0.992);
}

.editorial-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 78%, transparent);
  background:
    radial-gradient(circle at 20% 12%, color-mix(in srgb, var(--accent-primary) 9%, transparent), transparent 26%),
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent-secondary) 12%, transparent), transparent 22%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-secondary) 88%, transparent), color-mix(in srgb, var(--surface-primary) 86%, transparent));
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease;
}

.editorial-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
  pointer-events: none;
  opacity: 0.8;
}

.editorial-service-card:hover,
.editorial-service-card:focus-within,
.editorial-service-card.is-active {
  transform: translate3d(0, -6px, 0);
  border-color: color-mix(in srgb, var(--accent-secondary) 32%, var(--border-strong));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.editorial-service-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.08fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  padding: clamp(26px, 3vw, 38px);
  min-height: 100%;
}

.editorial-service-card--support {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 2.4vw, 28px);
  min-height: 100%;
}

.editorial-service-card__copy {
  display: grid;
  gap: 14px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.editorial-service-card__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.editorial-service-card__titleRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.editorial-service-card__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-secondary) 24%, transparent);
  background: color-mix(in srgb, var(--surface-overlay) 76%, transparent);
  color: var(--accent-secondary);
}

.editorial-service-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 2.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.editorial-service-card--support h3 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.editorial-service-card p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.72;
}

.editorial-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editorial-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 92%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 78%, transparent);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-service-card__cta {
  justify-self: start;
  margin-top: 6px;
}

.editorial-service-card__visual {
  position: relative;
  min-width: 0;
  display: grid;
  align-items: stretch;
}

.editorial-service-card--featured .editorial-service-card__visual {
  min-height: 340px;
}

.editorial-service-card--support .editorial-service-card__visual {
  min-height: 220px;
}

.editorial-service-card__glow {
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-secondary) 14%, transparent), transparent 44%),
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--accent-primary) 10%, transparent), transparent 26%);
  pointer-events: none;
  opacity: 0.72;
}

.editorial-service-card--featured .service-mesh,
.editorial-service-card--support .service-mesh {
  width: 100%;
}

.editorial-service-card--featured .service-mesh {
  min-height: 340px;
  border-radius: 30px;
}

.editorial-service-card--support .service-mesh {
  min-height: 214px;
  border-radius: 24px;
}

.editorial-service-card:hover .service-mesh,
.editorial-service-card:focus-within .service-mesh {
  border-color: color-mix(in srgb, var(--accent-secondary) 44%, var(--border-strong));
}

.editorial-projects {
  padding: clamp(90px, 10vw, 136px) 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(16, 16, 16, 0.98));
  color: #f7f3ec;
}

.editorial-projects-head {
  max-width: 50ch;
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.editorial-projects-head p {
  color: rgba(247, 243, 236, 0.74);
  line-height: 1.9;
}

.editorial-projects-spotlight {
  display: grid;
  gap: 10px;
  margin: 0 0 32px auto;
  max-width: 42ch;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-projects-spotlight strong {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.editorial-projects-spotlight p {
  color: rgba(247, 243, 236, 0.72);
  line-height: 1.8;
}

.editorial-projects-list {
  display: grid;
  gap: 28px;
}

.editorial-project {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-project.is-reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.editorial-project.is-reverse .editorial-project-media {
  order: 2;
}

.editorial-project-media {
  overflow: clip;
  min-height: 560px;
  border-radius: 24px 112px 24px 84px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-card);
}

.editorial-project.is-reverse .editorial-project-media {
  border-radius: 112px 24px 84px 24px;
}

.editorial-project.is-active .editorial-project-media {
  transform: translateY(-8px);
}

.editorial-project-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  color: var(--accent-primary);
  background:
    radial-gradient(circle at center, rgba(239, 91, 42, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.02);
}

.editorial-project-copy {
  display: grid;
  gap: 18px;
}

.editorial-project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editorial-projects-shell {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.editorial-projects-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.editorial-projects-head {
  display: grid;
  gap: 16px;
  max-width: 60ch;
  margin-bottom: 0;
}

.editorial-projects-head h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.editorial-projects-head p {
  margin: 0;
  max-width: 60ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.7;
}

.editorial-projects-viewAll {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 86%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.editorial-projects-viewAll svg {
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.editorial-projects-viewAll:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-secondary) 30%, var(--border-strong));
}

.editorial-projects-viewAll:hover svg {
  transform: translateX(2px);
}

.editorial-projects-grid {
  display: grid;
  gap: 22px;
}

.editorial-projects-grid.has-active-project .editorial-project-card:not(.is-active) {
  opacity: 0.82;
  transform: translate3d(0, 2px, 0) scale(0.992);
}

.editorial-project-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  border-radius: 32px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 78%, transparent);
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--accent-primary) 8%, transparent), transparent 26%),
    radial-gradient(circle at 92% 4%, color-mix(in srgb, var(--accent-secondary) 10%, transparent), transparent 24%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-secondary) 88%, transparent), color-mix(in srgb, var(--surface-primary) 84%, transparent));
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease;
}

.editorial-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
  pointer-events: none;
}

.editorial-project-card:hover,
.editorial-project-card:focus-within,
.editorial-project-card.is-active {
  transform: translate3d(0, -4px, 0);
  border-color: color-mix(in srgb, var(--accent-secondary) 38%, var(--border-strong));
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.2);
}

.editorial-project-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(24px, 3vw, 40px);
  align-items: center;
}

.editorial-project-card--split,
.editorial-project-card--compact {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 28px);
}

.editorial-project-card--split {
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.editorial-project-card--stacked {
  grid-template-columns: 1fr;
  align-content: start;
}

.editorial-project-card--compact {
  grid-template-columns: minmax(140px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.editorial-project-card__content {
  display: grid;
  gap: 14px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.editorial-project-card__content h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.6rem, 2.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.editorial-project-card--split .editorial-project-card__content h3,
.editorial-project-card--compact .editorial-project-card__content h3 {
  font-size: clamp(1.35rem, 1.9vw, 2.2rem);
}

.editorial-project-card__content p {
  margin: 0;
  max-width: 44ch;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.72;
}

.editorial-project-card__media {
  position: relative;
  min-width: 0;
  display: grid;
  align-items: stretch;
}

.editorial-project-card--featured .editorial-project-card__media {
  min-height: clamp(340px, 34vw, 520px);
}

.editorial-project-card--split .editorial-project-card__media,
.editorial-project-card--compact .editorial-project-card__media {
  min-height: 220px;
}

.editorial-project-mediaFrame,
.editorial-project-fallback {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 212, 200, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 56%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
}

.editorial-project-mediaFrame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.4s ease;
}

.editorial-project-card:hover .editorial-project-mediaFrame img,
.editorial-project-card:focus-within .editorial-project-mediaFrame img {
  transform: scale(1.03);
}

.editorial-project-mediaOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 4, 10, 0.04), rgba(1, 4, 10, 0.32)),
    radial-gradient(circle at 70% 20%, rgba(239, 91, 42, 0.16), transparent 26%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.28s ease;
}

.editorial-project-mediaOverlay--fallback {
  opacity: 0.4;
}

.editorial-project-card:hover .editorial-project-mediaOverlay,
.editorial-project-card:focus-within .editorial-project-mediaOverlay {
  opacity: 0.9;
}

.editorial-project-mediaBadge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background: color-mix(in srgb, var(--surface-overlay) 78%, transparent);
  color: var(--text-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-project-fallback-svg {
  width: 100%;
  height: 100%;
}

.editorial-project-fallback-frame,
.editorial-project-fallback-panel,
.editorial-project-fallback-cloud,
.editorial-project-fallback-loop,
.editorial-project-fallback-shield,
.editorial-project-fallback-line,
.editorial-project-fallback-path,
.editorial-project-fallback-arc,
.editorial-project-fallback-node {
  vector-effect: non-scaling-stroke;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-project-fallback-frame,
.editorial-project-fallback-panel,
.editorial-project-fallback-cloud,
.editorial-project-fallback-loop,
.editorial-project-fallback-shield {
  stroke: color-mix(in srgb, var(--accent-secondary) 70%, white);
  stroke-width: 2;
  fill: color-mix(in srgb, var(--accent-secondary) 8%, transparent);
}

.editorial-project-fallback-line,
.editorial-project-fallback-path,
.editorial-project-fallback-arc {
  stroke: color-mix(in srgb, var(--accent-primary) 68%, var(--accent-secondary));
  stroke-width: 2.2;
}

.editorial-project-fallback-node {
  fill: color-mix(in srgb, var(--accent-primary) 84%, white);
  stroke: none;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent-primary) 26%, transparent));
}

.editorial-project-fallback-caption {
  fill: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editorial-project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 86%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-project-card__cta {
  justify-self: start;
}

.editorial-projects-support,
.editorial-projects-extras {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-projects-extras {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-projects-support .editorial-project-card,
.editorial-projects-extras .editorial-project-card {
  min-height: 100%;
}

.editorial-project-card--stacked .editorial-project-card__media {
  min-height: 240px;
}

.editorial-project-card--compact .editorial-project-card__content {
  gap: 12px;
}

.editorial-project-card--compact .editorial-project-meta {
  gap: 6px;
}

.editorial-project-card--compact .editorial-project-meta span {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.64rem;
}

.editorial-project-card--compact .editorial-project-card__media {
  min-height: 180px;
}

.editorial-stats {
  position: relative;
  padding: clamp(90px, 10vw, 126px) 0;
  isolation: isolate;
}

.editorial-stats-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.editorial-stats-intro {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.editorial-stats-intro h2 {
  margin: 0;
  max-width: 14ch;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 5.3rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.editorial-stats-intro p {
  max-width: 62ch;
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.7;
  text-wrap: balance;
}

.editorial-stats-layout {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.editorial-stats-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.editorial-stats-stage {
  position: relative;
  min-width: 0;
  overflow: clip;
  border-radius: 34px;
}

.editorial-stats-decor {
  position: absolute;
  inset: -28px -6vw -22px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.editorial-stats-network {
  width: 100%;
  height: 100%;
}

.editorial-stats-network path {
  fill: none;
  stroke: url(#editorial-stats-gradient);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 14 20;
  opacity: 0.8;
  animation: editorialStatsFlow 18s linear infinite;
}

.editorial-stats-network circle {
  fill: rgba(255, 255, 255, 0.55);
  stroke: rgba(45, 212, 200, 0.32);
  stroke-width: 1;
  filter: drop-shadow(0 0 16px rgba(45, 212, 200, 0.14));
}

.editorial-stats-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-stat {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 80%, transparent);
  background:
    radial-gradient(circle at 18% 14%, rgba(45, 212, 200, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(74, 141, 255, 0.08), transparent 22%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  overflow: hidden;
}

.editorial-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--stat-glow-x, 18%) var(--stat-glow-y, 16%), rgba(239, 91, 42, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.editorial-stat:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-primary) 38%, var(--border-primary));
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.18);
}

.editorial-stat:hover::before {
  opacity: 1;
}

.editorial-stat--featured {
  min-height: clamp(340px, 40vw, 520px);
  padding: clamp(28px, 3.4vw, 44px);
  border-color: color-mix(in srgb, var(--accent-primary) 28%, var(--border-primary));
  background:
    radial-gradient(circle at 16% 10%, rgba(239, 91, 42, 0.18), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(45, 212, 200, 0.14), transparent 26%),
    radial-gradient(circle at 50% 88%, rgba(74, 141, 255, 0.08), transparent 30%),
    color-mix(in srgb, var(--surface-secondary) 88%, transparent);
  box-shadow: var(--shadow-elevated);
}

.editorial-stat-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editorial-stat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background: color-mix(in srgb, var(--surface-primary) 72%, transparent);
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-stat-indicator {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent-primary) 10%, transparent);
  animation: editorialStatPulse 2.6s ease-in-out infinite;
}

.editorial-stat-valueRow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
}

.editorial-stat-value {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.08em;
}

.editorial-stat--featured .editorial-stat-value {
  font-size: clamp(4.6rem, 8.4vw, 8.4rem);
  line-height: 0.88;
}

.editorial-stat--compact .editorial-stat-value {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.92;
}

.editorial-stat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
  color: var(--accent-primary);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.editorial-stat:hover .editorial-stat-icon {
  transform: translateY(-2px) rotate(-8deg) scale(1.08);
  background: color-mix(in srgb, var(--accent-primary) 18%, transparent);
}

.editorial-stat-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.editorial-stat-copy h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.38rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.editorial-stat-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
  text-wrap: balance;
}

@keyframes editorialStatsFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -260;
  }
}

@keyframes editorialStatPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent-primary) 8%, transparent);
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 12px color-mix(in srgb, var(--accent-primary) 4%, transparent);
  }
}

.editorial-why {
  padding: clamp(90px, 10vw, 136px) 0;
  background:
    linear-gradient(180deg, rgba(246, 240, 231, 0.98), rgba(236, 228, 216, 0.96));
  color: #151515;
}

.editorial-why-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(24px, 5vw, 72px);
}

.editorial-why-sticky {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  align-self: start;
  max-width: 34ch;
}

.editorial-why-sticky p {
  color: rgba(21, 21, 21, 0.74);
  line-height: 1.9;
}

.editorial-why-story {
  display: grid;
  gap: 18px;
}

.editorial-why-visual {
  margin: 0;
  display: grid;
  gap: 14px;
}

.editorial-why-visual img {
  min-height: 520px;
  border-radius: 24px 120px 24px 84px;
  box-shadow: var(--shadow-card);
}

.editorial-why-list {
  display: grid;
  gap: 12px;
}

.editorial-why-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--border-primary);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.editorial-why-item:last-child {
  border-bottom: 1px solid var(--border-primary);
}

.editorial-why-item.is-active {
  color: var(--text-primary);
}

.editorial-why-index {
  color: var(--accent-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-why-item p {
  max-width: 58ch;
  margin-top: 6px;
}

.editorial-why-summary {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 0 0;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-primary);
}

.editorial-testimonials {
  position: relative;
  padding: clamp(96px, 11vw, 156px) 0;
  color: var(--text-primary);
  background: transparent;
  overflow: clip;
}

.editorial-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.08), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(239, 91, 42, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.08), rgba(7, 10, 18, 0));
}

.editorial-testimonials-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 4vw, 56px);
}

.editorial-testimonials-header {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.editorial-testimonials-eyebrow {
  color: var(--accent-primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-testimonials-header h2 {
  max-width: 800px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.editorial-testimonials-header p {
  max-width: 640px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.editorial-testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.editorial-testimonials-feature-wrap {
  min-width: 0;
}

.editorial-testimonials-feature {
  position: relative;
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
  min-width: 0;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 34px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 16% 14%, rgba(14, 165, 233, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(239, 91, 42, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(8, 11, 18, 0.92));
  box-shadow: var(--shadow-card);
  overflow: clip;
}

.editorial-testimonials-feature:hover {
  transform: translateY(-2px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.editorial-testimonials-layout:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.7);
  outline-offset: 6px;
  border-radius: 30px;
}

.editorial-testimonials-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.04) 36%, transparent 72%);
  opacity: 0.65;
}

.editorial-testimonials-feature-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.editorial-testimonials-step {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-testimonials-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: rgba(14, 165, 233, 0.08);
  color: var(--text-primary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-testimonials-quote {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
}

.editorial-testimonials-quote-icon {
  color: var(--accent-primary);
}

.editorial-testimonials-quote p {
  max-width: 900px;
  font-size: clamp(1.7rem, 2.4vw, 3rem);
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 560;
  color: var(--text-primary);
}

.editorial-testimonials-attribution {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-primary);
}

.editorial-testimonials-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 22% 18%, rgba(14, 165, 233, 0.2), transparent 42%),
    radial-gradient(circle at 76% 24%, rgba(239, 91, 42, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(25, 29, 42, 0.96), rgba(14, 18, 28, 0.92));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.25);
}

.editorial-testimonials-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-testimonials-avatar span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.editorial-testimonials-person {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.editorial-testimonials-person h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.editorial-testimonials-person p,
.editorial-testimonials-company {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.55;
}

.editorial-testimonials-company {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.editorial-testimonials-rating {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  color: var(--accent-primary);
}

.editorial-testimonials-rating .is-muted {
  opacity: 0.28;
}

.editorial-testimonials-controls {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding-top: 4px;
  border-top: 1px solid var(--border-primary);
}

.editorial-testimonials-progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}

.editorial-testimonials-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-primary), rgba(14, 165, 233, 0.92));
  box-shadow: 0 0 18px rgba(239, 91, 42, 0.25);
}

.editorial-testimonials-index {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-testimonials-index strong {
  color: var(--text-primary);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.editorial-testimonials-nav {
  display: inline-flex;
  gap: 10px;
}

.editorial-testimonials-nav-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.editorial-testimonials-nav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 91, 42, 0.36);
  background: rgba(239, 91, 42, 0.12);
  color: #fff;
}

.editorial-testimonials-nav-btn:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.7);
  outline-offset: 3px;
}

.editorial-testimonials-rail {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
}

.editorial-testimonials-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 165, 233, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(19, 22, 32, 0.9), rgba(12, 15, 22, 0.84));
  color: var(--text-primary);
  text-align: left;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.18);
  opacity: 0.8;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    opacity 200ms ease;
}

.editorial-testimonials-preview:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.28);
  opacity: 1;
}

.editorial-testimonials-preview.is-active {
  opacity: 1;
  border-color: rgba(239, 91, 42, 0.34);
  box-shadow: 0 22px 50px rgba(239, 91, 42, 0.12);
}

.editorial-testimonials-preview:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.7);
  outline-offset: 3px;
}

.editorial-testimonials-preview-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 22% 18%, rgba(14, 165, 233, 0.18), transparent 40%),
    radial-gradient(circle at 78% 20%, rgba(239, 91, 42, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(28, 33, 46, 0.96), rgba(14, 18, 28, 0.94));
}

.editorial-testimonials-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-testimonials-preview-avatar span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.editorial-testimonials-preview-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.editorial-testimonials-preview-name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.editorial-testimonials-preview-meta {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-testimonials-preview p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1279px) {
  .editorial-testimonials-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1023px) {
  .editorial-testimonials {
    padding: clamp(88px, 12vw, 132px) 0;
  }

  .editorial-testimonials-feature {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .editorial-testimonials-attribution {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .editorial-testimonials-rating {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .editorial-testimonials-controls {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .editorial-testimonials-nav {
    width: 100%;
  }

  .editorial-testimonials-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .editorial-testimonials {
    padding: clamp(78px, 12vw, 108px) 0;
  }

  .editorial-testimonials-header h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .editorial-testimonials-feature {
    padding: 20px;
    border-radius: 28px;
  }

  .editorial-testimonials-quote p {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    max-width: none;
  }

  .editorial-testimonials-attribution {
    gap: 14px;
  }

  .editorial-testimonials-avatar {
    width: 72px;
    border-radius: 22px;
  }

  .editorial-testimonials-nav-btn {
    width: 44px;
    height: 44px;
  }

  .editorial-testimonials-rail {
    display: none;
  }
}

.editorial-footer {
  padding: clamp(90px, 10vw, 140px) 0 96px;
  background:
    linear-gradient(180deg, rgba(239, 91, 42, 0.96), rgba(216, 75, 34, 0.98));
  color: var(--text-inverse);
}

.editorial-footer-shell {
  display: grid;
  gap: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.editorial-footer-copy {
  display: grid;
  gap: 20px;
  max-width: 60ch;
}

.editorial-footer-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.9;
}

.editorial-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) minmax(220px, 0.68fr);
  gap: 20px;
  align-items: start;
}

.editorial-footer-cta {
  min-height: 96px;
  padding: 0 28px;
  border-radius: 28px;
  justify-content: space-between;
  align-self: start;
  background: rgba(12, 12, 12, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-inverse);
}

.editorial-footer-details {
  display: grid;
  gap: 12px;
}

.editorial-footer-details div,
.editorial-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.editorial-footer-details div {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.editorial-footer-details a,
.editorial-footer-links a {
  color: var(--text-inverse);
}

.editorial-footer-links {
  justify-content: flex-end;
  align-content: flex-start;
  color: rgba(255, 255, 255, 0.7);
}

.editorial-footer-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.editorial-footer-links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1180px) {
  .editorial-hero-shell,
  .editorial-manifesto-shell,
  .editorial-project,
  .editorial-project.is-reverse,
  .editorial-why-shell,
  .editorial-testimonials-shell,
  .editorial-footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-project.is-reverse .editorial-project-media {
    order: 0;
  }

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

  .editorial-why-sticky {
    position: relative;
    top: auto;
    max-width: none;
  }

  .editorial-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .editorial-hero {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 80px;
  }

  .editorial-hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-hero-title {
    max-width: 11ch;
    font-size: clamp(3rem, 11vw, 6rem);
  }

  .editorial-hero-image-frame {
    min-height: 420px;
  }
}

@media (max-width: 960px) {
  .editorial-shell {
    width: min(calc(100% - 32px), 100%);
    padding-inline: 0;
  }

  .editorial-hero-image-frame,
  .editorial-manifesto-media img,
  .editorial-why-visual img,
  .editorial-project-media,
  .editorial-service-media,
  .editorial-testimonials-portrait {
    min-height: 420px;
    border-radius: 28px;
  }

  .editorial-services-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-service-card--featured {
    grid-template-columns: 1fr;
  }

  .editorial-service-card--featured .editorial-service-card__visual {
    min-height: 300px;
  }

  .editorial-service-card--support .editorial-service-card__visual {
    min-height: 200px;
  }

  .editorial-projects-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .editorial-projects-viewAll {
    justify-self: start;
  }

  .editorial-projects-grid {
    grid-template-columns: 1fr;
  }

  .editorial-project-card--featured {
    grid-template-columns: 1fr;
  }

  .editorial-project-card--featured .editorial-project-card__media {
    min-height: 320px;
  }

  .editorial-projects-support,
  .editorial-projects-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-stats-layout {
    grid-template-columns: 1fr;
  }

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

  .editorial-support-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .editorial-shell {
    width: min(calc(100% - 20px), 100%);
  }

  .editorial-hero-title {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .editorial-manifesto-copy h2,
  .editorial-services-intro h2,
  .editorial-projects-head h2,
  .editorial-why-sticky h2,
  .editorial-testimonials-copy h2,
  .editorial-footer-copy h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .editorial-button,
  .editorial-footer-cta {
    width: 100%;
  }

  .editorial-project-media,
  .editorial-testimonials-portrait,
  .editorial-hero-image-frame,
  .editorial-manifesto-media img,
  .editorial-why-visual img {
    min-height: 320px;
  }

  .editorial-services-support {
    grid-template-columns: 1fr;
  }

  .editorial-service-card {
    border-radius: 26px;
  }

  .editorial-service-card--featured,
  .editorial-service-card--support {
    padding: 20px;
  }

  .editorial-service-card--featured .editorial-service-card__visual,
  .editorial-service-card--support .editorial-service-card__visual {
    min-height: 180px;
  }

  .editorial-projects-head h2 {
    max-width: 100%;
  }

  .editorial-projects-intro {
    gap: 14px;
  }

  .editorial-projects-viewAll {
    min-height: 44px;
    padding: 0 16px;
  }

  .editorial-project-card {
    border-radius: 26px;
  }

  .editorial-project-card--featured,
  .editorial-project-card--split,
  .editorial-project-card--compact {
    padding: 18px;
  }

  .editorial-project-card--split,
  .editorial-project-card--compact {
    grid-template-columns: 1fr;
  }

  .editorial-project-card--featured .editorial-project-card__media,
  .editorial-project-card--split .editorial-project-card__media,
  .editorial-project-card--compact .editorial-project-card__media {
    min-height: 220px;
  }

  .editorial-projects-support,
  .editorial-projects-extras {
    grid-template-columns: 1fr;
  }

  .editorial-stats-support {
    grid-template-columns: 1fr;
  }

  .editorial-stat--featured {
    min-height: auto;
  }

  .editorial-stat-valueRow {
    gap: 10px;
  }

  .editorial-stat--featured .editorial-stat-value {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .editorial-stat--compact .editorial-stat-value {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .editorial-service-card h3 {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }

  .editorial-service-card--support h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
}

.editorial-why {
  position: relative;
  padding: clamp(100px, 13vw, 180px) 0;
  color: var(--text-primary);
}

.editorial-why-shell {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.editorial-why-intro {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.editorial-why-intro h2 {
  margin: 0;
  max-width: 780px;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.editorial-why-intro p {
  max-width: 640px;
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
  text-wrap: balance;
}

.editorial-why-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
}

.editorial-why-navigation,
.editorial-why-system {
  min-width: 0;
}

.editorial-why-wheel {
  position: relative;
  min-height: clamp(640px, 52vw, 820px);
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 52%, rgba(45, 212, 200, 0.08), transparent 24%),
    radial-gradient(circle at 50% 20%, rgba(239, 91, 42, 0.09), transparent 28%),
    color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  box-shadow: var(--shadow-soft);
  overflow: clip;
  isolation: isolate;
}

.editorial-why-wheel__glow {
  position: absolute;
  inset: 14% 10% auto;
  height: 56%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(74, 141, 255, 0.12), transparent 48%),
    radial-gradient(circle at center, rgba(239, 91, 42, 0.08), transparent 58%);
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.editorial-why-wheel__network {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
}

.editorial-why-wheel__network svg {
  width: 100%;
  height: 100%;
}

.editorial-why-wheel__network path {
  fill: none;
  stroke: url(#why-wheel-gradient);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 14 20;
  animation: whyWheelFlow 20s linear infinite;
}

.editorial-why-wheel__network circle {
  fill: rgba(255, 255, 255, 0.52);
  stroke: rgba(45, 212, 200, 0.28);
  stroke-width: 1;
}

.editorial-why-wheel__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(290px, 40%);
  padding: 22px 22px 18px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 212, 200, 0.12), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(239, 91, 42, 0.1), transparent 24%),
    color-mix(in srgb, var(--surface-primary) 82%, transparent);
  box-shadow: var(--shadow-elevated);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
}

.editorial-why-wheel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-why-wheel__core strong {
  display: block;
  margin-top: 10px;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.editorial-why-wheel__core p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
}

.editorial-why-wheel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.editorial-why-wheel__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background: color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-why-wheel__progress {
  position: relative;
  overflow: hidden;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--border-primary) 60%, transparent);
}

.editorial-why-wheel__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  transition: width 0.38s ease;
}

.editorial-why-stageTrack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.editorial-why-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 146px;
  min-height: 96px;
  display: grid;
  gap: 6px;
  justify-items: center;
  align-content: center;
  padding: 14px 12px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%),
    color-mix(in srgb, var(--surface-primary) 84%, transparent);
  color: var(--text-primary);
  transform-origin: center center;
  transform:
    rotate(var(--node-angle))
    translateY(clamp(-300px, -23vw, -270px))
    rotate(calc(var(--node-angle) * -1));
  pointer-events: auto;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.editorial-why-stage:hover,
.editorial-why-stage:focus-visible {
  transform:
    rotate(var(--node-angle))
    translateY(clamp(-308px, -24vw, -276px))
    rotate(calc(var(--node-angle) * -1));
  border-color: color-mix(in srgb, var(--accent-primary) 42%, var(--border-primary));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.editorial-why-stage[data-state="completed"] {
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 212, 200, 0.08), transparent 32%),
    color-mix(in srgb, var(--surface-secondary) 82%, transparent);
}

.editorial-why-stage[data-state="active"] {
  border-color: color-mix(in srgb, var(--accent-primary) 34%, var(--border-primary));
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 91, 42, 0.14), transparent 30%),
    color-mix(in srgb, var(--surface-secondary) 88%, transparent);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.18),
    0 0 0 1px color-mix(in srgb, var(--accent-primary) 22%, transparent);
}

.editorial-why-stage__index {
  color: var(--accent-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.editorial-why-stage__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.editorial-why-stage__title {
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.editorial-why-stage:hover .editorial-why-stage__icon,
.editorial-why-stage:focus-visible .editorial-why-stage__icon {
  transform: translateY(-1px) rotate(-8deg);
}

.editorial-why-system {
  display: grid;
  gap: 18px;
}

.editorial-why-detail,
.editorial-why-visualFrame,
.editorial-why-trust {
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(45, 212, 200, 0.06), transparent 24%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-soft);
}

.editorial-why-detail {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
}

.editorial-why-detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editorial-why-detail__eyebrow,
.editorial-why-detail__state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 84%, transparent);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-why-detail__eyebrow {
  color: var(--accent-secondary);
  background: color-mix(in srgb, var(--surface-primary) 74%, transparent);
}

.editorial-why-detail__state {
  color: var(--text-secondary);
  background: color-mix(in srgb, var(--surface-primary) 70%, transparent);
}

.editorial-why-detail h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.editorial-why-detail p {
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 62ch;
}

.editorial-why-detail__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-why-detail__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--border-primary) 74%, transparent);
}

.editorial-why-detail__points li span:first-child {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-primary) 10%, transparent);
}

.editorial-why-detail__points li span:last-child {
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
}

.editorial-why-context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editorial-why-context__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  background: color-mix(in srgb, var(--surface-primary) 78%, transparent);
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.editorial-why-context__chip--project {
  color: var(--accent-secondary);
}

.editorial-why-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.editorial-why-cta {
  min-height: 52px;
}

.editorial-why-note {
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
}

.editorial-why-visualFrame {
  position: relative;
  overflow: clip;
  padding: 18px;
}

.editorial-why-visual {
  position: relative;
  min-height: clamp(260px, 26vw, 360px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 16%, rgba(74, 141, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(239, 91, 42, 0.14), transparent 22%),
    color-mix(in srgb, var(--surface-primary) 70%, transparent);
  overflow: hidden;
}

.editorial-why-visual svg {
  width: 100%;
  height: 100%;
}

.editorial-why-visual__rail {
  fill: none;
  stroke: url(#why-visual-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 20;
  opacity: 0.78;
  animation: whyVisualFlow 18s linear infinite;
}

.editorial-why-visual__node circle {
  fill: color-mix(in srgb, var(--surface-secondary) 86%, transparent);
  stroke: color-mix(in srgb, var(--accent-secondary) 70%, white);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent-primary) 14%, transparent));
  transition:
    transform 0.28s ease,
    fill 0.28s ease,
    stroke 0.28s ease;
}

.editorial-why-visual__node text {
  fill: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.editorial-why-visual__node line {
  stroke: color-mix(in srgb, var(--border-primary) 84%, transparent);
  stroke-width: 1.4;
}

.editorial-why-visual__node.is-past circle {
  fill: color-mix(in srgb, var(--accent-secondary) 14%, transparent);
  stroke: color-mix(in srgb, var(--accent-secondary) 52%, white);
}

.editorial-why-visual__node.is-active circle {
  fill: color-mix(in srgb, var(--accent-primary) 22%, transparent);
  stroke: color-mix(in srgb, var(--accent-primary) 72%, white);
}

.editorial-why-visualCaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  max-width: 320px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 82%, transparent);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.editorial-why-visualCaption span {
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-why-visualCaption strong {
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.15;
}

.editorial-why-visualCaption p {
  margin: 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

.editorial-why-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.editorial-why-trust__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 78%, transparent);
  background: color-mix(in srgb, var(--surface-primary) 78%, transparent);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.editorial-why-trust__item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-primary) 34%, var(--border-primary));
  background: color-mix(in srgb, var(--surface-secondary) 88%, transparent);
}

.editorial-why-trust__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-primary) 10%, transparent);
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.editorial-why-trust__item:hover .editorial-why-trust__icon {
  transform: translateY(-1px) rotate(-6deg);
}

.editorial-why-trust__item strong {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.editorial-why-trust__item p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
}

@keyframes whyWheelFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }
}

@keyframes whyVisualFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }
}

@media (max-width: 1180px) {
  .editorial-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-why-wheel {
    min-height: 600px;
  }
}

@media (max-width: 900px) {
  .editorial-why {
    padding-block: clamp(84px, 11vw, 120px);
  }

  .editorial-why-wheel {
    min-height: auto;
    padding: 20px;
  }

  .editorial-why-wheel__network {
    display: none;
  }

  .editorial-why-wheel__core {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .editorial-why-stageTrack {
    position: relative;
    inset: auto;
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .editorial-why-stage {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 auto;
    width: clamp(170px, 40vw, 220px);
    min-height: 84px;
    transform: none;
    scroll-snap-align: start;
  }

  .editorial-why-stage:hover,
  .editorial-why-stage:focus-visible {
    transform: translateY(-2px);
  }

  .editorial-why-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .editorial-why-intro h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .editorial-why-intro p {
    font-size: 1rem;
  }

  .editorial-why-wheel__core strong {
    font-size: clamp(1rem, 5vw, 1.22rem);
  }

  .editorial-why-wheel__core p {
    font-size: 0.92rem;
  }

  .editorial-why-detail,
  .editorial-why-visualFrame,
  .editorial-why-trust {
    border-radius: 24px;
  }

  .editorial-why-detail h3 {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }

  .editorial-why-detail__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-why-visual {
    min-height: 240px;
  }

  .editorial-why-visualCaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .editorial-why-trust__item {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-why-stage,
  .editorial-why-trust__item,
  .editorial-why-wheel__progress span,
  .editorial-why-visual__rail,
  .editorial-why-wheel__network path,
  .editorial-why-visual__node circle {
    animation: none !important;
    transition: none !important;
  }
}

:root[data-theme="light"] .editorial-home {
  background: #f4efe7;
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-home::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(14, 165, 233, 0.08), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(34, 197, 94, 0.08), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 30%);
  opacity: 0.9;
}

:root[data-theme="light"] .editorial-home::after {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  opacity: 0.12;
}

:root[data-theme="light"] .editorial-hero {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-hero-copy,
:root[data-theme="light"] .editorial-manifesto-copy,
:root[data-theme="light"] .editorial-services-intro,
:root[data-theme="light"] .editorial-projects-head,
:root[data-theme="light"] .editorial-why-sticky,
:root[data-theme="light"] .editorial-testimonials-copy,
:root[data-theme="light"] .editorial-footer-copy {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-hero-body,
:root[data-theme="light"] .editorial-manifesto-copy p,
:root[data-theme="light"] .editorial-services-intro p,
:root[data-theme="light"] .editorial-projects-head p,
:root[data-theme="light"] .editorial-why-sticky p,
:root[data-theme="light"] .editorial-testimonials-copy p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-support-item,
:root[data-theme="light"] .editorial-hero-statline,
:root[data-theme="light"] .editorial-hero-feature,
:root[data-theme="light"] .editorial-project,
:root[data-theme="light"] .editorial-service-panel,
:root[data-theme="light"] .editorial-stat,
:root[data-theme="light"] .editorial-why-item,
:root[data-theme="light"] .editorial-testimonials-panel {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .editorial-stat {
  background:
    radial-gradient(circle at 18% 14%, rgba(14, 165, 233, 0.06), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(34, 197, 94, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-stat--featured {
  background:
    radial-gradient(circle at 16% 10%, rgba(239, 91, 42, 0.08), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(14, 165, 233, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 235, 0.95));
}

:root[data-theme="light"] .editorial-stat-chip {
  color: var(--text-primary);
  border-color: var(--border-primary);
  background: var(--surface-secondary);
}

:root[data-theme="light"] .editorial-stat-copy p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-stats-network path {
  stroke: url(#editorial-stats-gradient);
  opacity: 0.62;
}

:root[data-theme="light"] .editorial-stats-network circle {
  fill: rgba(15, 23, 42, 0.45);
  stroke: rgba(14, 165, 233, 0.26);
}

:root[data-theme="light"] .editorial-manifesto,
:root[data-theme="light"] .editorial-services,
:root[data-theme="light"] .editorial-why {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(244, 238, 228, 0.94));
}

:root[data-theme="light"] .editorial-projects {
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.98), rgba(236, 230, 220, 0.96));
}

:root[data-theme="light"] .editorial-testimonials {
  color: var(--text-primary);
  background: transparent;
}

:root[data-theme="light"] .editorial-testimonials::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.08), transparent 30%),
    radial-gradient(circle at 82% 34%, rgba(239, 91, 42, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

:root[data-theme="light"] .editorial-testimonials-feature {
  background:
    radial-gradient(circle at 16% 14%, rgba(14, 165, 233, 0.06), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(239, 91, 42, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-testimonials-feature::after {
  background:
    linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.22) 36%, transparent 72%);
}

:root[data-theme="light"] .editorial-testimonials-chip {
  border-color: rgba(14, 165, 233, 0.18);
  background: rgba(14, 165, 233, 0.08);
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-testimonials-avatar,
:root[data-theme="light"] .editorial-testimonials-preview-avatar {
  background:
    radial-gradient(circle at 22% 18%, rgba(14, 165, 233, 0.14), transparent 40%),
    radial-gradient(circle at 78% 20%, rgba(239, 91, 42, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 238, 229, 0.96));
}

:root[data-theme="light"] .editorial-testimonials-preview {
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 165, 233, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 233, 0.94));
}

:root[data-theme="light"] .editorial-testimonials-nav-btn {
  background: rgba(255, 255, 255, 0.74);
}

:root[data-theme="light"] .editorial-testimonials-progress {
  background: rgba(15, 23, 42, 0.12);
}

:root[data-theme="light"] .editorial-projects-head h2,
:root[data-theme="light"] .editorial-projects-head p,
:root[data-theme="light"] .editorial-projects-viewAll,
:root[data-theme="light"] .editorial-project-card h3,
:root[data-theme="light"] .editorial-project-card p,
:root[data-theme="light"] .editorial-project-category,
:root[data-theme="light"] .editorial-project-index {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-project-card p,
:root[data-theme="light"] .editorial-project-meta span {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-project-card {
  background:
    radial-gradient(circle at 18% 16%, rgba(239, 91, 42, 0.06), transparent 24%),
    radial-gradient(circle at 92% 4%, rgba(14, 165, 233, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-project-meta span,
:root[data-theme="light"] .editorial-project-mediaBadge {
  border-color: var(--border-primary);
  background: var(--surface-secondary);
}

:root[data-theme="light"] .editorial-project-mediaOverlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 11, 11, 0.16)),
    radial-gradient(circle at 70% 20%, rgba(239, 91, 42, 0.12), transparent 26%);
}

:root[data-theme="light"] .editorial-service-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 91, 42, 0.07), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(14, 165, 233, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-service-card h3,
:root[data-theme="light"] .editorial-service-card p,
:root[data-theme="light"] .editorial-service-category,
:root[data-theme="light"] .editorial-inline-link {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-service-card p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-inline-link {
  border-color: var(--border-primary);
  background: var(--surface-secondary);
}

:root[data-theme="light"] .editorial-inline-link:hover {
  color: var(--accent-primary);
  border-color: var(--border-strong);
}

:root[data-theme="light"] .editorial-service-tag {
  border-color: var(--border-primary);
  background: var(--surface-tertiary);
}

:root[data-theme="light"] .editorial-why {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-why-wheel,
:root[data-theme="light"] .editorial-why-detail,
:root[data-theme="light"] .editorial-why-visualFrame,
:root[data-theme="light"] .editorial-why-trust {
  border-color: var(--border-primary);
  background:
    radial-gradient(circle at 18% 16%, rgba(14, 165, 233, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-why-wheel__core {
  border-color: var(--border-primary);
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(239, 91, 42, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-why-wheel__meta span,
:root[data-theme="light"] .editorial-why-stage,
:root[data-theme="light"] .editorial-why-context__chip,
:root[data-theme="light"] .editorial-why-trust__item {
  border-color: var(--border-primary);
  background: var(--surface-secondary);
}

:root[data-theme="light"] .editorial-why-stage[data-state="active"] {
  border-color: color-mix(in srgb, var(--accent-primary) 34%, var(--border-primary));
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 91, 42, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.96);
}

:root[data-theme="light"] .editorial-why-stage__title,
:root[data-theme="light"] .editorial-why-detail h3,
:root[data-theme="light"] .editorial-why-intro h2,
:root[data-theme="light"] .editorial-why-wheel__core strong,
:root[data-theme="light"] .editorial-why-trust__item strong {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-why-detail__state,
:root[data-theme="light"] .editorial-why-wheel__core p,
:root[data-theme="light"] .editorial-why-intro p,
:root[data-theme="light"] .editorial-why-detail p,
:root[data-theme="light"] .editorial-why-detail__points li span:last-child,
:root[data-theme="light"] .editorial-why-trust__item p,
:root[data-theme="light"] .editorial-why-note,
:root[data-theme="light"] .editorial-why-visualCaption p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-why-wheel__network path,
:root[data-theme="light"] .editorial-why-visual__rail {
  stroke: url(#why-wheel-gradient);
  opacity: 0.58;
}

:root[data-theme="light"] .editorial-why-wheel__network circle {
  fill: rgba(15, 23, 42, 0.45);
  stroke: rgba(14, 165, 233, 0.26);
}

:root[data-theme="light"] .editorial-why-visual {
  background:
    radial-gradient(circle at 18% 16%, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(239, 91, 42, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.7);
}

:root[data-theme="light"] .editorial-why-visual__node circle {
  fill: rgba(255, 255, 255, 0.98);
  stroke: rgba(14, 165, 233, 0.56);
}

:root[data-theme="light"] .editorial-why-visualCaption {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border-primary);
}

:root[data-theme="light"] .editorial-why-visualCaption strong,
:root[data-theme="light"] .editorial-why-visualCaption span {
  color: var(--text-primary);
}

:root[data-theme="light"] .editorial-why-visualCaption p {
  color: var(--text-secondary);
}

.editorial-closing {
  position: relative;
  padding-block: clamp(110px, 14vw, 190px);
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0), rgba(8, 10, 16, 0.16)),
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(239, 91, 42, 0.12), transparent 24%);
  overflow: clip;
}

.editorial-closing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0), rgba(8, 10, 16, 0.18)),
    radial-gradient(circle at 50% 0%, rgba(239, 91, 42, 0.16), transparent 52%);
}

.editorial-closing::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0), rgba(8, 10, 16, 0.9));
}

.editorial-closing-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
}

.editorial-closing-copy {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.editorial-closing-eyebrow {
  color: var(--accent-primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-closing-copy h2 {
  max-width: 980px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 5.2vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.editorial-closing-copy p {
  max-width: 660px;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.editorial-closing-trustline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  padding-top: 14px;
}

.editorial-closing-trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-closing-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.editorial-closing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.editorial-closing-btn {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.editorial-closing-btn--primary {
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: linear-gradient(135deg, rgba(239, 91, 42, 1), rgba(216, 75, 34, 0.98));
  color: var(--text-inverse);
  box-shadow: 0 24px 48px rgba(239, 91, 42, 0.2);
}

.editorial-closing-btn--secondary {
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.editorial-closing-btn svg {
  transition: transform 180ms ease;
}

.editorial-closing-btn:hover svg {
  transform: translateX(4px);
}

.editorial-closing-btn:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.7);
  outline-offset: 3px;
}

.editorial-closing-visual {
  position: relative;
  overflow: clip;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.12), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(239, 91, 42, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.96), rgba(8, 11, 18, 0.92));
  box-shadow: var(--shadow-card);
}

.editorial-closing-visual__frame {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 26px);
}

.editorial-closing-visual__svg {
  width: 100%;
  height: auto;
  min-height: 210px;
}

.editorial-closing-visual__nodes circle {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(14, 165, 233, 0.38);
  stroke-width: 1.4;
}

.editorial-closing-visual__labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.editorial-closing-visual__labels span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-closing-contact {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 18% 12%, rgba(14, 165, 233, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(16, 19, 27, 0.92), rgba(10, 13, 20, 0.88));
}

.editorial-closing-contact__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.editorial-closing-contact__row + .editorial-closing-contact__row {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.editorial-closing-contact__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-primary);
}

.editorial-closing-contact__content {
  display: grid;
  gap: 4px;
}

.editorial-closing-contact__content span {
  color: var(--text-tertiary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-closing-contact__content a,
.editorial-closing-contact__content p {
  color: var(--text-primary);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .editorial-closing-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .editorial-closing {
    padding-block: clamp(92px, 14vw, 140px);
  }

  .editorial-closing-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .editorial-closing-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .editorial-closing-btn {
    min-height: 48px;
  }

  .editorial-closing-visual__svg {
    min-height: 176px;
  }

  .editorial-closing-visual__labels {
    grid-template-columns: 1fr;
  }

  .editorial-closing-contact {
    padding: 18px;
  }
}

:root[data-theme="light"] .editorial-closing {
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(255, 250, 242, 0.16)),
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(239, 91, 42, 0.08), transparent 24%);
}

:root[data-theme="light"] .editorial-closing::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(244, 238, 228, 0.22)),
    radial-gradient(circle at 50% 0%, rgba(239, 91, 42, 0.12), transparent 52%);
}

:root[data-theme="light"] .editorial-closing::after {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(244, 238, 228, 0.92));
}

:root[data-theme="light"] .editorial-closing-trustline span,
:root[data-theme="light"] .editorial-closing-visual,
:root[data-theme="light"] .editorial-closing-contact,
:root[data-theme="light"] .editorial-closing-btn--secondary {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .editorial-closing-trustline span,
:root[data-theme="light"] .editorial-closing-visual__labels span,
:root[data-theme="light"] .editorial-closing-contact {
  background:
    radial-gradient(circle at 18% 12%, rgba(14, 165, 233, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-closing-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.08), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(239, 91, 42, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
}

:root[data-theme="light"] .editorial-closing-visual__nodes circle {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(14, 165, 233, 0.42);
}

:root[data-theme="light"] .editorial-closing-contact__row + .editorial-closing-contact__row {
  border-top-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .editorial-closing-contact__content a,
:root[data-theme="light"] .editorial-closing-contact__content p,
:root[data-theme="light"] .editorial-closing-copy p {
  color: var(--text-secondary);
}
.about-page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  color: var(--text-primary);
}

.about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 16%, rgba(239, 91, 42, 0.12), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(85, 149, 165, 0.14), transparent 22%),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.03), transparent 30%);
}

.about-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
}

.about-shell {
  width: min(calc(100% - 48px), 1480px);
  margin-inline: auto;
}

.about-page__section {
  position: relative;
  padding-block: clamp(92px, 11vw, 160px);
}

.about-hero {
  padding-top: calc(var(--navbar-height) + clamp(56px, 8vw, 92px));
}

.about-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: center;
}

.about-hero__copy,
.about-hero__visual,
.about-split__copy,
.about-summary-card,
.about-timeline,
.about-mission__grid,
.about-values,
.about-tech__grid,
.about-trust__grid,
.about-industries__layout,
.about-cta__shell {
  min-width: 0;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--accent-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.about-section-heading {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-bottom: clamp(30px, 4vw, 56px);
}

.about-section-heading--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.about-section-heading h2,
.about-hero h1 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.about-section-heading h2 {
  font-size: clamp(2.5rem, 4.2vw, 5rem);
  max-width: 820px;
}

.about-section-heading p,
.about-paragraph,
.about-hero__body,
.about-hero__lead,
.about-summary-card__meta p,
.about-glass-card p,
.about-value-card p,
.about-tech-card p,
.about-trust-card p,
.about-industry-card p,
.about-cta__copy p,
.about-empty-state p {
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  line-height: 1.7;
}

.about-section-heading p {
  max-width: 760px;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}

.about-hero h1 {
  font-size: clamp(3rem, 5.2vw, 6.4rem);
  max-width: 10.5ch;
}

.about-hero__lead {
  max-width: 640px;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.7;
}

.about-hero__body {
  max-width: 660px;
  font-size: 1rem;
}

.about-hero__copy {
  display: grid;
  gap: 22px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.about-button {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.about-button--primary {
  color: var(--text-inverse);
  background: var(--gradient-primary);
  box-shadow: 0 18px 42px rgba(239, 91, 42, 0.18);
}

.about-button--secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-primary);
}

.about-button:hover {
  transform: translateY(-2px);
}

.about-hero__indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-top: 8px;
  color: var(--text-tertiary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero__indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 0 6px rgba(239, 91, 42, 0.1);
}

.about-blueprint {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 46vw, 640px);
  border-radius: 36px;
  border: 1px solid var(--border-primary);
  overflow: hidden;
  background:
    radial-gradient(circle at var(--about-pointer-x, 50%) var(--about-pointer-y, 34%), rgba(239, 91, 42, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 80%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-elevated);
}

.about-blueprint__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-blueprint__line {
  fill: none;
  stroke: url(#about-blueprint-line);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-blueprint__line--soft {
  opacity: 0.72;
}

.about-blueprint__ring {
  fill: none;
  stroke: rgba(74, 141, 255, 0.32);
  stroke-width: 1.5;
}

.about-blueprint__ring--inner {
  stroke: rgba(239, 91, 42, 0.3);
}

.about-blueprint__node {
  fill: rgba(244, 244, 240, 0.88);
  stroke: rgba(74, 141, 255, 0.28);
  stroke-width: 5;
  filter: drop-shadow(0 0 14px rgba(239, 91, 42, 0.18));
}

.about-blueprint__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(300px, calc(100% - 48px));
  padding: 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 34%),
    rgba(12, 14, 20, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.about-blueprint__label,
.about-summary-card__label,
.about-timeline__label,
.about-trust-card__kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-blueprint__core strong,
.about-blueprint__core p {
  display: block;
}

.about-blueprint__core strong {
  margin: 8px 0 6px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-blueprint__core p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-blueprint__metrics {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-blueprint__metric {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.about-blueprint__metric strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.about-blueprint__metric span {
  display: block;
  margin-top: 6px;
  color: var(--text-tertiary);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-blueprint__pulse {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid rgba(239, 91, 42, 0.34);
  box-shadow:
    0 0 0 12px rgba(239, 91, 42, 0.08),
    0 0 32px rgba(239, 91, 42, 0.14);
  animation: aboutPulse 5.5s ease-in-out infinite;
}

.about-blueprint__pulse.is-static {
  animation: none;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.about-split__copy {
  display: grid;
  gap: 18px;
}

.about-paragraph {
  max-width: 720px;
  font-size: 1.02rem;
}

.about-summary-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 91, 42, 0.08), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(85, 149, 165, 0.08), transparent 20%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-card);
}

.about-summary-card__media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
  min-height: 260px;
}

.about-summary-card__media img,
.about-summary-card__fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-summary-card__fallback {
  min-height: 260px;
}

.about-summary-card__meta {
  display: grid;
  gap: 16px;
}

.about-summary-card__meta h3 {
  margin: 8px 0 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-summary-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-summary-card__stat {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.03);
}

.about-summary-card__stat strong {
  display: block;
  color: var(--accent-primary);
  font-size: 1.45rem;
  line-height: 1;
}

.about-summary-card__stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-tertiary);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-timeline {
  display: grid;
  gap: 18px;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-card);
}

.about-timeline__index {
  color: var(--accent-primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.about-timeline__rail {
  position: relative;
  width: 64px;
  align-self: stretch;
}

.about-timeline__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 91, 42, 0.36), rgba(85, 149, 165, 0.12));
  transform: translateX(-50%);
}

.about-timeline__dot {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  box-shadow: 0 0 0 8px rgba(239, 91, 42, 0.08);
}

.about-timeline__copy h3 {
  margin: 2px 0 10px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-mission__grid,
.about-values,
.about-tech__grid,
.about-trust__grid,
.about-industries__cards {
  display: grid;
  gap: 18px;
}

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

.about-glass-card,
.about-value-card,
.about-tech-card,
.about-trust-card,
.about-industry-card,
.about-empty-state {
  border: 1px solid var(--border-primary);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-card);
}

.about-glass-card {
  padding: 28px;
}

.about-glass-card--glow {
  background:
    radial-gradient(circle at 14% 10%, rgba(239, 91, 42, 0.12), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(85, 149, 165, 0.1), transparent 20%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
}

.about-glass-card__icon,
.about-value-card__icon,
.about-tech-card__icon,
.about-industry-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: rgba(239, 91, 42, 0.08);
  color: var(--accent-primary);
}

.about-glass-card h3,
.about-value-card h3,
.about-tech-card h3,
.about-trust-card h3,
.about-industry-card h3 {
  margin: 14px 0 10px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-glass-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

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

.about-value-card {
  padding: 24px;
}

.about-value-card p,
.about-tech-card p,
.about-trust-card p,
.about-industry-card p {
  margin: 0;
}

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

.about-tech-card {
  padding: 24px;
}

.about-tech-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-tech-card__header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.about-tech-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-tech-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.86rem;
}

.about-trust__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-trust-card {
  padding: 24px;
}

.about-trust-card--featured {
  border-color: rgba(239, 91, 42, 0.28);
  box-shadow: var(--shadow-elevated);
}

.about-trust-card strong {
  display: block;
  margin-top: 12px;
  color: var(--accent-primary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.about-trust-card h3 {
  font-size: 1.12rem;
}

.about-empty-state {
  padding: 22px 24px;
}

.about-industries__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.about-industries__map {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  border-radius: 34px;
  border: 1px solid var(--border-primary);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(85, 149, 165, 0.1), transparent 24%),
    radial-gradient(circle at 44% 62%, rgba(239, 91, 42, 0.1), transparent 20%),
    color-mix(in srgb, var(--surface-secondary) 82%, transparent);
  box-shadow: var(--shadow-card);
}

.about-industries__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-industries__outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.6;
}

.about-industries__path {
  fill: none;
  stroke: url(#about-map-line);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.about-industries__marker {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(85, 149, 165, 0.2);
  stroke-width: 4;
}

.about-industries__marker--accent {
  fill: var(--accent-primary);
}

.about-industries__flag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 20, 0.66);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-industries__flag strong {
  display: block;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
}

.about-industries__flag span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  line-height: 1.55;
}

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

.about-industry-card {
  padding: 22px;
}

.about-industry-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
}

.about-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 36px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 91, 42, 0.12), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(85, 149, 165, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 130%),
    color-mix(in srgb, var(--surface-secondary) 84%, transparent);
  box-shadow: var(--shadow-elevated);
}

.about-cta__copy {
  display: grid;
  gap: 14px;
}

.about-cta__copy h2 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

.about-cta__copy p {
  max-width: 700px;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.about-empty-state {
  display: grid;
  place-items: center;
  min-height: 120px;
}

.about-empty-state p {
  margin: 0;
  text-align: center;
}

@keyframes aboutPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .about-hero__shell,
  .about-split,
  .about-industries__layout,
  .about-cta__shell {
    grid-template-columns: 1fr;
  }

  .about-cta__actions {
    justify-content: flex-start;
  }

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

@media (max-width: 900px) {
  .about-shell {
    width: min(calc(100% - 32px), 100%);
  }

  .about-values,
  .about-tech__grid,
  .about-mission__grid,
  .about-industries__cards {
    grid-template-columns: 1fr;
  }

  .about-summary-card__stats {
    grid-template-columns: 1fr;
  }

  .about-blueprint {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .about-page__section {
    padding-block: clamp(72px, 10vw, 110px);
  }

  .about-shell {
    width: min(calc(100% - 24px), 100%);
  }

  .about-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .about-blueprint__metrics {
    grid-template-columns: 1fr;
  }

  .about-blueprint__core {
    width: calc(100% - 28px);
    padding: 22px 20px;
  }

  .about-timeline__item {
    grid-template-columns: auto 1fr;
  }

  .about-timeline__rail {
    display: none;
  }

  .about-cta__copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .about-button {
    width: 100%;
  }

  .about-cta__actions {
    flex-direction: column;
  }
}

:root[data-theme="light"] .about-page::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(239, 91, 42, 0.1), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(85, 149, 165, 0.11), transparent 22%),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.18), transparent 30%);
}

:root[data-theme="light"] .about-page::after {
  opacity: 0.18;
}

:root[data-theme="light"] .about-blueprint__core {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.7);
  border-color: rgba(17, 17, 17, 0.12);
}

:root[data-theme="light"] .about-blueprint__metric,
:root[data-theme="light"] .about-summary-card,
:root[data-theme="light"] .about-glass-card,
:root[data-theme="light"] .about-value-card,
:root[data-theme="light"] .about-tech-card,
:root[data-theme="light"] .about-trust-card,
:root[data-theme="light"] .about-industry-card,
:root[data-theme="light"] .about-empty-state,
:root[data-theme="light"] .about-timeline__item,
:root[data-theme="light"] .about-cta__shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.58)),
    color-mix(in srgb, var(--surface-light) 88%, transparent);
}

:root[data-theme="light"] .about-industries__flag {
  background: rgba(255, 255, 255, 0.82);
}

:root[data-theme="light"] .about-button--secondary {
  background: rgba(255, 255, 255, 0.72);
}
.services-enterprise {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  color: var(--text-primary);
}

.services-enterprise__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-enterprise__background-grid,
.services-enterprise__background-glow,
.services-enterprise__background-spotlight,
.services-enterprise__background-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-enterprise__background-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08));
}

.services-enterprise__background-glow {
  background:
    radial-gradient(circle at var(--services-pointer-x, 64%) var(--services-pointer-y, 20%), rgba(74, 141, 255, 0.12), transparent 22%),
    radial-gradient(circle at 20% 18%, rgba(239, 91, 42, 0.08), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(45, 212, 200, 0.08), transparent 20%);
}

.services-enterprise__background-spotlight {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.2) 72%, rgba(7, 11, 20, 0.44));
}

.services-enterprise__background-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.services-enterprise__background-network {
  position: absolute;
  inset: -2% -4% auto;
  width: 108%;
  height: 58%;
}

.services-enterprise__background-line {
  fill: none;
  stroke: url(#services-network-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.8;
}

.services-enterprise__background-line--2,
.services-enterprise__background-line--4 {
  opacity: 0.46;
  stroke-width: 1.5;
}

.services-enterprise__background-line--3 {
  opacity: 0.34;
  stroke-width: 1.4;
}

.services-enterprise__background-node {
  filter: drop-shadow(0 0 16px rgba(74, 141, 255, 0.18));
  transform-origin: center;
}

.services-enterprise__shell {
  width: min(var(--container-width), calc(100% - clamp(40px, 8vw, 128px)));
  margin-inline: auto;
}

.services-enterprise__hero,
.services-enterprise__explorer,
.services-enterprise__outcomes,
.services-enterprise__technology,
.services-enterprise__process,
.services-enterprise__closing {
  position: relative;
  z-index: 1;
  padding-block: clamp(92px, 11vw, 160px);
}

.services-enterprise__hero {
  padding-top: clamp(148px, 16vw, 190px);
}

.services-enterprise__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.services-enterprise__hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.services-enterprise__hero-copy h1,
.services-enterprise__section-head h2,
.services-enterprise__closing-copy h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 700;
}

.services-enterprise__hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.2vw, 6.1rem);
}

.services-enterprise__hero-copy p,
.services-enterprise__section-head p,
.services-enterprise__closing-copy p {
  max-width: 700px;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}

.services-enterprise__hero-actions,
.services-enterprise__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.services-enterprise__hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
}

.services-enterprise__hero-metric {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border-primary);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%);
  box-shadow: var(--shadow-card);
}

.services-enterprise__hero-metric strong {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.services-enterprise__hero-metric span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.4;
}

.services-enterprise__hero-visual {
  min-width: 0;
}

.services-enterprise__visual-shell {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.services-enterprise__visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.services-enterprise__visual-core {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 28px;
  background: var(--surface-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-enterprise__visual-core .service-mesh,
.services-enterprise__detail-media .service-mesh {
  width: 100%;
  min-height: 100%;
}

.services-enterprise__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.services-enterprise__visual-caption,
.services-enterprise__visual-trustline {
  position: relative;
  z-index: 1;
}

.services-enterprise__visual-caption {
  display: grid;
  gap: 6px;
}

.services-enterprise__visual-captionLabel {
  color: var(--accent-primary);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.services-enterprise__visual-caption strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.services-enterprise__visual-caption span {
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-enterprise__visual-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-enterprise__visual-trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.services-enterprise__section-head {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 34px;
}

.services-enterprise__section-head h2 {
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  max-width: 14ch;
}

.services-enterprise__section-head--compact h2 {
  max-width: 11ch;
}

.services-enterprise__filters {
  display: flex;
  gap: 12px;
  padding: 4px 0 14px;
  margin-bottom: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.services-enterprise__filters::-webkit-scrollbar {
  height: 6px;
}

.services-enterprise__filters::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.services-enterprise__filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.services-enterprise__filter strong {
  color: var(--text-primary);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.services-enterprise__filter.is-active {
  color: var(--text-primary);
  border-color: rgba(239, 91, 42, 0.34);
  background: rgba(239, 91, 42, 0.11);
}

.services-enterprise__filter:focus-visible,
.services-enterprise__service-card:focus-visible,
.services-enterprise__empty-actions .btn-primary:focus-visible,
.services-enterprise__empty-actions .btn-secondary:focus-visible,
.services-enterprise__detail-actions .btn-primary:focus-visible,
.services-enterprise__detail-actions .btn-secondary:focus-visible,
.services-enterprise__closing-actions .btn-primary:focus-visible,
.services-enterprise__closing-actions .btn-secondary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.services-enterprise__loading-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.services-enterprise__loading-list {
  display: grid;
  gap: 14px;
}

.services-enterprise__skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  background-size: 200% 100%;
  animation: services-shimmer 1.5s linear infinite;
}

.services-enterprise__skeleton--list {
  min-height: 108px;
}

.services-enterprise__skeleton--detail {
  min-height: 560px;
}

@keyframes services-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.services-enterprise__empty-state {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.services-enterprise__empty-copy {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.services-enterprise__empty-copy h3 {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.services-enterprise__empty-copy p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.services-enterprise__empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-enterprise__explorer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.services-enterprise__service-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-enterprise__service-card {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 96px;
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%),
    var(--surface-primary);
  color: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.services-enterprise__service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 91, 42, 0.32);
}

.services-enterprise__service-card.is-active {
  border-color: rgba(239, 91, 42, 0.42);
  background:
    radial-gradient(circle at top right, rgba(239, 91, 42, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 120%),
    var(--surface-secondary);
  box-shadow: var(--shadow-elevated);
}

.services-enterprise__service-index {
  color: var(--text-tertiary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.services-enterprise__service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--accent-primary);
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: var(--gradient-panel);
}

.services-enterprise__service-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.services-enterprise__service-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.services-enterprise__service-copy span {
  color: var(--text-secondary);
  line-height: 1.55;
}

.services-enterprise__service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 91, 42, 0.18);
  color: var(--accent-primary);
  background: rgba(239, 91, 42, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-enterprise__detail-column {
  min-width: 0;
}

.services-enterprise__detail-panel {
  position: sticky;
  top: calc(var(--navbar-height) + 22px);
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(85, 149, 165, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.services-enterprise__detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.services-enterprise__detail-index,
.services-enterprise__outcome-number,
.services-enterprise__process-number {
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.services-enterprise__detail-category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: rgba(239, 91, 42, 0.08);
  color: var(--accent-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-enterprise__detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.services-enterprise__detail-copy {
  display: grid;
  gap: 12px;
}

.services-enterprise__detail-copy h3 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.services-enterprise__detail-copy p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.services-enterprise__detail-media {
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
}

.services-enterprise__detail-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-enterprise__detail-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 120%),
    var(--surface-primary);
}

.services-enterprise__detail-card span {
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-enterprise__detail-card p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.services-enterprise__detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-enterprise__detail-tag,
.services-enterprise__tech-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
}

.services-enterprise__detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-enterprise__outcomes {
  padding-top: 0;
}

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

.services-enterprise__outcome-card,
.services-enterprise__tech-card,
.services-enterprise__process-card {
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 120%),
    var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.services-enterprise__outcome-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.services-enterprise__outcome-card h3,
.services-enterprise__tech-label,
.services-enterprise__process-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.services-enterprise__outcome-card p,
.services-enterprise__tech-card p,
.services-enterprise__process-card p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.services-enterprise__technology {
  padding-top: clamp(56px, 7vw, 108px);
}

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

.services-enterprise__tech-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.services-enterprise__tech-card.is-active {
  border-color: rgba(239, 91, 42, 0.34);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%),
    var(--surface-secondary);
}

.services-enterprise__tech-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-enterprise__tech-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-primary);
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: var(--gradient-panel);
}

.services-enterprise__tech-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-enterprise__process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.services-enterprise__process-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.services-enterprise__process-card h3 {
  font-size: 1rem;
}

.services-enterprise__closing {
  padding-bottom: clamp(120px, 14vw, 184px);
}

.services-enterprise__closing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 36px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.services-enterprise__closing-copy {
  display: grid;
  gap: 18px;
}

.services-enterprise__closing-copy h2 {
  font-size: clamp(3rem, 5vw, 6.4rem);
  max-width: 10ch;
}

.services-enterprise__closing-actions {
  justify-content: flex-end;
}

:root[data-theme="light"] .services-enterprise {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.06), transparent 28%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.06), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .services-enterprise__background-grid {
  opacity: 0.18;
}

:root[data-theme="light"] .services-enterprise__background-line {
  opacity: 0.62;
}

:root[data-theme="light"] .services-enterprise__visual-shell,
:root[data-theme="light"] .services-enterprise__detail-panel,
:root[data-theme="light"] .services-enterprise__outcome-card,
:root[data-theme="light"] .services-enterprise__tech-card,
:root[data-theme="light"] .services-enterprise__process-card,
:root[data-theme="light"] .services-enterprise__service-card,
:root[data-theme="light"] .services-enterprise__hero-metric,
:root[data-theme="light"] .services-enterprise__empty-state {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 235, 0.95));
}

:root[data-theme="light"] .services-enterprise__visual-shell::before {
  opacity: 0.35;
}

:root[data-theme="light"] .services-enterprise__service-card.is-active,
:root[data-theme="light"] .services-enterprise__tech-card.is-active {
  background:
    radial-gradient(circle at top right, rgba(239, 91, 42, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 235, 0.96));
}

:root[data-theme="light"] .services-enterprise__hero-copy p,
:root[data-theme="light"] .services-enterprise__section-head p,
:root[data-theme="light"] .services-enterprise__closing-copy p,
:root[data-theme="light"] .services-enterprise__detail-copy p,
:root[data-theme="light"] .services-enterprise__outcome-card p,
:root[data-theme="light"] .services-enterprise__tech-card p,
:root[data-theme="light"] .services-enterprise__process-card p,
:root[data-theme="light"] .services-enterprise__empty-copy p,
:root[data-theme="light"] .services-enterprise__visual-caption span,
:root[data-theme="light"] .services-enterprise__service-copy span,
:root[data-theme="light"] .services-enterprise__hero-metric span {
  color: var(--text-secondary);
}

:root[data-theme="light"] .services-enterprise__filter,
:root[data-theme="light"] .services-enterprise__detail-tag,
:root[data-theme="light"] .services-enterprise__tech-chip,
:root[data-theme="light"] .services-enterprise__visual-trustline span,
:root[data-theme="light"] .services-enterprise__service-pill,
:root[data-theme="light"] .services-enterprise__detail-category {
  background: rgba(17, 17, 17, 0.03);
}

:root[data-theme="light"] .services-enterprise__filter.is-active {
  background: rgba(239, 91, 42, 0.12);
}

@media (max-width: 1200px) {
  .services-enterprise__hero-grid,
  .services-enterprise__explorer-grid,
  .services-enterprise__loading-grid,
  .services-enterprise__closing-shell {
    grid-template-columns: 1fr;
  }

  .services-enterprise__detail-panel {
    position: static;
  }

  .services-enterprise__hero-copy h1,
  .services-enterprise__closing-copy h2 {
    max-width: 12ch;
  }
}

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

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

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

@media (max-width: 768px) {
  .services-enterprise__hero,
  .services-enterprise__explorer,
  .services-enterprise__outcomes,
  .services-enterprise__technology,
  .services-enterprise__process,
  .services-enterprise__closing {
    padding-block: 72px;
  }

  .services-enterprise__hero {
    padding-top: 124px;
  }

  .services-enterprise__background-network {
    width: 124%;
    height: 46%;
    inset: 0 -12% auto;
    opacity: 0.7;
  }

  .services-enterprise__shell {
    width: min(var(--container-width), calc(100% - 32px));
  }

  .services-enterprise__hero-metrics,
  .services-enterprise__outcome-grid,
  .services-enterprise__tech-grid,
  .services-enterprise__process-grid {
    grid-template-columns: 1fr;
  }

  .services-enterprise__hero-actions,
  .services-enterprise__closing-actions,
  .services-enterprise__empty-actions,
  .services-enterprise__detail-actions {
    flex-direction: column;
  }

  .services-enterprise__hero-actions > *,
  .services-enterprise__closing-actions > *,
  .services-enterprise__empty-actions > *,
  .services-enterprise__detail-actions > * {
    width: 100%;
  }

  .services-enterprise__service-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .services-enterprise__service-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .services-enterprise__detail-topline {
    align-items: flex-start;
  }

  .services-enterprise__filters {
    margin-inline: -8px;
    padding-inline: 8px;
  }

  .services-enterprise__filter {
    min-height: 44px;
  }
}

@media (max-width: 540px) {
  .services-enterprise__empty-state {
    flex-direction: column;
    align-items: stretch;
  }

  .services-enterprise__hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .services-enterprise__closing-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .services-enterprise__visual-core,
  .services-enterprise__detail-media {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-enterprise__background-line,
  .services-enterprise__background-node {
    animation: none !important;
    transition: none !important;
  }
}
.products-enterprise {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.products-enterprise__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  --products-pointer-x: 64%;
  --products-pointer-y: 18%;
}

.products-enterprise__background-grid,
.products-enterprise__background-noise,
.products-enterprise__background-glow,
.products-enterprise__spotlight,
.products-enterprise__background-network {
  position: absolute;
  inset: 0;
}

.products-enterprise__background-grid {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
}

.products-enterprise__background-glow {
  background:
    radial-gradient(circle at var(--products-pointer-x) var(--products-pointer-y), rgba(45, 212, 200, 0.12), transparent 20%),
    radial-gradient(circle at 18% 18%, rgba(239, 91, 42, 0.1), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(74, 141, 255, 0.08), transparent 28%);
  filter: blur(10px);
  opacity: 0.9;
}

.products-enterprise__background-noise {
  opacity: 0.12;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    linear-gradient(40deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: soft-light;
}

.products-enterprise__background-network {
  inset: auto 0 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  filter: drop-shadow(0 0 18px rgba(74, 141, 255, 0.08));
}

.products-enterprise__spotlight {
  inset: auto auto -12% 52%;
  width: min(820px, 65vw);
  height: min(820px, 65vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 91, 42, 0.08), transparent 62%);
  opacity: 0.75;
}

.products-enterprise__line {
  fill: none;
  stroke: rgba(74, 141, 255, 0.68);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-enterprise__line--1 {
  stroke: rgba(45, 212, 200, 0.74);
}

.products-enterprise__line--2 {
  stroke: rgba(74, 141, 255, 0.74);
}

.products-enterprise__line--3 {
  stroke: rgba(239, 91, 42, 0.64);
}

.products-enterprise__background-network circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: products-node-float 7.5s ease-in-out infinite;
}

.products-enterprise__background-network g:nth-child(4n + 1) circle {
  animation-duration: 8.2s;
}

.products-enterprise__background-network g:nth-child(4n + 2) circle {
  animation-duration: 7.1s;
}

.products-enterprise__background-network g:nth-child(4n + 3) circle {
  animation-duration: 8.9s;
}

.products-enterprise__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1480px);
  margin-inline: auto;
}

.products-enterprise__hero,
.products-enterprise__filters,
.products-enterprise__feature,
.products-enterprise__collection,
.products-enterprise__connections,
.products-enterprise__technology,
.products-enterprise__process,
.products-enterprise__cta,
.products-enterprise__detail-hero,
.products-enterprise__detail-insight,
.products-enterprise__detail-scope,
.products-enterprise__detail-metrics,
.products-enterprise__detail-services,
.products-enterprise__detail-related,
.products-enterprise__detail-cta {
  position: relative;
  z-index: 1;
  padding-block: clamp(96px, 12vw, 168px);
}

.products-enterprise__hero,
.products-enterprise__detail-hero {
  min-height: max(100svh, 780px);
  display: grid;
  align-items: center;
}

.products-enterprise__hero-grid,
.products-enterprise__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.products-enterprise__hero-copy,
.products-enterprise__detail-copy {
  min-width: 0;
}

.products-enterprise__eyebrow {
  margin-bottom: 18px;
}

.products-enterprise__hero-copy h1,
.products-enterprise__detail-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.products-enterprise__hero-copy p,
.products-enterprise__detail-copy p,
.products-enterprise__section-head p,
.products-enterprise__cta-copy p,
.products-enterprise__detail-empty p,
.products-enterprise__feature-summary,
.products-enterprise__detail-summary {
  max-width: 660px;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.66;
}

.products-enterprise__hero-actions,
.products-enterprise__detail-actions,
.products-enterprise__cta-actions,
.products-enterprise__empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.products-enterprise__hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.products-enterprise__metric-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.products-enterprise__metric-note,
.products-enterprise__card-pill,
.products-enterprise__feature-pill,
.products-enterprise__project-pill,
.products-enterprise__connection-label,
.products-enterprise__lead-kicker,
.products-enterprise__card-meta,
.products-enterprise__detail-meta,
.products-enterprise__metric-label,
.products-enterprise__metric-pill span,
.products-enterprise__tech-card p,
.products-enterprise__process-card p,
.products-enterprise__insight-card p,
.products-enterprise__connection-card p,
.products-enterprise__related-copy p,
.products-enterprise__scope-list li,
.products-enterprise__detail-visualCopy span,
.products-enterprise__detail-empty p {
  color: var(--text-secondary);
}

.products-enterprise__metric-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.products-enterprise__metric-value {
  display: block;
  margin-top: 26px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-primary);
}

.products-enterprise__metric-label {
  display: block;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.products-enterprise__hero-visual,
.products-enterprise__detail-visual {
  min-width: 0;
  position: relative;
}

.products-enterprise__lead-visual,
.products-enterprise__detail-media,
.products-project-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(74, 141, 255, 0.08), transparent 28%),
    var(--surface-primary);
  box-shadow: var(--shadow-elevated);
}

.products-enterprise__lead-visual {
  aspect-ratio: 5 / 6;
  display: grid;
  align-items: end;
}

.products-enterprise__lead-visual--empty {
  place-items: center;
  min-height: 560px;
}

.products-enterprise__lead-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.35;
}

.products-enterprise__lead-pulse {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 200, 0.14), transparent 70%);
  animation: products-pulse 8s ease-in-out infinite;
}

.products-enterprise__lead-media,
.products-enterprise__feature-image,
.products-enterprise__related-media,
.products-enterprise__detail-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-enterprise__lead-visual > .products-project-media,
.products-enterprise__feature-media > .products-project-media,
.products-enterprise__detail-visual > .products-project-media,
.products-enterprise__card-mediaLink > .products-project-media,
.products-enterprise__related-mediaLink > .products-project-media {
  width: 100%;
  height: 100%;
}

.products-enterprise__lead-overlay,
.products-enterprise__detail-visualCopy {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.82));
  display: grid;
  gap: 6px;
}

.products-enterprise__lead-overlay strong,
.products-enterprise__detail-visualCopy strong {
  color: var(--text-primary);
  font-size: 1.05rem;
}

.products-enterprise__lead-overlay span {
  color: rgba(244, 244, 240, 0.72);
  font-size: 0.92rem;
}

.products-enterprise__filters,
.products-enterprise__collection,
.products-enterprise__connections,
.products-enterprise__technology,
.products-enterprise__process,
.products-enterprise__cta,
.products-enterprise__detail-insight,
.products-enterprise__detail-scope,
.products-enterprise__detail-metrics,
.products-enterprise__detail-services,
.products-enterprise__detail-related,
.products-enterprise__detail-cta {
  padding-top: 0;
}

.products-enterprise__section-head {
  max-width: 900px;
  margin-bottom: clamp(36px, 4vw, 60px);
}

.products-enterprise__section-head h2 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.products-enterprise__filter-row {
  display: grid;
  gap: 18px;
}

.products-enterprise__search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  max-width: 520px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: var(--surface-primary);
  color: var(--text-secondary);
  box-shadow: var(--shadow-soft);
}

.products-enterprise__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-primary);
}

.products-enterprise__search input::placeholder {
  color: var(--text-tertiary);
}

.products-enterprise__chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.products-enterprise__chipButton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 12px 16px;
  min-height: 46px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: var(--surface-primary);
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.products-enterprise__chipButton strong {
  font-size: 0.82rem;
  color: inherit;
}

.products-enterprise__chipButton.is-active,
.products-enterprise__chipButton:hover,
.products-enterprise__chipButton:focus-visible {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: linear-gradient(180deg, rgba(239, 91, 42, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 0 1px rgba(239, 91, 42, 0.15);
}

.products-enterprise__filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.products-enterprise__clear,
.products-enterprise__detail-empty button {
  border: 0;
  background: transparent;
  color: var(--accent-primary);
  font-weight: 700;
  cursor: pointer;
}

.products-enterprise__feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--border-primary);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.07), transparent 24%),
    var(--surface-primary);
  box-shadow: var(--shadow-elevated);
}

.products-enterprise__feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  min-height: 420px;
}

.products-enterprise__feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 8, 8, 0.72) 100%),
    radial-gradient(circle at 72% 22%, rgba(45, 212, 200, 0.12), transparent 18%);
  pointer-events: none;
}

.products-enterprise__feature-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.products-enterprise__feature-topline,
.products-enterprise__card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.products-enterprise__feature-index,
.products-enterprise__card-index {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--accent-secondary);
}

.products-enterprise__feature-pill,
.products-enterprise__card-pill,
.products-enterprise__project-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: var(--surface-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-enterprise__feature-copy h3,
.products-enterprise__card-body h3,
.products-enterprise__connection-card h3,
.products-enterprise__tech-card h3,
.products-enterprise__process-card h3,
.products-enterprise__related-copy h3,
.products-enterprise__insight-card span,
.products-enterprise__scope-card h2,
.products-enterprise__cta-copy h2,
.products-enterprise__detail-empty h1 {
  margin: 0;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.products-enterprise__feature-copy h3 {
  font-size: clamp(1.7rem, 2.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.products-enterprise__feature-cardlet,
.products-enterprise__connection-card,
.products-enterprise__tech-card,
.products-enterprise__process-card,
.products-enterprise__insight-card,
.products-enterprise__scope-card,
.products-enterprise__related-card {
  position: relative;
  border: 1px solid var(--border-primary);
  border-radius: 26px;
  background: var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.products-enterprise__feature-cardlet {
  padding: 18px;
}

.products-enterprise__feature-cardlet span,
.products-enterprise__connection-label,
.products-enterprise__tech-count,
.products-enterprise__process-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-secondary);
}

.products-enterprise__feature-cardlet p,
.products-enterprise__connection-card p,
.products-enterprise__tech-card p,
.products-enterprise__process-card p,
.products-enterprise__insight-card p,
.products-enterprise__related-copy p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.62;
}

.products-enterprise__feature-cardlet ul,
.products-enterprise__scope-list {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text-secondary);
}

.products-enterprise__feature-tags,
.products-enterprise__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-enterprise__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--border-primary);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.products-enterprise__card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border-primary);
  border-radius: 30px;
  background: var(--surface-primary);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.products-enterprise__card:hover,
.products-enterprise__card:focus-within {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevated);
}

.products-enterprise__card-mediaLink,
.products-enterprise__related-mediaLink {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.products-enterprise__card-mediaLink > .products-project-media,
.products-enterprise__related-mediaLink > .products-project-media {
  display: block;
}

.products-enterprise__card-media {
  aspect-ratio: 5 / 4;
}

.products-enterprise__card-body {
  display: grid;
  gap: 14px;
}

.products-enterprise__card-body h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.75rem);
  line-height: 1.1;
}

.products-enterprise__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-primary);
  font-weight: 700;
}

.products-enterprise__card-link svg {
  transition: transform 0.22s ease;
}

.products-enterprise__card-link:hover svg,
.products-enterprise__card-link:focus-visible svg {
  transform: translateX(3px);
}

.products-enterprise__card--lead {
  grid-column: span 2;
}

.products-enterprise__card--wide .products-enterprise__card-media,
.products-enterprise__card--lead .products-enterprise__card-media {
  aspect-ratio: 16 / 10;
}

.products-enterprise__card--stacked .products-enterprise__card-media {
  aspect-ratio: 4 / 5;
}

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

.products-enterprise__card--lead { grid-column: span 12; }
.products-enterprise__card--wide { grid-column: span 7; }
.products-enterprise__card--tall { grid-column: span 5; }
.products-enterprise__card--compact { grid-column: span 4; }
.products-enterprise__card--stacked { grid-column: span 8; }

.products-enterprise__connection-grid,
.products-enterprise__tech-grid,
.products-enterprise__process-grid,
.products-enterprise__metrics-grid,
.products-enterprise__related-grid {
  display: grid;
  gap: 18px;
}

.products-enterprise__connection-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.products-enterprise__connection-grid--services .products-enterprise__connection-card {
  grid-column: span 4;
}

.products-enterprise__connection-card {
  grid-column: span 4;
  padding: 22px;
  min-width: 0;
}

.products-enterprise__connection-card h3 {
  margin-top: 10px;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.1;
}

.products-enterprise__tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.products-enterprise__tech-card {
  padding: 20px;
}

.products-enterprise__tech-count,
.products-enterprise__process-number {
  margin-bottom: 16px;
}

.products-enterprise__tech-card h3,
.products-enterprise__process-card h3,
.products-enterprise__insight-card span,
.products-enterprise__related-copy h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.18;
}

.products-enterprise__process-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.products-enterprise__process-card {
  padding: 20px;
}

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

.products-enterprise__insight-card {
  padding: 22px;
}

.products-enterprise__insight-card span {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
}

.products-enterprise__scope-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.products-enterprise__scope-list li {
  margin-top: 10px;
}

.products-enterprise__metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.products-enterprise__metric-card--detail {
  min-height: 140px;
}

.products-enterprise__related-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.products-enterprise__related-card {
  grid-column: span 6;
  padding: 18px;
}

.products-enterprise__related-media {
  aspect-ratio: 5 / 4;
}

.products-enterprise__related-copy {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.products-enterprise__project-pill {
  width: fit-content;
}

.products-enterprise__cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(36px, 5vw, 92px);
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border-primary);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(74, 141, 255, 0.08), transparent 26%),
    var(--surface-primary);
  box-shadow: var(--shadow-elevated);
}

.products-enterprise__cta-copy h2,
.products-enterprise__detail-empty h1 {
  max-width: 760px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.products-enterprise__empty-card,
.products-enterprise__detail-empty,
.products-enterprise__detail-skeleton {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--border-primary);
  border-radius: 30px;
  background: var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.products-enterprise__empty-card--inline {
  max-width: 720px;
}

.products-enterprise__detail-skeleton {
  min-height: 420px;
}

.products-enterprise__skeleton-line,
.products-enterprise__skeleton-block,
.products-enterprise__skeleton-chip,
.products-enterprise__skeleton-panel {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  background-size: 200% 100%;
  animation: products-skeleton 1.8s linear infinite;
}

.products-enterprise__skeleton-line--eyebrow {
  width: 180px;
  height: 12px;
}

.products-enterprise__skeleton-block--title {
  width: min(100%, 680px);
  height: 122px;
  border-radius: 28px;
}

.products-enterprise__skeleton-block--body {
  width: min(100%, 560px);
  height: 88px;
  border-radius: 24px;
}

.products-enterprise__skeleton-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-enterprise__skeleton-chip {
  width: 140px;
  height: 42px;
  border-radius: 999px;
}

.products-enterprise__skeleton-panel {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 32px;
}

.products-enterprise__hero-skeleton .products-enterprise__skeleton-chip {
  margin-top: 6px;
}

.products-project-media__svg {
  width: 100%;
  height: 100%;
}

.products-project-media__svg text {
  fill: var(--text-primary);
  font-size: 26px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-project-media__frame,
.products-project-media__panel,
.products-project-media__cloud,
.products-project-media__node,
.products-project-media__loop,
.products-project-media__shield {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2.5;
}

.products-project-media__panel {
  fill: rgba(255, 255, 255, 0.08);
}

.products-project-media__line,
.products-project-media__arc,
.products-project-media__path {
  fill: none;
  stroke: rgba(74, 141, 255, 0.8);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.products-project-media__arc {
  stroke: rgba(45, 212, 200, 0.82);
}

.products-project-media__path {
  stroke: rgba(239, 91, 42, 0.74);
}

.products-project-media__cloud {
  fill: rgba(74, 141, 255, 0.12);
}

.products-project-media__node {
  fill: rgba(239, 91, 42, 0.88);
}

.products-project-media__loop {
  fill: rgba(74, 141, 255, 0.06);
}

.products-project-media__shield {
  fill: rgba(45, 212, 200, 0.08);
}

.products-project-media__overlay,
.products-project-media__overlay--fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.36)),
    radial-gradient(circle at top right, rgba(45, 212, 200, 0.1), transparent 22%);
}

.products-project-media__caption {
  fill: var(--text-primary);
}

@keyframes products-skeleton {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes products-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.78;
  }
}

@keyframes products-node-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 1280px) {
  .products-enterprise__hero-grid,
  .products-enterprise__detail-grid,
  .products-enterprise__cta-shell {
    grid-template-columns: 1fr;
  }

  .products-enterprise__card--lead,
  .products-enterprise__card--wide,
  .products-enterprise__card--tall,
  .products-enterprise__card--compact,
  .products-enterprise__card--stacked {
    grid-column: span 12;
  }

  .products-enterprise__connection-card,
  .products-enterprise__related-card {
    grid-column: span 12;
  }

  .products-enterprise__tech-grid,
  .products-enterprise__insight-grid,
  .products-enterprise__process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-enterprise__hero,
  .products-enterprise__detail-hero {
    min-height: auto;
  }

  .products-enterprise__hero,
  .products-enterprise__detail-hero,
  .products-enterprise__feature,
  .products-enterprise__collection,
  .products-enterprise__connections,
  .products-enterprise__technology,
  .products-enterprise__process,
  .products-enterprise__cta,
  .products-enterprise__detail-insight,
  .products-enterprise__detail-scope,
  .products-enterprise__detail-metrics,
  .products-enterprise__detail-services,
  .products-enterprise__detail-related,
  .products-enterprise__detail-cta {
    padding-block: 72px;
  }

  .products-enterprise__hero-metrics {
    grid-template-columns: 1fr;
  }

  .products-enterprise__feature-card,
  .products-enterprise__cta-shell {
    grid-template-columns: 1fr;
  }

  .products-enterprise__feature-grid,
  .products-enterprise__tech-grid,
  .products-enterprise__insight-grid,
  .products-enterprise__process-grid {
    grid-template-columns: 1fr;
  }

  .products-enterprise__filter-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .products-enterprise__shell {
    width: min(calc(100% - 32px), 1480px);
  }

  .products-enterprise__hero-copy h1,
  .products-enterprise__detail-copy h1,
  .products-enterprise__cta-copy h2,
  .products-enterprise__detail-empty h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .products-enterprise__section-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .products-enterprise__feature-media,
  .products-enterprise__lead-visual,
  .products-enterprise__detail-media {
    min-height: 320px;
  }

  .products-enterprise__lead-visual--empty {
    min-height: 340px;
  }

  .products-enterprise__feature-card,
  .products-enterprise__card,
  .products-enterprise__connection-card,
  .products-enterprise__tech-card,
  .products-enterprise__process-card,
  .products-enterprise__insight-card,
  .products-enterprise__scope-card,
  .products-enterprise__related-card,
  .products-enterprise__metric-card {
    border-radius: 22px;
  }

  .products-enterprise__chips {
    padding-bottom: 2px;
  }

  .products-enterprise__search {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-enterprise__background-network circle,
  .products-enterprise__lead-pulse,
  .products-enterprise__skeleton-line,
  .products-enterprise__skeleton-block,
  .products-enterprise__skeleton-chip,
  .products-enterprise__skeleton-panel {
    animation: none !important;
  }
}

:root[data-theme="light"] .products-enterprise {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.06), transparent 28%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .products-enterprise__background-grid {
  background:
    linear-gradient(to right, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
}

:root[data-theme="light"] .products-enterprise__background-noise {
  opacity: 0.08;
}

:root[data-theme="light"] .products-enterprise__background-glow {
  filter: blur(12px);
  opacity: 0.78;
}

:root[data-theme="light"] .products-enterprise__spotlight {
  background: radial-gradient(circle, rgba(74, 141, 255, 0.08), transparent 62%);
}

:root[data-theme="light"] .products-enterprise__line {
  stroke: rgba(13, 148, 136, 0.56);
}

:root[data-theme="light"] .products-enterprise__line--2 {
  stroke: rgba(74, 141, 255, 0.66);
}

:root[data-theme="light"] .products-enterprise__line--3 {
  stroke: rgba(239, 91, 42, 0.56);
}

:root[data-theme="light"] .products-enterprise__metric-card,
:root[data-theme="light"] .products-enterprise__lead-visual,
:root[data-theme="light"] .products-enterprise__feature-card,
:root[data-theme="light"] .products-enterprise__card,
:root[data-theme="light"] .products-enterprise__connection-card,
:root[data-theme="light"] .products-enterprise__tech-card,
:root[data-theme="light"] .products-enterprise__process-card,
:root[data-theme="light"] .products-enterprise__insight-card,
:root[data-theme="light"] .products-enterprise__scope-card,
:root[data-theme="light"] .products-enterprise__related-card,
:root[data-theme="light"] .products-enterprise__cta-shell,
:root[data-theme="light"] .products-enterprise__detail-empty,
:root[data-theme="light"] .products-enterprise__detail-skeleton {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 236, 0.96)),
    var(--surface-secondary);
  border-color: var(--border-primary);
}

:root[data-theme="light"] .products-enterprise__chip,
:root[data-theme="light"] .products-enterprise__chipButton,
:root[data-theme="light"] .products-enterprise__feature-pill,
:root[data-theme="light"] .products-enterprise__card-pill,
:root[data-theme="light"] .products-enterprise__project-pill {
  background: rgba(17, 17, 17, 0.03);
  color: var(--text-primary);
}

:root[data-theme="light"] .products-enterprise__hero-copy p,
:root[data-theme="light"] .products-enterprise__detail-copy p,
:root[data-theme="light"] .products-enterprise__section-head p,
:root[data-theme="light"] .products-enterprise__cta-copy p,
:root[data-theme="light"] .products-enterprise__detail-summary,
:root[data-theme="light"] .products-enterprise__feature-summary,
:root[data-theme="light"] .products-enterprise__feature-cardlet p,
:root[data-theme="light"] .products-enterprise__connection-card p,
:root[data-theme="light"] .products-enterprise__tech-card p,
:root[data-theme="light"] .products-enterprise__process-card p,
:root[data-theme="light"] .products-enterprise__insight-card p,
:root[data-theme="light"] .products-enterprise__related-copy p,
:root[data-theme="light"] .products-enterprise__detail-empty p,
:root[data-theme="light"] .products-enterprise__metric-label,
:root[data-theme="light"] .products-enterprise__metric-note,
:root[data-theme="light"] .products-enterprise__card-meta,
:root[data-theme="light"] .products-enterprise__detail-meta,
:root[data-theme="light"] .products-enterprise__detail-visualCopy span {
  color: var(--text-secondary);
}

:root[data-theme="light"] .products-project-media__frame,
:root[data-theme="light"] .products-project-media__panel,
:root[data-theme="light"] .products-project-media__cloud,
:root[data-theme="light"] .products-project-media__node,
:root[data-theme="light"] .products-project-media__loop,
:root[data-theme="light"] .products-project-media__shield {
  fill: rgba(17, 17, 17, 0.04);
  stroke: rgba(17, 17, 17, 0.14);
}

:root[data-theme="light"] .products-project-media__line,
:root[data-theme="light"] .products-project-media__path {
  stroke: rgba(74, 141, 255, 0.78);
}

:root[data-theme="light"] .products-project-media__arc {
  stroke: rgba(45, 212, 200, 0.76);
}

:root[data-theme="light"] .products-project-media__overlay,
:root[data-theme="light"] .products-project-media__overlay--fallback {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.08), transparent 22%);
}
.contact-hero {
  padding: clamp(132px, 14vw, 176px) 20px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(239, 91, 42, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.contact-hero h1 {
  max-width: 980px;
  margin: 18px auto 18px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.86;
}

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 124px;
  }

  .contact-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }
}
.contact-info {
  padding: 0 20px 92px;
}

.info-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  text-align: left;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 110%),
    var(--surface-secondary);
  box-shadow: var(--shadow-card);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: var(--gradient-panel);
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

@media (max-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.office-location {
  padding: 0 20px 96px;
}

.map-box {
  max-width: var(--container-width);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background: var(--surface-secondary);
  box-shadow: var(--shadow-card);
}

.map-box iframe {
  width: 100%;
  height: min(62vw, 520px);
  border: 0;
  display: block;
}
.contact-cta {
  padding: 0 20px 96px;
}

.contact-cta .about-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 28px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 110%),
    var(--surface-secondary);
  box-shadow: var(--shadow-elevated);
}

.contact-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-cta .btn-primary {
  min-height: 48px;
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 0 16px 76px;
  }

  .contact-cta .about-container {
    padding: 28px 20px;
  }

  .contact-cta .btn-primary {
    width: 100%;
  }
}
.contact-enterprise {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.1), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.contact-enterprise__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-enterprise__background-grid,
.contact-enterprise__background-glow,
.contact-enterprise__background-noise,
.contact-enterprise__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-enterprise__background-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

.contact-enterprise__background-glow {
  background:
    radial-gradient(circle at var(--contact-pointer-x, 64%) var(--contact-pointer-y, 18%), rgba(74, 141, 255, 0.14), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(239, 91, 42, 0.08), transparent 16%),
    radial-gradient(circle at 84% 10%, rgba(45, 212, 200, 0.08), transparent 18%);
}

.contact-enterprise__background-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.contact-enterprise__background-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 58%;
}

.contact-enterprise__line {
  fill: none;
  stroke: url(#contact-network-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.82;
}

.contact-enterprise__line--2 {
  opacity: 0.48;
  stroke-width: 1.5;
}

.contact-enterprise__line--3 {
  opacity: 0.36;
  stroke-width: 1.4;
}

.contact-enterprise__shell {
  width: min(1480px, calc(100% - clamp(40px, 4vw, 64px)));
  margin-inline: auto;
}

.contact-hero,
.contact-options,
.contact-form-section,
.contact-info,
.office-location,
.contact-faq,
.contact-cta {
  position: relative;
  z-index: 1;
}

.contact-hero {
  padding: clamp(140px, 16vw, 186px) 0 clamp(84px, 9vw, 118px);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.contact-hero__copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.contact-hero__copy h1 {
  max-width: 11ch;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.contact-hero__copy p {
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-hero__signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hero__signal span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero__visual {
  min-width: 0;
}

.contact-hero__panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(74, 141, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.contact-hero__architecture {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-primary);
  overflow: hidden;
}

.contact-hero__architecture svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.contact-hero__node {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
}

.contact-hero__node strong {
  font-size: 0.92rem;
}

.contact-hero__node span {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.8rem;
}

.contact-options {
  padding: 0 0 clamp(88px, 10vw, 132px);
}

.contact-options__header,
.contact-faq__intro {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-bottom: 28px;
}

.contact-options__header h2,
.contact-info .section-header h2,
.office-location h2,
.contact-faq__intro h2,
.contact-cta h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 700;
}

.contact-options__header h2 {
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  max-width: 13ch;
}

.contact-options__header p,
.contact-faq__intro p {
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: clamp(1rem, 1.12vw, 1.14rem);
}

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

.contact-options__card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%),
    var(--surface-secondary);
  box-shadow: var(--shadow-card);
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-options__card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 91, 42, 0.28);
  box-shadow: var(--shadow-elevated);
}

.contact-options__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: var(--gradient-panel);
  color: var(--accent-primary);
}

.contact-options__copy {
  display: grid;
  gap: 8px;
}

.contact-options__eyebrow {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-options__copy p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-options__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-primary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-form-section {
  padding: 0 0 clamp(88px, 10vw, 128px);
}

.contact-form-shell {
  display: grid;
  gap: 28px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-form-panel,
.contact-form-aside {
  min-width: 0;
}

.contact-form {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.contact-form__field,
.contact-form__field--full {
  position: relative;
  display: grid;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  min-height: 58px;
  padding: 22px 18px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.88);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form__field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form__field label {
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--text-tertiary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition:
    transform 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.contact-form__field input:focus + label,
.contact-form__field input:not(:placeholder-shown) + label,
.contact-form__field select:focus + label,
.contact-form__field select[data-has-value="true"] + label,
.contact-form__field textarea:focus + label,
.contact-form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-4px) scale(0.88);
  color: var(--accent-primary);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: transparent;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(74, 141, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.12);
  transform: translateY(-1px);
}

.contact-form__error {
  margin-top: 8px;
  color: #fca5a5;
  font-size: 0.84rem;
}

.contact-form__helper {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.contact-form__counter strong {
  color: var(--text-primary);
}

.contact-form__status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.contact-form__status--success {
  border-color: rgba(45, 212, 200, 0.22);
  background: rgba(45, 212, 200, 0.08);
  color: var(--text-primary);
}

.contact-form__status--error {
  border-color: rgba(239, 91, 42, 0.24);
  background: rgba(239, 91, 42, 0.08);
  color: var(--text-primary);
}

.contact-form__submit {
  grid-column: 1 / -1;
  min-height: 56px;
}

.contact-form__aside {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-card);
}

.contact-form__aside h3 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-form__aside p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.contact-form__aside-list {
  display: grid;
  gap: 12px;
}

.contact-form__aside-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-primary);
}

.contact-form__aside-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-form__aside-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient-panel);
  border: 1px solid rgba(239, 91, 42, 0.18);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-form__aside-copy {
  display: grid;
  gap: 4px;
}

.contact-form__aside-copy span {
  color: var(--text-tertiary);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-form__aside-copy strong,
.contact-form__aside-copy a {
  color: var(--text-primary);
  line-height: 1.55;
  word-break: break-word;
}

.contact-info {
  padding: 0 0 clamp(88px, 10vw, 128px);
}

.contact-info .section-header {
  max-width: 940px;
  margin-bottom: 24px;
}

.contact-info .section-header h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  max-width: 13ch;
}

.contact-info .section-header p {
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.contact-info__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-info__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
  color: var(--text-secondary);
}

.contact-info__social svg {
  color: var(--accent-primary);
}

.contact-info__value {
  color: var(--text-primary);
  line-height: 1.55;
  word-break: break-word;
}

.info-grid {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 190px;
}

.office-location {
  padding: 0 0 clamp(88px, 10vw, 128px);
}

.office-location__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.office-location__map-box {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border-primary);
  background: var(--surface-secondary);
  box-shadow: var(--shadow-card);
}

.office-location__map-box iframe {
  width: 100%;
  height: min(66vw, 540px);
  border: 0;
  display: block;
}

.office-location__panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(74, 141, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.office-location__panel h3 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.office-location__panel p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.office-location__panel a {
  justify-self: start;
}

.contact-faq {
  padding: 0 0 clamp(88px, 10vw, 132px);
}

.contact-faq__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.contact-faq__intro {
  position: sticky;
  top: 118px;
}

.contact-faq__intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  max-width: 12ch;
}

.contact-faq__grid {
  display: grid;
  gap: 14px;
}

.contact-faq__card {
  border-radius: 24px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 120%),
    var(--surface-secondary);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contact-faq__trigger {
  width: 100%;
  padding: 22px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-faq__question {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-faq__index {
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-faq__trigger h3 {
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-faq__chevron {
  color: var(--accent-primary);
  transition: transform 220ms ease;
}

.contact-faq__card.is-open .contact-faq__chevron {
  transform: rotate(180deg);
}

.contact-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease, opacity 220ms ease;
  opacity: 0;
}

.contact-faq__answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.contact-faq__answer p {
  overflow: hidden;
  padding: 0 22px 22px;
  color: var(--text-secondary);
  line-height: 1.78;
}

.contact-cta {
  padding: 0 0 clamp(100px, 12vw, 156px);
}

.contact-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 36px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(74, 141, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.contact-cta__copy {
  display: grid;
  gap: 16px;
}

.contact-cta__copy h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.contact-cta__copy p {
  max-width: 760px;
  color: var(--text-secondary);
  line-height: 1.76;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-cta__visual {
  display: grid;
  gap: 12px;
}

.contact-cta__diagram {
  min-height: 250px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background: var(--surface-primary);
}

.contact-cta__diagram svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-cta__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-cta__legend span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:root[data-theme="light"] .contact-enterprise {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.06), transparent 26%),
    radial-gradient(circle at top right, rgba(74, 141, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .contact-hero__panel,
:root[data-theme="light"] .contact-options__card,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .contact-form__aside,
:root[data-theme="light"] .contact-faq__card,
:root[data-theme="light"] .contact-cta__shell,
:root[data-theme="light"] .office-location__panel,
:root[data-theme="light"] .office-location__map-box,
:root[data-theme="light"] .info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 235, 0.98));
}

:root[data-theme="light"] .contact-options__card,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .contact-form__aside,
:root[data-theme="light"] .contact-faq__card,
:root[data-theme="light"] .contact-cta__shell,
:root[data-theme="light"] .office-location__panel,
:root[data-theme="light"] .info-card {
  border-color: rgba(20, 28, 48, 0.12);
}

:root[data-theme="light"] .contact-hero__copy p,
:root[data-theme="light"] .contact-options__header p,
:root[data-theme="light"] .contact-info .section-header p,
:root[data-theme="light"] .contact-faq__intro p,
:root[data-theme="light"] .contact-cta__copy p,
:root[data-theme="light"] .office-location__panel p,
:root[data-theme="light"] .contact-form__aside p,
:root[data-theme="light"] .info-card p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .contact-form__field input,
:root[data-theme="light"] .contact-form__field select,
:root[data-theme="light"] .contact-form__field textarea {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 28, 48, 0.1);
  color: var(--text-primary);
}

@media (max-width: 1280px) {
  .contact-hero__grid,
  .contact-form-layout,
  .office-location__layout,
  .contact-cta__shell,
  .contact-faq__shell {
    grid-template-columns: 1fr;
  }

  .contact-faq__intro {
    position: static;
    top: auto;
  }
}

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

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 124px;
  }

  .contact-enterprise__shell {
    width: min(100% - 32px, 1480px);
  }

  .contact-options__grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-form__helper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta__shell {
    padding: 24px;
  }
}

@media (max-width: 540px) {
  .contact-hero__copy h1,
  .contact-options__header h2,
  .contact-cta__copy h2,
  .contact-info .section-header h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    min-height: 56px;
  }

  .contact-options__card {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-enterprise__line {
    animation: none !important;
    transition: none !important;
  }
}
.industry-page {
  display: grid;
  gap: 0;
}

.industry-hero,
.industry-section,
.industry-cta {
  padding: 96px 20px;
}

.industry-hero {
  padding-top: 148px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(6, 182, 212, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0));
}

.industry-hero h1 {
  max-width: 980px;
  margin: 20px auto 16px;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.industry-hero p,
.industry-section .section-header p,
.industry-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.84;
}

.industry-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.industry-hero-stats .glass-card,
.industry-card,
.industry-feature-card,
.industry-cta .about-container {
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 33, 58, 0.96), rgba(15, 23, 42, 0.94));
  box-shadow: var(--shadow-card);
}

.industry-hero-stats .glass-card {
  padding: 24px;
  text-align: center;
}

.industry-hero-stats strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.industry-hero-stats span {
  color: var(--text-secondary);
}

.industry-grid,
.industry-feature-grid {
  display: grid;
  gap: 20px;
}

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

.industry-card,
.industry-feature-card {
  padding: 26px;
}

.industry-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.industry-card h3,
.industry-feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.industry-card p,
.industry-feature-card p {
  color: var(--text-secondary);
  line-height: 1.78;
}

.industry-card-outcome {
  color: var(--text-primary) !important;
  margin-top: 10px;
}

.industry-related {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

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

.industry-feature-media {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.industry-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-cta .about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px;
  text-align: center;
}

.industry-cta .btn-primary {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .industry-grid,
  .industry-feature-grid,
  .industry-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .industry-grid,
  .industry-feature-grid,
  .industry-hero-stats {
    grid-template-columns: 1fr;
  }
}
.legal-enterprise {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(74, 141, 255, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.legal-enterprise__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.legal-enterprise__network {
  position: absolute;
  inset: -8% -6% auto;
  width: 112%;
  height: 56%;
  opacity: 0.88;
}

.legal-enterprise__line {
  fill: none;
  stroke: url(#legal-network-gradient);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  opacity: 0.82;
}

.legal-enterprise__line--soft {
  opacity: 0.48;
  stroke-width: 1.6;
}

.legal-enterprise__line--vertical {
  opacity: 0.36;
  stroke-width: 1.5;
}

.legal-enterprise__node {
  filter: drop-shadow(0 0 14px rgba(74, 141, 255, 0.18));
  transform-origin: center;
}

.legal-enterprise__node--primary {
  filter: drop-shadow(0 0 24px rgba(239, 91, 42, 0.28));
}

.legal-enterprise__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.34;
}

.legal-enterprise__glow,
.legal-enterprise__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.legal-enterprise__glow {
  background:
    radial-gradient(circle at var(--legal-pointer-x, 68%) var(--legal-pointer-y, 18%), rgba(74, 141, 255, 0.12), transparent 28%),
    radial-gradient(circle at 22% 20%, rgba(239, 91, 42, 0.08), transparent 18%);
}

.legal-enterprise__spotlight {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.28) 70%, rgba(7, 11, 20, 0.48));
}

.legal-enterprise__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.legal-enterprise__shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - clamp(40px, 4vw, 64px)));
  margin-inline: auto;
  padding-block: clamp(108px, 12vw, 172px);
}

.legal-enterprise__hero {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.legal-enterprise__hero h1,
.legal-enterprise__aside h2,
.legal-enterprise__section h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 700;
}

.legal-enterprise__hero h1 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 4.9vw, 5.4rem);
}

.legal-enterprise__hero p {
  max-width: 740px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.legal-enterprise__hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding-top: 8px;
  color: var(--text-secondary);
}

.legal-enterprise__updated,
.legal-enterprise__security {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-enterprise__hero-meta strong {
  color: var(--text-primary);
  font-weight: 700;
}

.legal-enterprise__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}

.legal-enterprise__content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.legal-enterprise__section {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 120%),
    var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.legal-enterprise__section h2 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.legal-enterprise__body {
  display: grid;
  gap: 14px;
  color: var(--text-secondary);
  line-height: 1.76;
}

.legal-enterprise__body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-enterprise__body li::marker {
  color: var(--accent-primary);
}

.legal-enterprise__section--contact {
  border-color: rgba(239, 91, 42, 0.22);
}

.legal-enterprise__inline-link {
  justify-self: start;
}

.legal-enterprise__aside {
  position: sticky;
  top: calc(var(--navbar-height) + 20px);
  min-width: 0;
}

.legal-enterprise__aside-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(74, 141, 255, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(239, 91, 42, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.legal-enterprise__aside-label {
  color: var(--accent-primary);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.legal-enterprise__aside-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.legal-enterprise__aside-card p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.legal-enterprise__contact-list {
  display: grid;
  gap: 12px;
}

.legal-enterprise__contact-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--border-primary);
}

.legal-enterprise__contact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-enterprise__contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-primary);
  border: 1px solid rgba(239, 91, 42, 0.18);
  background: var(--gradient-panel);
}

.legal-enterprise__contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.legal-enterprise__contact-copy span {
  color: var(--text-tertiary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-enterprise__contact-copy a,
.legal-enterprise__contact-copy strong {
  color: var(--text-primary);
  line-height: 1.55;
  word-break: break-word;
}

.legal-enterprise__cta {
  justify-self: start;
  margin-top: 4px;
}

:root[data-theme="light"] .legal-enterprise {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.06), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(74, 141, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .legal-enterprise__section,
:root[data-theme="light"] .legal-enterprise__aside-card,
:root[data-theme="light"] .legal-enterprise__updated,
:root[data-theme="light"] .legal-enterprise__security {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 235, 0.98));
}

:root[data-theme="light"] .legal-enterprise__grid {
  opacity: 0.22;
}

:root[data-theme="light"] .legal-enterprise__body,
:root[data-theme="light"] .legal-enterprise__hero p,
:root[data-theme="light"] .legal-enterprise__aside-card p {
  color: var(--text-secondary);
}

@media (max-width: 1180px) {
  .legal-enterprise__layout {
    grid-template-columns: 1fr;
  }

  .legal-enterprise__aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .legal-enterprise__shell {
    width: min(100% - 32px, 1480px);
    padding-block: 96px;
  }

  .legal-enterprise__section,
  .legal-enterprise__aside-card {
    padding: 22px;
  }

  .legal-enterprise__hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .legal-enterprise__hero-meta {
    gap: 10px;
  }
}

@media (max-width: 540px) {
  .legal-enterprise__hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-enterprise__updated,
  .legal-enterprise__security {
    min-height: 32px;
  }

  .legal-enterprise__section {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-enterprise__line,
  .legal-enterprise__node {
    animation: none !important;
    transition: none !important;
  }
}

.portfolio-enterprise {
  position: relative;
  overflow-x: clip;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.portfolio-enterprise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
}

.portfolio-enterprise__shell {
  width: min(var(--container-width), calc(100% - clamp(40px, 6vw, 128px)));
  margin-inline: auto;
  position: relative;
}

.portfolio-enterprise__hero,
.portfolio-enterprise__filters,
.portfolio-enterprise__feature,
.portfolio-enterprise__collection,
.portfolio-enterprise__proofs,
.portfolio-enterprise__connections,
.portfolio-enterprise__technology,
.portfolio-enterprise__process,
.portfolio-enterprise__cta,
.portfolio-enterprise__detail-hero,
.portfolio-enterprise__detail-insight,
.portfolio-enterprise__detail-scope,
.portfolio-enterprise__detail-metrics,
.portfolio-enterprise__detail-services,
.portfolio-enterprise__detail-related,
.portfolio-enterprise__detail-cta {
  position: relative;
  padding-block: clamp(88px, 10vw, 160px);
}

.portfolio-enterprise__hero {
  padding-top: clamp(150px, 16vw, 200px);
}

.portfolio-enterprise__hero-grid,
.portfolio-enterprise__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.portfolio-enterprise__hero-copy,
.portfolio-enterprise__detail-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.portfolio-enterprise__eyebrow {
  align-self: flex-start;
}

.portfolio-enterprise__hero-copy h1,
.portfolio-enterprise__section-head h2,
.portfolio-enterprise__feature-copy h3,
.portfolio-enterprise__detail-copy h1,
.portfolio-enterprise__cta-copy h2,
.portfolio-enterprise__detail-empty h1 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 700;
}

.portfolio-enterprise__hero-copy h1,
.portfolio-enterprise__detail-copy h1,
.portfolio-enterprise__cta-copy h2,
.portfolio-enterprise__detail-empty h1 {
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  max-width: 13ch;
}

.portfolio-enterprise__section-head h2,
.portfolio-enterprise__feature-copy h3 {
  font-size: clamp(2rem, 3vw, 3.8rem);
  max-width: 16ch;
}

.portfolio-enterprise__hero-copy p,
.portfolio-enterprise__section-head p,
.portfolio-enterprise__feature-summary,
.portfolio-enterprise__detail-summary,
.portfolio-enterprise__cta-copy p,
.portfolio-enterprise__detail-empty p,
.portfolio-enterprise__insight-card p,
.portfolio-enterprise__connection-card p,
.portfolio-enterprise__process-card p,
.portfolio-enterprise__tech-card p,
.portfolio-enterprise__project-card p,
.portfolio-enterprise__scope-list,
.portfolio-enterprise__feature-cardlet p,
.portfolio-enterprise__feature-cardlet li {
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.portfolio-enterprise__hero-actions,
.portfolio-enterprise__detail-actions,
.portfolio-enterprise__empty-actions,
.portfolio-enterprise__feature-actions,
.portfolio-enterprise__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.portfolio-enterprise__hero-metrics,
.portfolio-enterprise__proof-grid,
.portfolio-enterprise__metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-enterprise__proof-card,
.portfolio-enterprise__feature-cardlet,
.portfolio-enterprise__insight-card,
.portfolio-enterprise__connection-card,
.portfolio-enterprise__process-card,
.portfolio-enterprise__tech-card,
.portfolio-enterprise__metric-card,
.portfolio-enterprise__scope-card,
.portfolio-enterprise__empty-card,
.portfolio-enterprise__detail-empty,
.portfolio-enterprise__detail-skeleton {
  border: 1px solid var(--border-primary);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.portfolio-enterprise__proof-card {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
}

.portfolio-enterprise__proof-note,
.portfolio-enterprise__project-index,
.portfolio-enterprise__project-pill,
.portfolio-enterprise__connection-label,
.portfolio-enterprise__feature-pill,
.portfolio-enterprise__process-number,
.portfolio-enterprise__tech-count,
.portfolio-enterprise__metric-pill strong,
.portfolio-enterprise__detail-meta span,
.portfolio-enterprise__breadcrumb a,
.portfolio-enterprise__breadcrumb span {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.portfolio-enterprise__proof-note,
.portfolio-enterprise__connection-label,
.portfolio-enterprise__feature-pill,
.portfolio-enterprise__project-pill,
.portfolio-enterprise__process-number,
.portfolio-enterprise__tech-count {
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.portfolio-enterprise__proof-value {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.portfolio-enterprise__proof-label {
  color: var(--text-secondary);
}

.portfolio-enterprise__hero-visual,
.portfolio-enterprise__detail-visual {
  min-width: 0;
}

.portfolio-visual,
.portfolio-enterprise__detail-visual {
  position: relative;
}

.portfolio-visual {
  display: grid;
  gap: 18px;
}

.portfolio-visual__frame,
.portfolio-enterprise__feature-media,
.portfolio-enterprise__detail-media,
.portfolio-enterprise__related-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-elevated);
}

.portfolio-visual__frame {
  min-height: 180px;
}

.portfolio-visual__frame--lead {
  min-height: 420px;
}

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

.portfolio-visual__frame--secondary,
.portfolio-visual__frame--tertiary {
  min-height: 190px;
}

.portfolio-visual__frame img,
.portfolio-enterprise__project-media img,
.portfolio-enterprise__feature-media img,
.portfolio-enterprise__detail-media img,
.portfolio-enterprise__related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-project-media {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.portfolio-project-media__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.portfolio-project-media__overlay--fallback {
  opacity: 0.65;
}

.portfolio-project-media__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-project-media__frame,
.portfolio-project-media__panel,
.portfolio-project-media__line,
.portfolio-project-media__arc,
.portfolio-project-media__path,
.portfolio-project-media__cloud,
.portfolio-project-media__node,
.portfolio-project-media__loop,
.portfolio-project-media__shield {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-project-media__frame,
.portfolio-project-media__panel,
.portfolio-project-media__cloud,
.portfolio-project-media__node,
.portfolio-project-media__loop,
.portfolio-project-media__shield {
  stroke: var(--accent-secondary);
}

.portfolio-project-media__line,
.portfolio-project-media__arc,
.portfolio-project-media__path {
  stroke: rgba(255, 255, 255, 0.55);
}

.portfolio-project-media__caption {
  fill: var(--text-primary);
  font-size: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.portfolio-project-media__overlay,
.portfolio-project-media__overlay--fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portfolio-visual__caption,
.portfolio-enterprise__detail-visualCopy {
  display: grid;
  gap: 6px;
  padding: 16px 18px 0;
  color: var(--text-primary);
}

.portfolio-visual__caption strong,
.portfolio-enterprise__detail-visualCopy strong {
  font-size: 1.1rem;
}

.portfolio-visual__caption span,
.portfolio-enterprise__detail-visualCopy span {
  color: var(--text-secondary);
  line-height: 1.5;
}

.portfolio-visual__caption--compact {
  padding-top: 14px;
}

.portfolio-visual__data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 0;
}

.portfolio-visual__signal {
  display: grid;
  gap: 10px;
}

.portfolio-visual__signal-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
}

.portfolio-visual__chips,
.portfolio-enterprise__chips,
.portfolio-enterprise__project-tags,
.portfolio-enterprise__feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-visual__chip,
.portfolio-enterprise__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.88rem;
  line-height: 1;
}

.portfolio-visual__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

.portfolio-enterprise__hero-visual .portfolio-visual__frame--lead {
  min-height: 460px;
}

.portfolio-enterprise__section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.portfolio-enterprise__section-head--compact {
  max-width: 900px;
}

.portfolio-enterprise__filters .portfolio-enterprise__section-head {
  max-width: 900px;
}

.portfolio-enterprise__filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr) auto;
  gap: 16px;
  align-items: center;
}

.portfolio-enterprise__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-enterprise__search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  outline: none;
}

.portfolio-enterprise__search input::placeholder {
  color: var(--text-tertiary);
}

.portfolio-enterprise__chips {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.portfolio-enterprise__chips::-webkit-scrollbar {
  display: none;
}

.portfolio-enterprise__chipButton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  font: inherit;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.portfolio-enterprise__chipButton strong {
  color: var(--text-primary);
}

.portfolio-enterprise__chipButton.is-active,
.portfolio-enterprise__chipButton:hover,
.portfolio-enterprise__chipButton:focus-visible {
  color: var(--text-primary);
  border-color: rgba(239, 91, 42, 0.42);
  background: rgba(239, 91, 42, 0.1);
  transform: translateY(-1px);
}

.portfolio-enterprise__filter-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--text-secondary);
}

.portfolio-enterprise__clear {
  border: 0;
  background: transparent;
  color: var(--accent-primary);
  padding: 0;
  font: inherit;
}

.portfolio-enterprise__loading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 18px;
}

.portfolio-enterprise__skeleton {
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 37%, rgba(255, 255, 255, 0.03) 63%) 0 0 / 400% 100%,
    var(--surface-primary);
  animation: portfolio-shimmer 1.6s ease-in-out infinite;
}

.portfolio-enterprise__skeleton--hero {
  min-height: 420px;
}

.portfolio-enterprise__skeleton--copy {
  min-height: 320px;
}

.portfolio-enterprise__skeleton--card {
  min-height: 240px;
}

@keyframes portfolio-shimmer {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.portfolio-enterprise__feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.portfolio-enterprise__feature-media {
  min-height: 540px;
}

.portfolio-enterprise__feature-image {
  min-height: 100%;
}

.portfolio-enterprise__feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.34)),
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.18), transparent 28%);
  pointer-events: none;
}

.portfolio-enterprise__feature-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 10px 10px 10px 4px;
}

.portfolio-enterprise__feature-topline,
.portfolio-enterprise__detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-enterprise__feature-index,
.portfolio-enterprise__detail-meta span,
.portfolio-enterprise__project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.76rem;
}

.portfolio-enterprise__feature-summary {
  max-width: 68ch;
}

.portfolio-enterprise__feature-grid,
.portfolio-enterprise__insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-enterprise__feature-cardlet,
.portfolio-enterprise__insight-card {
  padding: 20px;
}

.portfolio-enterprise__feature-cardlet span,
.portfolio-enterprise__insight-card span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.portfolio-enterprise__feature-cardlet ul,
.portfolio-enterprise__scope-list {
  margin: 0;
  padding-left: 18px;
}

.portfolio-enterprise__feature-cardlet li {
  margin-bottom: 6px;
}

.portfolio-enterprise__feature-metrics,
.portfolio-enterprise__metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.portfolio-enterprise__metric-pill {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-enterprise__metric-pill strong,
.portfolio-enterprise__metric-card strong {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.portfolio-enterprise__metric-pill span,
.portfolio-enterprise__metric-card span {
  color: var(--text-secondary);
  line-height: 1.4;
}

.portfolio-enterprise__grid,
.portfolio-enterprise__related-grid,
.portfolio-enterprise__connection-grid,
.portfolio-enterprise__tech-grid,
.portfolio-enterprise__process-grid {
  display: grid;
  gap: 18px;
}

.portfolio-enterprise__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.portfolio-enterprise__project-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  min-width: 0;
}

.portfolio-enterprise__project-card--lead {
  grid-column: span 7;
  grid-row: span 2;
}

.portfolio-enterprise__project-card--tall {
  grid-column: span 5;
  grid-row: span 2;
}

.portfolio-enterprise__project-card--wide {
  grid-column: span 8;
}

.portfolio-enterprise__project-card--compact {
  grid-column: span 4;
}

.portfolio-enterprise__project-card--stacked {
  grid-column: span 4;
  grid-row: span 2;
}

.portfolio-enterprise__project-mediaLink {
  position: relative;
  display: block;
  min-height: 280px;
}

.portfolio-enterprise__project-media {
  min-height: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.portfolio-enterprise__project-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.portfolio-enterprise__project-topline,
.portfolio-enterprise__project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.portfolio-enterprise__project-index {
  color: var(--text-tertiary);
}

.portfolio-enterprise__project-pill {
  color: var(--text-secondary);
}

.portfolio-enterprise__project-body h3 {
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.portfolio-enterprise__project-body h3 a,
.portfolio-enterprise__related-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio-enterprise__project-body h3 a:hover,
.portfolio-enterprise__project-body h3 a:focus-visible,
.portfolio-enterprise__related-copy h3 a:hover,
.portfolio-enterprise__related-copy h3 a:focus-visible {
  color: var(--accent-primary);
}

.portfolio-enterprise__project-link,
.portfolio-visual__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.portfolio-enterprise__project-link {
  margin-top: 2px;
}

.portfolio-enterprise__project-card:hover .portfolio-enterprise__project-media img,
.portfolio-enterprise__project-card:focus-within .portfolio-enterprise__project-media img,
.portfolio-enterprise__related-card:hover .portfolio-enterprise__related-media img,
.portfolio-enterprise__related-card:focus-within .portfolio-enterprise__related-media img,
.portfolio-enterprise__feature-card:hover .portfolio-enterprise__feature-media img,
.portfolio-enterprise__feature-card:focus-within .portfolio-enterprise__feature-media img {
  transform: scale(1.03);
}

.portfolio-enterprise__project-media img,
.portfolio-enterprise__feature-media img,
.portfolio-enterprise__related-media img {
  transition: transform 240ms ease;
}

.portfolio-enterprise__empty-card {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-inline: auto;
  padding: 28px;
}

.portfolio-enterprise__empty-card--inline {
  max-width: 600px;
}

.portfolio-enterprise__empty-actions {
  margin-top: 4px;
}

.portfolio-enterprise__connection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-enterprise__connection-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portfolio-enterprise__connection-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.portfolio-enterprise__tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-enterprise__tech-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.portfolio-enterprise__tech-count {
  color: var(--accent-primary);
}

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

.portfolio-enterprise__process-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.portfolio-enterprise__process-card h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.portfolio-enterprise__cta-shell,
.portfolio-enterprise__scope-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-elevated);
}

.portfolio-enterprise__scope-card {
  align-items: start;
}

.portfolio-enterprise__scope-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

.portfolio-enterprise__scope-list li {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.portfolio-enterprise__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.portfolio-enterprise__breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.portfolio-enterprise__breadcrumb a:hover,
.portfolio-enterprise__breadcrumb a:focus-visible {
  color: var(--accent-primary);
}

.portfolio-enterprise__detail-summary {
  max-width: 64ch;
}

.portfolio-enterprise__detail-visual {
  display: grid;
  gap: 16px;
}

.portfolio-enterprise__detail-media {
  min-height: 480px;
}

.portfolio-enterprise__detail-skeleton {
  min-height: 520px;
}

.portfolio-enterprise__detail-empty {
  display: grid;
  gap: 16px;
  max-width: 780px;
  padding: 32px;
}

.portfolio-enterprise__detail-empty .section-badge {
  align-self: flex-start;
}

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

.portfolio-enterprise__related-card {
  overflow: hidden;
  border: 1px solid var(--border-primary);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    var(--surface-primary);
  box-shadow: var(--shadow-card);
}

.portfolio-enterprise__related-mediaLink {
  display: block;
}

.portfolio-enterprise__related-media {
  min-height: 220px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.portfolio-enterprise__related-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.portfolio-enterprise__related-copy h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

.portfolio-enterprise__related-copy p {
  color: var(--text-secondary);
}

.portfolio-enterprise__detail-hero--loading,
.portfolio-enterprise__detail-hero--error,
.portfolio-enterprise__detail-hero--missing {
  padding-top: clamp(150px, 16vw, 200px);
}

/* Light theme */
:root[data-theme="light"] .portfolio-enterprise {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .portfolio-enterprise__proof-card,
:root[data-theme="light"] .portfolio-enterprise__feature-cardlet,
:root[data-theme="light"] .portfolio-enterprise__insight-card,
:root[data-theme="light"] .portfolio-enterprise__connection-card,
:root[data-theme="light"] .portfolio-enterprise__process-card,
:root[data-theme="light"] .portfolio-enterprise__tech-card,
:root[data-theme="light"] .portfolio-enterprise__metric-card,
:root[data-theme="light"] .portfolio-enterprise__scope-card,
:root[data-theme="light"] .portfolio-enterprise__empty-card,
:root[data-theme="light"] .portfolio-enterprise__detail-empty,
:root[data-theme="light"] .portfolio-enterprise__related-card,
:root[data-theme="light"] .portfolio-enterprise__feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--surface-light);
  border-color: rgba(17, 17, 17, 0.12);
}

:root[data-theme="light"] .portfolio-visual__frame,
:root[data-theme="light"] .portfolio-enterprise__feature-media,
:root[data-theme="light"] .portfolio-enterprise__detail-media,
:root[data-theme="light"] .portfolio-enterprise__related-media,
:root[data-theme="light"] .portfolio-enterprise__project-media,
:root[data-theme="light"] .portfolio-enterprise__project-card,
:root[data-theme="light"] .portfolio-enterprise__feature-card {
  border-color: rgba(17, 17, 17, 0.12);
}

:root[data-theme="light"] .portfolio-visual__chip,
:root[data-theme="light"] .portfolio-enterprise__chip,
:root[data-theme="light"] .portfolio-enterprise__chipButton,
:root[data-theme="light"] .portfolio-enterprise__feature-index,
:root[data-theme="light"] .portfolio-enterprise__detail-meta span,
:root[data-theme="light"] .portfolio-enterprise__project-meta span,
:root[data-theme="light"] .portfolio-enterprise__scope-list li {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.12);
}

:root[data-theme="light"] .portfolio-project-media__line,
:root[data-theme="light"] .portfolio-project-media__arc,
:root[data-theme="light"] .portfolio-project-media__path {
  stroke: rgba(17, 17, 17, 0.48);
}

:root[data-theme="light"] .portfolio-project-media__frame,
:root[data-theme="light"] .portfolio-project-media__panel,
:root[data-theme="light"] .portfolio-project-media__cloud,
:root[data-theme="light"] .portfolio-project-media__node,
:root[data-theme="light"] .portfolio-project-media__loop,
:root[data-theme="light"] .portfolio-project-media__shield {
  stroke: var(--accent-secondary);
}

:root[data-theme="light"] .portfolio-enterprise__hero-copy p,
:root[data-theme="light"] .portfolio-enterprise__section-head p,
:root[data-theme="light"] .portfolio-enterprise__feature-summary,
:root[data-theme="light"] .portfolio-enterprise__detail-summary,
:root[data-theme="light"] .portfolio-enterprise__cta-copy p,
:root[data-theme="light"] .portfolio-enterprise__detail-empty p,
:root[data-theme="light"] .portfolio-enterprise__insight-card p,
:root[data-theme="light"] .portfolio-enterprise__connection-card p,
:root[data-theme="light"] .portfolio-enterprise__process-card p,
:root[data-theme="light"] .portfolio-enterprise__tech-card p,
:root[data-theme="light"] .portfolio-enterprise__project-card p,
:root[data-theme="light"] .portfolio-enterprise__scope-list,
:root[data-theme="light"] .portfolio-enterprise__feature-cardlet p,
:root[data-theme="light"] .portfolio-enterprise__feature-cardlet li {
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1280px) {
  .portfolio-enterprise__hero-grid,
  .portfolio-enterprise__detail-grid,
  .portfolio-enterprise__feature-card,
  .portfolio-enterprise__cta-shell,
  .portfolio-enterprise__scope-card {
    grid-template-columns: 1fr;
  }

  .portfolio-enterprise__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .portfolio-enterprise__project-card--lead,
  .portfolio-enterprise__project-card--tall {
    grid-column: span 8;
  }

  .portfolio-enterprise__project-card--wide,
  .portfolio-enterprise__project-card--compact,
  .portfolio-enterprise__project-card--stacked {
    grid-column: span 4;
  }

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

  .portfolio-enterprise__tech-grid,
  .portfolio-enterprise__process-grid,
  .portfolio-enterprise__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-enterprise__filter-meta {
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .portfolio-enterprise__hero,
  .portfolio-enterprise__filters,
  .portfolio-enterprise__feature,
  .portfolio-enterprise__collection,
  .portfolio-enterprise__proofs,
  .portfolio-enterprise__connections,
  .portfolio-enterprise__technology,
  .portfolio-enterprise__process,
  .portfolio-enterprise__cta,
  .portfolio-enterprise__detail-hero,
  .portfolio-enterprise__detail-insight,
  .portfolio-enterprise__detail-scope,
  .portfolio-enterprise__detail-metrics,
  .portfolio-enterprise__detail-services,
  .portfolio-enterprise__detail-related,
  .portfolio-enterprise__detail-cta {
    padding-block: clamp(72px, 9vw, 118px);
  }

  .portfolio-enterprise__hero-grid,
  .portfolio-enterprise__detail-grid {
    gap: 28px;
  }

  .portfolio-enterprise__hero-metrics,
  .portfolio-enterprise__proof-grid,
  .portfolio-enterprise__metrics-grid,
  .portfolio-enterprise__feature-grid,
  .portfolio-enterprise__insight-grid,
  .portfolio-enterprise__connection-grid,
  .portfolio-enterprise__tech-grid,
  .portfolio-enterprise__process-grid,
  .portfolio-enterprise__related-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-enterprise__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-enterprise__project-card--lead,
  .portfolio-enterprise__project-card--tall,
  .portfolio-enterprise__project-card--wide,
  .portfolio-enterprise__project-card--compact,
  .portfolio-enterprise__project-card--stacked {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-enterprise__project-mediaLink,
  .portfolio-enterprise__feature-media,
  .portfolio-enterprise__detail-media,
  .portfolio-enterprise__related-media {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .portfolio-enterprise__shell {
    width: min(var(--container-width), calc(100% - 28px));
  }

  .portfolio-enterprise__hero-copy h1,
  .portfolio-enterprise__detail-copy h1,
  .portfolio-enterprise__cta-copy h2,
  .portfolio-enterprise__detail-empty h1 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .portfolio-enterprise__section-head h2,
  .portfolio-enterprise__feature-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .portfolio-enterprise__hero-actions,
  .portfolio-enterprise__detail-actions,
  .portfolio-enterprise__feature-actions,
  .portfolio-enterprise__cta-actions,
  .portfolio-enterprise__empty-actions {
    width: 100%;
  }

  .portfolio-enterprise__hero-actions > *,
  .portfolio-enterprise__detail-actions > *,
  .portfolio-enterprise__feature-actions > *,
  .portfolio-enterprise__cta-actions > *,
  .portfolio-enterprise__empty-actions > * {
    flex: 1 1 100%;
    min-height: 48px;
    justify-content: center;
  }

  .portfolio-enterprise__filter-row {
    gap: 14px;
  }

  .portfolio-enterprise__search {
    min-height: 52px;
  }

  .portfolio-enterprise__chips {
    padding-bottom: 2px;
  }

  .portfolio-enterprise__project-body,
  .portfolio-enterprise__feature-copy,
  .portfolio-enterprise__related-copy,
  .portfolio-enterprise__connection-card,
  .portfolio-enterprise__process-card,
  .portfolio-enterprise__tech-card,
  .portfolio-enterprise__insight-card,
  .portfolio-enterprise__metric-card,
  .portfolio-enterprise__feature-cardlet,
  .portfolio-enterprise__empty-card,
  .portfolio-enterprise__detail-empty {
    padding: 18px;
  }

  .portfolio-visual__stack {
    grid-template-columns: 1fr;
  }
}
.technology-page {
  display: grid;
  gap: 0;
}

.technology-hero,
.technology-section,
.technology-cta {
  padding: 96px 20px;
}

.technology-hero {
  padding-top: 148px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(6, 182, 212, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0));
}

.technology-hero h1 {
  max-width: 980px;
  margin: 20px auto 16px;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.technology-hero p,
.technology-section .section-header p,
.technology-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.84;
}

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

.technology-card,
.technology-stack-item,
.technology-cta .about-container {
  border: 1px solid var(--border-primary);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 33, 58, 0.96), rgba(15, 23, 42, 0.94));
  box-shadow: var(--shadow-card);
}

.technology-card {
  padding: 24px;
}

.technology-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.technology-card h3 {
  margin-bottom: 10px;
}

.technology-card p {
  color: var(--text-secondary);
  line-height: 1.72;
}

.technology-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.technology-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-weight: 700;
}

.technology-stack-list {
  display: grid;
  gap: 14px;
}

.technology-stack-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  align-items: start;
}

.technology-stack-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.technology-stack-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.technology-stack-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.72;
}

.technology-cta .about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px;
  text-align: center;
}

.technology-cta .btn-primary {
  margin-top: 18px;
}

@media (max-width: 1280px) {
  .technology-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 640px) {
  .technology-grid {
    grid-template-columns: 1fr;
  }
}
.auth-layout {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.08), transparent 28%),
    var(--bg-primary);
}

.auth-page {
  --auth-primary: #ef5b2a;
  --auth-secondary: #5595a5;
  --auth-background: transparent;
  --auth-surface: var(--surface-secondary);
  --auth-border: var(--border-primary);
  --auth-text: var(--text-primary);
  --auth-muted: var(--text-secondary);

  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px 20px 40px;
  color: var(--auth-text);
  background: transparent;
}

.auth-page,
.auth-page * {
  box-sizing: border-box;
}

.auth-decoration {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.18;
}

.auth-decoration-left {
  left: -170px;
  bottom: -80px;
  background: rgba(239, 91, 42, 0.85);
}

.auth-decoration-right {
  top: -120px;
  right: -160px;
  background: rgba(85, 149, 165, 0.9);
}

.auth-container {
  width: min(100%, 480px);
}

.auth-card {
  width: 100%;
  padding: 38px;
  border: 1px solid var(--auth-border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 120%),
    var(--auth-surface);
  box-shadow: var(--shadow-elevated);
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.auth-logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(239, 91, 42, 0.2);
  border-radius: 12px;
  color: var(--accent-primary);
  background: var(--gradient-panel);
  font-size: 20px;
}

.auth-logo > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.auth-logo strong {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.auth-logo span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
}

.auth-heading {
  margin-bottom: 28px;
}

.auth-heading h1 {
  margin: 0;
  color: var(--text-primary);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  background: none;
  -webkit-text-fill-color: initial;
}

.auth-heading p {
  margin: 8px 0 0;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.6;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.auth-role-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.auth-role-label {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-role-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--surface-soft);
}

.auth-role-btn {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  outline: none;
  color: var(--text-secondary);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.auth-role-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.auth-role-btn.active {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--gradient-panel);
  box-shadow: var(--shadow-card);
}

.auth-role-btn.active svg {
  color: var(--accent-primary);
}

.auth-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.auth-field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}

.auth-field-label svg {
  color: var(--text-tertiary);
  font-size: 13px;
}

.auth-input-wrapper {
  position: relative;
  width: 100%;
}

.auth-input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 16px;
  pointer-events: none;
}

.auth-input-wrapper input {
  width: 100%;
  height: 49px;
  margin: 0;
  padding: 0 46px 0 43px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  outline: none;
  color: var(--text-primary);
  background: var(--surface-soft);
  font: inherit;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-input-wrapper input::placeholder {
  color: var(--text-tertiary);
}

.auth-input-wrapper input:hover {
  border-color: var(--border-secondary);
}

.auth-input-wrapper input:focus {
  border-color: var(--border-strong);
  background: var(--surface-secondary);
  box-shadow: var(--shadow-focus);
}

.auth-input-wrapper input:focus + .auth-password-toggle {
  color: var(--accent-primary);
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  background: transparent;
  font-size: 16px;
  cursor: pointer;
}

.auth-password-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.auth-error {
  margin: -3px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 9px;
  color: var(--danger-text);
  background: var(--danger-bg);
  font-size: 12px;
  line-height: 1.5;
}

.auth-submit {
  width: 100%;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 3px 0 0;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-card);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.auth-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}

.auth-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.auth-submit svg {
  font-size: 16px;
}

.auth-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--border-primary);
  color: var(--text-secondary);
  font-size: 12px;
  text-align: center;
}

.auth-footer a {
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-copyright {
  margin: 17px 0 0;
  color: var(--text-tertiary);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .auth-page {
    min-height: calc(100dvh - 64px);
    align-items: flex-start;
    padding: 32px 14px 24px;
  }

  .auth-card {
    padding: 28px 21px;
    border-radius: 20px;
  }

  .auth-logo {
    margin-bottom: 25px;
  }

  .auth-heading {
    margin-bottom: 24px;
  }

  .auth-heading h1 {
    font-size: 27px;
  }

  .auth-input-wrapper input,
  .auth-submit {
    height: 48px;
  }
}

@media (max-width: 360px) {
  .auth-card {
    padding-inline: 16px;
  }

  .auth-role-btn {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-page * ,
  .auth-page *::before,
  .auth-page *::after {
    transition: none !important;
  }
}
.admin-dashboard {
  position: relative;
}

.admin-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 212, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(124, 58, 237, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(8, 12, 30, 0.08), transparent 30%);
  opacity: 0.75;
}

.admin-dashboard > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard__hero h2 {
  max-width: 780px;
}

.admin-dashboard__stat-card h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 6px 0;
}

.admin-dashboard__stat-card {
  min-height: 200px;
}

.admin-quick-link {
  display: grid;
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .admin-dashboard__stat-card {
    min-height: 0;
  }
}

.navbar-orbit-manager {
  gap: var(--spacing-2xl);
}

.navbar-orbit-manager__hero {
  position: relative;
  overflow: hidden;
}

.navbar-orbit-manager__hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -24% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.14),
    transparent 72%
  );
  pointer-events: none;
}

.navbar-orbit-manager__hero-title {
  align-items: flex-start;
}

.navbar-orbit-manager__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.navbar-orbit-manager__summary-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border-primary);
  background: rgba(8, 12, 30, 0.56);
}

.navbar-orbit-manager__summary-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.1);
}

.navbar-orbit-manager__feedback {
  margin-top: var(--spacing-lg);
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.navbar-orbit-manager__tabs {
  display: grid;
  gap: var(--spacing-md);
}

.navbar-orbit-manager__tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.navbar-orbit-manager__tab {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-primary);
  color: var(--text-secondary);
  background: rgba(6, 10, 28, 0.5);
}

.navbar-orbit-manager__tab.is-active {
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.34);
  background: rgba(0, 212, 255, 0.12);
}

.navbar-orbit-manager__form {
  gap: var(--spacing-lg);
}

.navbar-orbit-manager__icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  max-height: 280px;
  overflow: auto;
  padding-right: 4px;
}

.navbar-orbit-manager__icon-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border-primary);
  background: rgba(6, 10, 28, 0.72);
  color: var(--text-secondary);
}

.navbar-orbit-manager__icon-chip.is-active {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.12);
}

.navbar-orbit-manager__preview-meta {
  margin-top: var(--spacing-lg);
  display: grid;
  gap: 8px;
}

.orbit-preview-shell {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.orbit-preview-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.24);
  opacity: 0.8;
}

.orbit-preview-core,
.orbit-preview-trigger,
.orbit-preview-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-preview-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  color: var(--text-primary);
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(6, 10, 28, 0.82);
}

.orbit-preview-core span {
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.orbit-preview-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-primary);
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.12);
}

.orbit-preview-node {
  --node-x: 0px;
  --node-y: 0px;
  transform: translate(-50%, -50%) translate3d(var(--node-x), var(--node-y), 0);
}

.orbit-preview-node-inner {
  min-width: 82px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(6, 10, 28, 0.8);
  color: var(--text-primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.orbit-preview-node-inner small {
  font-size: 0.72rem;
}

.navbar-orbit-manager__table td,
.navbar-orbit-manager__table th {
  vertical-align: middle;
}

@media (max-width: 960px) {
  .navbar-orbit-manager__summary {
    grid-template-columns: 1fr;
  }

  .orbit-preview-shell {
    max-width: 320px;
  }
}

.account-page {
  width: 100%;
  padding: calc(var(--spacing-3xl) + 28px) var(--spacing-lg) var(--spacing-3xl);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.08), transparent 26%),
    var(--bg-primary);
}

.account-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  gap: var(--spacing-xl);
}

.account-hero,
.account-card {
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 110%),
    var(--surface-secondary);
  box-shadow: var(--shadow-card);
}

.account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  padding: var(--spacing-2xl);
}

.account-hero h1 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.account-hero p {
  max-width: 62ch;
  color: var(--text-secondary);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-button,
.account-button-secondary {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.account-button-secondary {
  border: 1px solid var(--border-primary);
  background: var(--surface-soft);
}

.account-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--spacing-xl);
}

.account-card {
  padding: var(--spacing-2xl);
}

.account-card h2,
.account-card h3 {
  margin-bottom: 10px;
}

.account-details {
  display: grid;
  gap: 14px;
}

.account-detail {
  padding: 14px 16px;
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  background: var(--surface-soft);
}

.account-detail-label {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.account-detail-value {
  margin-top: 4px;
  color: var(--text-primary);
  font-weight: 600;
  word-break: break-word;
}

.account-avatar-large {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid var(--border-primary);
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 100%),
    var(--surface-secondary);
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.account-avatar-large span {
  font-size: 4rem;
  font-weight: 800;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-field {
  display: grid;
  gap: 8px;
}

.account-field label {
  font-weight: 600;
  color: var(--text-primary);
}

.account-field input[type="text"],
.account-field input[type="email"],
.account-field input[type="file"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text-primary);
}

.account-field input[type="file"] {
  padding: 11px 14px;
}

.account-note {
  color: var(--text-tertiary);
  font-size: 0.88rem;
}

.account-note-spaced {
  margin-top: 14px;
}

.account-preview {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  overflow: hidden;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
}

.account-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-message {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
}

.account-message.error {
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #fecaca;
  background: rgba(153, 27, 27, 0.12);
}

.account-message.success {
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
  background: rgba(22, 101, 52, 0.14);
}

@media (max-width: 960px) {
  .account-hero,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .account-page {
    padding-inline: var(--spacing-md);
  }

  .account-hero,
  .account-card {
    padding: var(--spacing-lg);
  }

  .account-avatar-large {
    max-width: 100%;
  }
}


:root {
  --page-bg: #101010;
  --page-bg-alt: #171717;
  --surface-primary: #181818;
  --surface-secondary: #222222;
  --surface-elevated: #292929;
  --text-primary: #f5f3ee;
  --text-secondary: #b9b5ac;
  --text-muted: #8d8981;
  --text-inverse: #141414;
  --border-primary: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --accent-primary: #ef5b2a;
  --accent-secondary: #5ba6b7;
  --accent-soft: rgba(239, 91, 42, 0.14);
  --particle-primary: rgba(245, 243, 238, 0.65);
  --particle-secondary: rgba(239, 91, 42, 0.5);
  --font-display: "Syne", sans-serif;
  --font-editorial: "Instrument Serif", serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --bg-primary: var(--page-bg);
  --bg-secondary: var(--page-bg-alt);
  --bg-tertiary: var(--surface-secondary);
  --bg-hover: var(--surface-elevated);
  --surface-light: var(--surface-primary);
  --surface-muted: var(--surface-secondary);
  --surface-dark: var(--surface-secondary);
}

:root {
  color-scheme: dark;

  --bg-primary: #101010;
  --bg-secondary: #171717;
  --bg-tertiary: #202020;
  --bg-hover: #242424;

  --surface-light: #f1f0eb;
  --surface-muted: #d8d8d2;
  --surface-dark: #1d1d1d;
  --surface-panel: rgba(255, 255, 255, 0.035);
  --surface-elevated: rgba(255, 255, 255, 0.055);
  --surface-overlay: rgba(10, 10, 10, 0.78);
  --surface-input: rgba(255, 255, 255, 0.035);
  --surface-input-focus: rgba(255, 255, 255, 0.06);

  --surface-primary: rgba(255, 255, 255, 0.04);
  --surface-secondary: rgba(255, 255, 255, 0.055);
  --surface-tertiary: rgba(255, 255, 255, 0.07);
  --surface-soft: rgba(255, 255, 255, 0.06);

  --accent-primary: #ef5b2a;
  --accent-secondary: #5595a5;
  --accent-tertiary: #9a7d5f;
  --accent-quaternary: #c96e45;
  --theme-primary: #ef5b2a;
  --theme-secondary: #5595a5;
  --theme-primary-strong: #cf4c20;
  --theme-soft: rgba(239, 91, 42, 0.12);
  --theme-border: rgba(239, 91, 42, 0.35);

  --text-primary: #f4f4f0;
  --text-secondary: #d3d1cb;
  --text-tertiary: #a7a7a1;
  --text-muted: #a7a7a1;
  --text-dark: #111111;
  --text-inverse: #111111;

  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(17, 17, 17, 0.15);
  --border-primary: rgba(255, 255, 255, 0.12);
  --border-secondary: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(239, 91, 42, 0.32);

  --success-bg: rgba(34, 197, 94, 0.12);
  --success-border: rgba(34, 197, 94, 0.2);
  --success-text: #bbf7d0;
  --danger-bg: rgba(248, 113, 113, 0.12);
  --danger-border: rgba(248, 113, 113, 0.2);
  --danger-text: #fecaca;

  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.24);
  --shadow-elevated: 0 20px 56px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 14px rgba(239, 91, 42, 0.1);
  --shadow-focus: 0 0 0 4px rgba(239, 91, 42, 0.18);

  --gradient-primary: linear-gradient(135deg, #ef5b2a 0%, #cf4c20 100%);
  --gradient-secondary: linear-gradient(135deg, #f4f4f0 0%, #ef5b2a 100%);
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  --gradient-panel: linear-gradient(135deg, rgba(239, 91, 42, 0.12), rgba(85, 149, 165, 0.12));

  /* Layout */
  --focus-ring: var(--shadow-focus);
  --max-content-width: 1440px;
  --container-width: 1440px;
  --navbar-height: 92px;

  /* Font */
  --font-primary: var(--font-body);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
}

:root[data-theme="light"] {
  color-scheme: light;

  --bg-primary: #f1f0eb;
  --bg-secondary: #e8e6df;
  --bg-tertiary: #ddd9cf;
  --bg-hover: #d6d0c4;

  --surface-light: #ffffff;
  --surface-muted: #d9d4c8;
  --surface-dark: #d6d0c4;
  --surface-panel: rgba(255, 255, 255, 0.72);
  --surface-elevated: rgba(255, 255, 255, 0.88);
  --surface-overlay: rgba(17, 17, 17, 0.16);
  --surface-input: rgba(255, 255, 255, 0.9);
  --surface-input-focus: rgba(255, 255, 255, 0.98);

  --surface-primary: rgba(255, 255, 255, 0.8);
  --surface-secondary: rgba(255, 255, 255, 0.92);
  --surface-tertiary: rgba(255, 255, 255, 0.98);
  --surface-soft: rgba(17, 17, 17, 0.04);

  --text-primary: #141414;
  --text-secondary: #565650;
  --text-tertiary: #767671;
  --text-muted: #767671;
  --text-dark: #111111;
  --text-inverse: #ffffff;

  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(17, 17, 17, 0.15);
  --border-primary: rgba(17, 17, 17, 0.09);
  --border-secondary: rgba(17, 17, 17, 0.13);
  --border-strong: rgba(239, 91, 42, 0.24);

  --shadow-card: 0 10px 24px rgba(17, 17, 17, 0.07);
  --shadow-elevated: 0 18px 48px rgba(17, 17, 17, 0.1);
  --shadow-soft: 0 8px 18px rgba(17, 17, 17, 0.06);
  --shadow-glow: 0 0 14px rgba(239, 91, 42, 0.08);
  --shadow-focus: 0 0 0 4px rgba(239, 91, 42, 0.16);

  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 235, 0.96));
  --gradient-panel: linear-gradient(135deg, rgba(239, 91, 42, 0.08), rgba(85, 149, 165, 0.08));
}

:root[data-mode="light"] {
  --page-bg: #f1eee6;
  --page-bg-alt: #e8e3da;
  --surface-primary: #ffffff;
  --surface-secondary: #e5e0d6;
  --surface-elevated: #f8f5ee;
  --text-primary: #171717;
  --text-secondary: #4e4a43;
  --text-muted: #777168;
  --text-inverse: #f5f3ee;
  --border-primary: rgba(20, 20, 20, 0.16);
  --border-strong: rgba(20, 20, 20, 0.28);
  --particle-primary: rgba(20, 20, 20, 0.42);
  --bg-primary: var(--page-bg);
  --bg-secondary: var(--page-bg-alt);
  --bg-tertiary: var(--surface-secondary);
  --bg-hover: var(--surface-elevated);
  --surface-light: var(--surface-primary);
  --surface-muted: var(--surface-secondary);
  --surface-dark: var(--surface-secondary);
}

:root[data-accent="orange"],
:root[data-theme-family="orange"] {
  --theme-primary: #ef5b2a;
  --theme-secondary: #5ea6b8;
  --theme-primary-strong: #cf4c20;
  --theme-soft: rgba(239, 91, 42, 0.12);
  --theme-border: rgba(239, 91, 42, 0.35);
  --particle-secondary: rgba(239, 91, 42, 0.55);
}

:root[data-accent="blue"],
:root[data-theme-family="blue"] {
  --theme-primary: #4a8dff;
  --theme-secondary: #7dd3fc;
  --theme-primary-strong: #1d4ed8;
  --theme-soft: rgba(74, 141, 255, 0.12);
  --theme-border: rgba(74, 141, 255, 0.35);
  --particle-secondary: rgba(74, 141, 255, 0.55);
}

:root[data-accent="cyan"],
:root[data-theme-family="cyan"] {
  --theme-primary: #22c7d8;
  --theme-secondary: #8ee8ee;
  --theme-primary-strong: #0e8fa2;
  --theme-soft: rgba(34, 199, 216, 0.12);
  --theme-border: rgba(34, 199, 216, 0.35);
  --particle-secondary: rgba(34, 199, 216, 0.55);
}

:root[data-accent="purple"],
:root[data-theme-family="purple"] {
  --theme-primary: #8b5cf6;
  --theme-secondary: #c4b5fd;
  --theme-primary-strong: #6d28d9;
  --theme-soft: rgba(139, 92, 246, 0.12);
  --theme-border: rgba(139, 92, 246, 0.35);
  --particle-secondary: rgba(139, 92, 246, 0.55);
}

:root[data-accent="green"],
:root[data-theme-family="green"] {
  --theme-primary: #2fb86e;
  --theme-secondary: #8ee0ab;
  --theme-primary-strong: #15803d;
  --theme-soft: rgba(47, 184, 110, 0.12);
  --theme-border: rgba(47, 184, 110, 0.35);
  --particle-secondary: rgba(47, 184, 110, 0.55);
}

:root[data-accent="red"],
:root[data-theme-family="red"] {
  --theme-primary: #f05252;
  --theme-secondary: #fca5a5;
  --theme-primary-strong: #c81e1e;
  --theme-soft: rgba(240, 82, 82, 0.12);
  --theme-border: rgba(240, 82, 82, 0.35);
  --particle-secondary: rgba(240, 82, 82, 0.55);
}

:root[data-accent="gold"],
:root[data-theme-family="gold"] {
  --theme-primary: #d4a72c;
  --theme-secondary: #f4d06f;
  --theme-primary-strong: #a16207;
  --theme-soft: rgba(212, 167, 44, 0.12);
  --theme-border: rgba(212, 167, 44, 0.35);
  --particle-secondary: rgba(212, 167, 44, 0.55);
}

:root[data-accent="mono"],
:root[data-theme-family="mono"] {
  --theme-primary: #a3a3a3;
  --theme-secondary: #d4d4d4;
  --theme-primary-strong: #737373;
  --theme-soft: rgba(163, 163, 163, 0.12);
  --theme-border: rgba(163, 163, 163, 0.28);
  --particle-secondary: rgba(163, 163, 163, 0.52);
}

:root {
  --accent-primary: var(--theme-primary);
  --accent-secondary: var(--theme-secondary);
  --border-strong: var(--theme-border);
  --accent-soft: var(--theme-soft);
  --gradient-primary: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-strong) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--theme-secondary) 0%, var(--theme-primary) 100%);
  --gradient-panel: linear-gradient(135deg, var(--theme-soft), color-mix(in srgb, var(--theme-secondary) 16%, transparent));
}

/* ===== Base Styles ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body,
#root {
  max-width: 100%;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent-primary) 10%, transparent), transparent 24%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent-secondary) 10%, transparent), transparent 26%),
    var(--page-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ===== Button Styles ===== */

.btn-primary {
  padding: 12px 32px;
  border: none;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(239, 91, 42, 0.28);
}

.btn-secondary {
  padding: 12px 32px;
  border: 2px solid var(--border-secondary);
  border-radius: 10px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  background: var(--surface-soft);
  color: var(--accent-primary);
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 55%);
  transform: translateX(-110%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-primary:focus-visible::before,
.btn-secondary:focus-visible::before {
  transform: translateX(0%);
}

.btn-primary svg,
.btn-secondary svg {
  transition: transform 0.25s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg,
.btn-primary:focus-visible svg,
.btn-secondary:focus-visible svg {
  transform: translateX(3px);
}

/* ===== Typography ===== */

h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.08;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===== Section Spacing ===== */

section {
  padding: 112px var(--spacing-lg);
}

@media (max-width: 768px) {
  section {
    padding: 72px var(--spacing-md);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* ===== Additional Responsive Utilities ===== */

@media (max-width: 768px) {
  section {
    padding: 72px var(--spacing-md);
  }
}

@media (max-width: 480px) {
  section {
    padding: 64px var(--spacing-md);
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}

/* ===== Link Styles ===== */

a {
  position: relative;
}

/* ===== Scrollbar ===== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-secondary);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

::selection {
  background: rgba(0, 212, 255, 0.22);
  color: var(--text-primary);
}

/* ===== Light Mode Overrides ===== */

:root[data-theme="light"] .hero,
:root[data-theme="light"] .services-preview,
:root[data-theme="light"] .process,
:root[data-theme="light"] .why-choose-us,
:root[data-theme="light"] .tech-stack,
:root[data-theme="light"] .testimonials-section,
:root[data-theme="light"] .footer {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(85, 149, 165, 0.05), transparent 26%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .glow-orb,
:root[data-theme="light"] .tech-glow,
:root[data-theme="light"] .footer-glow,
:root[data-theme="light"] .icon-glow {
  opacity: 0.18;
}

:root[data-theme="light"] .hero-image-frame,
:root[data-theme="light"] .hero-feature-card,
:root[data-theme="light"] .stat-item,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .services-cta,
:root[data-theme="light"] .why-card,
:root[data-theme="light"] .why-cta,
:root[data-theme="light"] .step-card,
:root[data-theme="light"] .tech-card,
:root[data-theme="light"] .tech-stats,
:root[data-theme="light"] .testimonial-card,
:root[data-theme="light"] .testimonials-state,
:root[data-theme="light"] .story-card,
:root[data-theme="light"] .glass-card,
:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea,
:root[data-theme="light"] .newsletter-form,
:root[data-theme="light"] .account-hero,
:root[data-theme="light"] .account-card,
:root[data-theme="light"] .account-detail,
:root[data-theme="light"] .account-avatar-large,
:root[data-theme="light"] .account-preview,
:root[data-theme="light"] .auth-card,
:root[data-theme="light"] .admin-card,
:root[data-theme="light"] .admin-form-panel,
:root[data-theme="light"] .admin-table-panel,
:root[data-theme="light"] .admin-preview-panel {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
  box-shadow: var(--shadow-card);
}

:root[data-theme="light"] .glass-card,
:root[data-theme="light"] .account-detail,
:root[data-theme="light"] .account-preview,
:root[data-theme="light"] .account-avatar-large,
:root[data-theme="light"] .admin-feature-item,
:root[data-theme="light"] .admin-heading-preview,
:root[data-theme="light"] .admin-image-preview,
:root[data-theme="light"] .admin-empty,
:root[data-theme="light"] .admin-loading,
:root[data-theme="light"] .admin-error {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
  box-shadow: var(--shadow-card);
}

:root[data-theme="light"] .hero-description,
:root[data-theme="light"] .service-card p,
:root[data-theme="light"] .why-card p,
:root[data-theme="light"] .step-card p,
:root[data-theme="light"] .tech-description,
:root[data-theme="light"] .testimonial-copy,
:root[data-theme="light"] .brand-description,
:root[data-theme="light"] .newsletter-text,
:root[data-theme="light"] .footer-link,
:root[data-theme="light"] .contact-item,
:root[data-theme="light"] .account-detail-label,
:root[data-theme="light"] .account-note,
:root[data-theme="light"] .auth-heading p,
:root[data-theme="light"] .auth-footer,
:root[data-theme="light"] .auth-copyright,
:root[data-theme="light"] .admin-note,
:root[data-theme="light"] .admin-table td {
  color: var(--text-secondary);
}

:root[data-theme="light"] .glass-card h3,
:root[data-theme="light"] .glass-card p,
:root[data-theme="light"] .info-card h3,
:root[data-theme="light"] .info-card p,
:root[data-theme="light"] .project-card h3,
:root[data-theme="light"] .project-card p,
:root[data-theme="light"] .case-card h3,
:root[data-theme="light"] .case-card p,
:root[data-theme="light"] .pricing-card h3,
:root[data-theme="light"] .pricing-card p,
:root[data-theme="light"] .faq-card h3,
:root[data-theme="light"] .faq-card p,
:root[data-theme="light"] .industry-card h3,
:root[data-theme="light"] .industry-card p {
  color: var(--text-primary);
}

:root[data-theme="light"] .glass-card p,
:root[data-theme="light"] .info-card p,
:root[data-theme="light"] .project-card p,
:root[data-theme="light"] .case-card p,
:root[data-theme="light"] .pricing-card p,
:root[data-theme="light"] .faq-card p,
:root[data-theme="light"] .industry-card p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .hero-title-line,
:root[data-theme="light"] .admin-heading-line,
:root[data-theme="light"] .footer-logo h3,
:root[data-theme="light"] .auth-submit {
  background: linear-gradient(90deg, #0b1220 0%, #0ea5e9 100%);
}

:root[data-theme="light"] .section-badge,
:root[data-theme="light"] .hero-feature-icon,
:root[data-theme="light"] .icon-container,
:root[data-theme="light"] .card-arrow,
:root[data-theme="light"] .duration-badge,
:root[data-theme="light"] .tech-category,
:root[data-theme="light"] .testimonial-avatar,
:root[data-theme="light"] .admin-badge,
:root[data-theme="light"] .admin-chip.active,
:root[data-theme="light"] .newsletter-btn,
:root[data-theme="light"] .social-link,
:root[data-theme="light"] .account-button,
:root[data-theme="light"] .account-button-secondary,
:root[data-theme="light"] .auth-logo-icon,
:root[data-theme="light"] .auth-submit {
  color: var(--text-inverse);
}

:root[data-theme="light"] .section-badge,
:root[data-theme="light"] .tech-category,
:root[data-theme="light"] .duration-badge,
:root[data-theme="light"] .admin-badge {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.2);
  color: #086b86;
}

:root[data-theme="light"] .hero-feature-card.active,
:root[data-theme="light"] .service-card:hover,
:root[data-theme="light"] .step-card:hover,
:root[data-theme="light"] .why-card:hover,
:root[data-theme="light"] .tech-card:hover,
:root[data-theme="light"] .testimonial-card:hover,
:root[data-theme="light"] .story-card:hover,
:root[data-theme="light"] .admin-nav-link.active,
:root[data-theme="light"] .admin-nav-link:hover,
:root[data-theme="light"] .account-menu-item:hover,
:root[data-theme="light"] .account-menu-logout:hover {
  background: var(--surface-primary);
  border-color: var(--border-strong);
}

:root[data-theme="light"] .navbar,
:root[data-theme="light"] .navbar.navbar-scrolled {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 244, 235, 0.95) 100%);
  border-bottom-color: var(--border-primary);
  box-shadow: var(--shadow-soft);
}

:root[data-theme="light"] .nav-pill,
:root[data-theme="light"] .mobile-menu,
:root[data-theme="light"] .account-menu-dropdown,
:root[data-theme="light"] .admin-sidebar,
:root[data-theme="light"] .admin-mobile-toggle,
:root[data-theme="light"] .mobile-menu-btn,
:root[data-theme="light"] .navbar-login-btn,
:root[data-theme="light"] .navbar-profile-trigger,
:root[data-theme="light"] .mobile-login-btn,
:root[data-theme="light"] .mobile-logout-btn {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
  color: var(--text-primary);
}

:root[data-theme="light"] .nav-link,
:root[data-theme="light"] .mobile-nav-link,
:root[data-theme="light"] .account-menu-item,
:root[data-theme="light"] .account-menu-logout,
:root[data-theme="light"] .legal-link,
:root[data-theme="light"] .copyright,
:root[data-theme="light"] .auth-role-btn,
:root[data-theme="light"] .admin-nav-link {
  color: var(--text-secondary);
}

:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .mobile-nav-link:hover,
:root[data-theme="light"] .nav-link-active,
:root[data-theme="light"] .mobile-nav-link-active {
  color: var(--text-primary);
  background: var(--surface-soft);
}

:root[data-theme="light"] .navbar-logo,
:root[data-theme="light"] .logo-text,
:root[data-theme="light"] .navbar-profile-trigger,
:root[data-theme="light"] .mobile-menu-btn,
:root[data-theme="light"] .mobile-login-btn,
:root[data-theme="light"] .navbar-login-btn {
  color: var(--text-primary);
}

:root[data-theme="light"] .mobile-menu-overlay {
  background: rgba(15, 23, 42, 0.2);
}

:root[data-theme="light"] .newsletter-form:focus-within,
:root[data-theme="light"] .auth-input-wrapper input:focus,
:root[data-theme="light"] .account-field input[type="text"]:focus,
:root[data-theme="light"] .account-field input[type="email"]:focus,
:root[data-theme="light"] .account-field input[type="file"]:focus,
:root[data-theme="light"] .admin-field input:focus,
:root[data-theme="light"] .admin-field textarea:focus,
:root[data-theme="light"] .admin-field select:focus,
:root[data-theme="light"] .contact-form input:focus,
:root[data-theme="light"] .contact-form select:focus,
:root[data-theme="light"] .contact-form textarea:focus {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-focus);
  background: var(--surface-input-focus);
}

:root[data-theme="light"] .newsletter-input,
:root[data-theme="light"] .auth-input-wrapper input,
:root[data-theme="light"] .account-field input[type="text"],
:root[data-theme="light"] .account-field input[type="email"],
:root[data-theme="light"] .account-field input[type="file"],
:root[data-theme="light"] .admin-field input,
:root[data-theme="light"] .admin-field textarea,
:root[data-theme="light"] .admin-field select,
:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea {
  background: var(--surface-input);
  color: var(--text-primary);
  border-color: var(--border-primary);
}

:root[data-theme="light"] .contact-form option {
  background: #ffffff;
  color: var(--text-primary);
}

:root[data-theme="light"] .newsletter-input::placeholder,
:root[data-theme="light"] .auth-input-wrapper input::placeholder {
  color: var(--text-tertiary);
}

:root[data-theme="light"] .auth-page,
:root[data-theme="light"] .account-page,
:root[data-theme="light"] .admin-shell {
  background:
    radial-gradient(circle at top left, rgba(0, 180, 220, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.06), transparent 28%),
    var(--bg-primary);
}

:root[data-theme="light"] .auth-logo strong,
:root[data-theme="light"] .auth-heading h1,
:root[data-theme="light"] .admin-topbar h2,
:root[data-theme="light"] .account-hero h1,
:root[data-theme="light"] .section-header h2,
:root[data-theme="light"] .tech-header h2,
:root[data-theme="light"] .process-header h2,
:root[data-theme="light"] .why-header h2,
:root[data-theme="light"] .testimonials-header h2,
:root[data-theme="light"] .footer-section h4,
:root[data-theme="light"] .footer-contact h4,
:root[data-theme="light"] .auth-role-label,
:root[data-theme="light"] .auth-field-label,
:root[data-theme="light"] .admin-field label,
:root[data-theme="light"] .account-field label,
:root[data-theme="light"] .story-content h2,
:root[data-theme="light"] .services-cta h2,
:root[data-theme="light"] .about-hero h1 {
  color: var(--text-primary);
}

:root[data-theme="light"] .section-header p,
:root[data-theme="light"] .section-header .section-badge,
:root[data-theme="light"] .hero-feature-card,
:root[data-theme="light"] .stat-item .stat-label,
:root[data-theme="light"] .hero-stats .stat-label,
:root[data-theme="light"] .hero-stats .stat-number,
:root[data-theme="light"] .footer-link,
:root[data-theme="light"] .brand-description,
:root[data-theme="light"] .newsletter-text,
:root[data-theme="light"] .copyright,
:root[data-theme="light"] .legal-link,
:root[data-theme="light"] .account-note,
:root[data-theme="light"] .admin-note,
:root[data-theme="light"] .tech-description,
:root[data-theme="light"] .testimonial-copy,
:root[data-theme="light"] .contact-item,
:root[data-theme="light"] .auth-heading p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .auth-role-switch,
:root[data-theme="light"] .admin-table th,
:root[data-theme="light"] .footer-divider,
:root[data-theme="light"] .link-separator {
  border-color: var(--border-primary);
  color: var(--border-secondary);
}

:root[data-theme="light"] .auth-role-btn.active {
  background: var(--gradient-panel);
  border-color: var(--border-strong);
}

:root[data-theme="light"] .auth-error,
:root[data-theme="light"] .account-message.error {
  color: var(--danger-text);
  background: var(--danger-bg);
  border-color: var(--danger-border);
}

:root[data-theme="light"] .account-message.success,
:root[data-theme="light"] .admin-success {
  color: var(--success-text);
  background: var(--success-bg);
  border-color: var(--success-border);
}

:root[data-theme="light"] .auth-submit {
  background: linear-gradient(100deg, #0ea5e9, #6366f1);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.18);
}

:root[data-theme="light"] .auth-submit:hover:not(:disabled) {
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.22);
}

:root[data-theme="light"] .admin-sidebar-overlay {
  background: rgba(15, 23, 42, 0.18);
}

:root[data-theme="light"] .admin-table th,
:root[data-theme="light"] .admin-table td {
  border-bottom-color: var(--border-primary);
}

:root[data-theme="light"] .admin-image-preview,
:root[data-theme="light"] .admin-heading-preview {
  background: var(--gradient-panel), var(--surface-secondary);
}

:root[data-theme="light"] .footer-divider {
  background: var(--border-primary);
}

:root[data-theme="light"] .social-link:hover {
  color: #ffffff;
  background: var(--accent-primary);
}

:root[data-theme="light"] .footer-contact,
:root[data-theme="light"] .newsletter-form {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
}

:root[data-theme="light"] .newsletter-form:focus-within {
  background: var(--surface-secondary);
}

:root[data-theme="light"] .account-menu-dropdown,
:root[data-theme="light"] .mobile-menu {
  background: var(--surface-secondary);
}

:root[data-theme="light"] .account-menu-header,
:root[data-theme="light"] .mobile-menu-divider {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .account-avatar {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 18px rgba(79, 70, 229, 0.15);
}

:root[data-theme="light"] .account-button-secondary {
  color: var(--text-primary);
  border-color: var(--border-primary);
  background: var(--surface-soft);
}

:root[data-theme="light"] .section-badge .badge-dot {
  background: var(--accent-primary);
}

:root[data-theme="light"] .mobile-menu-btn-active,
:root[data-theme="light"] .mobile-menu-btn:hover {
  background: var(--surface-primary);
}

:root[data-theme="light"] .hero-title-line,
:root[data-theme="light"] .about-hero h1 {
  background: linear-gradient(90deg, #0f172a 0%, #0ea5e9 52%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root[data-theme="light"] .hero h1,
:root[data-theme="light"] .editorial-hero-title,
:root[data-theme="light"] .editorial-hero-lead,
:root[data-theme="light"] .services-hero h1,
:root[data-theme="light"] .portfolio-hero h1,
:root[data-theme="light"] .contact-hero h1,
:root[data-theme="light"] .case-study-hero h1,
:root[data-theme="light"] .about-hero h1,
:root[data-theme="light"] .industry-hero h1,
:root[data-theme="light"] .technology-hero h1,
:root[data-theme="light"] .section-header h2,
:root[data-theme="light"] .services-cta h2,
:root[data-theme="light"] .tech-header h2,
:root[data-theme="light"] .process-header h2,
:root[data-theme="light"] .why-header h2,
:root[data-theme="light"] .testimonials-header h2,
:root[data-theme="light"] .footer-closing h2,
:root[data-theme="light"] .footer-section h4,
:root[data-theme="light"] .footer-contact h4 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--text-primary);
}

:root[data-theme="light"] .service-card h3,
:root[data-theme="light"] .service-card p,
:root[data-theme="light"] .editorial-service-copy h3,
:root[data-theme="light"] .editorial-service-copy p,
:root[data-theme="light"] .editorial-service-category,
:root[data-theme="light"] .editorial-inline-link,
:root[data-theme="light"] .editorial-projects,
:root[data-theme="light"] .editorial-testimonials,
:root[data-theme="light"] .editorial-projects-head h2,
:root[data-theme="light"] .editorial-testimonials-copy h2,
:root[data-theme="light"] .editorial-projects-head p,
:root[data-theme="light"] .editorial-testimonials-copy p {
  color: var(--text-primary);
}

:root[data-theme="light"] .about-page,
:root[data-theme="light"] .industry-page,
:root[data-theme="light"] .technology-page,
:root[data-theme="light"] .case-study-page {
  background: var(--bg-primary);
  color: var(--text-primary);
}

:root[data-theme="light"] .about-hero,
:root[data-theme="light"] .industry-hero,
:root[data-theme="light"] .technology-hero,
:root[data-theme="light"] .portfolio-hero,
:root[data-theme="light"] .contact-hero,
:root[data-theme="light"] .case-study-hero {
  background:
    radial-gradient(circle at top, rgba(6, 182, 212, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(239, 91, 42, 0.05), transparent 24%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .about-hero p,
:root[data-theme="light"] .industry-hero p,
:root[data-theme="light"] .technology-hero p,
:root[data-theme="light"] .portfolio-hero p,
:root[data-theme="light"] .contact-hero p,
:root[data-theme="light"] .case-study-hero p,
:root[data-theme="light"] .industry-section .section-header p,
:root[data-theme="light"] .technology-section .section-header p,
:root[data-theme="light"] .portfolio-cta-shell p,
:root[data-theme="light"] .industry-cta p,
:root[data-theme="light"] .technology-cta p,
:root[data-theme="light"] .contact-info p,
:root[data-theme="light"] .contact-cta p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .technology-card,
:root[data-theme="light"] .technology-stack-item,
:root[data-theme="light"] .technology-cta .about-container,
:root[data-theme="light"] .industry-hero-stats .glass-card,
:root[data-theme="light"] .industry-card,
:root[data-theme="light"] .industry-feature-card,
:root[data-theme="light"] .industry-cta .about-container,
:root[data-theme="light"] .portfolio-cta-shell,
:root[data-theme="light"] .contact-info .info-card,
:root[data-theme="light"] .contact-cta .about-container,
:root[data-theme="light"] .about-hero .section-badge,
:root[data-theme="light"] .industry-hero .section-badge,
:root[data-theme="light"] .technology-hero .section-badge,
:root[data-theme="light"] .portfolio-hero .section-badge,
:root[data-theme="light"] .contact-hero .section-badge,
:root[data-theme="light"] .case-study-hero .section-badge {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
  color: var(--text-primary);
}

:root[data-theme="light"] .technology-card,
:root[data-theme="light"] .technology-stack-item,
:root[data-theme="light"] .industry-hero-stats .glass-card,
:root[data-theme="light"] .industry-card,
:root[data-theme="light"] .industry-feature-card,
:root[data-theme="light"] .portfolio-cta-shell,
:root[data-theme="light"] .contact-info .info-card,
:root[data-theme="light"] .contact-cta .about-container,
:root[data-theme="light"] .technology-cta .about-container,
:root[data-theme="light"] .industry-cta .about-container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.94));
  border-color: var(--border-primary);
  box-shadow: var(--shadow-card);
}

:root[data-theme="light"] .technology-card p,
:root[data-theme="light"] .technology-stack-item p,
:root[data-theme="light"] .industry-card p,
:root[data-theme="light"] .industry-feature-card p,
:root[data-theme="light"] .industry-hero-stats span,
:root[data-theme="light"] .contact-info .info-card p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-projects-head p,
:root[data-theme="light"] .editorial-testimonials-copy p,
:root[data-theme="light"] .editorial-service-copy p,
:root[data-theme="light"] .service-card p {
  color: var(--text-secondary);
}

:root[data-theme="light"] .editorial-inline-link {
  border-color: var(--border-primary);
  background: var(--surface-secondary);
}

:root[data-theme="light"] .editorial-inline-link:hover {
  color: var(--accent-primary);
  border-color: var(--border-strong);
}

:root[data-theme="light"] .global-motion-backdrop {
  opacity: 0.56;
  mix-blend-mode: normal;
}

:root[data-theme="light"] .hero-image-frame,
:root[data-theme="light"] .hero-feature-card,
:root[data-theme="light"] .stat-item,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .services-cta,
:root[data-theme="light"] .why-card,
:root[data-theme="light"] .why-cta,
:root[data-theme="light"] .step-card,
:root[data-theme="light"] .tech-card,
:root[data-theme="light"] .tech-stats,
:root[data-theme="light"] .testimonial-card,
:root[data-theme="light"] .testimonials-state,
:root[data-theme="light"] .story-card,
:root[data-theme="light"] .glass-card,
:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea,
:root[data-theme="light"] .newsletter-form,
:root[data-theme="light"] .account-hero,
:root[data-theme="light"] .account-card,
:root[data-theme="light"] .account-detail,
:root[data-theme="light"] .account-avatar-large,
:root[data-theme="light"] .account-preview,
:root[data-theme="light"] .auth-card,
:root[data-theme="light"] .admin-card,
:root[data-theme="light"] .admin-form-panel,
:root[data-theme="light"] .admin-table-panel,
:root[data-theme="light"] .admin-preview-panel,
:root[data-theme="light"] .account-menu-dropdown,
:root[data-theme="light"] .mobile-menu,
:root[data-theme="light"] .footer-contact {
  border-color: var(--border-primary);
}

:root[data-theme="light"] .process-wheel-section {
  background:
    radial-gradient(circle at top left, rgba(239, 91, 42, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(85, 149, 165, 0.05), transparent 28%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

:root[data-theme="light"] .wheel {
  box-shadow: 0 0 0 1px rgba(0, 180, 220, 0.08) inset;
}

:root[data-theme="light"] .wheel::before {
  border-color: rgba(239, 91, 42, 0.16);
  box-shadow: 0 0 32px rgba(239, 91, 42, 0.06);
}

:root[data-theme="light"] .wheel::after {
  border-color: rgba(239, 91, 42, 0.1);
}

:root[data-theme="light"] .wheel-card {
  background: var(--surface-secondary);
  border-color: var(--border-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
}

:root[data-theme="light"] .wheel-step {
  background: rgba(239, 91, 42, 0.1);
  color: #a33e17;
  border-color: rgba(239, 91, 42, 0.18);
}

:root[data-theme="light"] .wheel-title,
:root[data-theme="light"] .wheel-center-inner {
  color: var(--text-primary);
}

:root[data-theme="light"] .wheel-center {
  background:
    radial-gradient(circle at 30% 20%, rgba(239, 91, 42, 0.06), transparent 25%),
    var(--surface-secondary);
  border-color: var(--border-primary);
  box-shadow: var(--shadow-card);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.03), transparent 34%);
  opacity: 0.55;
  z-index: -1;
}

main {
  position: relative;
}

#root {
  position: relative;
  isolation: isolate;
}

[data-gsap="fade-up"],
[data-gsap="fade-left"],
[data-gsap="fade-right"],
[data-gsap="scale"],
[data-gsap="text-reveal"],
[data-gsap-stagger] {
  will-change: transform, opacity;
}

.reveal-on-scroll {
  will-change: transform, opacity;
}

.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.tilt-card[data-tilt-card][data-tilt-state="active"] {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.tilt-card [data-tilt-accent] {
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.tilt-card[data-tilt-state="active"] [data-tilt-accent] {
  transform: translate3d(0, -4px, 20px);
  color: var(--accent-primary);
}

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

  html {
    scroll-behavior: auto;
  }
}

body.has-premium-cursor,
body.has-premium-cursor a,
body.has-premium-cursor button,
body.has-premium-cursor [role="button"],
body.has-premium-cursor .btn-primary,
body.has-premium-cursor .btn-secondary,
body.has-premium-cursor .navbar-link,
body.has-premium-cursor .services-menu-link,
body.has-premium-cursor .mobile-nav-link,
body.has-premium-cursor .hero-feature-chip,
body.has-premium-cursor .hero-scroll-indicator {
  cursor: none;
}

body.has-premium-cursor input,
body.has-premium-cursor textarea,
body.has-premium-cursor select,
body.has-premium-cursor [contenteditable="true"] {
  cursor: text;
}

body.has-premium-cursor [data-magnetic],
body.has-premium-cursor a,
body.has-premium-cursor button,
body.has-premium-cursor [role="button"],
body.has-premium-cursor img,
body.has-premium-cursor .card,
body.has-premium-cursor .service-card,
body.has-premium-cursor .product-card,
body.has-premium-cursor .team-card,
body.has-premium-cursor .feature-card {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  mix-blend-mode: normal;
  opacity: 0;
  transition:
    opacity 0.16s ease,
    color 0.16s ease;
  display: grid;
  place-items: center;
}

.custom-cursor-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 200, 0.34);
  background: rgba(45, 212, 200, 0.06);
  transform: scale(0.76);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.custom-cursor-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-primary);
  box-shadow: 0 0 18px rgba(45, 212, 200, 0.42);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.custom-cursor-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

body.has-premium-cursor .custom-cursor[data-state="view"],
body.has-premium-cursor .custom-cursor[data-state="open"],
body.has-premium-cursor .custom-cursor[data-state="drag"],
body.has-premium-cursor .custom-cursor[data-state="link"] {
  color: #ffffff;
}

body.has-premium-cursor .custom-cursor[data-state="view"] .custom-cursor-ring,
body.has-premium-cursor .custom-cursor[data-state="open"] .custom-cursor-ring,
body.has-premium-cursor .custom-cursor[data-state="drag"] .custom-cursor-ring,
body.has-premium-cursor .custom-cursor[data-state="link"] .custom-cursor-ring {
  transform: scale(1);
  border-color: rgba(45, 212, 200, 0.72);
  background: rgba(45, 212, 200, 0.16);
}

body.has-premium-cursor .custom-cursor[data-state="view"] .custom-cursor-dot,
body.has-premium-cursor .custom-cursor[data-state="open"] .custom-cursor-dot,
body.has-premium-cursor .custom-cursor[data-state="drag"] .custom-cursor-dot,
body.has-premium-cursor .custom-cursor[data-state="link"] .custom-cursor-dot {
  transform: scale(1.35);
  background: #d8fffb;
  box-shadow: 0 0 18px rgba(45, 212, 200, 0.35);
}

body.has-premium-cursor .custom-cursor[data-state="view"] .custom-cursor-label,
body.has-premium-cursor .custom-cursor[data-state="open"] .custom-cursor-label,
body.has-premium-cursor .custom-cursor[data-state="drag"] .custom-cursor-label,
body.has-premium-cursor .custom-cursor[data-state="link"] .custom-cursor-label {
  opacity: 1;
  transform: translateY(0);
}

body.has-premium-cursor .custom-cursor {
  opacity: 1;
}

.magnetic-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.particle-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.72;
}

.global-motion-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.66;
  mix-blend-mode: normal;
}

.page-loader-particles {
  contain: strict;
}

.hero-title-viewport {
  position: relative;
  overflow: hidden;
  min-height: clamp(200px, 26vw, 380px);
}

.hero-title-slide {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.hero-title-group {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.02em;
  will-change: transform, opacity;
}

.hero-title-group span {
  display: block;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
  will-change: transform, opacity;
}

.hero-title-group span:first-child {
  font-family: var(--font-display);
}

.hero-title-group span:last-child {
  font-family: var(--font-editorial);
  letter-spacing: -0.03em;
  color: var(--accent-secondary);
}

.hero-title-group.is-next {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  overflow: hidden;
  background: #0f0f10;
  color: var(--text-primary);
}

.page-loader-panel {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(239, 91, 42, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%),
    #0f0f10;
}

.page-loader-panel-left {
  clip-path: inset(0 50% 0 0);
}

.page-loader-panel-right {
  clip-path: inset(0 0 0 50%);
}

.page-loader-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 640px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.page-loader-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 244, 240, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-primary);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.page-loader-kicker {
  color: var(--accent-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-loader h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-loader-subtitle {
  max-width: 52ch;
  color: var(--text-tertiary);
  font-size: 0.98rem;
}

.page-loader-progress-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-loader-progress-track {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.page-loader-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), rgba(239, 91, 42, 0.2));
  transform-origin: left center;
}

.page-loader.is-reduced .page-loader-panel-left,
.page-loader.is-reduced .page-loader-panel-right {
  transition: opacity 0.18s ease;
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }

  body.has-premium-cursor,
  body.has-premium-cursor a,
  body.has-premium-cursor button,
  body.has-premium-cursor [role="button"],
  body.has-premium-cursor .btn-primary,
  body.has-premium-cursor .btn-secondary,
  body.has-premium-cursor .navbar-link,
  body.has-premium-cursor .services-menu-link,
  body.has-premium-cursor .mobile-nav-link,
  body.has-premium-cursor .hero-feature-chip,
  body.has-premium-cursor .hero-scroll-indicator {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-cursor,
  .page-loader-panel,
  .page-loader-progress-fill {
    transition: none !important;
  }
}
