:root {
  --bg: #171717;
  --panel: #212121;
  --panel-2: #282828;
  --panel-3: #303030;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f2ef;
  --muted: rgba(242, 242, 239, 0.56);
  --teal: #16d4c0;
  --teal-soft: rgba(22, 212, 192, 0.18);
  --danger: #ff7b7b;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --surface-height: calc(100vh - 176px);
  --font-industrial: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-interface: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-interface);
  font-size: 15px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

html.kyma-public-root-home,
html.kyma-public-root-home body {
  background: #fff;
}

html.kyma-public-root-paper,
html.kyma-public-root-paper body {
  background: #f7f7f4;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  font-family: var(--font-interface);
  font-feature-settings: "ss01" 1, "tnum" 1;
}

@media (pointer: fine) {
  body.kyma-custom-cursor,
  body.kyma-custom-cursor * {
    cursor: none !important;
  }

  .kyma-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 106, 26, 0.62);
    border-radius: 999px;
    background: rgba(255, 106, 26, 0.13);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.18) inset,
      0 0 24px rgba(255, 106, 26, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) translate(-50%, -50%);
    transition:
      width 160ms ease,
      height 160ms ease,
      background 160ms ease,
      border-color 160ms ease,
      opacity 160ms ease;
  }

  .kyma-cursor::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 106, 26, 0.92);
    transform: translate(-50%, -50%);
  }

  body.kyma-cursor-visible .kyma-cursor {
    opacity: 1;
  }

  body.kyma-cursor-interactive .kyma-cursor {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 106, 26, 0.86);
    background: rgba(255, 106, 26, 0.18);
  }

  body.kyma-cursor-down .kyma-cursor {
    width: 26px;
    height: 26px;
    background: rgba(255, 106, 26, 0.24);
  }
}

body::-webkit-scrollbar,
.device-stack::-webkit-scrollbar,
.library-list::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb,
.device-stack::-webkit-scrollbar-thumb,
.library-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hidden {
  display: none !important;
}

body:not(.desktop-runtime) .app-nav-tab,
body:not(.desktop-runtime) .desktop-header-connect,
body:not(.desktop-runtime) .desktop-profile-menu,
body:not(.desktop-runtime) .study-sidebar,
body:not(.desktop-runtime) .study-content {
  display: none !important;
}

.eye-tracking-background-video {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
  top: -9999px;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.035), transparent 22%), var(--bg);
}

.app-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 24px 16px;
  background: transparent;
  gap: 16px;
}

.app-bar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.quick-control-button.live {
  color: rgba(22, 212, 192, 0.98);
  border-color: rgba(22, 212, 192, 0.3);
  background: radial-gradient(circle at center, rgba(22, 212, 192, 0.14), rgba(255, 255, 255, 0.03));
}

.toolbar-button,
.account-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.028);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(242, 242, 239, 0.78);
  transition: 160ms ease;
}

.toolbar-button:hover,
.account-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.toolbar-button.live {
  color: rgba(22, 212, 192, 0.98);
  border-color: rgba(22, 212, 192, 0.34);
  background: rgba(22, 212, 192, 0.08);
}

.toolbar-button svg,
.account-button svg {
  width: 18px;
  height: 18px;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.top-nav-tab {
  border: none;
  background: transparent;
  color: rgba(242, 242, 239, 0.62);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 520;
  letter-spacing: 0.01em;
  transition: 160ms ease;
}

.top-nav-tab.active {
  color: #161412;
  background: linear-gradient(135deg, rgba(233, 228, 216, 0.96), rgba(207, 199, 186, 0.9));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.workspace {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 18px;
  align-items: start;
  padding: 18px;
}

body.desktop-runtime {
  --bg: #111210;
  --panel: #1a1b18;
  --panel-2: #22231f;
  --panel-3: #2b2c27;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f2ef;
  --muted: rgba(242, 242, 239, 0.56);
  --teal: #ff6a1a;
  --teal-soft: rgba(255, 106, 26, 0.18);
  --surface-height: clamp(340px, calc(100vh - 148px), 760px);
}

body.desktop-runtime.desktop-light-mode {
  --bg: #f4f1e9;
  --panel: #fffdf8;
  --panel-2: #f7f5ef;
  --panel-3: #eeebe3;
  --stroke: rgba(29, 28, 25, 0.11);
  --stroke-strong: rgba(29, 28, 25, 0.22);
  --text: #1d1c19;
  --muted: rgba(29, 28, 25, 0.58);
  --shadow: 0 18px 42px rgba(58, 47, 35, 0.12);
  color: var(--text);
}

body.desktop-runtime .app-shell {
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.04), transparent 220px),
    var(--bg);
}

body.desktop-runtime.desktop-light-mode .app-shell {
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.08), transparent 210px),
    var(--bg);
}

body.desktop-runtime #homeTab,
body.desktop-runtime #applicationsTab {
  display: none;
}

.desktop-window-controls {
  display: none;
}

body.desktop-runtime .desktop-window-controls {
  position: fixed;
  top: 18px;
  left: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.desktop-runtime.desktop-native-chrome .desktop-window-controls {
  display: none;
}

body.desktop-runtime .desktop-window-control {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(21, 16, 13, 0.18),
    0 1px 2px rgba(0, 0, 0, 0.12);
}

body.desktop-runtime .desktop-window-control::before,
body.desktop-runtime .desktop-window-control::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  background: rgba(70, 38, 26, 0.72);
  transform-origin: center;
  transition: opacity 120ms ease;
}

body.desktop-runtime .desktop-window-controls:hover .desktop-window-control::before,
body.desktop-runtime .desktop-window-controls:hover .desktop-window-control::after {
  opacity: 1;
}

body.desktop-runtime .desktop-window-control.close::before,
body.desktop-runtime .desktop-window-control.close::after {
  width: 7px;
  height: 1.3px;
  border-radius: 99px;
}

body.desktop-runtime .desktop-window-control.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.desktop-runtime .desktop-window-control.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.desktop-runtime .desktop-window-control.minimize::before {
  width: 7px;
  height: 1.4px;
  border-radius: 99px;
  transform: translate(-50%, -50%);
}

body.desktop-runtime .desktop-window-control.minimize::after {
  display: none;
}

body.desktop-runtime .desktop-window-control.expand::before,
body.desktop-runtime .desktop-window-control.expand::after {
  width: 4px;
  height: 4px;
  background: transparent;
  border-color: rgba(28, 74, 34, 0.76);
  border-style: solid;
}

body.desktop-runtime .desktop-window-control.expand::before {
  border-width: 1.3px 1.3px 0 0;
  transform: translate(-16%, -84%);
}

body.desktop-runtime .desktop-window-control.expand::after {
  border-width: 0 0 1.3px 1.3px;
  transform: translate(-84%, -16%);
}

body.desktop-runtime .desktop-window-control.close {
  background: #ff5f57;
}

body.desktop-runtime .desktop-window-control.minimize {
  background: #ffbd2e;
}

body.desktop-runtime .desktop-window-control.expand {
  background: #28c840;
}

body.desktop-runtime .desktop-window-control:hover {
  filter: saturate(1.08) brightness(0.96);
}

body.desktop-runtime .site-header {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-height: 58px;
  padding: 8px clamp(18px, 2.5vw, 36px);
  align-items: center;
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.04), transparent 220px),
    var(--bg);
  backdrop-filter: none;
  --header-card-x: 18px;
  --header-card-y: 8px;
}

body.desktop-runtime:not(.desktop-native-chrome) .site-header {
  padding-left: 92px;
}

body.desktop-runtime.desktop-light-mode .site-header {
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.08), transparent 210px),
    var(--bg);
}

body.desktop-runtime .site-header::before,
body.desktop-runtime .site-header.is-scrolled::before {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body.desktop-runtime.desktop-light-mode .site-header::before {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body.desktop-runtime.desktop-light-mode .site-header.is-scrolled::before {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body.desktop-runtime .site-header-progress {
  display: none;
}

body.desktop-runtime .site-header::after {
  display: none;
}

body.desktop-runtime.desktop-light-mode .site-header .top-nav {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(58, 47, 35, 0.08);
}

body.desktop-runtime.desktop-light-mode .site-header.is-scrolled .top-nav {
  border-color: rgba(211, 85, 15, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

body.desktop-runtime.desktop-light-mode .site-header .top-nav-tab {
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode .site-header .top-nav-tab:hover {
  color: rgba(29, 28, 25, 0.9);
  background: rgba(29, 28, 25, 0.045);
}

body.desktop-runtime .site-header .top-nav .top-nav-tab.active,
body.desktop-runtime .site-header .top-nav .top-nav-tab.active:hover,
body.desktop-runtime .site-header .top-nav .top-nav-tab[aria-current="page"],
body.desktop-runtime .site-header .top-nav .top-nav-tab[aria-current="page"]:hover {
  background: #ff6a1a;
  color: #15100d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 20px rgba(255, 106, 26, 0.16);
}

body.desktop-runtime .site-brand-button {
  display: none;
}

body.desktop-runtime .site-brand-mark {
  width: 126px;
  height: 30px;
}

body.desktop-runtime .top-nav {
  justify-self: center;
  min-width: 0;
  min-height: 42px;
  max-width: 100%;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  border-color: var(--stroke);
  border-radius: 999px;
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

body.desktop-runtime .site-header-actions {
  position: absolute;
  top: 50%;
  right: clamp(18px, 2.5vw, 36px);
  transform: translateY(-50%);
}

body.desktop-runtime .top-nav::-webkit-scrollbar {
  display: none;
}

body.desktop-runtime #accountButton {
  display: inline-grid;
}

body.desktop-runtime .top-nav-tab.active,
body.desktop-runtime .arm-button {
  background: #ff6a1a;
  color: #15100d;
  box-shadow: 0 12px 28px rgba(255, 106, 26, 0.16);
}

body.desktop-runtime .workspace {
  grid-template-columns: minmax(220px, 0.58fr) minmax(460px, 1.36fr) minmax(220px, 0.62fr);
  gap: clamp(8px, 1vw, 12px);
  padding: 12px clamp(10px, 1.2vw, 16px) 14px;
}

body.desktop-runtime #sandboxWorkspace {
  padding-top: 0;
}

.desktop-header-connect {
  display: none;
}

body.desktop-runtime .desktop-header-connect {
  position: relative;
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--panel);
  color: #ff6a1a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.desktop-runtime .desktop-header-connect::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 144, 74, 0.98) 0%, #ff6a1a 58%, #e9530f 100%);
  transform: scale(0);
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease;
}

body.desktop-runtime .desktop-header-connect svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

body.desktop-runtime .desktop-profile-button {
  position: relative;
  width: 42px;
  height: 42px;
  border-color: transparent;
  background: var(--panel);
  color: #ff6a1a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.16);
}

body.desktop-runtime .desktop-profile-button:hover {
  background: var(--panel-2);
  transform: translateY(-1px);
}

body.desktop-runtime .desktop-profile-menu {
  position: relative;
  display: inline-grid;
}

body.desktop-runtime .account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 132px;
  padding: 6px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

body.desktop-runtime .account-dropdown-logout {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.01em;
  text-align: left;
  padding: 0 11px;
  cursor: pointer;
}

body.desktop-runtime .account-dropdown-logout:hover {
  background: rgba(255, 106, 26, 0.12);
  color: #ff8d4d;
}

body.desktop-runtime .desktop-header-connect:hover {
  background: var(--panel-2);
  transform: translateY(-1px);
}

body.desktop-runtime .desktop-header-connect.opening,
body.desktop-runtime .desktop-header-connect.modal-open {
  color: #ffffff;
  background: #ff6a1a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(255, 106, 26, 0.28);
}

body.desktop-runtime .desktop-header-connect.opening::after,
body.desktop-runtime .desktop-header-connect.modal-open::after {
  transform: scale(1);
  opacity: 1;
}

body.desktop-runtime .desktop-header-connect.opening {
  animation: desktopHardwareTap 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.desktop-runtime.desktop-light-mode .desktop-header-connect {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.94);
  color: #ff6a1a;
  box-shadow: 0 14px 28px rgba(58, 47, 35, 0.12);
}

body.desktop-runtime.desktop-light-mode .desktop-profile-button {
  background: rgba(255, 255, 255, 0.94);
  color: #e85c11;
  box-shadow: 0 14px 28px rgba(58, 47, 35, 0.12);
}

body.desktop-runtime.desktop-light-mode .desktop-profile-button:hover {
  background: #ffffff;
}

body.desktop-runtime.desktop-light-mode .account-dropdown {
  border-color: rgba(29, 28, 25, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.14);
}

body.desktop-runtime.desktop-light-mode .account-dropdown-logout {
  color: rgba(29, 28, 25, 0.78);
}

body.desktop-runtime.desktop-light-mode .account-dropdown-logout:hover {
  background: rgba(255, 106, 26, 0.1);
  color: #d9560f;
}

body.desktop-runtime.desktop-light-mode .desktop-header-connect:hover {
  background: #ffffff;
}

body.desktop-runtime .desktop-header-connect.connected {
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.16), transparent 58%),
    var(--panel);
  color: #ff8d4d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 106, 26, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.16),
    0 0 22px rgba(255, 106, 26, 0.13);
}

body.desktop-runtime .desktop-header-connect.connected::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 5px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 106, 26, 0.58);
  background: rgba(255, 106, 26, 0.06);
  box-shadow:
    inset 0 0 10px rgba(255, 106, 26, 0.1),
    0 0 0 0 rgba(255, 106, 26, 0.24);
  animation: desktopHardwareLive 2.6s ease-in-out infinite;
}

body.desktop-runtime .desktop-header-connect.connected svg {
  animation: desktopHardwareIconLive 2.6s ease-in-out infinite;
}

body.desktop-runtime .desktop-header-connect.connecting::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  animation: desktopHardwarePulse 1.15s ease-in-out infinite;
}

body.desktop-runtime.desktop-light-mode .desktop-header-connect.connected {
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.94);
  color: #e85c11;
  box-shadow:
    inset 0 0 0 1px rgba(255, 106, 26, 0.13),
    0 14px 28px rgba(58, 47, 35, 0.12),
    0 0 22px rgba(255, 106, 26, 0.12);
}

body.desktop-runtime .desktop-header-connect.connected.opening,
body.desktop-runtime .desktop-header-connect.connected.modal-open {
  background: #ff6a1a;
  color: #ffffff;
}

body.desktop-runtime.desktop-light-mode .desktop-header-connect.opening,
body.desktop-runtime.desktop-light-mode .desktop-header-connect.modal-open {
  background: #ff6a1a;
  color: #ffffff;
}

@keyframes desktopHardwareTap {
  0% {
    transform: scale(0.94);
  }
  62% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes desktopHardwareLive {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.16);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 106, 26, 0);
  }
}

@keyframes desktopHardwareIconLive {
  0%, 100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes desktopHardwarePulse {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.desktop-theme-toggle {
  display: none;
}

body.desktop-runtime .desktop-theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(26, 27, 24, 0.88);
  color: rgba(242, 242, 239, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

body.desktop-runtime .desktop-theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.desktop-runtime.desktop-light-mode .desktop-theme-toggle {
  border-color: rgba(29, 28, 25, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #1d1c19;
  box-shadow: 0 16px 34px rgba(58, 47, 35, 0.16);
}

body.desktop-runtime .column-label,
body.desktop-runtime .canvas-header {
  min-height: 62px;
  align-items: flex-end;
  line-height: 1;
  padding: 0 6px 10px;
}

body.desktop-runtime .canvas-header {
  display: flex;
  justify-content: center;
}

body.desktop-runtime .canvas-title,
body.desktop-runtime .column-label {
  transform: translateY(2px);
}

body.desktop-runtime .library-column,
body.desktop-runtime .canvas-column {
  grid-template-rows: 62px 1fr;
  gap: 14px;
}

body.desktop-runtime .desktop-page-section {
  min-width: 0;
  display: grid;
  grid-template-rows: 62px minmax(0, 1fr);
  gap: 14px;
  align-content: start;
}

body.desktop-runtime .desktop-section-title {
  min-height: 62px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 6px 10px;
  color: rgba(242, 242, 239, 0.74);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(2px);
}

body.desktop-runtime .developer-workspace .desktop-section-title {
  justify-content: center;
  text-align: center;
}

body.desktop-runtime .desktop-page-section:has(> .developer-card.hidden) {
  display: none;
}

body.desktop-runtime.desktop-light-mode .library-panel,
body.desktop-runtime.desktop-light-mode .canvas-shell {
  background: var(--panel);
  border-color: var(--stroke);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.08);
}

body.desktop-runtime.desktop-light-mode .desktop-section-title {
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode .library-item,
body.desktop-runtime.desktop-light-mode .device-card {
  background: var(--panel-2);
  color: var(--text);
  border-color: rgba(29, 28, 25, 0.085);
}

body.desktop-runtime.desktop-light-mode .library-item:hover,
body.desktop-runtime.desktop-light-mode .device-card:hover {
  background: var(--panel-3);
  border-color: var(--stroke-strong);
}

body.desktop-runtime.desktop-light-mode .search-shell,
body.desktop-runtime.desktop-light-mode .toolbar-button,
body.desktop-runtime.desktop-light-mode .toolbar-action {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime #sandboxWorkspace .search-shell {
  border-color: rgba(255, 106, 26, 0.24);
  background: rgba(255, 106, 26, 0.07);
  color: #ff6a1a;
}

body.desktop-runtime #sandboxWorkspace .search-shell:focus-within {
  border-color: rgba(255, 106, 26, 0.42);
  background: rgba(255, 106, 26, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.1);
}

body.desktop-runtime #sandboxWorkspace .search-icon {
  color: #ff6a1a;
}

body.desktop-runtime #sandboxWorkspace .search-shell input {
  color: var(--text);
}

body.desktop-runtime #sandboxWorkspace .search-shell input::placeholder {
  color: rgba(255, 153, 92, 0.72);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .search-shell {
  background: rgba(255, 255, 255, 0.72);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .search-shell:focus-within {
  background: rgba(255, 255, 255, 0.88);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .search-shell input {
  color: rgba(29, 28, 25, 0.94);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .search-shell input::placeholder {
  color: rgba(211, 85, 15, 0.62);
}

body.desktop-runtime.desktop-light-mode .column-label,
body.desktop-runtime.desktop-light-mode .canvas-title,
body.desktop-runtime.desktop-light-mode .lane-header,
body.desktop-runtime.desktop-light-mode .library-item-meta,
body.desktop-runtime.desktop-light-mode .device-card-meta {
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .stage-node {
  background: var(--panel-2);
  color: var(--text);
  border-color: rgba(29, 28, 25, 0.085);
  box-shadow: 0 10px 24px rgba(58, 47, 35, 0.06);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .stage-node:hover {
  background: var(--panel-3);
  border-color: var(--stroke-strong);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .stage-node.selected {
  border-color: rgba(255, 106, 26, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.12);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .stage-node-label {
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .node-config {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-row {
  background: rgba(29, 28, 25, 0.045);
  border: 1px solid rgba(29, 28, 25, 0.06);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-row.link-ready {
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.12);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-row.link-ready:hover {
  background: rgba(255, 106, 26, 0.08);
  border-color: rgba(255, 106, 26, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.24);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-row.mapped {
  background: rgba(255, 106, 26, 0.07);
  border-color: rgba(255, 106, 26, 0.16);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-label {
  color: rgba(29, 28, 25, 0.9);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-pill,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .link-pill {
  background: rgba(255, 106, 26, 0.1);
  border-color: rgba(255, 106, 26, 0.18);
  color: rgba(29, 28, 25, 0.72);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-port {
  border-color: rgba(29, 28, 25, 0.34);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .command-port.active {
  border-color: rgba(255, 106, 26, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.12);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .connection-glow {
  stroke: rgba(255, 106, 26, 0.16);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .connection-line {
  stroke: rgba(211, 85, 15, 0.72);
  filter: drop-shadow(0 0 4px rgba(211, 85, 15, 0.12));
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-badge {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-ready,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-backend {
  border-color: rgba(211, 85, 15, 0.24);
  background: rgba(255, 106, 26, 0.1);
  color: rgba(139, 55, 8, 0.92);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-browser,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-study {
  border-color: rgba(12, 140, 125, 0.2);
  background: rgba(18, 176, 159, 0.09);
  color: rgba(9, 103, 92, 0.9);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-prototype,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .support-custom {
  border-color: rgba(181, 117, 21, 0.24);
  background: rgba(255, 196, 102, 0.14);
  color: rgba(111, 72, 12, 0.92);
}

body.desktop-runtime .library-panel {
  padding-top: 16px;
}

body.desktop-runtime .search-shell {
  height: 46px;
  margin-bottom: 14px;
}

body.desktop-runtime #sandboxWorkspace .library-toolbar {
  gap: 8px;
}

body.desktop-runtime .library-list {
  height: calc(var(--surface-height) - 78px);
}

body.desktop-runtime .canvas-shell {
  padding-top: 64px;
}

.studies-workspace {
  display: grid;
  gap: 20px;
  padding: 18px;
  background: transparent;
}

.study-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.study-hero-copy,
.study-feature-card,
.study-detail-panel,
.study-marketplace {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012)), var(--panel);
  box-shadow: var(--shadow);
}

.study-hero-copy {
  min-height: 318px;
  padding: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.study-eyebrow,
.study-detail-eyebrow,
.study-panel-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(242, 242, 239, 0.58);
}

.study-hero-title {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #f7f6f0;
}

.study-hero-text {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(242, 242, 239, 0.68);
  font-size: 1.04rem;
  line-height: 1.55;
}

.study-hero-actions,
.study-hero-stats,
.study-toolbar,
.study-filter-bar,
.study-detail-header,
.study-active-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.study-hero-stats {
  gap: 14px;
}

.study-hero-stats div {
  min-width: 128px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.study-hero-stats span {
  display: block;
  color: #f7f6f0;
  font-weight: 650;
}

.study-hero-stats small {
  display: block;
  margin-top: 4px;
  color: rgba(242, 242, 239, 0.52);
  font-size: 0.76rem;
}

.study-feature-card {
  --study-tilt-x: 0deg;
  --study-tilt-y: 0deg;
  --study-glow-x: 74%;
  --study-glow-y: 22%;
  min-height: 318px;
  padding: 0;
  overflow: hidden;
  appearance: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transform: perspective(900px) rotateX(var(--study-tilt-x)) rotateY(var(--study-tilt-y));
  transition: 180ms ease;
}

.study-feature-card:hover {
  border-color: rgba(22, 212, 192, 0.26);
}

.study-feature-media {
  position: relative;
  min-height: 160px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(5, 7, 9, 0.04), rgba(5, 7, 9, 0.52)),
    url("./assets/signal-store-modules.png");
  background-size: cover;
  background-position: center;
}

.study-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--study-glow-x) var(--study-glow-y), rgba(22, 212, 192, 0.22), transparent 34%);
  pointer-events: none;
}

.study-status-badge,
.study-feature-label {
  position: relative;
  z-index: 1;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 241, 0.82);
  font-size: 0.74rem;
}

.study-feature-body {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.62fr);
  gap: 14px;
}

.study-feature-body h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.study-feature-body p,
.study-floating-card p {
  margin: 8px 0 0;
  color: rgba(242, 242, 239, 0.62);
  line-height: 1.45;
}

.study-floating-card {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.study-floating-card div {
  font-weight: 650;
  color: #f7f6f0;
}

.study-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 18px;
  align-items: start;
}

.study-marketplace {
  padding: 16px;
}

.study-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.study-search-shell {
  min-width: min(100%, 360px);
}

.study-filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.026);
  color: rgba(242, 242, 239, 0.7);
  cursor: pointer;
}

.study-filter-chip.active {
  color: #151515;
  background: #f0eee5;
  border-color: rgba(255, 255, 255, 0.26);
}

.study-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
  gap: 14px;
  align-items: stretch;
  overflow: visible;
  padding: 0;
}

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

.study-strip-card {
  width: 100%;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)), var(--panel);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.study-strip-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.study-strip-card.active {
  border-color: rgba(22, 212, 192, 0.28);
  box-shadow: 0 0 0 1px rgba(22, 212, 192, 0.12) inset, 0 20px 40px rgba(0, 0, 0, 0.28);
}

.study-strip-media {
  position: relative;
  isolation: isolate;
  min-height: 126px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(9, 12, 13, 0.08), rgba(9, 12, 13, 0.58)),
    url("./assets/signal-store-modules.png");
  background-size: cover;
  background-position: center;
}

.study-strip-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 9, 0.06), rgba(6, 8, 9, 0.38)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0.9;
  z-index: 0;
}

.study-strip-card.tone-aqua .study-strip-media {
  filter: hue-rotate(4deg) saturate(0.95) brightness(0.88);
}

.study-strip-card.tone-cobalt .study-strip-media {
  filter: hue-rotate(-56deg) saturate(0.95) brightness(0.86);
}

.study-strip-card.tone-amber .study-strip-media {
  filter: hue-rotate(76deg) saturate(0.9) brightness(0.88);
}

.study-strip-card.tone-coral .study-strip-media {
  filter: hue-rotate(-102deg) saturate(0.9) brightness(0.86);
}

.study-strip-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 241, 0.74);
}

.study-strip-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 241, 0.76);
  font-size: 0.74rem;
}

.study-strip-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.study-strip-title {
  font-size: 1.12rem;
  font-weight: 560;
  letter-spacing: 0;
  color: #f4f4ef;
}

.study-strip-subtitle {
  margin-top: 4px;
  color: rgba(22, 212, 192, 0.78);
  font-size: 0.78rem;
}

.study-strip-copy {
  color: rgba(242, 242, 239, 0.62);
  line-height: 1.45;
  font-size: 0.96rem;
}

.study-strip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.study-strip-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
  color: rgba(242, 242, 239, 0.7);
  font-size: 0.76rem;
}

.study-card-footer {
  min-height: 34px;
  padding-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(242, 242, 239, 0.52);
  font-size: 0.76rem;
}

.study-card-footer strong {
  color: rgba(22, 212, 192, 0.95);
  font-weight: 650;
  white-space: nowrap;
}

.study-detail-panel {
  position: sticky;
  top: 88px;
  padding: 16px;
  display: grid;
  gap: 16px;
}

.study-detail-header {
  justify-content: space-between;
}

.study-detail-header h3 {
  margin: 6px 0 0;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.study-quality-card {
  display: grid;
  gap: 10px;
}

.study-quality-list,
.study-active-steps {
  display: grid;
  gap: 10px;
}

.study-quality-row,
.study-step-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.study-quality-row span {
  color: rgba(242, 242, 239, 0.64);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.study-quality-row.good span {
  color: rgba(22, 212, 192, 0.92);
}

.study-quality-row.watch span {
  color: rgba(246, 190, 96, 0.92);
}

.study-quality-title,
.study-step-title {
  color: #f4f4ef;
  font-weight: 650;
}

.study-quality-meta,
.study-step-copy,
.study-session-path,
.study-participant-line {
  margin-top: 4px;
  color: rgba(242, 242, 239, 0.56);
  line-height: 1.4;
  font-size: 0.86rem;
}

.study-step-row {
  grid-template-columns: 30px minmax(0, 1fr);
}

.study-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(22, 212, 192, 0.1);
  color: rgba(22, 212, 192, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
}

.study-session-path {
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow-wrap: anywhere;
}

.study-participant-line span {
  color: #f4f4ef;
}

.study-empty-state {
  min-height: 220px;
  grid-column: 1 / -1;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(242, 242, 239, 0.62);
}

.study-empty-title {
  color: #f4f4ef;
  font-weight: 650;
}

/* Futuristic platform shell */
.studies-workspace {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr) 348px;
  gap: 0;
  padding: 0 18px 18px;
  background:
    linear-gradient(115deg, rgba(14, 19, 26, 0.98), rgba(18, 20, 24, 0.98) 54%, rgba(10, 13, 18, 0.98)),
    var(--bg);
}

.study-sidebar,
.study-content,
.study-detail-panel {
  min-height: calc(100vh - 94px);
}

.study-sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
  padding: 16px 12px 14px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}

.study-brand {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
}

.study-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b6ead7, #d8cfa7);
  color: #071015;
  font-weight: 800;
}

.study-brand-title {
  color: #f7f9fb;
  font-weight: 650;
}

.study-brand-meta {
  margin-top: 2px;
  color: rgba(234, 240, 246, 0.52);
  font-size: 0.78rem;
}

.study-search-shell {
  width: calc(100% - 12px);
  min-width: 0;
  margin-left: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.11);
}

.study-search-shell:focus-within {
  border-color: rgba(182, 234, 215, 0.42);
  box-shadow: 0 0 0 1px rgba(182, 234, 215, 0.12);
}

.study-filter-bar {
  display: grid;
  align-content: start;
  gap: 4px;
  padding-right: 10px;
}

.study-filter-chip {
  min-height: 42px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(234, 240, 246, 0.74);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 0 12px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.study-filter-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
}

.study-filter-chip:hover {
  background: rgba(255, 255, 255, 0.04);
}

.study-filter-chip.active {
  color: #f7f9fb;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.07);
}

.study-filter-chip.active::before {
  background: #b6ead7;
}

.study-filter-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.052);
  color: rgba(104, 234, 215, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
}

.study-sidebar-status {
  width: calc(100% - 12px);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  gap: 10px;
}

.study-sidebar-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(234, 240, 246, 0.56);
  font-size: 0.78rem;
}

.study-sidebar-status-row strong {
  color: #f7f9fb;
  font-weight: 650;
  text-align: right;
}

.study-content {
  min-width: 0;
  padding: 0 20px 0 20px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
}

.study-hero {
  min-height: 284px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(100deg, rgba(13, 18, 26, 0.95), rgba(16, 22, 31, 0.9) 48%, rgba(29, 35, 44, 0.82)),
    url("./assets/signal-store-modules.png");
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.study-hero-copy,
.study-feature-card,
.study-detail-panel,
.study-marketplace {
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.study-hero-copy {
  min-height: 0;
  padding: 34px 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.study-eyebrow,
.study-detail-eyebrow,
.study-panel-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(104, 234, 215, 0.82);
}

.study-hero-title {
  max-width: 720px;
  margin: 0;
  color: #f7f9fb;
  font-size: clamp(2.05rem, 3.7vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.study-hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(234, 240, 246, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

.study-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.study-feature-card {
  --study-tilt-x: 0deg;
  --study-tilt-y: 0deg;
  --study-glow-x: 74%;
  --study-glow-y: 22%;
  min-height: 284px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 17, 0.38);
  transform: perspective(900px) rotateX(var(--study-tilt-x)) rotateY(var(--study-tilt-y));
}

.study-feature-media {
  min-height: 116px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(182, 234, 215, 0.15), rgba(216, 207, 167, 0.1)),
    rgba(255, 255, 255, 0.03);
  position: relative;
}

.study-feature-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 234, 215, 0.5), rgba(216, 207, 167, 0.08));
}

.study-status-badge,
.study-feature-label {
  position: relative;
  z-index: 1;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(4, 8, 12, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 249, 251, 0.86);
  font-size: 0.73rem;
}

.study-feature-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.study-feature-body h2 {
  margin: 0;
  color: #f7f9fb;
  font-size: 1.42rem;
  letter-spacing: 0;
}

.study-feature-body p,
.study-floating-card p {
  margin: 7px 0 0;
  color: rgba(234, 240, 246, 0.62);
  line-height: 1.45;
}

.study-floating-card {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.study-floating-card div {
  color: #f7f9fb;
  font-weight: 650;
}

.study-marketplace {
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.study-toolbar {
  min-height: 58px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.study-toolbar h2 {
  margin: 4px 0 0;
  color: #f7f9fb;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.study-toolbar-toggles {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.study-toggle {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(234, 240, 246, 0.62);
  font-size: 0.78rem;
  cursor: pointer;
}

.study-toggle.active {
  background: rgba(255, 255, 255, 0.095);
  color: #f7f9fb;
}

.study-row {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 10px;
  align-content: start;
  overflow: auto;
  padding: 0 2px 4px 0;
  scrollbar-width: thin;
}

.study-row::-webkit-scrollbar {
  display: block;
  width: 10px;
}

.study-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.study-strip-card {
  width: 100%;
  min-height: 138px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.038);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  box-shadow: none;
}

.study-strip-card:hover {
  border-color: rgba(182, 234, 215, 0.24);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.study-strip-card.active {
  border-color: rgba(104, 234, 215, 0.44);
  background: linear-gradient(180deg, rgba(104, 234, 215, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 3px 0 0 rgba(104, 234, 215, 0.92);
}

.study-strip-media {
  min-height: 100%;
  padding: 12px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(182, 234, 215, 0.12), rgba(216, 207, 167, 0.08)),
    rgba(8, 12, 17, 0.42);
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.study-strip-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  z-index: 0;
}

.study-strip-card.tone-aqua .study-strip-media,
.study-strip-card.tone-cobalt .study-strip-media,
.study-strip-card.tone-amber .study-strip-media,
.study-strip-card.tone-coral .study-strip-media {
  filter: none;
}

.study-strip-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 249, 251, 0.74);
}

.study-strip-status {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(3, 8, 12, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 249, 251, 0.78);
  font-size: 0.68rem;
}

.study-strip-body {
  min-width: 0;
  display: grid;
  gap: 9px;
  padding: 13px 14px;
}

.study-strip-title {
  color: #f7f9fb;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
}

.study-strip-subtitle {
  margin-top: 3px;
  color: rgba(104, 234, 215, 0.78);
  font-size: 0.76rem;
}

.study-strip-copy {
  color: rgba(234, 240, 246, 0.6);
  line-height: 1.35;
  font-size: 0.84rem;
}

.study-strip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.study-strip-chip {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 246, 0.68);
  font-size: 0.7rem;
}

.study-card-footer {
  min-height: 26px;
  padding-top: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: rgba(234, 240, 246, 0.45);
  font-size: 0.72rem;
}

.study-card-footer strong {
  color: rgba(104, 234, 215, 0.96);
  font-weight: 650;
  white-space: nowrap;
}

.study-detail-panel {
  position: sticky;
  top: 76px;
  align-self: start;
  padding: 16px 0 14px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  align-content: start;
  gap: 14px;
}

.study-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.study-detail-header h3 {
  margin: 6px 0 0;
  color: #f7f9fb;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.study-active-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.study-quality-card {
  display: grid;
  gap: 10px;
}

.study-quality-list,
.study-active-steps {
  display: grid;
  gap: 8px;
}

.study-quality-row,
.study-step-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.study-quality-row span {
  color: rgba(234, 240, 246, 0.62);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.study-quality-row.good span {
  color: rgba(104, 234, 215, 0.94);
}

.study-quality-row.watch span {
  color: rgba(198, 233, 120, 0.92);
}

.study-quality-title,
.study-step-title {
  color: #f7f9fb;
  font-weight: 650;
}

.study-quality-meta,
.study-step-copy,
.study-session-path,
.study-participant-line {
  margin-top: 4px;
  color: rgba(234, 240, 246, 0.54);
  line-height: 1.38;
  font-size: 0.82rem;
}

.study-step-row {
  grid-template-columns: 28px minmax(0, 1fr);
}

.study-step-index {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(182, 234, 215, 0.09);
  color: rgba(187, 219, 255, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
}

.study-session-path {
  padding: 11px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.065);
  overflow-wrap: anywhere;
}

.study-participant-line span {
  color: #f7f9fb;
}

.study-empty-state {
  min-height: 220px;
  grid-column: 1 / -1;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(234, 240, 246, 0.62);
}

.study-empty-title {
  color: #f7f9fb;
  font-weight: 650;
}

.developer-workspace {
  padding: 8px 16px 18px;
  min-width: 0;
  overflow: auto;
}

.developer-minimal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.developer-minimal-grid.single-view {
  grid-template-columns: 1fr;
}

.developer-minimal-grid .developer-card {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--panel);
}

.developer-upload-panel,
.developer-session-panel {
  min-height: 0;
}

.developer-session-panel {
  grid-row: auto;
  min-height: 0;
}

.developer-minimal-grid .developer-card-span {
  grid-column: auto;
}

.developer-minimal-grid .developer-card-title-small {
  font-size: 1.02rem;
  font-weight: 720;
}

.developer-minimal-grid .developer-load-row {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.developer-minimal-grid .developer-path-field input,
.developer-minimal-grid .developer-inline-field select {
  border-radius: 8px;
  padding: 10px 12px;
}

.developer-minimal-grid .developer-load-actions {
  justify-content: flex-start;
}

.developer-session-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.developer-session-list {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 360px;
  min-height: 120px;
  overflow: auto;
  padding-right: 2px;
}

.developer-session-row {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.developer-session-row:hover,
.developer-session-row.selected {
  border-color: rgba(255, 106, 26, 0.34);
  background: rgba(255, 106, 26, 0.055);
}

.developer-session-row strong,
.developer-session-detail-head strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.developer-session-row span,
.developer-session-detail-head span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.developer-session-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.76rem;
  white-space: nowrap;
}

body.desktop-runtime.desktop-light-mode .developer-minimal-grid .developer-card {
  border-color: rgba(29, 28, 25, 0.1);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(58, 47, 35, 0.06);
}

body.desktop-runtime.desktop-light-mode .developer-session-row {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

body.desktop-runtime.desktop-light-mode .developer-session-row:hover,
body.desktop-runtime.desktop-light-mode .developer-session-row.selected {
  border-color: rgba(211, 85, 15, 0.32);
  background: rgba(255, 106, 26, 0.09);
}

body.desktop-runtime.desktop-light-mode .developer-session-row strong,
body.desktop-runtime.desktop-light-mode .developer-session-detail-head strong {
  color: rgba(29, 28, 25, 0.94);
}

body.desktop-runtime.desktop-light-mode .developer-session-row span,
body.desktop-runtime.desktop-light-mode .developer-session-row em,
body.desktop-runtime.desktop-light-mode .developer-session-detail-head span {
  color: rgba(29, 28, 25, 0.58);
}

.developer-live-panel {
  min-height: 0;
}

.developer-live-status {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  font-weight: 760;
  text-transform: uppercase;
}

.developer-live-status.connected {
  border-color: rgba(255, 106, 26, 0.26);
  color: rgba(255, 194, 158, 0.98);
  background: rgba(255, 106, 26, 0.08);
}

.developer-live-status.connected::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.12);
}

.developer-live-channels {
  min-height: 34px;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.developer-live-channels span {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  font-weight: 650;
}

.developer-live-channels span.active {
  border-color: rgba(255, 106, 26, 0.3);
  color: var(--text);
  background: rgba(255, 106, 26, 0.075);
}

.developer-live-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 10px;
}

.developer-live-plot-card {
  min-height: 202px;
  padding: 11px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 9px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.developer-live-plot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.developer-live-plot-head span,
.developer-live-plot-head strong {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: uppercase;
}

.developer-live-plot-head strong {
  color: var(--text);
  text-transform: none;
}

.developer-live-plot {
  width: 100%;
  min-height: 142px;
  overflow: visible;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.012);
}

.developer-live-gridline {
  stroke: var(--stroke);
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}

.developer-live-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.developer-live-line.raw {
  stroke: rgba(255, 106, 26, 0.94);
}

.developer-live-fft {
  min-height: 142px;
  height: 142px;
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.012);
}

.developer-live-fft span {
  position: relative;
  flex: 1;
  min-width: 3px;
  height: max(6px, calc(var(--level, 0.08) * 112px));
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, rgba(22, 212, 192, 0.92), rgba(255, 106, 26, 0.72));
  box-shadow: 0 0 10px rgba(22, 212, 192, 0.08);
}

.developer-live-fft span.peak {
  background: linear-gradient(180deg, rgba(255, 226, 92, 0.98), rgba(255, 106, 26, 0.86));
  box-shadow: 0 0 14px rgba(255, 106, 26, 0.28);
}

.developer-live-fft span[data-hz]::after {
  content: attr(data-hz);
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.developer-live-empty {
  width: 100%;
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.developer-session-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.developer-replay-visual {
  margin-top: 12px;
  padding: 11px;
  display: grid;
  gap: 9px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.developer-session-modal-shell .developer-replay-visual {
  margin-top: 0;
}

.developer-replay-visual-empty {
  min-height: 92px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.developer-replay-visual-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.developer-replay-visual-head span,
.developer-replay-visual-head em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
}

.developer-replay-visual-head strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 0.86rem;
}

.developer-replay-plot {
  width: 100%;
  height: 126px;
  overflow: visible;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.developer-replay-gridline,
.developer-replay-expected-line {
  stroke: var(--stroke);
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
}

.developer-replay-expected-line {
  stroke-dasharray: 2 2;
  opacity: 0.7;
}

.developer-replay-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.developer-replay-line.score {
  stroke: rgba(255, 106, 26, 0.95);
}

.developer-replay-line.confidence {
  stroke: rgba(22, 212, 192, 0.86);
}

.developer-replay-cursor {
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.developer-replay-event-dot {
  fill: rgba(255, 106, 26, 0.96);
  stroke: var(--panel);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.developer-replay-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
}

.developer-replay-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.developer-replay-legend i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
}

.developer-replay-legend .score {
  background: rgba(255, 106, 26, 0.95);
}

.developer-replay-legend .confidence {
  background: rgba(22, 212, 192, 0.86);
}

.developer-replay-legend .event {
  background: rgba(255, 255, 255, 0.78);
}

.developer-route-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.developer-route-card div {
  min-height: 66px;
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.developer-route-card span,
.developer-session-path {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.developer-route-card strong {
  color: var(--text);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.developer-session-path {
  margin-top: 10px;
  text-transform: none;
  overflow-wrap: anywhere;
}

body.desktop-runtime.desktop-light-mode .developer-replay-visual,
body.desktop-runtime.desktop-light-mode .developer-route-card div {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

body.desktop-runtime.desktop-light-mode .developer-replay-plot {
  background: linear-gradient(180deg, rgba(29, 28, 25, 0.035), rgba(29, 28, 25, 0.012));
}

body.desktop-runtime.desktop-light-mode .developer-replay-cursor {
  stroke: rgba(29, 28, 25, 0.42);
}

body.desktop-runtime.desktop-light-mode .developer-replay-legend .event {
  background: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode .developer-session-path {
  color: rgba(29, 28, 25, 0.56);
}

.developer-minimal-grid .developer-inspector-grid {
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 1fr) minmax(260px, 0.86fr);
  gap: 10px;
  margin-top: 12px;
}

.developer-minimal-grid .developer-inspector-panel {
  min-height: 310px;
  padding: 12px;
  border-radius: 8px;
}

.developer-minimal-grid .developer-empty {
  padding: 14px;
  border-radius: 8px;
}

.developer-minimal-grid .developer-validation-list,
.developer-minimal-grid .developer-loaded-list,
.developer-minimal-grid .developer-replay-report {
  gap: 8px;
  margin-top: 12px;
}

.developer-minimal-grid .developer-validation-item,
.developer-minimal-grid .developer-loaded-card,
.developer-minimal-grid .developer-replay-summary {
  border-radius: 8px;
}

.developer-replay-metrics.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.developer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.developer-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px;
  min-width: 0;
}

body.desktop-runtime.desktop-light-mode .developer-card {
  border-color: var(--stroke);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.08);
}

.developer-card-primary {
  min-height: 320px;
}

.developer-card-span {
  grid-column: 1 / -1;
}

.developer-card-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(242, 242, 239, 0.56);
  margin-bottom: 10px;
}

body.desktop-runtime.desktop-light-mode .developer-card-eyebrow {
  color: rgba(29, 28, 25, 0.62);
}

.developer-card-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.developer-card-title-small {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.developer-card-copy {
  margin: 12px 0 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.5;
}

.developer-load-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin-top: 26px;
  align-items: end;
}

.developer-path-field,
.developer-form-field {
  display: grid;
  gap: 8px;
}

.developer-field-label {
  color: rgba(242, 242, 239, 0.7);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.developer-path-field input,
.developer-form-field input,
.developer-form-field select,
.developer-plugin-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.developer-plugin-field textarea {
  min-height: 110px;
  resize: vertical;
}

.developer-path-field input::placeholder,
.developer-form-field input::placeholder,
.developer-plugin-field textarea::placeholder {
  color: rgba(242, 242, 239, 0.34);
}

.developer-form-field select {
  appearance: none;
}

.developer-load-actions {
  display: inline-flex;
  gap: 10px;
}

.developer-contract {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.developer-contract-title {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.62);
}

.developer-contract-code {
  margin-top: 10px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(242, 242, 239, 0.86);
  overflow-wrap: anywhere;
}

.developer-contract-note {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.developer-validation-list,
.developer-loaded-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.developer-validation-item,
.developer-loaded-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.developer-validation-item.info {
  border-color: rgba(255, 255, 255, 0.08);
}

.developer-validation-item.warning {
  border-color: rgba(255, 214, 102, 0.22);
}

.developer-validation-item.error {
  border-color: rgba(255, 123, 123, 0.26);
}

.developer-validation-level {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.developer-validation-item.warning .developer-validation-level {
  background: rgba(255, 214, 102, 0.16);
  color: rgba(255, 228, 162, 0.96);
}

.developer-validation-item.error .developer-validation-level {
  background: rgba(255, 123, 123, 0.12);
  color: rgba(255, 171, 171, 0.98);
}

.developer-validation-message {
  color: rgba(242, 242, 239, 0.82);
  line-height: 1.45;
  white-space: pre-wrap;
}

.developer-empty {
  padding: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: center;
}

body.desktop-runtime.desktop-light-mode .developer-validation-item,
body.desktop-runtime.desktop-light-mode .developer-loaded-card {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(58, 47, 35, 0.06);
}

body.desktop-runtime.desktop-light-mode .developer-validation-item.info {
  border-color: rgba(29, 28, 25, 0.11);
}

body.desktop-runtime.desktop-light-mode .developer-validation-item.warning {
  border-color: rgba(181, 117, 21, 0.26);
}

body.desktop-runtime.desktop-light-mode .developer-validation-item.error {
  border-color: rgba(182, 58, 58, 0.24);
}

body.desktop-runtime.desktop-light-mode .developer-validation-level {
  background: rgba(29, 28, 25, 0.055);
  color: rgba(29, 28, 25, 0.64);
}

body.desktop-runtime.desktop-light-mode .developer-validation-item.warning .developer-validation-level {
  background: rgba(255, 196, 102, 0.18);
  color: rgba(111, 72, 12, 0.92);
}

body.desktop-runtime.desktop-light-mode .developer-validation-item.error .developer-validation-level {
  background: rgba(255, 123, 123, 0.13);
  color: rgba(134, 38, 38, 0.94);
}

body.desktop-runtime.desktop-light-mode .developer-validation-message {
  color: rgba(29, 28, 25, 0.76);
}

body.desktop-runtime.desktop-light-mode .developer-empty {
  border-color: rgba(29, 28, 25, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(29, 28, 25, 0.56);
}

.developer-loaded-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.developer-loaded-name {
  font-size: 1rem;
  font-weight: 560;
}

.developer-loaded-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.developer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.developer-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 242, 239, 0.78);
  font-size: 0.78rem;
}

body.desktop-runtime.desktop-light-mode .developer-chip {
  border: 1px solid rgba(29, 28, 25, 0.08);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.68);
}

.developer-loaded-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.developer-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.developer-card-row-stack {
  flex-wrap: wrap;
}

.developer-inspector-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.developer-replay-report {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.developer-replay-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.developer-replay-title {
  color: rgba(242, 242, 239, 0.95);
  font-weight: 680;
  letter-spacing: 0;
}

.developer-replay-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.developer-replay-metric {
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(22, 212, 192, 0.14);
  border-radius: 14px;
  background: rgba(22, 212, 192, 0.055);
}

.developer-replay-metric span {
  color: rgba(242, 242, 239, 0.56);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.developer-replay-metric strong {
  color: rgba(242, 242, 239, 0.95);
  font-size: 1.18rem;
  font-weight: 720;
}

.developer-inline-field {
  display: grid;
  gap: 6px;
  min-width: 150px;
}

.developer-inline-label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.56);
}

.developer-inline-field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 11px 14px;
  outline: none;
  appearance: none;
}

.developer-inspector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.developer-inspector-panel {
  min-height: 360px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.developer-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.developer-panel-title {
  font-size: 0.98rem;
  font-weight: 560;
}

.developer-panel-meta {
  font-size: 0.76rem;
  color: rgba(242, 242, 239, 0.52);
}

.developer-detector-list,
.developer-event-stream,
.developer-routing-list,
.developer-debug-pane {
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 10px;
  align-content: start;
}

.developer-detector-card,
.developer-event-row,
.developer-routing-row,
.developer-debug-card {
  padding: 14px 15px;
  border-radius: 16px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.developer-detector-card {
  display: grid;
  gap: 10px;
}

.developer-detector-head,
.developer-event-head,
.developer-routing-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.developer-detector-name,
.developer-event-title,
.developer-routing-title {
  font-size: 0.94rem;
  font-weight: 560;
}

.developer-detector-state,
.developer-event-badge,
.developer-routing-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 242, 239, 0.74);
}

.developer-detector-state.cooldown,
.developer-event-badge.state,
.developer-routing-status.executed {
  background: rgba(22, 212, 192, 0.12);
  color: rgba(190, 255, 249, 0.96);
}

.developer-event-badge.error,
.developer-routing-status.failed {
  background: rgba(255, 123, 123, 0.12);
  color: rgba(255, 171, 171, 0.96);
}

.developer-event-badge.mapping {
  background: rgba(120, 170, 255, 0.12);
  color: rgba(196, 220, 255, 0.96);
}

.developer-detector-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.developer-detector-metric {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.developer-detector-metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 242, 239, 0.48);
}

.developer-detector-metric-value {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 560;
}

.developer-detector-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.developer-event-row,
.developer-routing-row {
  cursor: pointer;
  transition: 140ms ease;
}

.developer-event-row:hover,
.developer-routing-row:hover,
.developer-event-row.selected,
.developer-routing-row.selected {
  border-color: rgba(22, 212, 192, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(22, 212, 192, 0.05));
}

.developer-event-time,
.developer-routing-time {
  font-size: 0.74rem;
  color: rgba(242, 242, 239, 0.5);
}

.developer-event-copy,
.developer-routing-copy,
.developer-debug-copy {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  word-break: break-word;
}

.developer-debug-card {
  display: grid;
  gap: 12px;
}

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

.developer-debug-cell {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.developer-debug-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 242, 239, 0.48);
}

.developer-debug-value {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 520;
  line-height: 1.4;
  word-break: break-word;
}

.developer-debug-json {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(242, 242, 239, 0.82);
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.developer-loaded-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 212, 192, 0.12);
  color: rgba(190, 255, 249, 0.96);
  border: 1px solid rgba(22, 212, 192, 0.18);
  font-size: 0.75rem;
}

body.desktop-runtime.desktop-light-mode .developer-loaded-badge {
  background: rgba(18, 176, 159, 0.1);
  color: rgba(9, 103, 92, 0.92);
  border-color: rgba(12, 140, 125, 0.2);
}

.developer-visual-console {
  display: grid;
  gap: 14px;
}

.developer-console-head {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 106, 26, 0.08), rgba(22, 212, 192, 0.055) 52%, rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.developer-console-head h1 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 1.38rem;
  line-height: 1.05;
}

.developer-console-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.developer-console-controls {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.018);
}

.developer-control-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.developer-control-label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.developer-preset-group,
.developer-widget-toggle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.developer-preset-group button,
.developer-widget-toggle-list button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: 140ms ease;
}

.developer-preset-group button:hover,
.developer-widget-toggle-list button:hover {
  border-color: rgba(255, 106, 26, 0.28);
  color: var(--text);
  background: rgba(255, 106, 26, 0.055);
}

.developer-preset-group button.active,
.developer-widget-toggle-list button.active {
  border-color: rgba(255, 106, 26, 0.38);
  background: rgba(255, 106, 26, 0.12);
  color: var(--text);
}

.developer-widget-toggle-list button span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(242, 242, 239, 0.22);
}

.developer-widget-toggle-list button.active span {
  background: rgba(22, 212, 192, 0.92);
  box-shadow: 0 0 0 4px rgba(22, 212, 192, 0.1);
}

.developer-visible-summary {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(22, 212, 192, 0.18);
  border-radius: 999px;
  color: rgba(190, 255, 249, 0.95);
  background: rgba(22, 212, 192, 0.1);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  white-space: nowrap;
}

.developer-console-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.developer-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.developer-widget-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.developer-widget-grid > .developer-card {
  min-width: 0;
  min-height: 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--panel);
}

.developer-widget-grid > .developer-widget-hidden {
  display: none;
}

.developer-widget-span-3 {
  grid-column: span 3;
}

.developer-widget-span-4 {
  grid-column: span 4;
}

.developer-widget-span-6 {
  grid-column: span 6;
}

.developer-widget-span-8 {
  grid-column: span 8;
}

.developer-widget-span-12 {
  grid-column: 1 / -1;
}

.developer-timeseries-stack {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.developer-timeseries-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.developer-timeseries-label,
.developer-timeseries-value {
  min-width: 0;
}

.developer-timeseries-label strong {
  display: block;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 760;
}

.developer-timeseries-label span,
.developer-timeseries-value {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.developer-timeseries-row svg {
  width: 100%;
  height: 46px;
  overflow: visible;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.09);
}

.developer-scope-plot {
  margin-top: 10px;
  height: 124px;
}

.developer-live-line.filtered {
  stroke: rgba(22, 212, 192, 0.9);
}

.developer-live-line.soft {
  opacity: 0.38;
}

.developer-plot-legend,
.developer-replay-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.developer-plot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.developer-plot-legend i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
}

.developer-plot-legend .raw {
  background: rgba(255, 106, 26, 0.94);
}

.developer-plot-legend .filtered {
  background: rgba(22, 212, 192, 0.9);
}

.developer-band-grid {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.developer-band-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 74px;
  align-items: center;
  gap: 10px;
}

.developer-band-row strong,
.developer-axis-row strong,
.developer-packet-grid strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 760;
}

.developer-band-row span,
.developer-band-row em,
.developer-axis-row span,
.developer-packet-grid span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
}

.developer-band-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.055);
}

.developer-band-meter i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(22, 212, 192, 0.92), rgba(255, 106, 26, 0.82));
}

.developer-spectrogram {
  min-height: 184px;
  display: grid;
  grid-template-rows: auto minmax(132px, 1fr) auto;
  gap: 7px;
  margin-top: 12px;
  padding: 8px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.13);
}

.developer-spectrogram-meta,
.developer-spectrogram-axis {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.developer-spectrogram-meta strong {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 760;
}

.developer-spectrogram-canvas {
  width: 100%;
  height: 150px;
  min-height: 132px;
  display: block;
  border-radius: 6px;
  background: #081120;
}

.developer-head-plot {
  position: relative;
  min-height: 250px;
  margin-top: 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 212, 192, 0.09), transparent 58%),
    rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.developer-head-outline {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  aspect-ratio: 0.74;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48% 48% 44% 44%;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.09) 50%, transparent 50.5%),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.045), transparent 28%);
}

.developer-head-node {
  position: absolute;
  width: 34px;
  height: 24px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: rgba(242, 242, 239, 0.48);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 760;
}

.developer-head-node.active {
  border-color: rgba(22, 212, 192, 0.28);
  color: var(--text);
  background:
    radial-gradient(circle, rgba(255, 106, 26, calc(0.16 + var(--level) * 0.32)), rgba(22, 212, 192, calc(0.08 + var(--level) * 0.16)));
  box-shadow: 0 0 calc(6px + var(--level) * 18px) rgba(255, 106, 26, calc(0.1 + var(--level) * 0.26));
}

.developer-accelerometer {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.developer-axis-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 54px;
  gap: 8px;
  align-items: center;
}

.developer-axis-row svg {
  width: 100%;
  height: 34px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.09);
}

.developer-orientation-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 58px;
  gap: 8px;
  align-items: center;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.developer-orientation-row span,
.developer-orientation-row em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
}

.developer-orientation-row strong {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 740;
}

.developer-packet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.developer-packet-grid div {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.developer-empty.compact {
  min-height: 86px;
  display: grid;
  place-items: center;
}

.visual-select-workspace {
  min-height: calc(100vh - 74px);
  padding: 12px clamp(10px, 1.2vw, 16px) 16px;
  color: var(--text);
  background: var(--bg);
  overflow: auto;
  user-select: none;
  -webkit-user-select: none;
}

.visual-select-shell {
  max-width: 1460px;
  min-height: calc(100vh - 102px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  margin: 0 auto;
}

.visual-select-header,
.visual-select-output-panel,
.visual-select-log-card {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow, 0 12px 30px rgba(0, 0, 0, 0.12));
}

.visual-select-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
}

.visual-select-context {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.visual-select-context span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-select-context strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 760;
}

.visual-select-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.visual-select-status-pill,
.visual-select-toggle,
.visual-select-calibrate,
.visual-select-fullscreen,
.visual-select-exit-fullscreen {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 740;
}

.visual-select-status-pill.connected {
  border-color: rgba(255, 106, 26, 0.35);
  color: #ff6a1a;
  background: rgba(255, 106, 26, 0.1);
}

.visual-select-toggle,
.visual-select-calibrate,
.visual-select-fullscreen,
.visual-select-exit-fullscreen,
.visual-select-primary-action,
.visual-select-secondary-action {
  font: inherit;
  cursor: pointer;
}

.visual-select-exit-fullscreen {
  display: none;
}

.visual-select-toggle input {
  accent-color: #ff6a1a;
}

.visual-select-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  gap: 12px;
  min-height: 0;
}

.visual-select-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(172px, 1fr));
  gap: 12px;
}

.visual-select-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 14px;
  min-height: 172px;
  padding: clamp(16px, 1.9vw, 24px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: var(--shadow, 0 14px 32px rgba(0, 0, 0, 0.12));
  transform: translateZ(0);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.visual-select-tile::before,
.visual-select-tile::after,
.visual-select-tile i {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-select-tile::before {
  inset: 12px;
  z-index: -1;
  border-radius: 6px;
  opacity: 0.82;
  animation:
    visualSelectPulse var(--pulse-seconds, 1.55s) ease-in-out infinite,
    visualSelectPatternDrift calc(var(--pulse-seconds, 1.55s) * 2.4) linear infinite;
  animation-delay: var(--phase-offset, 0s);
  background-position: 0 0;
  background-size: auto;
  will-change: opacity, background-position, transform;
}

.visual-select-tile::after {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, currentColor 10%, transparent), transparent 34%),
    linear-gradient(115deg, transparent 0 18%, color-mix(in srgb, currentColor 8%, transparent) 38%, transparent 58% 100%);
  opacity: 0.78;
  animation: visualSelectSheen 5.2s linear infinite;
  animation-delay: calc(var(--phase-offset, 0s) * -1);
  background-size: 140% 140%, 220% 100%;
  will-change: background-position, opacity;
}

.visual-select-tile i {
  right: 18px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid color-mix(in srgb, currentColor 42%, transparent);
  background: color-mix(in srgb, var(--panel) 82%, currentColor 8%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 24%, transparent);
  opacity: 0.78;
}

.visual-select-tile i::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ff6a1a;
  transform: scaleY(var(--selection-fill, 0));
  transform-origin: bottom;
  transition: transform 950ms cubic-bezier(0.2, 0.82, 0.18, 1);
  box-shadow: 0 0 22px rgba(255, 106, 26, 0.44);
}

.visual-select-tile[data-visual-pattern="bars"]::before {
  background: repeating-linear-gradient(90deg, color-mix(in srgb, currentColor 34%, transparent) 0 10px, transparent 10px 22px);
  background-size: 44px 100%;
}

.visual-select-tile[data-visual-pattern="rings"]::before {
  background: repeating-radial-gradient(circle at 50% 50%, color-mix(in srgb, currentColor 30%, transparent) 0 2px, transparent 2px 13px);
  animation-name: visualSelectPulse, visualSelectPatternOrbit;
}

.visual-select-tile[data-visual-pattern="diagonal"]::before {
  background: repeating-linear-gradient(135deg, transparent 0 9px, color-mix(in srgb, currentColor 32%, transparent) 9px 12px, transparent 12px 23px);
  background-size: 54px 54px;
}

.visual-select-tile[data-visual-pattern="grid"]::before {
  background:
    repeating-linear-gradient(0deg, color-mix(in srgb, currentColor 24%, transparent) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(90deg, color-mix(in srgb, currentColor 24%, transparent) 0 1px, transparent 1px 16px);
  background-size: 36px 36px;
}

.visual-select-tile[data-visual-pattern="blocks"]::before {
  background:
    linear-gradient(90deg, transparent 0 10%, color-mix(in srgb, currentColor 28%, transparent) 10% 30%, transparent 30% 66%, color-mix(in srgb, currentColor 28%, transparent) 66% 88%, transparent 88% 100%),
    repeating-linear-gradient(0deg, transparent 0 15px, color-mix(in srgb, currentColor 16%, transparent) 15px 18px);
  background-size: 160px 100%, 100% 40px;
}

.visual-select-tile[data-visual-pattern="dots"]::before {
  background: radial-gradient(circle, color-mix(in srgb, currentColor 34%, transparent) 0 2.5px, transparent 3.8px);
  background-size: 20px 20px;
}

.visual-select-tile:nth-child(1) { color: #f4f1e9; }
.visual-select-tile:nth-child(2) { color: #d8d4c8; }
.visual-select-tile:nth-child(3) { color: #f0d0a6; }
.visual-select-tile:nth-child(4) { color: #dfb08c; }
.visual-select-tile:nth-child(5) { color: #cfc9b8; }
.visual-select-tile:nth-child(6) { color: #f3e6c7; }

body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(1) { color: #25231f; }
body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(2) { color: #514b42; }
body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(3) { color: #8a4d24; }
body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(4) { color: #6d5a49; }
body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(5) { color: #34312c; }
body.desktop-runtime.desktop-light-mode .visual-select-tile:nth-child(6) { color: #7a421d; }

.visual-select-tile:hover,
.visual-select-tile.predicted {
  border-color: rgba(255, 106, 26, 0.38);
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 106, 26, 0.12),
    0 16px 34px rgba(255, 106, 26, 0.12);
  transform: translateY(-1px);
}

.visual-select-tile.selected {
  border-color: rgba(255, 106, 26, 0.62);
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 106, 26, 0.18),
    0 18px 38px rgba(255, 106, 26, 0.16);
}

.visual-select-tile.calibration {
  border-color: var(--stroke-strong);
  background: color-mix(in srgb, var(--panel) 82%, var(--text) 8%);
}

.visual-select-tile strong {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.visual-select-tile small,
.visual-select-shortcut {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-select-shortcut {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--panel-2);
}

.visual-select-side-panel {
  display: grid;
  align-content: start;
  gap: 9px;
}

.visual-select-side-card {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--panel-2);
}

.visual-select-side-card span,
.visual-select-detected span,
.visual-select-selected span,
.visual-select-confidence-top span,
.visual-select-panel-head span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 780;
  text-transform: uppercase;
}

.visual-select-side-card strong,
.visual-select-detected strong,
.visual-select-selected strong {
  color: var(--text);
  font-size: 0.96rem;
}

.visual-select-api-card code {
  color: color-mix(in srgb, var(--text) 74%, #ff6a1a 26%);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  white-space: normal;
}

.visual-select-output-panel {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(240px, 1.1fr) minmax(190px, 0.8fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.visual-select-detected,
.visual-select-selected,
.visual-select-confidence {
  display: grid;
  gap: 8px;
}

.visual-select-detected small {
  color: var(--muted);
  font-size: 0.72rem;
}

.visual-select-confidence-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.visual-select-confidence-top strong {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.visual-select-confidence-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--panel-3);
}

.visual-select-confidence-bar i {
  width: 0%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(207, 199, 186, 0.9), #ff6a1a);
  transition: width 90ms linear;
}

.visual-select-output-actions {
  display: flex;
  gap: 8px;
}

.visual-select-primary-action,
.visual-select-secondary-action {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel-2);
  font-weight: 760;
}

.visual-select-primary-action {
  border-color: rgba(255, 106, 26, 0.38);
  background: #ff6a1a;
  color: #15100d;
}

.visual-select-history-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
}

.visual-select-log-card {
  min-height: 124px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.visual-select-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.visual-select-panel-head strong {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.visual-select-event-log,
.visual-select-phrase-history {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.visual-select-event-log div,
.visual-select-phrase-history div,
.visual-select-empty {
  min-height: 46px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--panel-2);
}

.visual-select-event-log span,
.visual-select-phrase-history span,
.visual-select-empty {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.visual-select-event-log strong,
.visual-select-phrase-history strong {
  color: var(--text);
  font-size: 0.74rem;
}

.visual-select-fullscreen-active .site-header,
.visual-select-fullscreen-active .desktop-window-controls,
.visual-select-fullscreen-active .desktop-theme-toggle {
  display: none;
}

body.visual-select-fullscreen-active.desktop-runtime .desktop-window-controls,
body.visual-select-fullscreen-active.desktop-runtime .desktop-theme-toggle {
  display: none;
}

body.visual-select-fullscreen-active,
body.visual-select-fullscreen-active * {
  user-select: none;
  -webkit-user-select: none;
}

.visual-select-fullscreen-active .visual-select-exit-fullscreen {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  border-radius: 999px;
  border-color: color-mix(in srgb, var(--stroke) 72%, #ff6a1a 28%);
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.visual-select-exit-fullscreen span,
.visual-select-exit-fullscreen span::before,
.visual-select-exit-fullscreen span::after {
  position: absolute;
  display: block;
}

.visual-select-exit-fullscreen span {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.visual-select-exit-fullscreen span::before,
.visual-select-exit-fullscreen span::after {
  content: "";
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.visual-select-exit-fullscreen span::before {
  transform: rotate(45deg);
}

.visual-select-exit-fullscreen span::after {
  transform: rotate(-45deg);
}

.visual-select-fullscreen-active .visual-select-workspace {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.visual-select-fullscreen-active .visual-select-shell {
  max-width: none;
  min-height: 100vh;
  height: 100vh;
  display: block;
  margin: 0;
}

.visual-select-fullscreen-active .visual-select-header,
.visual-select-fullscreen-active .visual-select-side-panel,
.visual-select-fullscreen-active .visual-select-output-panel,
.visual-select-fullscreen-active .visual-select-history-panel {
  display: none;
}

.visual-select-fullscreen-active .visual-select-main {
  height: 100vh;
  display: block;
}

.visual-select-fullscreen-active .visual-select-grid {
  width: 100vw;
  height: 100vh;
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.visual-select-fullscreen-active .visual-select-tile {
  min-height: 0;
  align-content: center;
  justify-items: center;
  border-radius: 0;
  border-width: 0 1px 1px 0;
  box-shadow: none;
  padding: clamp(24px, 4vw, 64px);
  text-align: center;
}

.visual-select-fullscreen-active .visual-select-tile:hover,
.visual-select-fullscreen-active .visual-select-tile.predicted,
.visual-select-fullscreen-active .visual-select-tile.selected {
  background: var(--panel);
}

.visual-select-fullscreen-active .visual-select-tile::before {
  inset: clamp(18px, 3vw, 46px);
}

.visual-select-fullscreen-active .visual-select-tile strong {
  font-size: clamp(3.2rem, 8vw, 9.8rem);
  line-height: 0.9;
}

.visual-select-fullscreen-active .visual-select-tile small,
.visual-select-fullscreen-active .visual-select-shortcut {
  display: none;
}

.visual-select-fullscreen-active .visual-select-tile i {
  right: clamp(24px, 4vw, 62px);
  bottom: clamp(24px, 4vw, 62px);
  width: clamp(62px, 8vw, 132px);
  height: clamp(62px, 8vw, 132px);
}

@keyframes visualSelectPulse {
  0%, 100% {
    opacity: 0.56;
  }
  50% {
    opacity: 0.96;
  }
}

@keyframes visualSelectPatternDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 176px 118px, -90px 124px;
  }
}

@keyframes visualSelectPatternOrbit {
  0% {
    background-position: 50% 50%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    background-position: 64% 38%;
    transform: rotate(4deg) scale(1.06);
  }
  100% {
    background-position: 50% 50%;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes visualSelectSheen {
  0% {
    background-position: 0% 0%, 180% 0%;
    opacity: 0.42;
  }
  50% {
    background-position: 50% 36%, 60% 0%;
    opacity: 0.84;
  }
  100% {
    background-position: 100% 72%, -80% 0%;
    opacity: 0.42;
  }
}

body.desktop-runtime.desktop-light-mode .developer-console-head,
body.desktop-runtime.desktop-light-mode .developer-console-controls,
body.desktop-runtime.desktop-light-mode .developer-widget-grid > .developer-card {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(58, 47, 35, 0.06);
}

body.desktop-runtime.desktop-light-mode .developer-preset-group button,
body.desktop-runtime.desktop-light-mode .developer-widget-toggle-list button {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode .developer-preset-group button:hover,
body.desktop-runtime.desktop-light-mode .developer-widget-toggle-list button:hover,
body.desktop-runtime.desktop-light-mode .developer-preset-group button.active,
body.desktop-runtime.desktop-light-mode .developer-widget-toggle-list button.active {
  border-color: rgba(211, 85, 15, 0.3);
  background: rgba(255, 106, 26, 0.1);
  color: rgba(29, 28, 25, 0.92);
}

body.desktop-runtime.desktop-light-mode .developer-visible-summary {
  border-color: rgba(12, 140, 125, 0.18);
  background: rgba(18, 176, 159, 0.1);
  color: rgba(9, 103, 92, 0.94);
}

body.desktop-runtime.desktop-light-mode .developer-timeseries-row,
body.desktop-runtime.desktop-light-mode .developer-packet-grid div {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

body.desktop-runtime.desktop-light-mode .developer-timeseries-row svg,
body.desktop-runtime.desktop-light-mode .developer-axis-row svg,
body.desktop-runtime.desktop-light-mode .developer-spectrogram,
body.desktop-runtime.desktop-light-mode .developer-head-plot {
  background: rgba(29, 28, 25, 0.035);
}

body.desktop-runtime.desktop-light-mode .developer-head-outline {
  border-color: rgba(29, 28, 25, 0.14);
}

body.desktop-runtime.desktop-light-mode .developer-head-node {
  border-color: rgba(29, 28, 25, 0.12);
  color: rgba(29, 28, 25, 0.58);
  background: rgba(255, 255, 255, 0.62);
}

body.desktop-runtime.desktop-light-mode .developer-head-node.active {
  color: rgba(29, 28, 25, 0.9);
}

@media (max-width: 1220px) {
  .visual-select-main {
    grid-template-columns: 1fr;
  }

  .visual-select-side-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .visual-select-api-card {
    grid-column: 1 / -1;
  }

  .visual-select-output-panel {
    grid-template-columns: 1fr 1fr;
  }

  .visual-select-output-actions {
    justify-content: start;
  }

  .developer-console-controls {
    grid-template-columns: 1fr;
  }

  .developer-console-meta,
  .developer-visible-summary {
    justify-self: start;
    justify-items: start;
  }

  .developer-widget-span-3,
  .developer-widget-span-4 {
    grid-column: span 6;
  }

  .developer-widget-span-6,
  .developer-widget-span-8,
  .developer-widget-span-12 {
    grid-column: 1 / -1;
  }

  .developer-minimal-grid {
    grid-template-columns: 1fr;
  }

  .developer-session-panel {
    grid-row: auto;
  }

  .developer-minimal-grid .developer-inspector-grid {
    grid-template-columns: 1fr;
  }

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

  .developer-card-primary {
    min-height: 0;
  }

  .developer-inspector-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .visual-select-workspace {
    padding: 8px;
  }

  .visual-select-header {
    align-items: flex-start;
    display: grid;
  }

  .visual-select-header-actions {
    justify-content: start;
  }

  .visual-select-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .visual-select-side-panel,
  .visual-select-output-panel,
  .visual-select-history-panel,
  .visual-select-event-log,
  .visual-select-phrase-history {
    grid-template-columns: 1fr;
  }

  .visual-select-tile {
    min-height: 142px;
  }

  .visual-select-output-actions {
    display: grid;
  }

  .developer-console-head,
  .developer-console-actions {
    align-items: stretch;
    display: grid;
  }

  .developer-console-controls {
    padding: 10px;
  }

  .developer-preset-group,
  .developer-widget-toggle-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-preset-group button,
  .developer-widget-toggle-list button,
  .developer-visible-summary {
    width: 100%;
  }

  .developer-console-meta,
  .developer-card-actions {
    width: 100%;
    display: grid;
    justify-items: stretch;
  }

  .developer-widget-grid {
    grid-template-columns: 1fr;
  }

  .developer-widget-span-3,
  .developer-widget-span-4,
  .developer-widget-span-6,
  .developer-widget-span-8,
  .developer-widget-span-12 {
    grid-column: 1 / -1;
  }

  .developer-timeseries-row,
  .developer-band-row,
  .developer-axis-row,
  .developer-orientation-row {
    grid-template-columns: 1fr;
  }

  .developer-packet-grid {
    grid-template-columns: 1fr;
  }

  .developer-session-grid {
    grid-template-columns: 1fr;
  }

  .developer-live-grid {
    grid-template-columns: 1fr;
  }

  .developer-route-card {
    grid-template-columns: 1fr;
  }

  .developer-workspace {
    padding: 14px;
  }

  .developer-card {
    padding: 18px;
    border-radius: 22px;
  }

  .developer-card-title {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
  }

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

  .developer-load-actions,
  .developer-inspector-toolbar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .developer-inline-field {
    min-width: 0;
  }

  .developer-loaded-top,
  .developer-card-row {
    flex-direction: column;
    align-items: stretch;
  }

  .developer-loaded-actions {
    justify-content: flex-start;
  }

  .developer-panel-header,
  .developer-detector-head,
  .developer-event-head,
  .developer-routing-head,
  .developer-detector-foot {
    display: grid;
    gap: 8px;
  }

  .developer-detector-metrics,
  .developer-debug-grid {
    grid-template-columns: 1fr;
  }
}

.library-column {
  display: grid;
  grid-template-rows: 48px 1fr;
  gap: 12px;
  align-content: start;
}

.library-panel,
.canvas-shell {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.library-panel {
  overflow: hidden;
  padding-top: 16px;
  height: var(--surface-height);
}

.library-panel.drop-target {
  border-color: rgba(22, 212, 192, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(22, 212, 192, 0.12);
  background: linear-gradient(180deg, rgba(33, 33, 33, 1), rgba(22, 212, 192, 0.04));
}

.library-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 6px 16px 20px;
}

.library-toolbar .search-shell {
  margin: 0;
}

.column-label {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  font-size: 0.86rem;
  color: rgba(242, 242, 239, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
}

.column-label-right {
  text-align: center;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 16px 20px;
  padding: 0 14px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(242, 242, 239, 0.5);
}

.action-add-button {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.042);
}

.search-shell input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-shell input::placeholder {
  color: rgba(242, 242, 239, 0.4);
}

.search-icon {
  display: grid;
  place-items: center;
  color: rgba(242, 242, 239, 0.42);
}

.search-icon svg {
  width: 16px;
  height: 16px;
}

.device-stack,
.library-list {
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 10px;
  padding: 0 16px 16px;
  height: calc(var(--surface-height) - 94px);
  overflow: auto;
}

.device-card,
.library-item {
  width: 100%;
  min-height: 76px;
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  transition: 160ms ease;
  position: relative;
}

.device-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.device-card:hover,
.library-item:hover {
  background: var(--panel-3);
  border-color: var(--stroke-strong);
}

.library-item.blocked {
  opacity: 0.46;
  cursor: not-allowed;
}

.library-item.blocked:hover {
  background: var(--panel-2);
  border-color: transparent;
}

.library-item[data-custom="true"] .library-item-title::after {
  content: "Custom";
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(22, 212, 192, 0.16);
  background: rgba(22, 212, 192, 0.1);
  color: rgba(242, 242, 239, 0.72);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.library-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 242, 239, 0.58);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.library-remove:hover {
  color: rgba(255, 123, 123, 0.94);
  border-color: rgba(255, 123, 123, 0.22);
}

.device-card.active {
  border-color: transparent;
  box-shadow: none;
}

.device-card-title,
.library-item-title {
  font-size: 1rem;
  font-weight: 540;
}

.device-card-meta,
.library-item-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.device-card-status {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 26, 0.2);
  background: rgba(255, 106, 26, 0.08);
  color: rgba(255, 185, 142, 0.94);
  font-size: 0.68rem;
  white-space: nowrap;
}

.library-item {
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.item-icon,
.node-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f4f4ef;
  color: #111;
  display: grid;
  place-items: center;
}

.library-item.bluetooth-active .item-icon,
.stage-node.bluetooth-active .node-icon {
  background: linear-gradient(180deg, rgba(91, 190, 255, 0.24), rgba(46, 130, 255, 0.16));
  color: #9fe3ff;
  box-shadow: inset 0 0 0 1px rgba(116, 214, 255, 0.24);
}

.item-icon svg,
.node-icon svg {
  width: 24px;
  height: 24px;
}

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

.canvas-column {
  display: grid;
  grid-template-rows: 48px 1fr;
  gap: 12px;
  min-height: 0;
  align-content: start;
}

.canvas-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  min-height: 48px;
  padding: 0 2px;
}

.canvas-title {
  font-size: 0.86rem;
  color: rgba(242, 242, 239, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-align: center;
}

.ghost-button,
.arm-button {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.arm-button {
  background: linear-gradient(135deg, rgba(22, 212, 192, 0.92), rgba(22, 212, 192, 0.74));
  color: #03110f;
  font-weight: 700;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.toolbar-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  font-size: 0.82rem;
  color: rgba(242, 242, 239, 0.76);
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(255, 255, 255, 0.08);
}

.toolbar-action svg {
  width: 15px;
  height: 15px;
}

.canvas-shell {
  position: relative;
  height: var(--surface-height);
  padding: 72px 16px 16px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.canvas-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.canvas-floating-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

body.desktop-runtime #sandboxWorkspace .library-toolbar {
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: stretch;
  gap: 8px;
}

body.desktop-runtime #sandboxWorkspace .action-add-button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  align-self: stretch;
  justify-self: stretch;
  padding: 0;
  border-radius: 14px;
  border-color: rgba(255, 106, 26, 0.2);
  background: rgba(255, 106, 26, 0.055);
  color: rgba(255, 153, 92, 0.92);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1;
}

body.desktop-runtime #sandboxWorkspace .action-add-button svg {
  width: 17px;
  height: 17px;
}

body.desktop-runtime #sandboxWorkspace .action-add-button:hover,
body.desktop-runtime #sandboxWorkspace .canvas-floating-actions .toolbar-action:hover {
  border-color: rgba(255, 106, 26, 0.34);
  background: rgba(255, 106, 26, 0.09);
  color: #ff6a1a;
  box-shadow: 0 10px 22px rgba(255, 106, 26, 0.1);
}

body.desktop-runtime #sandboxWorkspace .canvas-floating-actions .toolbar-action {
  min-height: 34px;
  padding: 6px 10px;
  border-color: rgba(255, 106, 26, 0.18);
  background: rgba(255, 106, 26, 0.055);
  color: rgba(255, 153, 92, 0.92);
  box-shadow: none;
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .action-add-button,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .canvas-floating-actions .toolbar-action {
  border-color: rgba(211, 85, 15, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(211, 85, 15, 0.9);
}

body.desktop-runtime.desktop-light-mode #sandboxWorkspace .action-add-button:hover,
body.desktop-runtime.desktop-light-mode #sandboxWorkspace .canvas-floating-actions .toolbar-action:hover {
  border-color: rgba(211, 85, 15, 0.3);
  background: rgba(255, 106, 26, 0.08);
  color: #d3550f;
  box-shadow: 0 10px 22px rgba(211, 85, 15, 0.08);
}

.lane {
  position: relative;
  z-index: 2;
  min-height: 160px;
}

.lane + .lane {
  margin-top: 26px;
}

.lane-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: rgba(242, 242, 239, 0.72);
}

.lane-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.stage-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  min-height: 120px;
  padding: 10px 4px;
}

.stage-row.over {
  background: rgba(22, 212, 192, 0.04);
  box-shadow: inset 0 0 0 1px rgba(22, 212, 192, 0.18);
  border-radius: 20px;
}

.lane-empty {
  width: 100%;
  min-height: 112px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.stage-node {
  position: relative;
  min-width: 122px;
  min-height: 104px;
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(45, 45, 45, 0.96), rgba(31, 31, 31, 0.96));
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.stage-node.input-node {
  width: 160px;
  min-height: 134px;
  align-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.stage-node.action-node {
  width: 160px;
  justify-items: center;
  padding-inline: 10px;
}

.stage-node.selected {
  border-color: var(--teal);
  box-shadow: 0 20px 44px rgba(22, 212, 192, 0.16);
}

.node-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(91, 190, 255, 0.12);
  border: 1px solid rgba(91, 190, 255, 0.2);
  color: rgba(191, 232, 255, 0.9);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.node-config {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(242, 242, 239, 0.54);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.node-config svg {
  width: 10px;
  height: 10px;
}

.stage-node-label {
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.3;
}

.node-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
}

.node-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.72rem;
}

.node-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 100%;
}

.link-pill {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(22, 212, 192, 0.12);
  border: 1px solid rgba(22, 212, 192, 0.18);
  color: rgba(242, 242, 239, 0.78);
  font-size: 0.68rem;
}

.command-stack {
  display: grid;
  gap: 6px;
  width: 100%;
  justify-self: stretch;
}

.command-row {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: 160ms ease;
}

.command-row.link-ready {
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.14);
}

.command-row.link-ready:hover {
  background: rgba(255, 106, 26, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.3);
}

.command-row.mapped {
  background: rgba(255, 106, 26, 0.075);
}

.command-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.command-label {
  font-size: 0.72rem;
  color: rgba(242, 242, 239, 0.92);
  line-height: 1.2;
}

.command-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.command-pill {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.2);
  color: rgba(255, 214, 190, 0.92);
  font-size: 0.62rem;
}

.command-port {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(242, 242, 239, 0.4);
  background: transparent;
}

.command-port.active {
  border-color: rgba(255, 106, 26, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.14);
}

.connections-layer {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.connection-glow {
  fill: none;
  stroke: rgba(255, 106, 26, 0.18);
  stroke-width: 6;
  stroke-linecap: round;
}

.connection-line {
  fill: none;
  stroke: rgba(255, 106, 26, 0.78);
  stroke-width: 2.1;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(255, 106, 26, 0.18));
}

.quick-control-modal {
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top center, rgba(22, 212, 192, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.98), rgba(24, 24, 24, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.quick-control-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quick-control-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px 20px;
  min-height: 0;
}

.quick-control-sidebar {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  min-height: 0;
}

.quick-status-card,
.quick-context-card,
.quick-route-list-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.quick-status-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(242, 242, 239, 0.48);
  margin-bottom: 8px;
}

.quick-status-headline,
.quick-context-headline {
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--text);
  margin-bottom: 6px;
}

.quick-status-meta,
.quick-context-meta {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.quick-route-list {
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.quick-route-empty {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 4px 0;
}

.quick-route-row {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px 13px;
  display: grid;
  gap: 4px;
  text-align: left;
  cursor: pointer;
}

.quick-route-row.active {
  border-color: rgba(22, 212, 192, 0.34);
  background: rgba(22, 212, 192, 0.09);
}

.quick-route-row.suggested:not(.active) {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.quick-route-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quick-route-row-title {
  font-size: 0.82rem;
  color: rgba(242, 242, 239, 0.92);
}

.quick-route-row-app {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: rgba(22, 212, 192, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-route-row-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.quick-control-stage {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  align-items: center;
}

.quick-orbit {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at center, rgba(22, 212, 192, 0.04), transparent 32%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.quick-orbit-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-orbit-ring-outer {
  width: 410px;
  height: 410px;
}

.quick-orbit-ring-inner {
  width: 270px;
  height: 270px;
  border-color: rgba(22, 212, 192, 0.14);
}

.quick-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  min-height: 220px;
  border-radius: 999px;
  border: 1px solid rgba(22, 212, 192, 0.18);
  background:
    radial-gradient(circle at top, rgba(22, 212, 192, 0.16), rgba(255, 255, 255, 0.04) 62%),
    rgba(24, 24, 24, 0.94);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  z-index: 2;
}

.quick-orbit-core-kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 242, 239, 0.46);
}

.quick-orbit-core-title {
  font-size: 1.2rem;
  font-weight: 580;
  letter-spacing: -0.03em;
  color: var(--text);
}

.quick-orbit-core-meta {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.quick-orbit-nodes {
  position: absolute;
  inset: 0;
}

.quick-orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + var(--node-x)), calc(-50% + var(--node-y)));
  width: 132px;
  min-height: 132px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(44, 44, 44, 0.94), rgba(28, 28, 28, 0.96));
  color: var(--text);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  z-index: 3;
}

.quick-orbit-node.active {
  border-color: rgba(22, 212, 192, 0.3);
  box-shadow: 0 18px 44px rgba(22, 212, 192, 0.12);
}

.quick-orbit-node.suggested:not(.active) {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.04);
}

.quick-orbit-node-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f4f4ef;
  color: #111;
  display: grid;
  place-items: center;
}

.quick-orbit-node-icon svg {
  width: 22px;
  height: 22px;
}

.quick-orbit-node-title {
  font-size: 0.8rem;
  font-weight: 540;
  line-height: 1.15;
}

.quick-orbit-node-meta {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.25;
}

.quick-orbit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quick-orbit-footnote {
  font-size: 0.78rem;
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  z-index: 40;
}

.module-modal {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  border-radius: 26px;
  border: 1px solid var(--stroke-strong);
  background: #202020;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.module-modal.eye-tracking-modal-shell {
  width: calc(100vw - 32px);
  height: calc(100vh - 32px);
  max-height: none;
}

.module-modal.eye-tracking-modal-shell .modal-body {
  padding: 12px 16px 16px;
}

.device-modal {
  width: min(680px, calc(100vw - 32px));
}

.custom-action-modal {
  width: min(640px, calc(100vw - 32px));
}

.account-modal {
  width: min(430px, calc(100vw - 32px));
}

.study-preview-modal-shell {
  width: min(900px, calc(100vw - 32px));
}

.developer-session-modal-shell {
  width: min(940px, calc(100vw - 32px));
}

.study-preview-modal-shell .modal-body {
  padding: 20px;
  gap: 14px;
}

.developer-session-modal-shell .modal-body {
  padding: 20px;
  gap: 14px;
}

.study-preview-modal-shell .modal-footer,
.developer-session-modal-shell .modal-footer {
  display: none;
}

.study-preview-modal-shell.study-enrollment-modal-shell .modal-footer {
  display: flex;
}

.study-preview-hero,
.study-preview-panel {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.035);
}

.study-preview-hero {
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 26, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 106, 26, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.study-preview-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 106, 26, 0.16);
  color: var(--device-orange, #ff6a1a);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.22);
}

.study-preview-icon svg {
  width: 34px;
  height: 34px;
}

.study-preview-hero-copy {
  display: grid;
  gap: 6px;
}

.study-preview-kicker {
  color: var(--device-orange, #ff6a1a);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.study-preview-hero-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
}

.study-preview-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.study-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 14px;
}

.study-preview-panel {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 18px;
}

.study-preview-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.study-preview-facts div {
  min-width: 0;
  padding: 11px;
  display: grid;
  gap: 5px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
}

.study-preview-facts span,
.study-preview-step-copy {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.study-preview-facts strong,
.study-preview-step-title {
  color: var(--text);
  font-size: 0.9rem;
}

.study-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.study-preview-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.1);
  color: var(--device-orange, #ff6a1a);
  font-size: 0.76rem;
  font-weight: 720;
}

.study-preview-stack {
  display: grid;
  gap: 10px;
}

.study-preview-step {
  padding: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--stroke);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.12);
}

.study-preview-step-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.14);
  color: var(--device-orange, #ff6a1a);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .study-preview-modal-shell .modal-body {
    padding: 14px;
  }

  .study-preview-hero,
  .study-preview-layout,
  .study-preview-facts {
    grid-template-columns: 1fr;
  }

  .study-preview-icon {
    width: 58px;
    height: 58px;
  }
}

.modal-search-shell {
  margin: 0;
}

.modal-device-stack {
  padding: 0;
  height: auto;
  max-height: min(58vh, 560px);
}

.modal-device-stack .device-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.036);
}

.modal-device-stack .device-card:hover {
  border-color: rgba(255, 106, 26, 0.22);
  background: rgba(255, 106, 26, 0.055);
}

.modal-device-stack .device-card.active {
  border-color: transparent;
  background: rgba(255, 106, 26, 0.095);
  box-shadow: none;
}

.device-modal-header {
  justify-content: flex-end;
  padding: 12px 14px 0;
  border-bottom: 0;
}

.device-modal .modal-body {
  padding-top: 16px;
  gap: 12px;
}

.modal-header,
.modal-footer {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.device-modal .device-modal-header {
  justify-content: flex-end;
  padding: 12px 14px 0;
  border-bottom: 0;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: flex-end;
}

.modal-eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

.modal-body {
  padding: 18px 20px;
  display: grid;
  gap: 16px;
  overflow-y: auto;
  min-height: 0;
}

.hardware-toast-stack {
  position: fixed;
  top: 58px;
  left: 22px;
  z-index: 120;
  width: min(360px, calc(100vw - 44px));
  display: grid;
  gap: 9px;
  pointer-events: none;
}

.hardware-toast {
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border-radius: 17px;
  border: 1px solid rgba(255, 106, 26, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 106, 26, 0.16), transparent 42%),
    rgba(24, 23, 21, 0.92);
  color: var(--text);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  animation: hardwareToastIn 220ms ease-out both;
}

.hardware-toast strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 780;
}

.hardware-toast span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.hardware-toast.success {
  border-color: rgba(41, 214, 151, 0.24);
}

.hardware-toast.warning {
  border-color: rgba(255, 190, 102, 0.26);
}

.hardware-toast.error {
  border-color: rgba(255, 106, 26, 0.32);
}

@keyframes hardwareToastIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.desktop-runtime.desktop-light-mode .modal-backdrop {
  background: rgba(29, 28, 25, 0.18);
}

body.desktop-runtime.desktop-light-mode .module-modal {
  border-color: rgba(29, 28, 25, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
    #f4f1e9;
  color: var(--text);
  box-shadow: 0 28px 72px rgba(58, 47, 35, 0.18);
}

body.desktop-runtime.desktop-light-mode .modal-header {
  border-bottom-color: rgba(29, 28, 25, 0.09);
}

body.desktop-runtime.desktop-light-mode .modal-footer {
  border-top-color: rgba(29, 28, 25, 0.09);
}

body.desktop-runtime.desktop-light-mode .modal-close {
  border-color: rgba(29, 28, 25, 0.12);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.82);
}

body.desktop-runtime.desktop-light-mode .study-preview-hero,
body.desktop-runtime.desktop-light-mode .study-preview-panel {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.64);
}

body.desktop-runtime.desktop-light-mode .study-preview-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 26, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 106, 26, 0.1), rgba(255, 255, 255, 0.72)),
    #fffdf8;
}

body.desktop-runtime.desktop-light-mode .study-preview-facts div,
body.desktop-runtime.desktop-light-mode .study-preview-step {
  border-color: rgba(29, 28, 25, 0.09);
  background: rgba(244, 241, 233, 0.68);
}

body.desktop-runtime.desktop-light-mode .modal-field input,
body.desktop-runtime.desktop-light-mode .modal-field select,
body.desktop-runtime.desktop-light-mode .modal-field textarea {
  border-color: rgba(29, 28, 25, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

body.desktop-runtime.desktop-light-mode .account-modal {
  border-color: rgba(29, 28, 25, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 26, 0.14), transparent 36%),
    var(--panel);
}

body.desktop-runtime.desktop-light-mode .account-mode-toggle {
  border-color: rgba(29, 28, 25, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body.desktop-runtime.desktop-light-mode .account-mode-toggle button {
  color: rgba(29, 28, 25, 0.55);
}

body.desktop-runtime.desktop-light-mode .account-mode-toggle button:hover {
  color: rgba(29, 28, 25, 0.82);
}

body.desktop-runtime.desktop-light-mode .account-mode-toggle button.active {
  color: #211208;
}

body.desktop-runtime.desktop-light-mode .account-modal .modal-field-label {
  color: rgba(29, 28, 25, 0.56);
}

body.desktop-runtime.desktop-light-mode .account-modal .modal-field input {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

body.desktop-runtime.desktop-light-mode .account-modal .modal-field input:focus {
  border-color: rgba(255, 106, 26, 0.52);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.13);
}

body.desktop-runtime.desktop-light-mode .account-modal .modal-field input::placeholder {
  color: rgba(29, 28, 25, 0.34);
}

body.desktop-runtime.desktop-light-mode .account-status-message {
  border-color: rgba(29, 28, 25, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

body.desktop-runtime.desktop-light-mode .account-status-message span {
  color: rgba(29, 28, 25, 0.5);
}

body.desktop-runtime.desktop-light-mode .account-status-message strong {
  color: rgba(29, 28, 25, 0.78);
}

body.desktop-runtime.desktop-light-mode .account-status-message.error {
  border-color: rgba(255, 106, 26, 0.22);
  background: rgba(255, 106, 26, 0.08);
}

body.desktop-runtime.desktop-light-mode .device-modal-empty,
body.desktop-runtime.desktop-light-mode .hardware-diagnostic-card,
body.desktop-runtime.desktop-light-mode .type-card,
body.desktop-runtime.desktop-light-mode .bluetooth-device-card,
body.desktop-runtime.desktop-light-mode .calibration-visual-card,
body.desktop-runtime.desktop-light-mode .montage-card {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

body.desktop-runtime.desktop-light-mode .device-card-extension {
  border-color: transparent;
  background: transparent;
}

body.desktop-runtime.desktop-light-mode .modal-device-stack .device-card {
  border-color: rgba(29, 28, 25, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

body.desktop-runtime.desktop-light-mode .modal-device-stack .device-card:hover {
  border-color: rgba(211, 85, 15, 0.2);
  background: rgba(255, 106, 26, 0.065);
}

body.desktop-runtime.desktop-light-mode .modal-device-stack .device-card.active {
  border-color: transparent;
  background: rgba(255, 106, 26, 0.1);
  box-shadow: none;
}

body.desktop-runtime.desktop-light-mode .device-scan-status {
  border-color: rgba(211, 85, 15, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.12), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
}

body.desktop-runtime.desktop-light-mode .hardware-toast {
  border-color: rgba(211, 85, 15, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 106, 26, 0.14), transparent 42%),
    rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 42px rgba(58, 47, 35, 0.14);
}

body.desktop-runtime.desktop-light-mode .hardware-toast strong,
body.desktop-runtime.desktop-light-mode .hardware-diagnostic-card strong {
  color: rgba(29, 28, 25, 0.94);
}

body.desktop-runtime.desktop-light-mode .hardware-toast span,
body.desktop-runtime.desktop-light-mode .hardware-diagnostic-card span {
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode .modal-inline-button {
  border-color: rgba(211, 85, 15, 0.2);
  background: rgba(255, 106, 26, 0.08);
  color: rgba(211, 85, 15, 0.9);
}

body.desktop-runtime.desktop-light-mode .modal-inline-button:hover {
  border-color: rgba(211, 85, 15, 0.32);
  background: rgba(255, 106, 26, 0.13);
}

body.desktop-runtime.desktop-light-mode .modal-inline-button.scanning {
  background: #ff6a1a;
  color: #ffffff;
}

body.desktop-runtime.desktop-light-mode .type-card:hover,
body.desktop-runtime.desktop-light-mode .bluetooth-device-card:hover {
  border-color: rgba(211, 85, 15, 0.24);
  background: rgba(255, 106, 26, 0.075);
}

body.desktop-runtime.desktop-light-mode .type-card.active,
body.desktop-runtime.desktop-light-mode .bluetooth-device-card.controllable {
  border-color: rgba(211, 85, 15, 0.28);
  background: rgba(255, 106, 26, 0.085);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.1);
}

body.desktop-runtime.desktop-light-mode .bluetooth-device-state {
  background: rgba(18, 176, 159, 0.1);
  color: rgba(9, 103, 92, 0.9);
}

body.desktop-runtime.desktop-light-mode .bluetooth-capability-pill,
body.desktop-runtime.desktop-light-mode .toggle-field,
body.desktop-runtime.desktop-light-mode .port-chip,
body.desktop-runtime.desktop-light-mode .quality-chip,
body.desktop-runtime.desktop-light-mode .montage-selected-chip {
  border-color: rgba(29, 28, 25, 0.1);
  background: rgba(29, 28, 25, 0.04);
  color: rgba(29, 28, 25, 0.72);
}

body.desktop-runtime.desktop-light-mode .port-chip:hover {
  border-color: rgba(211, 85, 15, 0.3);
  background: rgba(255, 106, 26, 0.08);
}

body.desktop-runtime.desktop-light-mode .calibration-visual-head strong,
body.desktop-runtime.desktop-light-mode .device-modal-empty strong,
body.desktop-runtime.desktop-light-mode .type-card-title,
body.desktop-runtime.desktop-light-mode .bluetooth-device-title,
body.desktop-runtime.desktop-light-mode .quality-chip-title,
body.desktop-runtime.desktop-light-mode .montage-selected-chip strong {
  color: rgba(29, 28, 25, 0.94);
}

body.desktop-runtime.desktop-light-mode .calibration-visual-head span,
body.desktop-runtime.desktop-light-mode .device-modal-empty span,
body.desktop-runtime.desktop-light-mode .type-card-meta,
body.desktop-runtime.desktop-light-mode .bluetooth-device-meta,
body.desktop-runtime.desktop-light-mode .quality-chip-meta,
body.desktop-runtime.desktop-light-mode .modal-field-label {
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode .quality-meter-grid i {
  background: rgba(29, 28, 25, 0.09);
}

body.desktop-runtime.desktop-light-mode .calibration-visual-head em,
body.desktop-runtime.desktop-light-mode .calibration-channel-pill {
  border-color: rgba(211, 85, 15, 0.18);
  background: rgba(255, 106, 26, 0.08);
  color: rgba(211, 85, 15, 0.9);
}

body.desktop-runtime.desktop-light-mode .calibration-progress-track {
  background: rgba(29, 28, 25, 0.08);
}

body.desktop-runtime.desktop-light-mode .calibration-progress span {
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode .calibration-channel-pill em {
  color: rgba(29, 28, 25, 0.58);
}

body.desktop-runtime.desktop-light-mode .device-modal-footer button:disabled {
  border-color: rgba(29, 28, 25, 0.08);
  background: rgba(29, 28, 25, 0.04);
  color: rgba(29, 28, 25, 0.34);
}

.custom-action-body {
  gap: 18px;
}

.account-modal {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 106, 26, 0.1), transparent 36%),
    var(--panel);
}

.account-modal-header {
  min-height: 0;
  justify-content: flex-end;
  padding: 14px 14px 0;
  border-bottom: 0;
}

.account-modal-body {
  gap: 15px;
  padding: 10px 24px 18px;
}

.account-mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.account-mode-toggle button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-mode-toggle button:hover {
  color: var(--text);
}

.account-mode-toggle button.active {
  background: linear-gradient(135deg, #ff7a24, #ff5c12);
  color: #1c120c;
  box-shadow: 0 10px 26px rgba(255, 106, 26, 0.2);
}

.account-modal .modal-field {
  gap: 7px;
}

.account-modal .modal-field-label {
  color: rgba(242, 242, 239, 0.64);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-modal .modal-field input {
  min-height: 46px;
  border-radius: 15px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.account-modal .modal-field input:focus {
  border-color: rgba(255, 106, 26, 0.55);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.12);
}

.account-modal .modal-field input::placeholder {
  color: rgba(242, 242, 239, 0.34);
}

.account-status-message {
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.account-status-message span {
  color: rgba(242, 242, 239, 0.52);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-status-message strong {
  color: rgba(242, 242, 239, 0.86);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.account-status-message.error {
  border-color: rgba(255, 106, 26, 0.24);
  background: rgba(255, 106, 26, 0.07);
}

.account-modal .modal-footer {
  padding: 0 24px 24px;
  border-top: 0;
}

.account-modal .modal-footer .ghost-button,
.account-modal .modal-footer .arm-button {
  min-height: 44px;
  border-radius: 14px;
}

.account-modal .modal-footer .arm-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.account-email-field {
  margin: 0;
}

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

.type-card {
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  transition: 160ms ease;
}

.type-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.type-card.active {
  border-color: rgba(22, 212, 192, 0.34);
  background: rgba(22, 212, 192, 0.08);
  box-shadow: inset 0 0 0 1px rgba(22, 212, 192, 0.12);
}

.type-card-title {
  font-size: 0.92rem;
  font-weight: 560;
}

.type-card-meta {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
}

.device-control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}

.device-modal-section {
  display: grid;
  gap: 16px;
}

.device-modal-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 4px;
}

.device-modal-empty {
  min-height: 76px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.024);
}

.device-modal-empty strong {
  color: var(--text);
  font-size: 0.9rem;
}

.device-modal-empty span {
  color: var(--muted);
  font-size: 0.8rem;
}

.device-scan-status {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 106, 26, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.12), rgba(255, 106, 26, 0.035)),
    rgba(255, 255, 255, 0.025);
  color: var(--text);
  overflow: hidden;
  position: relative;
}

.device-scan-status::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 26, 0.95), transparent);
  animation: deviceScanSweep 820ms ease-in-out infinite;
}

.device-scan-status span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 106, 26, 0.22);
  border-top-color: #ff6a1a;
  animation: deviceScanSpin 720ms linear infinite;
}

.device-scan-status strong {
  font-size: 0.8rem;
  font-weight: 680;
}

.hardware-diagnostic-card {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 106, 26, 0.14);
  background: rgba(255, 106, 26, 0.055);
}

.hardware-diagnostic-card strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 780;
}

.hardware-diagnostic-card span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hardware-diagnostic-card.info {
  border-color: rgba(255, 106, 26, 0.14);
}

.hardware-diagnostic-card.warning {
  border-color: rgba(255, 190, 102, 0.22);
  background: rgba(255, 190, 102, 0.065);
}

.hardware-diagnostic-card.error {
  border-color: rgba(255, 106, 26, 0.32);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 106, 26, 0.16), transparent 34%),
    rgba(255, 106, 26, 0.07);
}

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

@keyframes deviceScanSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.field-span-2 {
  grid-column: 1 / 2;
}

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

.modal-field-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.modal-field input {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: #2a2a2a;
  color: var(--text);
  padding: 10px 12px;
}

.modal-field select,
.modal-field textarea {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: #2a2a2a;
  color: var(--text);
  padding: 10px 12px;
}

.modal-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}

.custom-action-helpers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.helper-action-button {
  padding-inline: 12px;
  font-size: 0.82rem;
}

.custom-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bluetooth-device-list {
  display: grid;
  gap: 10px;
}

.bluetooth-device-card {
  display: grid;
  gap: 10px;
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: 160ms ease;
}

.bluetooth-device-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.bluetooth-device-card.controllable {
  border-color: rgba(22, 212, 192, 0.18);
  box-shadow: inset 0 0 0 1px rgba(22, 212, 192, 0.06);
}

.bluetooth-device-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.bluetooth-device-title {
  font-size: 0.94rem;
  font-weight: 560;
}

.bluetooth-device-meta {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.bluetooth-device-state {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22, 212, 192, 0.1);
  color: rgba(242, 242, 239, 0.78);
  font-size: 0.7rem;
  white-space: nowrap;
}

.bluetooth-capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bluetooth-capability-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.72rem;
}

.bluetooth-empty {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
}

.modal-inline-button {
  min-height: 34px;
  height: 34px;
  align-self: center;
  padding: 0 12px;
  border-radius: 999px;
  border-color: rgba(255, 106, 26, 0.22);
  background: rgba(255, 106, 26, 0.075);
  color: #ff8d4d;
  font-size: 0.76rem;
  font-weight: 760;
  box-shadow: none;
  white-space: nowrap;
}

.modal-inline-button:hover {
  border-color: rgba(255, 106, 26, 0.36);
  background: rgba(255, 106, 26, 0.12);
  color: #ffb082;
}

.modal-inline-button.scanning,
.modal-inline-button:disabled {
  opacity: 1;
  cursor: wait;
}

.modal-inline-button.scanning {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #ff6a1a;
  border-color: transparent;
}

.modal-inline-button.scanning::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: deviceButtonSweep 760ms ease-in-out infinite;
}

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

.toggle-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  min-height: 43px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  color: rgba(242, 242, 239, 0.84);
}

.toggle-field input {
  accent-color: var(--teal);
}

.device-port-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.port-chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.port-chip:hover {
  border-color: rgba(22, 212, 192, 0.34);
  background: rgba(22, 212, 192, 0.08);
}

.calibration-visual-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 106, 26, 0.16), transparent 34%),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255, 106, 26, 0.12);
}

.calibration-visual-card.error {
  border-color: rgba(255, 106, 26, 0.32);
}

.calibration-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.calibration-visual-head span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.calibration-visual-head strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

.calibration-visual-head em {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 26, 0.18);
  background: rgba(255, 106, 26, 0.07);
  color: rgba(255, 188, 148, 0.94);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 760;
  text-transform: uppercase;
  white-space: nowrap;
}

.calibration-progress {
  display: grid;
  gap: 7px;
}

.calibration-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
}

.calibration-progress-track i {
  width: var(--progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a1a, #ffad75);
  box-shadow: 0 0 18px rgba(255, 106, 26, 0.3);
  position: relative;
  transition: width 320ms ease;
}

.calibration-progress-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: calibrationProgressSweep 880ms ease-in-out infinite;
}

.calibration-progress span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

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

.bridge-quality {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quality-chip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.84rem;
}

.quality-chip.good {
  border-color: rgba(22, 212, 192, 0.18);
}

.quality-chip.watch {
  border-color: rgba(255, 196, 102, 0.2);
}

.quality-chip.noisy {
  border-color: rgba(255, 123, 123, 0.22);
}

.quality-chip-left {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.quality-chip-title {
  font-weight: 560;
}

.quality-chip-meta {
  color: var(--muted);
}

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

.quality-meter-grid div {
  display: grid;
  gap: 3px;
}

.quality-meter-grid span,
.quality-meter-grid b {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.quality-meter-grid i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.quality-meter-grid i::before {
  content: "";
  width: var(--level, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: rgba(255, 106, 26, 0.82);
}

.device-modal-footer {
  justify-content: space-between;
}

.device-modal-footer button:disabled {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(242, 242, 239, 0.34);
  cursor: not-allowed;
  box-shadow: none;
}

.calibration-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 26, 0.16);
  background: rgba(255, 106, 26, 0.07);
  color: var(--text);
  font-size: 0.72rem;
}

.calibration-channel-pill span {
  color: #ff9b61;
  font-weight: 760;
}

.calibration-channel-pill em {
  min-width: 0;
  color: var(--muted);
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.montage-card {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-card-extension {
  margin-top: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.modal-device-stack .device-card.active:has(+ .device-card-extension) {
  border-bottom-color: transparent;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.modal-device-stack .device-card.active + .device-card-extension {
  margin-top: -5px;
}

.montage-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.montage-device-empty {
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-size: 0.82rem;
}

.montage-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.montage-selected-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.montage-assignment-grid {
  display: grid;
  gap: 8px;
}

.montage-assignment-row {
  min-height: 48px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(116px, 0.65fr) minmax(170px, 1fr);
  gap: 10px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.026);
}

body.desktop-runtime.desktop-light-mode .montage-assignment-row {
  border-color: rgba(25, 23, 20, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

body.desktop-runtime.desktop-light-mode .montage-empty {
  border-color: rgba(211, 85, 15, 0.14);
  background: rgba(255, 106, 26, 0.075);
  color: rgba(29, 28, 25, 0.62);
}

.montage-empty {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 106, 26, 0.055);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.35;
}

.montage-selected-chip {
  justify-self: start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.026);
  color: var(--muted);
  cursor: pointer;
}

.montage-selected-chip {
  padding: 5px 7px 5px 10px;
}

.montage-selected-chip strong {
  color: var(--text);
  font-size: 0.78rem;
}

.montage-selected-chip i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-style: normal;
  line-height: 1;
}

.montage-input-control {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.montage-input-control > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.montage-select-shell {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px 31px 7px 10px;
  border: 1px solid rgba(255, 106, 26, 0.2);
  border-radius: 8px;
  background: rgba(255, 106, 26, 0.06);
}

body.desktop-runtime.desktop-light-mode .montage-select-shell {
  border-color: rgba(211, 85, 15, 0.2);
  background: rgba(255, 106, 26, 0.07);
}

.montage-select-shell::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.7px solid var(--muted);
  border-bottom: 1.7px solid var(--muted);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.montage-select-shell summary {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.montage-select-shell summary::-webkit-details-marker {
  display: none;
}

.montage-select-menu {
  position: absolute;
  z-index: 25;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 210px;
  overflow: auto;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: 12px;
  background: rgba(28, 27, 24, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.montage-select-menu button {
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 620;
}

.montage-select-menu button:hover,
.montage-select-menu button.active {
  border-color: rgba(255, 106, 26, 0.2);
  background: rgba(255, 106, 26, 0.1);
  color: var(--text);
}

body.desktop-runtime.desktop-light-mode .montage-select-menu {
  border-color: rgba(211, 85, 15, 0.18);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 38px rgba(58, 47, 35, 0.16);
}

body.desktop-runtime.desktop-light-mode .montage-select-menu button {
  color: rgba(29, 28, 25, 0.62);
}

body.desktop-runtime.desktop-light-mode .montage-select-menu button:hover,
body.desktop-runtime.desktop-light-mode .montage-select-menu button.active {
  border-color: rgba(211, 85, 15, 0.2);
  background: rgba(255, 106, 26, 0.09);
  color: rgba(29, 28, 25, 0.94);
}

.montage-input-panel {
  width: min(280px, 100%);
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.montage-input-panel select {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 8px 10px;
}

@media (max-width: 720px) {
  .montage-assignment-row,
  .montage-input-control {
    grid-template-columns: 1fr;
  }

  .montage-input-control > span {
    white-space: normal;
  }
}

.montage-row {
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.montage-row.active {
  border-color: rgba(255, 106, 26, 0.28);
  background: rgba(255, 106, 26, 0.06);
}

.montage-row.enabled .montage-toggle {
  color: var(--text);
}

.montage-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.montage-toggle input {
  accent-color: var(--teal);
}

.montage-placement-button {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 8px 10px;
  text-align: left;
}

.eeg-head-map {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1.06 / 1;
  justify-self: center;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(255, 255, 255, 0.04), transparent 58%),
    rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.eeg-head-outline {
  position: absolute;
  inset: 24px 46px 20px;
  border: 1px solid rgba(242, 242, 239, 0.18);
  border-radius: 48% 48% 44% 44%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(242, 242, 239, 0.08) 50%, transparent 50.2%),
    radial-gradient(ellipse at 50% 10%, rgba(255, 106, 26, 0.08), transparent 40%);
}

.eeg-head-outline::before,
.eeg-head-outline::after {
  content: "";
  position: absolute;
  top: 43%;
  width: 18px;
  height: 34px;
  border: 1px solid rgba(242, 242, 239, 0.14);
}

.eeg-head-outline::before {
  left: -18px;
  border-radius: 18px 0 0 18px;
}

.eeg-head-outline::after {
  right: -18px;
  border-radius: 0 18px 18px 0;
}

.eeg-point {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 38px;
  height: 28px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(242, 242, 239, 0.16);
  background: rgba(17, 18, 17, 0.86);
  color: rgba(242, 242, 239, 0.74);
  font-size: 0.68rem;
  cursor: pointer;
}

.eeg-point:hover,
.eeg-point.active {
  border-color: rgba(255, 106, 26, 0.55);
  background: rgba(255, 106, 26, 0.18);
  color: var(--text);
}

.eeg-point.mapped:not(.active) {
  border-color: rgba(22, 212, 192, 0.28);
  color: rgba(188, 241, 232, 0.9);
}

body.desktop-runtime.desktop-light-mode .eeg-head-map {
  border-color: rgba(211, 85, 15, 0.14);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(255, 106, 26, 0.11), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 241, 233, 0.72));
}

body.desktop-runtime.desktop-light-mode .eeg-head-outline {
  border-color: rgba(29, 28, 25, 0.18);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(29, 28, 25, 0.11) 50%, transparent 50.2%),
    radial-gradient(ellipse at 50% 10%, rgba(255, 106, 26, 0.14), transparent 40%);
}

body.desktop-runtime.desktop-light-mode .eeg-head-outline::before,
body.desktop-runtime.desktop-light-mode .eeg-head-outline::after {
  border-color: rgba(29, 28, 25, 0.16);
}

body.desktop-runtime.desktop-light-mode .eeg-point {
  border-color: rgba(29, 28, 25, 0.13);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(29, 28, 25, 0.68);
  box-shadow: 0 8px 18px rgba(58, 47, 35, 0.08);
}

body.desktop-runtime.desktop-light-mode .eeg-point:hover,
body.desktop-runtime.desktop-light-mode .eeg-point.active {
  border-color: rgba(211, 85, 15, 0.42);
  background: rgba(255, 106, 26, 0.12);
  color: rgba(29, 28, 25, 0.94);
}

body.desktop-runtime.desktop-light-mode .eeg-point.mapped:not(.active) {
  border-color: rgba(18, 176, 159, 0.24);
  color: rgba(9, 103, 92, 0.9);
}

@media (max-width: 760px) {
  .montage-workspace {
    grid-template-columns: 1fr;
  }

  .eeg-head-map {
    width: 100%;
  }
}

.modal-section {
  display: grid;
  gap: 10px;
}

.modal-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.modal-input,
.modal-checkbox-list {
  display: grid;
  gap: 10px;
}

.modal-input input,
.modal-input select {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: #2a2a2a;
  color: var(--text);
  padding: 10px 12px;
}

.modal-help {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.82rem;
}

.signal-live-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.signal-live-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-live-stat {
  display: grid;
  gap: 4px;
}

.signal-live-stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.signal-live-stat-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 560;
}

.signal-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signal-routing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.signal-routing-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.signal-routing-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.signal-routing-value {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 520;
}

.signal-trace-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.signal-trace-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 0.84rem;
}

.signal-trace-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.signal-trace-plot {
  height: 88px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
}

.signal-trace-plot svg {
  width: 100%;
  height: 100%;
  display: block;
}

.signal-trace-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-trace-line.raw {
  stroke: rgba(255, 255, 255, 0.72);
}

.signal-trace-line.filtered {
  stroke: rgba(22, 212, 192, 0.92);
  filter: drop-shadow(0 0 4px rgba(22, 212, 192, 0.1));
}

.signal-live-caption {
  color: var(--muted);
  font-size: 0.8rem;
}

.eye-tracking-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.eye-tracking-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  min-height: min(62vh, 720px);
}

#eyeTrackingVideo,
.eye-tracking-gaze,
.eye-tracking-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#eyeTrackingVideo {
  object-fit: cover;
  transform: scaleX(-1);
  opacity: 0.84;
}

.eye-tracking-gaze {
  pointer-events: none;
}

.eye-tracking-overlay {
  pointer-events: auto;
}

.eye-tracking-target {
  position: absolute;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  border: none;
  border-radius: 999px;
  background: rgba(22, 212, 192, 0.94);
  box-shadow: 0 0 0 8px rgba(22, 212, 192, 0.16);
  pointer-events: auto;
  cursor: pointer;
}

.eye-tracking-target.fullscreen {
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
  box-shadow: 0 0 0 14px rgba(22, 212, 192, 0.12);
}

.eye-tracking-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 10, 10, 0.9);
}

.eye-tracking-fullscreen-video,
.eye-tracking-fullscreen-gaze,
.eye-tracking-fullscreen-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eye-tracking-fullscreen-video {
  object-fit: cover;
  transform: scaleX(-1);
  opacity: 0.92;
}

.eye-tracking-fullscreen-gaze {
  pointer-events: none;
}

.eye-tracking-fullscreen-overlay {
  pointer-events: auto;
}

.eye-tracking-fullscreen-hud {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(14px);
}

.eye-tracking-fullscreen-title {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.92);
}

.eye-tracking-fullscreen-copy {
  font-size: 0.86rem;
  color: rgba(242, 242, 239, 0.74);
}

html.study-task-active-root,
html.study-task-active-root body,
body.study-task-active,
body.study-task-active .app-shell {
  background: #000 !important;
}

body.study-task-active {
  overflow: hidden !important;
}

.study-task-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-width: 0;
  min-height: 100vh;
  z-index: 260;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.study-task-fullscreen::selection {
  background: transparent;
}

.study-task-orb {
  display: none;
}

.study-task-fullscreen::before,
.study-task-fullscreen::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: min(18vw, 170px);
  aspect-ratio: 1;
  border: 4px solid #fff;
  background: #fff;
  opacity: 0;
}

.study-task-fullscreen::before {
  left: 14vw;
  top: 34vh;
}

.study-task-fullscreen::after {
  right: 14vw;
  top: 52vh;
}

.study-task-fullscreen[data-visual="left"]::before,
.study-task-fullscreen[data-visual="right"]::after {
  opacity: 1;
  animation: ssvepFlicker 180ms steps(1, end) infinite;
}

.study-task-fullscreen.practice-preview::before,
.study-task-fullscreen.practice-preview::after {
  opacity: 0.45;
  animation: ssvepPracticePreview 1.2s steps(1, end) infinite;
}

.study-task-shell {
  width: min(860px, calc(100vw - 56px));
  min-height: min(580px, calc(100vh - 56px));
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  align-content: center;
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  position: relative;
  backdrop-filter: none;
}

.study-task-fullscreen[data-study="classic-ssvep"][data-phase="running"] .study-task-shell {
  opacity: 0;
  pointer-events: none;
}

.study-task-fullscreen[data-phase="running"] {
  cursor: none;
}

.study-task-topline,
.study-task-actions,
.study-task-marker-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.study-task-topline {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.study-task-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.16);
}

.study-task-progress i {
  width: var(--progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #fff;
  transition: width 160ms linear;
}

.study-task-stage {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.study-task-shell h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.study-task-shell p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.study-task-marker-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 720;
}

.study-task-actions .ghost-button,
.study-task-actions .arm-button {
  border-radius: 0;
  border-color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

.study-task-actions .ghost-button {
  background: transparent;
  color: #fff;
}

.study-task-actions .arm-button {
  background: #fff;
  color: #000;
}

@keyframes ssvepFlicker {
  0%, 100% {
    background: #fff;
  }
  50% {
    background: #000;
  }
}

@keyframes ssvepPracticePreview {
  0%, 100% {
    background: #fff;
    transform: scale(0.92);
  }
  50% {
    background: #000;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .signal-live-summary,
  .signal-routing,
  .signal-live-grid {
    grid-template-columns: 1fr;
  }
}

.option-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.option-chip input {
  accent-color: var(--teal);
}

@media (max-width: 1520px) {
  .studies-workspace {
    grid-template-columns: 260px minmax(0, 1fr) 320px;
  }

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

  .workspace {
    grid-template-columns: 300px 1fr 300px;
  }
}

@media (max-width: 1220px) {
  .studies-workspace {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 18px 18px;
  }

  .study-sidebar,
  .study-content,
  .study-detail-panel {
    min-height: auto;
  }

  .study-sidebar {
    position: static;
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
  }

  .study-sidebar-status {
    width: 100%;
    grid-column: 1 / -1;
  }

  .study-content {
    padding: 0;
  }

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

  .study-detail-panel {
    position: static;
    padding: 0;
    border-left: none;
  }

  .study-row {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

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

  .device-stack,
  .library-list {
    max-height: 280px;
  }
}

@media (max-width: 900px) {
  .app-bar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .top-nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .studies-workspace {
    padding: 0 12px 16px;
  }

  .study-sidebar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .study-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
  }

  .study-filter-chip {
    min-height: 36px;
  }

  .study-sidebar-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .study-sidebar-status-row {
    display: grid;
    gap: 4px;
  }

  .study-sidebar-status-row strong {
    text-align: left;
  }

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

  .study-feature-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .study-hero-copy,
  .study-feature-card,
  .study-marketplace,
  .study-detail-panel {
    border-radius: 8px;
  }

  .study-feature-body {
    grid-template-columns: 1fr;
  }

  .study-search-shell {
    width: 100%;
  }

  .study-toolbar {
    align-items: stretch;
  }

  .input-row,
  .action-row {
    flex-direction: column;
  }
}

/* Quiet Signal Store refinement */
.studies-workspace {
  grid-template-columns: 236px minmax(0, 1fr) 306px;
  padding: 0 20px 20px;
  background:
    linear-gradient(110deg, rgba(16, 17, 17, 0.98), rgba(19, 20, 20, 0.98) 52%, rgba(13, 14, 14, 0.98)),
    var(--bg);
}

.study-sidebar,
.study-detail-panel {
  background: rgba(255, 255, 255, 0.012);
}

.study-sidebar {
  padding: 18px 16px 16px 0;
  gap: 18px;
}

.study-brand {
  grid-template-columns: 32px minmax(0, 1fr);
  padding: 0 4px;
}

.study-brand-mark {
  width: 30px;
  height: 30px;
  background: #b6ead7;
  color: #101413;
  font-size: 0.9rem;
}

.study-brand-title {
  font-size: 0.98rem;
}

.study-brand-meta {
  color: rgba(242, 242, 239, 0.44);
}

.study-search-shell {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(255, 255, 255, 0.075);
}

.study-search-shell:focus-within {
  border-color: rgba(182, 234, 215, 0.42);
  box-shadow: 0 0 0 1px rgba(182, 234, 215, 0.12);
}

.study-filter-bar {
  gap: 6px;
  padding-right: 0;
}

.study-filter-chip {
  min-height: 38px;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  padding: 0 10px;
  color: rgba(242, 242, 239, 0.64);
  border-radius: 8px;
}

.study-filter-chip.active {
  color: #f4f4ef;
  background: rgba(255, 255, 255, 0.055);
}

.study-filter-chip.active::before {
  background: #b6ead7;
}

.study-filter-icon {
  width: 22px;
  height: 22px;
  background: rgba(182, 234, 215, 0.08);
  color: rgba(182, 234, 215, 0.9);
  font-size: 0.68rem;
}

.study-sidebar-status {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.024);
  border-color: rgba(255, 255, 255, 0.07);
}

.study-content {
  padding: 0 20px;
  gap: 16px;
}

.study-hero {
  min-height: 238px;
  grid-template-columns: minmax(0, 1fr) 300px;
  background:
    linear-gradient(100deg, rgba(25, 26, 25, 0.96), rgba(28, 31, 29, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.018) 28px 29px);
}

.study-hero-copy {
  padding: 28px 30px;
  gap: 14px;
}

.study-eyebrow,
.study-detail-eyebrow,
.study-panel-label {
  color: rgba(182, 234, 215, 0.82);
  letter-spacing: 0.16em;
}

.study-hero-title {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.study-hero-text {
  max-width: 430px;
  color: rgba(242, 242, 239, 0.54);
}

.study-feature-card {
  min-height: 238px;
  background: rgba(255, 255, 255, 0.03);
}

.study-feature-media {
  min-height: 72px;
  padding: 16px;
  background: rgba(182, 234, 215, 0.045);
}

.study-feature-media::after {
  background: linear-gradient(90deg, rgba(182, 234, 215, 0.5), transparent);
}

.study-status-badge,
.study-feature-label {
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 242, 239, 0.76);
}

.study-feature-body {
  padding: 16px;
}

.study-feature-body h2 {
  font-size: 1.18rem;
}

.study-feature-body p,
.study-floating-card p {
  color: rgba(242, 242, 239, 0.5);
}

.study-floating-card {
  display: none;
}

.study-toolbar {
  min-height: 48px;
}

.study-toolbar h2 {
  font-size: 1.1rem;
}

.study-toolbar-toggles {
  background: rgba(255, 255, 255, 0.026);
}

.study-toggle.active {
  background: rgba(182, 234, 215, 0.12);
  color: #f4f4ef;
}

.study-row {
  grid-template-columns: 1fr;
  gap: 8px;
}

.study-strip-card {
  min-height: 92px;
  grid-template-columns: 78px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(255, 255, 255, 0.065);
}

.study-strip-card:hover {
  border-color: rgba(182, 234, 215, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.study-strip-card.active {
  border-color: rgba(182, 234, 215, 0.36);
  background: rgba(182, 234, 215, 0.065);
  box-shadow: inset 3px 0 0 rgba(182, 234, 215, 0.72);
}

.study-strip-media {
  padding: 10px;
  background: rgba(182, 234, 215, 0.045);
}

.study-strip-media::after {
  display: none;
}

.study-strip-status {
  display: none;
}

.study-strip-kicker {
  align-self: start;
  color: rgba(182, 234, 215, 0.75);
  font-size: 0.64rem;
}

.study-strip-body {
  gap: 7px;
  padding: 11px 12px;
}

.study-strip-title {
  font-size: 0.96rem;
}

.study-strip-subtitle,
.study-card-footer span {
  color: rgba(242, 242, 239, 0.45);
}

.study-strip-copy {
  display: none;
}

.study-strip-meta {
  gap: 5px;
}

.study-strip-chip {
  min-height: 22px;
  color: rgba(242, 242, 239, 0.56);
  font-size: 0.68rem;
}

.study-card-footer {
  min-height: 20px;
}

.study-card-footer strong {
  color: rgba(182, 234, 215, 0.92);
}

.study-detail-panel {
  padding: 18px 0 14px 18px;
  gap: 16px;
}

.study-detail-header h3 {
  font-size: 1rem;
}

.study-active-meta {
  gap: 6px;
}

.study-quality-list,
.study-active-steps {
  gap: 7px;
}

.study-quality-row,
.study-step-row {
  padding: 10px;
  background: rgba(255, 255, 255, 0.026);
  border-color: rgba(255, 255, 255, 0.065);
}

.study-quality-title,
.study-step-title {
  font-size: 0.9rem;
}

.study-step-copy {
  display: none;
}

.study-step-index {
  width: 24px;
  height: 24px;
  background: rgba(182, 234, 215, 0.09);
  color: rgba(182, 234, 215, 0.95);
}

.study-session-path,
.study-participant-line {
  display: none;
}

.arm-button {
  background: #b6ead7;
  color: #101413;
}

.toolbar-button.live,
.quick-control-button.live {
  color: #b6ead7;
  border-color: rgba(182, 234, 215, 0.28);
  background: rgba(182, 234, 215, 0.07);
}

@media (max-width: 1520px) {
  .studies-workspace {
    grid-template-columns: 220px minmax(0, 1fr) 292px;
  }
}

@media (max-width: 1220px) {
  .studies-workspace {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .study-sidebar {
    padding: 12px 0;
  }

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

  .study-feature-card {
    display: none;
  }

  .study-detail-panel {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .study-sidebar-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .study-toolbar {
    align-items: flex-start;
  }

  .study-toolbar-toggles {
    width: 100%;
    justify-content: space-between;
  }
}

/* Match studies to the sandbox surface */
.studies-workspace {
  min-height: auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: transparent;
}

.study-sidebar,
.study-content,
.study-detail-panel {
  min-height: 0;
}

.study-sidebar,
.study-detail-panel,
.study-hero,
.study-marketplace {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.study-sidebar {
  position: sticky;
  top: 84px;
  height: var(--surface-height);
  padding: 16px;
  border-right: 1px solid var(--stroke);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.study-brand {
  min-height: 48px;
  padding: 0 2px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.study-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f4ef;
  color: #151515;
}

.study-brand-title {
  color: var(--text);
}

.study-brand-meta {
  color: var(--muted);
}

.study-search-shell {
  width: 100%;
  height: 52px;
  margin: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
}

.study-search-shell:focus-within {
  border-color: rgba(22, 212, 192, 0.28);
  box-shadow: 0 0 0 1px rgba(22, 212, 192, 0.12);
}

.study-filter-bar {
  display: grid;
  gap: 8px;
  padding: 0;
}

.study-filter-chip {
  min-height: 46px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  border-radius: 16px;
  color: rgba(242, 242, 239, 0.68);
}

.study-filter-chip.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.study-filter-chip.active::before {
  background: var(--teal);
}

.study-filter-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(22, 212, 192, 0.9);
}

.study-sidebar-status {
  width: 100%;
  align-self: end;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.study-content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: 0;
  min-width: 0;
}

.study-hero {
  min-height: 260px;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(22, 212, 192, 0.08), transparent 28%),
    var(--panel);
}

.study-hero-copy {
  padding: 28px;
  gap: 14px;
}

.study-eyebrow,
.study-detail-eyebrow,
.study-panel-label {
  color: rgba(242, 242, 239, 0.62);
}

.study-hero-title {
  max-width: 620px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.04;
  color: var(--text);
}

.study-hero-text {
  color: var(--muted);
}

.study-feature-card {
  display: none;
}

.study-marketplace {
  min-height: calc(var(--surface-height) - 278px);
  padding: 18px;
}

.study-toolbar {
  min-height: 48px;
  margin-bottom: 14px;
}

.study-toolbar h2 {
  color: var(--text);
}

.study-toolbar-toggles {
  background: rgba(255, 255, 255, 0.04);
}

.study-toggle.active {
  background: rgba(255, 255, 255, 0.08);
}

.study-row {
  max-height: calc(var(--surface-height) - 366px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}

.study-strip-card {
  min-height: 96px;
  grid-template-columns: 76px minmax(0, 1fr);
  border-radius: 18px;
  background: var(--panel-2);
  border-color: rgba(255, 255, 255, 0.06);
}

.study-strip-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.study-strip-card.active {
  border-color: rgba(22, 212, 192, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(22, 212, 192, 0.045));
  box-shadow: inset 0 0 0 1px rgba(22, 212, 192, 0.08);
}

.study-strip-media {
  background: rgba(255, 255, 255, 0.035);
}

.study-strip-kicker,
.study-strip-subtitle,
.study-card-footer strong {
  color: rgba(22, 212, 192, 0.86);
}

.study-strip-title {
  color: var(--text);
}

.study-strip-chip {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(242, 242, 239, 0.68);
}

.study-detail-panel {
  position: sticky;
  top: 84px;
  height: var(--surface-height);
  padding: 18px;
  border-left: 1px solid var(--stroke);
  overflow: auto;
}

.study-quality-row,
.study-step-row {
  border-radius: 16px;
  background: var(--panel-2);
}

.study-step-index {
  background: rgba(22, 212, 192, 0.1);
  color: rgba(22, 212, 192, 0.95);
}

.study-session-path,
.study-participant-line {
  display: block;
}

.arm-button {
  background: var(--teal);
  color: #101413;
}

@media (max-width: 1220px) {
  .studies-workspace {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .study-sidebar,
  .study-detail-panel {
    position: static;
    height: auto;
  }

  .study-sidebar {
    grid-template-rows: auto auto auto auto;
    overflow: visible;
  }

  .study-filter-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .study-sidebar-status {
    align-self: auto;
  }

  .study-marketplace {
    min-height: auto;
  }

  .study-row {
    max-height: none;
  }
}

@media (max-width: 900px) {
  .studies-workspace {
    padding: 18px;
  }

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

  .study-filter-chip {
    min-height: 44px;
  }

  .study-sidebar-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .study-hero-title {
    font-size: 2rem;
  }

  .study-toolbar {
    align-items: flex-start;
  }
}

/* Studies page visual asset and off-white accent pass */
.studies-workspace {
  grid-template-columns: 300px minmax(0, 1fr) 300px;
}

.study-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 280px;
  background:
    radial-gradient(circle at 82% 20%, rgba(233, 228, 216, 0.055), transparent 30%),
    var(--panel);
}

.study-feature-card {
  display: block;
  position: relative;
  min-height: 280px;
  border-left: 1px solid var(--stroke);
  overflow: hidden;
  background: #171817;
  cursor: pointer;
  color: var(--text);
}

.study-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.02);
}

.study-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.08), rgba(23, 23, 23, 0.34)),
    linear-gradient(180deg, transparent 52%, rgba(18, 18, 18, 0.74));
  pointer-events: none;
}

.study-feature-overlay {
  position: relative;
  z-index: 1;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.study-feature-summary {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 5px;
}

.study-feature-summary h2 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0;
}

.study-feature-summary p,
.study-feature-summary span {
  color: rgba(242, 242, 239, 0.58);
  font-size: 0.78rem;
  line-height: 1.3;
}

.study-feature-summary span {
  display: none;
}

.studies-workspace .study-filter-chip.active::before {
  background: rgba(233, 228, 216, 0.96);
}

.studies-workspace .study-filter-icon,
.studies-workspace .study-strip-kicker,
.studies-workspace .study-strip-subtitle,
.studies-workspace .study-card-footer strong,
.studies-workspace .study-step-index {
  color: rgba(233, 228, 216, 0.88);
}

.studies-workspace .study-filter-icon,
.studies-workspace .study-step-index {
  background: rgba(233, 228, 216, 0.08);
}

.studies-workspace .study-strip-card.active {
  border-color: rgba(233, 228, 216, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(233, 228, 216, 0.035));
  box-shadow: inset 0 0 0 1px rgba(233, 228, 216, 0.08);
}

.studies-workspace .study-search-shell:focus-within {
  border-color: rgba(233, 228, 216, 0.22);
  box-shadow: 0 0 0 1px rgba(233, 228, 216, 0.08);
}

.studies-workspace .arm-button {
  background: linear-gradient(135deg, rgba(233, 228, 216, 0.96), rgba(207, 199, 186, 0.9));
  color: #161412;
}

@media (max-width: 1220px) {
  .study-hero {
    grid-template-columns: 1fr;
  }

  .study-feature-card {
    min-height: 230px;
    border-left: none;
    border-top: 1px solid var(--stroke);
  }
}

@media (max-width: 900px) {
  .study-feature-card {
    min-height: 200px;
  }
}

/* Final studies layout simplification: left controls + main content. */
.studies-workspace {
  grid-template-columns: 300px minmax(0, 1fr);
}

.studies-workspace .study-detail-panel {
  display: none;
}

.study-content {
  grid-template-rows: auto minmax(0, 1fr);
}

.study-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
}

.study-hero-title {
  max-width: 480px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.study-hero-copy {
  justify-content: center;
}

.study-marketplace {
  min-height: calc(var(--surface-height) - 298px);
}

.study-row {
  max-height: calc(var(--surface-height) - 386px);
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.study-strip-card {
  min-height: 104px;
}

.study-strip-icon,
.app-card-telemetry {
  display: none;
}

.store-mode-applications {
  --app-store-bg: #0c0d0c;
  --app-store-panel: rgba(24, 25, 23, 0.92);
  --app-store-panel-2: rgba(33, 34, 31, 0.9);
  --app-store-line: rgba(249, 247, 240, 0.105);
  --app-store-text: rgba(249, 247, 240, 0.96);
  --app-store-muted: rgba(249, 247, 240, 0.58);
  --app-store-accent: #ff6a1a;
  --app-store-accent-soft: rgba(255, 106, 26, 0.15);
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.store-mode-applications .study-hero,
.store-mode-applications .study-marketplace {
  border-radius: 9px;
  border-color: var(--app-store-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.012)),
    var(--app-store-panel);
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.store-mode-applications .study-sidebar {
  display: none;
}

.store-mode-applications .study-content {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 12px;
}

.store-mode-applications .study-brand-mark {
  border-radius: 6px;
  background: var(--app-store-accent);
  color: #15100d;
}

.store-mode-applications .study-search-shell {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.026);
}

.store-mode-applications .study-search-shell:focus-within {
  border-color: rgba(255, 106, 26, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.12);
}

.store-mode-applications .study-section-nav {
  min-height: 46px;
  padding: 5px 6px;
  border: 1px solid var(--app-store-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.06), transparent 45%),
    rgba(255, 255, 255, 0.018);
}

.store-mode-applications .study-section-label {
  padding-left: 10px;
  color: rgba(249, 247, 240, 0.62);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.store-mode-applications .study-section-nav .study-filter-bar {
  flex-wrap: wrap;
  justify-content: flex-end;
  border-radius: 7px;
  border-color: rgba(249, 247, 240, 0.08);
  background: rgba(8, 9, 8, 0.44);
}

.store-mode-applications .study-section-nav .study-filter-chip {
  min-height: 32px;
  white-space: nowrap;
  border-radius: 5px;
  color: rgba(249, 247, 240, 0.64);
}

.store-mode-applications .study-section-nav .study-filter-chip.active {
  background: var(--app-store-accent);
  color: #15100d;
}

.store-mode-applications .study-hero {
  position: relative;
  min-height: 220px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.5fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052), transparent 42%),
    linear-gradient(180deg, #20211f 0%, #101110 100%);
  isolation: isolate;
}

.store-mode-applications .study-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(249, 247, 240, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 247, 240, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 84% 26%, var(--app-store-accent-soft), transparent 28%),
    linear-gradient(90deg, transparent 0 64%, rgba(0, 0, 0, 0.28) 64% 64.5%, transparent 64.5%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  animation: appStoreGridDrift 12s linear infinite;
  pointer-events: none;
}

.store-mode-applications .study-hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(249, 247, 240, 0.052);
  border-radius: 5px;
  pointer-events: none;
}

.store-mode-applications .study-hero-copy,
.store-mode-applications .study-feature-card {
  position: relative;
  z-index: 1;
}

.store-mode-applications .study-hero-copy {
  padding: clamp(24px, 3vw, 34px);
  gap: 10px;
}

.store-mode-applications .study-eyebrow,
.store-mode-applications .study-panel-label,
.store-mode-applications .study-detail-eyebrow {
  color: rgba(255, 106, 26, 0.84);
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
}

.store-mode-applications .study-hero-title {
  max-width: 660px;
  color: var(--app-store-text);
  font-size: clamp(2rem, 3.4vw, 3.85rem);
  line-height: 0.94;
  font-weight: 780;
}

.store-mode-applications .study-hero-text {
  max-width: 560px;
  color: var(--app-store-muted);
  font-size: 0.96rem;
}

.store-mode-applications .study-hero-actions .arm-button {
  border-radius: 6px;
  background: linear-gradient(180deg, #fff4e7, #e7ddd0);
  color: #151412;
}

.store-mode-applications .study-hero-actions .ghost-button {
  border-radius: 6px;
  border-color: rgba(249, 247, 240, 0.12);
  background: rgba(255, 255, 255, 0.024);
}

.store-mode-applications .study-feature-card {
  display: block;
  min-height: 220px;
  border-left-color: var(--app-store-line);
  background:
    radial-gradient(circle at var(--study-glow-x) var(--study-glow-y), rgba(255, 106, 26, 0.22), transparent 34%),
    rgba(14, 15, 14, 0.62);
}

.store-mode-applications .study-feature-image {
  opacity: 0.54;
  filter: grayscale(0.28) saturate(0.76) contrast(1.05);
}

.store-mode-applications .study-feature-card::after {
  background:
    linear-gradient(90deg, rgba(14, 15, 14, 0.84), rgba(14, 15, 14, 0.2) 58%, rgba(14, 15, 14, 0.82)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 42px);
}

.store-mode-applications .study-status-badge {
  background: var(--app-store-accent);
  border-color: rgba(255, 106, 26, 0.62);
  color: #15100d;
}

.store-mode-applications .study-feature-label {
  border-radius: 5px;
  background: rgba(249, 247, 240, 0.08);
  color: rgba(249, 247, 240, 0.78);
}

.store-mode-applications .study-feature-summary {
  gap: 8px;
}

.store-mode-applications .study-feature-summary h2 {
  color: var(--app-store-text);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.store-mode-applications .study-feature-summary p {
  color: rgba(249, 247, 240, 0.68);
}

.store-mode-applications .study-marketplace {
  min-height: calc(var(--surface-height) - 304px);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #151615;
}

.store-mode-applications .study-toolbar {
  min-height: 54px;
}

.store-mode-applications .study-toolbar h2 {
  color: var(--app-store-text);
  font-size: 1.18rem;
}

.store-mode-applications .study-toolbar-toggles {
  border-radius: 7px;
  border-color: rgba(249, 247, 240, 0.075);
  background: rgba(255, 255, 255, 0.026);
}

.store-mode-applications .study-toggle {
  border-radius: 5px;
}

.store-mode-applications .study-toggle.active {
  background: rgba(255, 106, 26, 0.16);
  color: rgba(249, 247, 240, 0.92);
}

.store-mode-applications .study-row {
  max-height: none;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 14px;
  overflow: visible;
  padding: 0;
}

.store-mode-applications .study-strip-card {
  --app-card-x: 72%;
  --app-card-y: 18%;
  position: relative;
  min-height: 318px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 132px minmax(0, 1fr);
  border-radius: 8px;
  border-color: rgba(249, 247, 240, 0.085);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--app-store-panel-2);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-mode-applications .study-strip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--app-card-x) var(--app-card-y), rgba(255, 106, 26, 0.18), transparent 30%),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.03) 48% 48.3%, transparent 48.3%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.store-mode-applications .study-strip-card:hover,
.store-mode-applications .study-strip-card.active {
  border-color: rgba(255, 106, 26, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 106, 26, 0.035)),
    var(--app-store-panel-2);
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.store-mode-applications .study-strip-card:hover::before,
.store-mode-applications .study-strip-card.active::before {
  opacity: 1;
}

.store-mode-applications .study-strip-card.active {
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 106, 26, 0.22);
}

.store-mode-applications .study-strip-media {
  min-height: 132px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 10px;
  background:
    linear-gradient(rgba(249, 247, 240, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 247, 240, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(255, 106, 26, 0.22), transparent 38%),
    #111210;
  background-size: 38px 38px, 38px 38px, auto, auto;
  overflow: hidden;
}

.store-mode-applications .study-strip-media::after {
  inset: 10px;
  border-radius: 5px;
  border-color: rgba(249, 247, 240, 0.075);
}

.store-mode-applications .study-strip-media::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 34%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 26, 0.18), transparent);
  transform: skewX(-18deg);
  animation: appStoreScan 4.8s ease-in-out infinite;
}

.store-mode-applications .study-strip-kicker,
.store-mode-applications .study-strip-status,
.store-mode-applications .study-strip-icon {
  position: relative;
  z-index: 1;
}

.store-mode-applications .study-strip-kicker {
  align-self: start;
  color: rgba(249, 247, 240, 0.58);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.store-mode-applications .study-strip-icon {
  width: 64px;
  height: 64px;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(249, 247, 240, 0.15);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 106, 26, 0.18);
  color: rgba(249, 247, 240, 0.94);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.store-mode-applications .study-strip-status {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  border-radius: 5px;
  background: rgba(255, 106, 26, 0.14);
  border-color: rgba(255, 106, 26, 0.26);
  color: rgba(255, 227, 207, 0.9);
}

.store-mode-applications .study-strip-body {
  position: relative;
  z-index: 2;
  padding: 16px;
  gap: 11px;
}

.store-mode-applications .study-strip-title {
  color: var(--app-store-text);
  font-size: 1.22rem;
  font-weight: 740;
}

.store-mode-applications .study-strip-subtitle {
  color: rgba(255, 106, 26, 0.88);
  font-family: var(--font-mono);
}

.store-mode-applications .study-strip-copy {
  display: block;
  color: var(--app-store-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.store-mode-applications .study-strip-chip {
  border-radius: 5px;
  background: rgba(249, 247, 240, 0.055);
  color: rgba(249, 247, 240, 0.68);
}

.store-mode-applications .app-card-telemetry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.store-mode-applications .app-card-telemetry span {
  min-width: 0;
  padding: 8px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(249, 247, 240, 0.07);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(249, 247, 240, 0.46);
  font-size: 0.66rem;
}

.store-mode-applications .app-card-telemetry strong {
  overflow: hidden;
  color: rgba(249, 247, 240, 0.88);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-mode-applications .study-card-footer {
  margin-top: auto;
  color: rgba(249, 247, 240, 0.48);
}

.store-mode-applications .study-card-footer strong {
  color: rgba(255, 106, 26, 0.96);
}

.store-mode-applications .study-sidebar-status {
  border-radius: 7px;
}

@keyframes appStoreGridDrift {
  from {
    background-position: 0 0, 0 0, center, center;
  }

  to {
    background-position: 58px 58px, 58px 58px, center, center;
  }
}

@keyframes appStoreScan {
  0%,
  46% {
    left: -42%;
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  86%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@media (max-width: 1480px) {
  .store-mode-applications .study-row {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 1220px) {
  .store-mode-applications {
    grid-template-columns: 1fr;
  }

  .store-mode-applications .study-hero {
    grid-template-columns: 1fr;
  }

  .store-mode-applications .study-feature-card {
    min-height: 190px;
    border-left: none;
    border-top: 1px solid var(--app-store-line);
  }
}

@media (max-width: 760px) {
  .store-mode-applications .study-hero-title {
    font-size: 2.65rem;
  }

  .store-mode-applications .study-row {
    grid-template-columns: 1fr;
  }

  .store-mode-applications .app-card-telemetry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1220px) {
  .studies-workspace {
    grid-template-columns: 1fr;
  }

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

  .study-row {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* Home dashboard */
.home-dashboard {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.home-command-center,
.home-flow-section,
.home-feature-module,
.home-lane {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)), var(--panel);
  box-shadow: var(--shadow);
}

.home-command-center {
  position: relative;
  min-height: min(62vh, 620px);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1fr);
  grid-template-rows: minmax(360px, 1fr) auto;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}

.home-command-center::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(233, 228, 216, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 228, 216, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(142, 227, 209, 0.11), transparent 34%),
    radial-gradient(circle at 16% 8%, rgba(233, 228, 216, 0.075), transparent 30%);
  background-size: 52px 52px, 52px 52px, auto, auto;
  opacity: 0.9;
}

.home-command-copy {
  z-index: 2;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.home-kicker {
  color: rgba(233, 228, 216, 0.62);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-command-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.8rem, 8vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.home-command-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(242, 242, 239, 0.66);
  line-height: 1.55;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.home-signal-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.home-signal-stage::before,
.home-signal-stage::after {
  content: "";
  position: absolute;
  inset: 11% 8% 13% 8%;
  border: 1px solid rgba(233, 228, 216, 0.08);
  border-radius: 999px;
  transform: rotate(-13deg);
}

.home-signal-stage::after {
  inset: 23% 16% 23% 16%;
  border-color: rgba(142, 227, 209, 0.15);
  transform: rotate(18deg);
}

.home-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56vw, 560px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(233, 228, 216, 0.1);
}

.ring-one {
  background: radial-gradient(circle, rgba(233, 228, 216, 0.04), transparent 64%);
}

.ring-two {
  width: min(38vw, 380px);
  border-color: rgba(142, 227, 209, 0.18);
  box-shadow: inset 0 0 48px rgba(142, 227, 209, 0.05);
}

.home-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(233, 228, 216, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(233, 228, 216, 0.22), transparent 42%),
    rgba(17, 18, 18, 0.82);
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.home-signal-wave {
  position: absolute;
  left: 50%;
  bottom: 54px;
  display: flex;
  align-items: end;
  gap: 9px;
  transform: translateX(-50%);
}

.home-signal-wave i {
  width: 7px;
  height: 30px;
  border-radius: 999px;
  background: rgba(233, 228, 216, 0.62);
}

.home-signal-wave i:nth-child(2),
.home-signal-wave i:nth-child(7) {
  height: 54px;
  background: rgba(142, 227, 209, 0.58);
}

.home-signal-wave i:nth-child(3),
.home-signal-wave i:nth-child(6) {
  height: 86px;
}

.home-signal-wave i:nth-child(4) {
  height: 122px;
  background: rgba(233, 228, 216, 0.84);
}

.home-signal-wave i:nth-child(5) {
  height: 104px;
  background: rgba(142, 227, 209, 0.68);
}

.home-floating-module {
  position: absolute;
  min-width: 132px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  border-radius: 8px;
  border: 1px solid rgba(233, 228, 216, 0.12);
  background: rgba(24, 25, 25, 0.72);
  backdrop-filter: blur(14px);
}

.home-floating-module span {
  color: rgba(233, 228, 216, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-floating-module strong {
  color: var(--text);
  font-size: 1rem;
}

.module-app {
  right: 9%;
  top: 18%;
}

.module-study {
  left: 10%;
  bottom: 28%;
}

.module-device {
  right: 13%;
  bottom: 18%;
}

.home-status-dock {
  grid-column: 1 / -1;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(18, 19, 19, 0.76);
  backdrop-filter: blur(18px);
}

.home-status-cell {
  min-height: 76px;
  padding: 14px 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.home-status-cell:last-child {
  border-right: none;
}

.home-status-cell span {
  color: rgba(233, 228, 216, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-status-cell strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.home-flow-section {
  padding: 18px;
  border-radius: 10px;
}

.home-section-topline,
.home-lane-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.home-section-topline h2,
.home-lane-header h2 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.home-section-action {
  min-height: 34px;
  padding-inline: 14px;
}

.home-path-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.home-path-track::before {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 228, 216, 0.24), rgba(142, 227, 209, 0.32), rgba(233, 228, 216, 0.08));
  pointer-events: none;
}

.home-path-node {
  position: relative;
  min-height: 112px;
  padding: 16px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.home-path-node:last-child {
  border-right: none;
}

.home-path-node:hover,
.home-path-node.is-current {
  background: rgba(233, 228, 216, 0.055);
}

.home-node-index,
.home-row-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(233, 228, 216, 0.08);
  color: rgba(233, 228, 216, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-path-node.is-current .home-node-index {
  background: rgba(233, 228, 216, 0.92);
  color: #171717;
}

.home-node-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.home-node-copy strong,
.home-launch-row strong,
.home-study-chip strong,
.home-feature-copy strong {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-node-copy small,
.home-launch-row small,
.home-study-chip small,
.home-feature-copy small {
  color: rgba(242, 242, 239, 0.55);
  line-height: 1.35;
}

.home-storefront {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(280px, 0.76fr) minmax(320px, 0.86fr);
  gap: 14px;
}

.home-feature-module {
  position: relative;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.home-feature-module img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transform: scale(1.02);
}

.home-feature-module::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 19, 0.08), rgba(18, 19, 19, 0.78)),
    linear-gradient(90deg, rgba(18, 19, 19, 0.64), transparent 68%);
}

.home-feature-module:hover,
.home-lane:hover {
  border-color: rgba(233, 228, 216, 0.16);
}

.home-feature-badge {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(233, 228, 216, 0.9);
  color: #171717;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-feature-copy {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
}

.home-feature-copy strong {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.home-feature-copy small {
  max-width: 390px;
  color: rgba(242, 242, 239, 0.68);
}

.home-lane {
  min-height: 310px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: 10px;
}

.home-launch-list,
.home-study-tape {
  display: grid;
  gap: 10px;
}

.home-launch-row,
.home-study-chip {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.home-launch-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
}

.home-study-chip {
  min-height: 76px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
}

.home-launch-row:hover,
.home-study-chip:hover {
  border-color: rgba(233, 228, 216, 0.18);
  background: rgba(233, 228, 216, 0.055);
}

@media (max-width: 1220px) {
  .home-command-center,
  .home-storefront {
    grid-template-columns: 1fr;
  }

  .home-signal-stage {
    min-height: 330px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .home-status-cell:nth-child(2) {
    border-right: none;
  }

  .home-status-cell:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 860px) {
  .home-command-copy {
    padding: 28px;
  }

  .home-command-copy h1 {
    font-size: 3.3rem;
  }

  .home-path-track {
    grid-template-columns: 1fr;
  }

  .home-path-track::before {
    display: none;
  }

  .home-path-node {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .home-path-node:last-child {
    border-bottom: none;
  }

  .home-launch-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .home-launch-row small {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .home-status-dock {
    grid-template-columns: 1fr;
  }

  .home-status-cell,
  .home-status-cell:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .home-status-cell:last-child {
    border-bottom: none;
  }

  .home-section-topline,
  .home-lane-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-signal-stage {
    min-height: 290px;
  }

  .home-floating-module {
    min-width: 112px;
  }
}

/* Home premium system pass: restrained sci-fi, industrial structure, native polish. */
.home-dashboard {
  --home-bg: #111211;
  --home-panel: rgba(31, 32, 31, 0.86);
  --home-panel-solid: #1e1f1e;
  --home-panel-raised: #272826;
  --home-ink: rgba(246, 244, 238, 0.94);
  --home-dim: rgba(246, 244, 238, 0.54);
  --home-faint: rgba(246, 244, 238, 0.12);
  --home-hairline: rgba(246, 244, 238, 0.075);
  --home-accent: rgba(190, 246, 229, 0.76);
  gap: 12px;
}

.home-command-center,
.home-flow-section,
.home-feature-module,
.home-lane {
  border-radius: 7px;
  border-color: var(--home-hairline);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.026), transparent 42%),
    var(--home-panel-solid);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.home-command-center {
  min-height: min(58vh, 590px);
  grid-template-columns: minmax(340px, 0.68fr) minmax(460px, 1fr);
  grid-template-rows: minmax(342px, 1fr) auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.038), transparent 36%),
    linear-gradient(180deg, #20211f 0%, #171817 100%);
}

.home-command-center::before {
  z-index: 0;
  background:
    linear-gradient(rgba(246, 244, 238, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 244, 238, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 66%, rgba(0, 0, 0, 0.24) 66% 66.5%, transparent 66.5%),
    radial-gradient(circle at 76% 32%, rgba(190, 246, 229, 0.07), transparent 28%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  opacity: 1;
}

.home-command-center::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(246, 244, 238, 0.045);
  border-radius: 4px;
  pointer-events: none;
}

.home-command-copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4.8vw, 62px);
  gap: 14px;
}

.home-command-copy::before {
  content: "";
  width: 56px;
  height: 4px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--home-ink), rgba(246, 244, 238, 0.18));
}

.home-kicker {
  color: rgba(246, 244, 238, 0.58);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.home-command-copy h1 {
  max-width: 520px;
  color: var(--home-ink);
  font-size: clamp(4.4rem, 8vw, 8.4rem);
  font-weight: 760;
  line-height: 0.86;
  text-wrap: balance;
}

.home-command-copy p {
  max-width: 470px;
  color: rgba(246, 244, 238, 0.62);
  font-size: 1rem;
}

.home-dashboard .arm-button,
.home-dashboard .ghost-button {
  min-height: 38px;
  border-radius: 7px;
  font-weight: 680;
}

.home-dashboard .arm-button {
  background: linear-gradient(180deg, rgba(246, 244, 238, 0.96), rgba(203, 199, 189, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.home-dashboard .ghost-button {
  border-color: rgba(246, 244, 238, 0.12);
  background: rgba(255, 255, 255, 0.024);
  color: rgba(246, 244, 238, 0.78);
}

.home-signal-stage {
  z-index: 2;
  min-height: 342px;
  border-left-color: rgba(246, 244, 238, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 56px),
    #191a19;
}

.home-signal-stage::before {
  inset: 36px;
  border-radius: 3px;
  border-color: rgba(246, 244, 238, 0.09);
  transform: none;
  background:
    linear-gradient(90deg, rgba(246, 244, 238, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(246, 244, 238, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
}

.home-signal-stage::after {
  inset: 78px 88px;
  border-radius: 4px;
  border-color: rgba(190, 246, 229, 0.12);
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.home-orbit-ring {
  left: 50%;
  top: 50%;
  width: min(38vw, 430px);
  aspect-ratio: 1.9;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  border-color: rgba(246, 244, 238, 0.1);
}

.ring-one {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(246, 244, 238, 0.08) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(246, 244, 238, 0.08) 49.5% 50.5%, transparent 50.5%);
}

.ring-two {
  width: min(26vw, 286px);
  border-color: rgba(190, 246, 229, 0.16);
  box-shadow: inset 0 0 44px rgba(190, 246, 229, 0.025);
}

.home-orbit-core {
  width: 104px;
  border-radius: 6px;
  border-color: rgba(246, 244, 238, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.012)),
    #20211f;
  color: var(--home-ink);
  font-size: 1.7rem;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-signal-wave {
  bottom: 42px;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 244, 238, 0.08);
  border-radius: 5px;
  background: rgba(12, 13, 13, 0.54);
}

.home-signal-wave i {
  width: 5px;
  border-radius: 1px;
  background: rgba(246, 244, 238, 0.52);
}

.home-signal-wave i:nth-child(2),
.home-signal-wave i:nth-child(5),
.home-signal-wave i:nth-child(7) {
  background: rgba(190, 246, 229, 0.64);
}

.home-floating-module {
  min-width: 118px;
  padding: 10px 12px;
  border-radius: 5px;
  border-color: rgba(246, 244, 238, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(21, 22, 21, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.home-floating-module span {
  color: rgba(246, 244, 238, 0.46);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.home-floating-module strong {
  font-size: 0.92rem;
}

.module-app {
  right: 11%;
  top: 17%;
}

.module-study {
  left: 11%;
  bottom: 30%;
}

.module-device {
  right: 13%;
  bottom: 20%;
}

.home-status-dock {
  z-index: 2;
  border-top-color: rgba(246, 244, 238, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(15, 16, 15, 0.86);
  backdrop-filter: blur(22px);
}

.home-status-cell {
  min-height: 72px;
  border-right-color: rgba(246, 244, 238, 0.07);
}

.home-status-cell span {
  color: rgba(246, 244, 238, 0.48);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.home-status-cell strong {
  color: var(--home-ink);
  font-size: 0.95rem;
}

.home-flow-section {
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--home-panel-solid);
}

.home-section-topline,
.home-lane-header {
  min-height: 38px;
}

.home-section-topline h2,
.home-lane-header h2 {
  color: var(--home-ink);
  font-size: 1.05rem;
  font-weight: 720;
}

.home-path-track {
  margin-top: 14px;
  border-radius: 5px;
  border-color: rgba(246, 244, 238, 0.075);
}

.home-path-track::before {
  left: 58px;
  right: 58px;
  top: 38px;
  background: linear-gradient(90deg, rgba(246, 244, 238, 0.18), rgba(190, 246, 229, 0.28), rgba(246, 244, 238, 0.08));
}

.home-path-node {
  min-height: 102px;
  border-right-color: rgba(246, 244, 238, 0.065);
  background: rgba(255, 255, 255, 0.012);
}

.home-path-node:hover,
.home-path-node.is-current {
  background: rgba(246, 244, 238, 0.045);
}

.home-node-index,
.home-row-icon {
  border-radius: 5px;
  background: rgba(246, 244, 238, 0.07);
  color: rgba(246, 244, 238, 0.72);
  font-family: var(--font-mono);
}

.home-path-node.is-current .home-node-index {
  background: rgba(246, 244, 238, 0.92);
  color: #151615;
}

.home-node-copy strong,
.home-launch-row strong,
.home-study-chip strong,
.home-feature-copy strong {
  color: var(--home-ink);
  font-weight: 720;
}

.home-node-copy small,
.home-launch-row small,
.home-study-chip small,
.home-feature-copy small {
  color: rgba(246, 244, 238, 0.5);
}

.home-storefront {
  grid-template-columns: minmax(380px, 1fr) minmax(270px, 0.72fr) minmax(320px, 0.82fr);
  gap: 12px;
}

.home-feature-module {
  min-height: 292px;
  border-color: rgba(246, 244, 238, 0.085);
  background: #151615;
}

.home-feature-module img {
  opacity: 0.48;
  filter: grayscale(0.28) contrast(1.04) saturate(0.72);
}

.home-feature-module::after {
  background:
    linear-gradient(90deg, rgba(16, 17, 16, 0.88), rgba(16, 17, 16, 0.36) 58%, rgba(16, 17, 16, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.38)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 42px);
}

.home-feature-badge {
  border-radius: 5px;
  background: rgba(246, 244, 238, 0.9);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.home-feature-copy strong {
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
}

.home-lane {
  min-height: 292px;
  padding: 16px;
  gap: 14px;
}

.home-launch-list,
.home-study-tape {
  gap: 8px;
}

.home-launch-row,
.home-study-chip {
  border-radius: 5px;
  border-color: rgba(246, 244, 238, 0.065);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent),
    rgba(255, 255, 255, 0.012);
}

.home-launch-row {
  min-height: 64px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  padding: 10px;
}

.home-study-chip {
  min-height: 70px;
  padding: 12px;
}

.home-launch-row:hover,
.home-study-chip:hover,
.home-feature-module:hover {
  border-color: rgba(246, 244, 238, 0.18);
  background-color: rgba(246, 244, 238, 0.035);
}

@media (max-width: 1220px) {
  .home-command-center,
  .home-storefront {
    grid-template-columns: 1fr;
  }

  .home-signal-stage {
    border-left: none;
    border-top: 1px solid rgba(246, 244, 238, 0.08);
  }
}

@media (max-width: 860px) {
  .home-command-copy h1 {
    font-size: 3.6rem;
  }

  .home-path-track::before {
    display: none;
  }
}

/* Primary app navigation and Devices page */
.top-nav {
  max-width: min(100%, 720px);
  overflow-x: auto;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav-tab {
  white-space: nowrap;
}

.device-workspace,
.models-workspace,
.participant-studies-workspace {
  --device-black: #090a09;
  --device-graphite: #171816;
  --device-panel: rgba(27, 28, 26, 0.86);
  --device-line: rgba(249, 247, 240, 0.1);
  --device-line-strong: rgba(249, 247, 240, 0.19);
  --device-text: rgba(250, 248, 242, 0.96);
  --device-muted: rgba(250, 248, 242, 0.6);
  --device-orange: #ff6a1a;
  --device-orange-soft: rgba(255, 106, 26, 0.14);
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 18px clamp(12px, 2vw, 26px) 42px;
  display: grid;
  gap: 14px;
  color: var(--device-text);
}

body.desktop-runtime.desktop-light-mode .device-workspace,
body.desktop-runtime.desktop-light-mode .models-workspace,
body.desktop-runtime.desktop-light-mode .participant-studies-workspace {
  --device-black: #f4f1e9;
  --device-graphite: #ffffff;
  --device-panel: rgba(255, 255, 255, 0.9);
  --device-line: rgba(29, 28, 25, 0.1);
  --device-line-strong: rgba(29, 28, 25, 0.2);
  --device-text: rgba(29, 28, 25, 0.94);
  --device-muted: rgba(29, 28, 25, 0.58);
  --device-orange-soft: rgba(255, 106, 26, 0.12);
}

.device-hub {
  width: 100%;
  max-width: none;
  padding: 8px 16px 18px;
  gap: 12px;
}

.device-hub-grid,
.device-connected-strip,
.device-list-panel {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

body.desktop-runtime.desktop-light-mode .device-hub-grid,
body.desktop-runtime.desktop-light-mode .device-connected-strip,
body.desktop-runtime.desktop-light-mode .device-list-panel {
  border-color: var(--stroke);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.08);
}

body.desktop-runtime.desktop-light-mode .device-hub-grid {
  border: none;
  background: transparent;
  box-shadow: none;
}

.device-hub-actions,
.device-card-topline,
.device-browser-actions,
.device-panel-header,
.device-panel-actions,
.device-hub-card-top,
.device-hub-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.device-hub-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.device-hub-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  border: none;
  background: transparent;
  box-shadow: none;
}

.device-connected-strip {
  min-height: 102px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  gap: 12px;
  align-items: stretch;
}

.device-connected-strip {
  border-color: rgba(255, 106, 26, 0.34);
  background:
    linear-gradient(90deg, var(--device-orange-soft), transparent 44%),
    var(--device-graphite);
}

.device-card-topline {
  display: grid;
  align-content: center;
  gap: 7px;
  justify-content: space-between;
  color: var(--device-muted);
}

.device-card-topline strong {
  color: var(--device-text);
  font-size: 0.95rem;
}

.device-card-topline strong::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--device-orange);
  box-shadow: 0 0 0 6px var(--device-orange-soft);
}

.device-card-kicker,
.device-panel-count {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

body.desktop-runtime.desktop-light-mode .device-card-kicker,
body.desktop-runtime.desktop-light-mode .device-panel-count {
  color: rgba(29, 28, 25, 0.48);
}

.device-panel-header h2 {
  margin: 0;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.device-browser-card {
  grid-template-rows: auto minmax(112px, 1fr) auto auto auto;
}

.device-signal-bars.compact {
  min-height: 128px;
  padding: 22px 18px 16px;
  gap: 7px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
}

.device-signal-bars.compact::before {
  content: "SERIAL PREVIEW";
  left: 16px;
  top: 12px;
}

.device-signal-bars.compact span {
  min-height: 34px;
  height: calc(34px + (var(--bar-scale, 0.2) * 72px));
}

.device-console-grid.compact {
  border: 1px solid var(--device-line);
  border-radius: 10px;
  overflow: hidden;
}

.device-console-grid.compact div {
  min-height: 68px;
  padding: 12px;
}

.device-list-panel {
  min-height: 280px;
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.device-panel-header {
  min-height: 42px;
  justify-content: space-between;
}

.device-panel-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.device-card-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
}

.device-hub-card {
  min-height: 78px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
  transition: 160ms ease;
}

.device-hub-card:hover {
  border-color: rgba(255, 106, 26, 0.34);
  background: rgba(255, 106, 26, 0.055);
}

.device-hub-card.primary {
  border-color: var(--device-line);
  background: rgba(255, 255, 255, 0.022);
}

.device-hub-card.connected {
  border-color: rgba(255, 106, 26, 0.3);
  background: rgba(255, 106, 26, 0.045);
}

.device-hub-card.connected .device-hub-status {
  border-color: rgba(255, 106, 26, 0.34);
  color: rgba(255, 196, 160, 0.96);
  background: rgba(255, 106, 26, 0.1);
}

.device-hub-card.connected .device-hub-status::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 999px;
  background: var(--device-orange);
  box-shadow: 0 0 0 4px var(--device-orange-soft);
}

.device-hub-card-top {
  align-items: center;
  min-width: 0;
}

.device-hub-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(250, 248, 242, 0.92);
  color: #17130f;
  font-weight: 800;
  font-size: 0.72rem;
}

.device-hub-card-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.device-hub-card-copy strong {
  color: var(--device-text);
  font-size: 0.95rem;
}

.device-hub-card-copy span {
  color: var(--device-muted);
  font-size: 0.78rem;
}

.device-hub-status {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid var(--device-line);
  border-radius: 999px;
  color: var(--device-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 760;
  white-space: nowrap;
}

body.desktop-runtime.desktop-light-mode .device-hub-status {
  color: rgba(29, 28, 25, 0.62);
  background: rgba(29, 28, 25, 0.035);
}

.device-hub-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.device-hub-facts span {
  padding: 6px 8px;
  border: 1px solid var(--device-line);
  border-radius: 7px;
  color: var(--device-muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  font-weight: 650;
}

.device-hub-card-actions {
  justify-content: flex-end;
}

.compact-button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

.device-hub-empty {
  min-height: 88px;
  padding: 14px;
  display: grid;
  align-content: center;
  border: 1px dashed var(--device-line-strong);
  border-radius: 10px;
  color: var(--device-muted);
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.9rem;
  line-height: 1.45;
}

.device-page-hero,
.device-page-grid,
.desktop-runtime-section,
.device-flow-section,
.device-control-section,
.models-hero,
.model-card-grid,
.model-pipeline-section {
  border: 1px solid var(--device-line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012)),
    var(--device-graphite);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.device-page-hero {
  min-height: min(68vh, 650px);
  padding: clamp(22px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(380px, 0.92fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
}

.device-page-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.device-page-eyebrow {
  color: rgba(250, 248, 242, 0.56);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.desktop-runtime.desktop-light-mode .device-page-eyebrow {
  color: rgba(29, 28, 25, 0.52);
}

.device-page-copy h1,
.device-flow-section h2 {
  max-width: 780px;
  margin: 0;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.6rem, 5vw, 6rem);
  font-weight: 740;
  line-height: 0.96;
  letter-spacing: 0;
}

.device-page-copy p,
.device-route-card p {
  max-width: 660px;
  margin: 0;
  color: var(--device-muted);
  line-height: 1.58;
}

.device-page-actions,
.device-browser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.device-workspace .arm-button,
.participant-studies-workspace .arm-button {
  background: var(--device-orange);
  color: #15100d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 12px 28px rgba(255, 106, 26, 0.18);
}

.device-workspace .ghost-button,
.participant-studies-workspace .ghost-button {
  border-color: rgba(250, 248, 242, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(250, 248, 242, 0.78);
}

body.desktop-runtime.desktop-light-mode .device-workspace .ghost-button,
body.desktop-runtime.desktop-light-mode .participant-studies-workspace .ghost-button {
  border-color: rgba(29, 28, 25, 0.14);
  background: rgba(29, 28, 25, 0.045);
  color: rgba(29, 28, 25, 0.72);
}

.device-workspace .ghost-button:hover,
.participant-studies-workspace .ghost-button:hover,
.device-route-card:hover {
  border-color: rgba(255, 106, 26, 0.34);
  background-color: rgba(255, 106, 26, 0.055);
}

body.desktop-runtime.desktop-light-mode .device-workspace .ghost-button:hover,
body.desktop-runtime.desktop-light-mode .participant-studies-workspace .ghost-button:hover {
  border-color: rgba(255, 106, 26, 0.34);
  background-color: rgba(255, 106, 26, 0.08);
  color: rgba(29, 28, 25, 0.9);
}

.device-stream-console {
  min-height: 500px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--device-line-strong);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    rgba(16, 17, 16, 0.72);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.device-console-topline {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--device-line);
}

.device-console-topline span,
.device-console-grid span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.device-console-topline strong {
  color: var(--device-text);
  font-size: 0.95rem;
}

.device-console-topline strong::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--device-orange);
  box-shadow: 0 0 0 6px var(--device-orange-soft);
}

.device-signal-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(rgba(250, 248, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(255, 106, 26, 0.09), transparent 40%);
  background-size: 44px 44px, 44px 44px, auto;
}

.device-signal-bars::before {
  content: "OPENBCI PACKETS";
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgba(250, 248, 242, 0.38);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0;
}

.device-signal-bars span {
  height: calc(84px + (var(--bar-scale, 0.2) * 190px));
  min-height: 62px;
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(250, 248, 242, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.62), rgba(250, 248, 242, 0.075)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: height 140ms ease;
}

.device-console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--device-line);
}

.device-console-grid div {
  min-height: 86px;
  padding: 15px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--device-line);
}

.device-console-grid div:last-child {
  border-right: none;
}

.device-console-grid strong {
  color: var(--device-text);
  font-size: 0.95rem;
}

.device-page-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 12px;
}

.device-route-card {
  min-height: 360px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  transition: 160ms ease;
}

.device-route-card.primary {
  background:
    linear-gradient(180deg, var(--device-orange-soft), transparent 78%),
    rgba(255, 255, 255, 0.018);
}

.device-route-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.device-route-card h2 {
  margin: 0 0 8px;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.device-route-card.primary .web-card-index {
  background: var(--device-orange);
  color: #15100d;
}

.desktop-runtime-section {
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  gap: 18px;
}

.desktop-runtime-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.46fr);
  gap: 18px;
  align-items: end;
}

.desktop-runtime-header h2 {
  max-width: 900px;
  margin: 0;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 4.2vw, 5rem);
  font-weight: 740;
  line-height: 0.96;
  letter-spacing: 0;
}

.desktop-runtime-header p,
.desktop-runtime-card p {
  margin: 0;
  color: var(--device-muted);
  line-height: 1.58;
}

.desktop-runtime-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.18fr) minmax(280px, 0.86fr);
  gap: 12px;
}

.desktop-runtime-card {
  min-height: 310px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.desktop-runtime-card.primary {
  border-color: rgba(255, 106, 26, 0.26);
  background:
    linear-gradient(180deg, var(--device-orange-soft), transparent 80%),
    rgba(255, 255, 255, 0.018);
}

.desktop-runtime-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--device-text);
  font-size: 1.08rem;
}

.desktop-runtime-card.primary .web-card-index {
  background: var(--device-orange);
  color: #15100d;
}

.desktop-runtime-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.desktop-safety-grid div {
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.desktop-safety-grid span,
.desktop-permission-list span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-safety-grid strong {
  color: var(--device-text);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.desktop-permission-list {
  display: grid;
  gap: 9px;
}

.desktop-permission-list span {
  padding: 10px 12px;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(250, 248, 242, 0.68);
  text-transform: none;
}

.device-page-status-grid {
  display: grid;
  gap: 10px;
}

.device-page-status-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.device-page-status-card {
  min-height: 98px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
}

.device-page-status-card span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.device-page-status-card strong {
  color: var(--device-text);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.device-browser-log {
  min-height: 112px;
  padding: 14px;
  white-space: pre-wrap;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(250, 248, 242, 0.68);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.55;
}

.device-flow-section {
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.device-flow-section h2 {
  margin-top: 9px;
  font-size: clamp(2.2rem, 3.8vw, 4.4rem);
}

.device-flow-diagram {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(250, 248, 242, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.018) 1px, transparent 1px),
    rgba(255, 255, 255, 0.014);
  background-size: 38px 38px;
}

.device-flow-node {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--device-line-strong);
  border-radius: 9px;
  color: var(--device-text);
  font-weight: 760;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.device-flow-node.accent {
  border-color: rgba(255, 106, 26, 0.36);
  background: rgba(255, 106, 26, 0.08);
}

.device-flow-line {
  height: 1px;
  background: rgba(250, 248, 242, 0.24);
}

.device-flow-line.accent {
  background: var(--device-orange);
}

.device-control-section {
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  gap: 18px;
}

.device-control-header {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: end;
}

.device-control-header h2,
.models-hero-copy h1,
.model-pipeline-section h2 {
  max-width: 900px;
  margin: 0;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  font-weight: 740;
  line-height: 0.96;
  letter-spacing: 0;
}

.device-control-header p,
.models-hero-copy p,
.model-pipeline-step p,
.model-card p,
.control-layer-card p {
  margin: 0;
  color: var(--device-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.control-layer-grid,
.model-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.control-layer-card,
.model-card,
.model-pipeline-step {
  min-height: 300px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.control-layer-card.primary,
.model-card.ready {
  border-color: rgba(255, 106, 26, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.14), transparent 78%),
    rgba(255, 255, 255, 0.018);
}

.control-layer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-layer-top strong,
.model-card h2 {
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
  line-height: 1;
}

.control-layer-list,
.model-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.control-layer-list span,
.model-chip-row span,
.control-layer-status,
.model-card-kicker {
  padding: 7px 9px;
  border: 1px solid var(--device-line);
  border-radius: 999px;
  color: rgba(250, 248, 242, 0.72);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.76rem;
  font-weight: 650;
}

.control-layer-status,
.model-card-kicker {
  width: fit-content;
  color: #150f0c;
  border-color: transparent;
  background: var(--device-orange);
}

.models-hero {
  min-height: min(62vh, 620px);
  padding: clamp(22px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 0.64fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

.models-hero-copy {
  display: grid;
  gap: 16px;
}

.model-score-card {
  min-height: 420px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 106, 26, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(rgba(250, 248, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.018) 1px, transparent 1px),
    rgba(255, 106, 26, 0.06);
  background-size: 34px 34px;
}

.model-score-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--device-muted);
}

.model-score-top strong {
  color: var(--device-orange);
}

.model-score-grid,
.model-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.model-score-grid div {
  min-height: 118px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.model-score-grid span,
.model-pipeline-step span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.model-score-grid strong,
.model-pipeline-step strong {
  color: var(--device-text);
}

.model-card-grid {
  padding: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-card {
  min-height: 320px;
}

.model-card.warning {
  border-color: rgba(255, 201, 107, 0.28);
}

.model-card.planned {
  opacity: 0.88;
}

.model-pipeline-section {
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.model-library-panel {
  min-height: calc(100vh - 194px);
  padding: 14px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

body.desktop-runtime.desktop-light-mode .model-library-panel {
  border-color: var(--stroke);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.08);
}

.model-library-header,
.model-library-actions,
.model-row-title,
.model-row-card,
.model-summary-strip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-library-header {
  min-height: 44px;
  justify-content: space-between;
}

.model-library-header h1 {
  margin: 0;
  color: var(--device-text);
  font-family: var(--font-industrial);
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
}

.model-library-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.model-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.model-summary-strip div {
  min-height: 66px;
  padding: 11px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.model-summary-strip span,
.model-row-data span {
  color: var(--device-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.model-summary-strip strong {
  color: var(--device-text);
  font-size: 0.88rem;
}

.model-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.participant-studies-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.participant-studies-panel {
  min-height: calc(100vh - 194px);
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

body.desktop-runtime.desktop-light-mode .participant-studies-panel {
  border-color: var(--stroke);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(58, 47, 35, 0.08);
}

.participant-studies-library {
  grid-template-rows: 1fr;
}

.participant-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.participant-study-header h2 {
  margin: 4px 0 6px;
  color: var(--device-text);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  letter-spacing: -0.05em;
}

.participant-study-header p {
  max-width: 760px;
  margin: 0;
  color: var(--device-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.study-participant-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.study-participant-status div {
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--device-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.024);
}

.study-participant-status span {
  color: var(--device-muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.study-participant-status strong {
  min-width: 0;
  overflow: hidden;
  color: var(--device-text);
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.participant-study-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}

@media (min-width: 1380px) {
  .participant-study-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.participant-study-card {
  padding: 16px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--device-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--device-text);
  text-align: left;
  transition: 160ms ease;
  cursor: default;
}

.participant-study-card:hover,
.participant-study-card.active {
  border-color: rgba(255, 106, 26, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.09), transparent 85%),
    rgba(255, 255, 255, 0.03);
}

.participant-study-card-top,
.participant-study-card-title-row,
.participant-study-card-footer,
.participant-study-card-facts,
.participant-study-meta,
.participant-study-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.participant-study-card-top {
  align-items: flex-start;
}

.participant-study-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(250, 248, 242, 0.92);
  color: #17130f;
  flex: 0 0 auto;
}

.participant-study-card-icon svg {
  width: 22px;
  height: 22px;
}

.participant-study-card-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.participant-study-card-title-row {
  flex-wrap: wrap;
}

.participant-study-card-copy strong {
  color: var(--device-text);
  font-size: 1rem;
}

.participant-study-card-copy span,
.participant-study-card p,
.participant-study-card-footer span {
  color: var(--device-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.participant-study-card p {
  margin: 0;
}

.participant-study-card-facts {
  flex-wrap: wrap;
}

.participant-study-card-facts span,
.participant-study-chip {
  padding: 6px 8px;
  border: 1px solid var(--device-line);
  border-radius: 999px;
  color: var(--device-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  font-weight: 650;
}

.participant-study-chip {
  border-color: rgba(255, 106, 26, 0.24);
  background: rgba(255, 106, 26, 0.08);
  color: var(--device-orange);
}

.participant-study-card-footer {
  justify-content: space-between;
  flex-wrap: wrap;
}

.participant-study-details-button,
.participant-study-start-button {
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 106, 26, 0.24);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.09);
  color: var(--device-orange);
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: 160ms ease;
}

.participant-study-details-button:hover,
.participant-study-details-button:focus-visible,
.participant-study-start-button:hover,
.participant-study-start-button:focus-visible {
  border-color: rgba(255, 106, 26, 0.42);
  background: rgba(255, 106, 26, 0.15);
  box-shadow: 0 0 0 4px var(--device-orange-soft);
  outline: none;
}

.participant-study-start-button {
  background: #ff6a1a;
  color: #1c120c;
}

.participant-study-meta {
  flex-wrap: wrap;
  align-items: flex-start;
}

.participant-study-meta span {
  color: var(--device-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.study-consent-list {
  display: grid;
  gap: 8px;
}

.study-consent-list span,
.study-consent-check {
  padding: 10px 12px;
  border: 1px solid var(--device-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--device-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.study-consent-check {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.study-consent-check input {
  margin-top: 3px;
  accent-color: #ff6a1a;
}

.participant-study-steps {
  display: grid;
  align-content: start;
  gap: 10px;
}

.participant-study-step {
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid var(--device-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.022);
}

.participant-study-step.good {
  border-color: rgba(255, 106, 26, 0.26);
}

.participant-study-step-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.participant-study-step p {
  margin: 6px 0 0;
  color: var(--device-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.model-row-card {
  min-height: 92px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto minmax(260px, 0.72fr) minmax(300px, 1fr) auto;
  border: 1px solid var(--device-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
  transition: 160ms ease;
}

.model-row-card:hover {
  border-color: rgba(255, 106, 26, 0.34);
  background: rgba(255, 106, 26, 0.055);
}

.model-row-card.muted {
  opacity: 0.9;
}

.model-row-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(250, 248, 242, 0.92);
  color: #17130f;
}

.model-row-icon svg {
  width: 22px;
  height: 22px;
}

.model-row-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.model-row-title {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.model-row-title strong {
  color: var(--device-text);
  font-size: 0.98rem;
}

.model-row-title span {
  padding: 4px 7px;
  border: 1px solid var(--device-line);
  border-radius: 999px;
  color: var(--device-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  font-weight: 740;
}

.model-row-main p {
  max-width: 560px;
  margin: 0;
  color: var(--device-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.model-row-data {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.model-row-data span {
  padding: 6px 8px;
  border: 1px solid var(--device-line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
  text-transform: none;
}

@media (max-width: 1220px) {
  body.desktop-runtime .workspace {
    grid-template-columns: 1fr;
    padding-inline: 10px;
  }

  body.desktop-runtime .library-column,
  body.desktop-runtime .canvas-column,
  body.desktop-runtime .desktop-page-section {
    grid-template-rows: auto minmax(0, auto);
    gap: 8px;
  }

  body.desktop-runtime .column-label,
  body.desktop-runtime .canvas-header,
  body.desktop-runtime .desktop-section-title {
    min-height: 36px;
    padding-bottom: 4px;
  }

  body.desktop-runtime .library-list {
    height: min(210px, max(132px, calc(34vh - 74px)));
  }

  body.desktop-runtime .canvas-shell {
    height: min(500px, max(320px, calc(100vh - 120px)));
    padding-top: 54px;
  }

  body.desktop-runtime .stage-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 8px;
    scroll-snap-type: x proximity;
  }

  body.desktop-runtime .stage-node {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .device-page-hero,
  .device-page-grid,
  .device-hub-header,
  .device-hub-grid,
  .device-flow-section,
  .desktop-runtime-header,
  .desktop-runtime-grid,
  .device-control-header,
  .models-hero,
  .model-pipeline-section,
  .participant-studies-grid {
    grid-template-columns: 1fr;
  }

  .control-layer-grid,
  .model-card-grid,
  .model-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-row-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .model-row-data,
  .model-row-card > .ghost-button {
    grid-column: 2;
  }

  .device-stream-console {
    min-height: 420px;
  }

  .device-hub-actions {
    justify-content: flex-start;
  }

  .device-page-status-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  body.desktop-runtime {
    --surface-height: max(360px, calc(100vh - 128px));
  }

  body.desktop-runtime .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding-right: 14px;
  }

  body.desktop-runtime .site-header .top-nav {
    max-width: 100%;
  }

  body.desktop-runtime .site-header .top-nav-tab {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  body.desktop-runtime .desktop-header-connect,
  body.desktop-runtime .desktop-theme-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  body.desktop-runtime .device-workspace,
  body.desktop-runtime .models-workspace,
  body.desktop-runtime .participant-studies-workspace,
  body.desktop-runtime .developer-workspace {
    padding-inline: 10px;
  }

  .device-connected-strip,
  .device-hub-card,
  .model-row-card {
    grid-template-columns: 1fr;
  }

  .device-hub-card-actions,
  .model-row-data,
  .model-row-card > .ghost-button {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .device-page-hero {
    padding: 20px;
  }

  .device-hub {
    padding: 14px 12px 24px;
  }

  .device-page-copy h1 {
    font-size: 2.55rem;
  }

  .device-console-grid,
  .device-page-status-grid.compact,
  .desktop-safety-grid,
  .control-layer-grid,
  .model-card-grid,
  .model-score-grid,
  .model-pipeline-grid,
  .model-summary-strip {
    grid-template-columns: 1fr;
  }

  .model-library-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .participant-study-card-footer,
  .participant-study-card-top,
  .participant-study-card-title-row,
  .participant-study-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .model-row-data,
  .model-row-card > .ghost-button {
    grid-column: auto;
  }

  .device-console-grid div {
    border-right: none;
    border-bottom: 1px solid var(--device-line);
  }

  .device-console-grid div:last-child {
    border-bottom: none;
  }

  .device-flow-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .device-flow-line {
    width: 1px;
    height: 26px;
    justify-self: center;
  }

  .device-hub-card-top,
  .device-card-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .device-connected-strip,
  .device-hub-card {
    grid-template-columns: 1fr;
  }

  .device-panel-header,
  .device-panel-actions,
  .device-hub-card-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* Move catalog filters into the content header, keep the side panel focused. */
.study-sidebar {
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.study-sidebar-status {
  align-self: end;
}

.study-content {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.study-section-nav {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.study-section-label {
  color: rgba(242, 242, 239, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.study-section-nav .study-filter-bar {
  width: auto;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.study-section-nav .study-filter-chip {
  width: auto;
  min-height: 36px;
  display: inline-flex;
  grid-template-columns: none;
  padding: 0 14px;
  border-radius: 999px;
  border: none;
}

.study-section-nav .study-filter-chip::before,
.study-section-nav .study-filter-icon {
  display: none;
}

.study-section-nav .study-filter-chip.active {
  color: #161412;
  background: linear-gradient(135deg, rgba(233, 228, 216, 0.96), rgba(207, 199, 186, 0.9));
}

@media (max-width: 1220px) {
  .study-sidebar {
    grid-template-rows: auto auto auto;
  }

  .study-sidebar-status {
    align-self: auto;
  }

  .study-section-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .study-section-nav .study-filter-bar {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
}

@media (max-width: 900px) {
  .study-section-nav .study-filter-chip {
    padding: 0 12px;
  }
}

/* Website platform translation */
.home-dashboard {
  --web-black: #0d0e0d;
  --web-graphite: #191a18;
  --web-panel: rgba(30, 31, 29, 0.86);
  --web-panel-2: rgba(39, 40, 37, 0.82);
  --web-line: rgba(246, 242, 232, 0.095);
  --web-line-strong: rgba(246, 242, 232, 0.18);
  --web-text: rgba(249, 247, 240, 0.95);
  --web-muted: rgba(249, 247, 240, 0.58);
  --web-soft: rgba(249, 247, 240, 0.08);
  --web-accent: #ff6a1a;
  --web-accent-soft: rgba(255, 106, 26, 0.16);
  gap: 12px;
}

.top-nav {
  max-width: min(100%, 860px);
  flex-wrap: nowrap !important;
  overflow-x: auto;
}

.web-hero,
.web-product-system,
.web-split-section,
.web-ecosystem-section {
  position: relative;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--web-graphite);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.web-hero {
  min-height: min(76vh, 760px);
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 0.72fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.048), transparent 39%),
    linear-gradient(180deg, #20211f 0%, #101110 100%);
}

.web-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(249, 247, 240, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 247, 240, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 84% 30%, var(--web-accent-soft), transparent 24%),
    linear-gradient(90deg, transparent 0 62%, rgba(0, 0, 0, 0.28) 62% 62.4%, transparent 62.4%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  pointer-events: none;
}

.web-hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(249, 247, 240, 0.05);
  border-radius: 5px;
  pointer-events: none;
}

.web-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(34px, 5.8vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.web-hero-copy::before {
  content: "";
  width: 76px;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--web-accent), rgba(255, 106, 26, 0));
}

.web-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--web-text);
  font-size: clamp(3.6rem, 7.4vw, 8.8rem);
  line-height: 0.88;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.web-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--web-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.62;
}

.home-dashboard .home-kicker {
  color: rgba(249, 247, 240, 0.6);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.home-dashboard .arm-button {
  background: linear-gradient(180deg, #fff4e7, #e7ddd0);
  color: #151412;
}

.home-dashboard .ghost-button:hover,
.home-dashboard .web-system-card:hover,
.home-dashboard .home-launch-row:hover,
.home-dashboard .home-study-chip:hover,
.home-dashboard .web-workflow-list button:hover {
  border-color: rgba(255, 106, 26, 0.36);
  background-color: rgba(255, 106, 26, 0.055);
}

.web-device-console {
  position: relative;
  z-index: 1;
  min-height: 520px;
  margin: 18px 18px 18px 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--web-line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(18, 19, 18, 0.76);
  backdrop-filter: blur(18px);
}

.web-console-topline {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--web-line);
}

.web-console-topline span {
  color: var(--web-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.web-console-topline strong {
  color: var(--web-text);
  font-size: 0.94rem;
}

.web-console-topline strong::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--web-accent);
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.12);
}

.web-signal-mesh {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(rgba(249, 247, 240, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 247, 240, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
}

.web-signal-mesh::before {
  content: "LIVE SIGNAL";
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgba(249, 247, 240, 0.38);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.web-signal-mesh span {
  min-height: 86px;
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(249, 247, 240, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.32), rgba(249, 247, 240, 0.07)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.web-signal-mesh span:nth-child(2) {
  min-height: 180px;
}

.web-signal-mesh span:nth-child(3) {
  min-height: 124px;
}

.web-signal-mesh span:nth-child(4) {
  min-height: 238px;
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.7), rgba(249, 247, 240, 0.075)),
    rgba(255, 255, 255, 0.018);
}

.web-signal-mesh span:nth-child(5) {
  min-height: 146px;
}

.web-signal-mesh span:nth-child(6) {
  min-height: 202px;
}

.web-console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--web-line);
}

.web-console-grid .home-status-cell {
  min-height: 80px;
  border-bottom: 1px solid var(--web-line);
}

.web-console-grid .home-status-cell:nth-child(2n) {
  border-right: none;
}

.web-console-grid .home-status-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

.web-product-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.web-system-card {
  min-height: 188px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: none;
  border-right: 1px solid var(--web-line);
  background: transparent;
  color: var(--web-text);
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.web-system-card:last-child {
  border-right: none;
}

.web-system-card.primary {
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.085), transparent),
    rgba(255, 255, 255, 0.016);
}

.web-card-index,
.web-workflow-list span {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--web-soft);
  color: rgba(249, 247, 240, 0.74);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 760;
}

.web-system-card.primary .web-card-index {
  background: var(--web-accent);
  color: #15100d;
}

.web-system-card strong,
.web-workflow-list strong {
  color: var(--web-text);
  font-size: 1.08rem;
}

.web-system-card small,
.web-workflow-list small {
  color: var(--web-muted);
  line-height: 1.45;
}

.web-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 0;
  overflow: hidden;
}

.web-signal-intelligence,
.web-connector-panel {
  padding: clamp(24px, 3vw, 40px);
}

.web-signal-intelligence {
  border-right: 1px solid var(--web-line);
}

.web-signal-intelligence h2,
.web-connector-panel h2,
.web-lane-header h2 {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--web-text);
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.web-numeric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.web-numeric-row div {
  min-height: 108px;
  padding: 14px;
  display: grid;
  align-content: end;
  gap: 6px;
  border: 1px solid var(--web-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.018);
}

.web-numeric-row strong {
  color: var(--web-text);
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.web-numeric-row span {
  color: var(--web-muted);
  font-size: 0.82rem;
}

.web-trace-panel {
  height: 156px;
  margin-top: 12px;
  padding: 20px;
  display: flex;
  align-items: end;
  gap: 8px;
  border: 1px solid var(--web-line);
  border-radius: 6px;
  background:
    linear-gradient(rgba(249, 247, 240, 0.025) 1px, transparent 1px),
    #121312;
  background-size: 36px 36px;
}

.web-trace-panel i {
  flex: 1;
  min-height: 24px;
  border-radius: 2px;
  background: rgba(249, 247, 240, 0.2);
}

.web-trace-panel i:nth-child(2),
.web-trace-panel i:nth-child(5),
.web-trace-panel i:nth-child(8) {
  min-height: 90px;
  background: rgba(255, 106, 26, 0.55);
}

.web-trace-panel i:nth-child(4) {
  min-height: 116px;
}

.web-trace-panel i:nth-child(7) {
  min-height: 132px;
}

.web-workflow-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.web-workflow-list button {
  min-height: 88px;
  display: grid;
  grid-template-columns: 38px minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--web-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.016);
  color: var(--web-text);
  text-align: left;
  cursor: pointer;
}

.web-ecosystem-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(300px, 0.72fr) minmax(320px, 0.82fr);
  gap: 12px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #151615;
}

.web-feature-app {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--web-line);
  border-radius: 6px;
  background: #101110;
  color: var(--web-text);
  text-align: left;
  cursor: pointer;
}

.web-feature-app img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(0.24) saturate(0.76) contrast(1.05);
}

.web-feature-app::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 15, 14, 0.86), rgba(14, 15, 14, 0.22) 58%, rgba(14, 15, 14, 0.82)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.web-feature-app .home-feature-badge,
.web-feature-app .home-feature-copy {
  z-index: 1;
}

.web-feature-app .home-feature-badge {
  background: var(--web-accent);
  color: #15100d;
}

.web-ecosystem-lanes,
.web-study-lanes {
  min-height: 340px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--web-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.016);
}

.web-lane-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.web-lane-header h2 {
  font-size: 1.18rem;
}

.web-launch-stack,
.web-study-grid {
  display: grid;
  gap: 9px;
}

.home-dashboard .home-launch-row,
.home-dashboard .home-study-chip {
  border-radius: 5px;
  border-color: var(--web-line);
  background: rgba(255, 255, 255, 0.015);
}

.home-dashboard .home-row-icon {
  background: rgba(249, 247, 240, 0.075);
}

@media (max-width: 1280px) {
  .web-hero,
  .web-split-section,
  .web-ecosystem-section {
    grid-template-columns: 1fr;
  }

  .web-device-console {
    margin: 0 18px 18px;
  }

  .web-signal-intelligence {
    border-right: none;
    border-bottom: 1px solid var(--web-line);
  }

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

  .web-system-card:nth-child(2) {
    border-right: none;
  }

  .web-system-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--web-line);
  }
}

@media (max-width: 760px) {
  .web-hero h1 {
    font-size: 3.15rem;
  }

  .web-product-system,
  .web-console-grid,
  .web-numeric-row {
    grid-template-columns: 1fr;
  }

  .web-system-card {
    border-right: none;
    border-bottom: 1px solid var(--web-line);
  }

  .web-system-card:last-child {
    border-bottom: none;
  }

  .web-console-grid .home-status-cell {
    border-right: none;
  }

  .web-workflow-list button,
  .home-dashboard .home-launch-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .web-workflow-list small,
  .home-dashboard .home-launch-row small {
    grid-column: 2;
  }
}

/* Consumer/developer website redesign */
.app-shell {
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 106, 26, 0.14), transparent 30%),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #111210 0%, #080908 100%);
}

.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px clamp(24px, 3.5vw, 56px) 15px;
  backdrop-filter: none;
  --header-progress: 0%;
  --header-card-x: clamp(8px, 1.3vw, 18px);
  --header-card-y: 7px;
  --header-card-radius: 18px;
  isolation: isolate;
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: var(--header-card-y) var(--header-card-x);
  z-index: -1;
  border: 1px solid transparent;
  border-radius: var(--header-card-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    rgba(15, 15, 14, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 18px 44px rgba(0, 0, 0, 0.06);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    inset 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto calc(var(--header-card-x) + 16px) var(--header-card-y);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 247, 240, 0.12), transparent);
  opacity: 0;
}

.site-header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 14px;
  --header-card-x: clamp(8px, 1vw, 14px);
  --header-card-y: 5px;
}

.site-header.is-scrolled::before {
  border-color: rgba(255, 106, 26, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(12, 13, 12, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(255, 106, 26, 0.08),
    0 18px 42px rgba(255, 106, 26, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.18);
}

.site-header-progress {
  position: absolute;
  inset: var(--header-card-y) var(--header-card-x);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--header-card-radius);
  padding: 1px;
  background:
    conic-gradient(from 180deg at 50% 50%, #ff6a1a 0 var(--header-progress), transparent var(--header-progress) 100%);
  filter: drop-shadow(0 0 9px rgba(255, 106, 26, 0.32));
  opacity: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition:
    inset 220ms ease,
    opacity 180ms ease;
}

.site-header.is-scrolled .site-header-progress {
  opacity: 0.92;
}

.site-header.no-scroll-progress .site-header-progress {
  opacity: 0;
}

.site-brand-button {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.site-brand-mark {
  width: 148px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    width 220ms ease,
    height 220ms ease,
    filter 220ms ease;
}

.site-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.site-header.is-scrolled .site-brand-mark {
  width: 132px;
  height: 32px;
  filter: saturate(0.9);
}

.site-header .top-nav {
  justify-self: end;
  width: auto;
  max-width: min(100%, 720px);
  min-width: 0;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(249, 247, 240, 0.08);
  border-radius: 7px;
  background: rgba(8, 9, 8, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 38px rgba(0, 0, 0, 0.14);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled .top-nav {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 26, 0.22);
  background: rgba(8, 9, 8, 0.62);
}

.site-header .top-nav-tab {
  position: relative;
  min-height: 32px;
  padding: 0 13px;
  border: none;
  border-radius: 5px;
  color: rgba(249, 247, 240, 0.64);
  font-family: var(--font-interface);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
  transition:
    background-color 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.site-header .top-nav-tab::after {
  display: none;
}

.site-header .top-nav-tab:hover {
  color: rgba(249, 247, 240, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.site-header .top-nav .top-nav-tab.active,
.site-header .top-nav .top-nav-tab[aria-current="page"] {
  background: var(--app-store-accent, #ff6a1a);
  border-color: transparent;
  color: #15100d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 20px rgba(255, 106, 26, 0.16);
}

.site-header-actions {
  gap: 8px;
}

.site-header .account-button {
  width: 34px;
  height: 34px;
  border-color: transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .account-button:hover {
  border-color: transparent;
  background: transparent;
  color: #fff;
}

.site-header-link,
.site-header-cta {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-industrial);
  font-weight: 680;
  letter-spacing: 0;
}

.site-header-link {
  border: 1px solid rgba(249, 247, 240, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(249, 247, 240, 0.78);
}

.site-header-cta {
  border: 1px solid rgba(255, 106, 26, 0.44);
  background: #ff6a1a;
  color: #15100d;
  box-shadow: 0 16px 34px rgba(255, 106, 26, 0.15);
}

.home-dashboard {
  --site-black: #090a09;
  --site-graphite: #171816;
  --site-panel: rgba(27, 28, 26, 0.84);
  --site-line: rgba(249, 247, 240, 0.1);
  --site-line-strong: rgba(249, 247, 240, 0.19);
  --site-text: rgba(250, 248, 242, 0.96);
  --site-muted: rgba(250, 248, 242, 0.6);
  --site-faint: rgba(250, 248, 242, 0.075);
  --site-orange: #ff6a1a;
  --site-orange-soft: rgba(255, 106, 26, 0.14);
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 26px) 42px;
  gap: 14px;
  font-family: var(--font-interface);
}

.site-hero,
.site-onboarding-section,
.site-thesis-section,
.site-usecase-section,
.site-audience-section,
.site-connector-story,
.site-product-grid,
.site-showcase-section,
.site-developer-band,
.site-study-section,
.site-final-cta {
  position: relative;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012)),
    var(--site-graphite);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.site-hero {
  min-height: min(72vh, 680px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(28px, 5vw, 96px);
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(8px, 2.4vh, 30px) clamp(18px, 5vw, 88px) clamp(42px, 7vh, 88px);
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.site-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 17px;
  text-align: left;
  transform: translateY(-12px);
}

.site-hero-copy.hero-brutalist-copy {
  opacity: 1;
  transform: translateY(124px);
}

.home-dashboard .home-kicker {
  color: rgba(250, 248, 242, 0.56);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.site-hero h1 {
  position: relative;
  width: min(820px, 100%);
  max-width: 100%;
  margin: 0;
  padding: 0 0 0.16em;
  color: var(--site-text);
  overflow: visible;
  font-family: var(--font-interface);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
  white-space: normal;
  clip-path: inset(0 100% 0 0);
  animation: heroTitleType 1800ms steps(30, end) 1100ms forwards;
}

.site-hero h1::after {
  content: "";
  position: absolute;
  top: 0.08em;
  bottom: 0.2em;
  left: 0;
  width: 1px;
  background: rgba(250, 248, 242, 0.72);
  animation:
    heroCaretTrack 1800ms steps(30, end) 1100ms forwards,
    heroCaretRest 1ms linear 3100ms forwards;
}

.site-hero-actions {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translate(-18px, 10px);
  animation: heroActionsIn 520ms ease 3200ms forwards;
}

.site-hero-button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-interface);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background-color 170ms ease;
}

.site-hero-button:hover {
  transform: translateY(-1px);
}

.site-hero-button.primary {
  background: var(--app-store-accent, #ff6a1a);
  color: #15100d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 12px 28px rgba(255, 106, 26, 0.18);
}

.site-hero-button.secondary {
  background: linear-gradient(135deg, rgba(249, 247, 240, 0.96), rgba(214, 207, 194, 0.92));
  color: #171411;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 26px rgba(0, 0, 0, 0.16);
}

.site-hero-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: start;
  width: min(42vw, 520px);
  min-width: 300px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translateY(-48px);
}

@keyframes heroActionsIn {
  to {
    opacity: 1;
    transform: translateX(-18px);
  }
}

@keyframes heroTitleType {
  from {
    clip-path: inset(-0.12em 100% -0.28em 0);
  }

  to {
    clip-path: inset(-0.12em 0 -0.28em 0);
  }
}

@keyframes heroCaretTrack {
  from {
    left: 0;
  }

  to {
    left: 100%;
  }
}

@keyframes heroCaretRest {
  to {
    opacity: 0;
  }
}

.home-dashboard .arm-button,
.home-dashboard .ghost-button {
  min-height: 42px;
  border-radius: 999px;
  font-family: var(--font-industrial);
  font-weight: 680;
  letter-spacing: 0;
}

.home-dashboard .arm-button {
  background: linear-gradient(180deg, #fff7ec, #ded3c4);
  color: #15120f;
}

.home-dashboard .ghost-button {
  border-color: rgba(250, 248, 242, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.site-product-visual {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  align-items: center;
}

.site-product-shell {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--site-line-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    rgba(16, 17, 16, 0.72);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.site-product-topbar {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--site-line);
}

.site-product-topbar span,
.site-device-readouts span,
.site-app-tile span,
.site-code-card span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.site-product-topbar strong {
  color: var(--site-text);
}

.site-product-topbar strong::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--site-orange);
  box-shadow: 0 0 0 6px var(--site-orange-soft);
}

.site-device-object {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 106, 26, 0.09), transparent 38%),
    linear-gradient(128deg, rgba(250, 248, 242, 0.06), transparent 18% 78%, rgba(255, 255, 255, 0.045)),
    linear-gradient(rgba(250, 248, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px, 46px 46px;
}

.site-device-object::before,
.site-device-object::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-device-object::before {
  inset: 26px;
  z-index: 2;
  border: 1px solid rgba(250, 248, 242, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(250, 248, 242, 0.12), transparent 12% 88%, rgba(250, 248, 242, 0.12)),
    linear-gradient(180deg, rgba(250, 248, 242, 0.08), transparent 16% 84%, rgba(250, 248, 242, 0.08));
  mix-blend-mode: screen;
  opacity: 0.42;
}

.site-device-object::after {
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 12%),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.48) 100%);
}

.neural-render-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.neural-render-overlay,
.neural-render-metric {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(250, 248, 242, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(13, 14, 13, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.neural-render-overlay {
  top: 18px;
  left: 18px;
  min-width: 148px;
  padding: 12px 13px;
  display: grid;
  gap: 5px;
  border-radius: 10px;
}

.neural-render-overlay span,
.neural-render-metric span {
  color: rgba(250, 248, 242, 0.48);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.neural-render-overlay strong,
.neural-render-metric strong {
  color: rgba(250, 248, 242, 0.94);
  font-size: 0.95rem;
}

.neural-render-overlay strong::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--site-orange);
  box-shadow: 0 0 0 5px var(--site-orange-soft);
}

.neural-render-metric {
  width: 116px;
  min-height: 76px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  border-radius: 9px;
}

.neural-render-metric.metric-a {
  right: 24px;
  top: 68px;
}

.neural-render-metric.metric-b {
  left: 34px;
  bottom: 46px;
}

.neural-port {
  position: absolute;
  z-index: 6;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 26, 0.55);
  border-radius: 999px;
  background: rgba(13, 14, 13, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 106, 26, 0.08), 0 0 28px rgba(255, 106, 26, 0.14);
}

.neural-port span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ff6a1a;
}

.neural-port.port-a {
  right: 15%;
  top: 23%;
}

.neural-port.port-b {
  right: 9%;
  top: 50%;
}

.neural-port.port-c {
  right: 21%;
  bottom: 22%;
}

.site-device-ring {
  position: absolute;
  width: min(76%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(250, 248, 242, 0.13);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.12), transparent 62%);
}

.site-device-core {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 248, 242, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, #f8f1e5, #b7aea0);
  color: #15120f;
  font-size: 2.6rem;
  font-weight: 900;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
}

.site-signal-rays {
  position: absolute;
  inset: auto 40px 46px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  align-items: end;
}

.site-signal-rays i {
  height: 48px;
  border-radius: 2px;
  background: rgba(250, 248, 242, 0.18);
}

.site-signal-rays i:nth-child(2),
.site-signal-rays i:nth-child(4) {
  height: 112px;
  background: rgba(255, 106, 26, 0.62);
}

.site-signal-rays i:nth-child(3) {
  height: 156px;
}

.site-device-readouts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
}

.site-device-readouts div {
  min-height: 86px;
  padding: 15px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--site-line);
}

.site-device-readouts div:last-child {
  border-right: none;
}

.site-device-readouts strong {
  color: var(--site-text);
  font-size: 0.95rem;
}

.site-audience-section,
.site-onboarding-section,
.site-thesis-section,
.site-usecase-section,
.site-connector-story,
.site-desktop-section,
.site-showcase-section,
.site-developer-band,
.site-study-section,
.site-final-cta {
  padding: clamp(22px, 3vw, 42px);
}

.site-audience-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr) minmax(260px, 0.55fr);
  gap: 12px;
}

.site-onboarding-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.site-onboarding-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.site-onboarding-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--site-muted);
  line-height: 1.55;
}

.site-onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.site-onboarding-card {
  min-height: 190px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--site-text);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.site-onboarding-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 26, 0.38);
  background: rgba(255, 106, 26, 0.052);
}

.site-onboarding-card.featured {
  border-color: rgba(255, 106, 26, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.1), transparent 78%),
    rgba(255, 255, 255, 0.018);
}

.site-onboarding-card strong {
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: 1.08rem;
  font-weight: 720;
  letter-spacing: 0;
}

.site-onboarding-card small {
  color: var(--site-muted);
  line-height: 1.45;
}

.site-audience-copy h2,
.site-onboarding-copy h2,
.site-desktop-copy h2,
.site-thesis-copy h2,
.site-usecase-header h2,
.site-story-panel h2,
.site-showcase-copy h2,
.site-developer-band h2,
.site-study-copy h2,
.site-final-cta h2 {
  max-width: 720px;
  margin: 9px 0 0;
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  font-weight: 740;
  line-height: 0.98;
  letter-spacing: 0;
}

.site-audience-card,
.site-product-card,
.site-usecase-card {
  min-height: 250px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--site-text);
  text-align: left;
  cursor: pointer;
}

.site-audience-card.developer,
.site-product-card.primary,
.site-usecase-card.primary,
.site-thesis-card.accent {
  background:
    linear-gradient(180deg, var(--site-orange-soft), transparent 78%),
    rgba(255, 255, 255, 0.018);
}

.site-audience-card strong,
.site-product-card strong,
.site-usecase-card strong,
.site-thesis-card strong,
.site-app-tile strong {
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-audience-card small,
.site-product-card small,
.site-usecase-card small,
.site-thesis-card small,
.site-app-tile small,
.site-story-panel p,
.site-thesis-copy p,
.site-showcase-copy p {
  color: var(--site-muted);
  line-height: 1.52;
}

.site-thesis-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
}

.site-thesis-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(42%, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 26, 0.72));
}

.site-thesis-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.site-thesis-copy p {
  max-width: 640px;
  margin: 0;
}

.site-thesis-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.site-thesis-card {
  min-height: 260px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.014);
}

.site-usecase-section {
  display: grid;
  gap: 18px;
}

.site-usecase-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}

.site-usecase-header h2 {
  max-width: 900px;
}

.site-usecase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.site-usecase-card {
  min-height: 236px;
  border-radius: 10px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.site-usecase-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(64, 178, 160, 0.06), transparent 82%),
    rgba(255, 255, 255, 0.018);
}

.site-usecase-card:hover {
  transform: translateY(-1px);
}

.site-connector-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.site-story-actions,
.site-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-connector-diagram {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
  gap: 0;
  padding: 24px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background:
    linear-gradient(rgba(250, 248, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.02) 1px, transparent 1px),
    rgba(255, 255, 255, 0.015);
  background-size: 44px 44px;
}

.site-diagram-node {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid var(--site-line-strong);
  border-radius: 12px;
  color: var(--site-text);
  font-weight: 780;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.site-diagram-node.connector {
  border-color: rgba(255, 106, 26, 0.36);
  background: rgba(255, 106, 26, 0.08);
}

.site-diagram-line {
  height: 1px;
  background: rgba(250, 248, 242, 0.24);
}

.site-diagram-line.accent {
  background: var(--site-orange);
}

.site-desktop-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.1), transparent 62%),
    var(--site-graphite);
}

.site-desktop-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.site-desktop-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--site-muted);
  line-height: 1.56;
}

.site-desktop-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-desktop-checklist div {
  min-height: 178px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.site-desktop-checklist span {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  color: #15100d;
  background: var(--site-orange);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.site-desktop-checklist strong {
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: 1.24rem;
}

.site-desktop-checklist small {
  color: var(--site-muted);
  line-height: 1.46;
}

.site-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.site-product-card {
  min-height: 220px;
}

.web-card-index {
  background: rgba(250, 248, 242, 0.08);
}

.site-product-card.primary .web-card-index,
.site-audience-card.developer .web-card-index,
.site-usecase-card.primary .web-card-index,
.site-thesis-card.accent .web-card-index {
  background: var(--site-orange);
  color: #15100d;
}

.site-showcase-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: 22px;
}

.site-app-stack {
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) repeat(2, minmax(190px, 0.7fr));
  gap: 12px;
}

.site-app-tile {
  position: relative;
  min-height: 320px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 7px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--site-text);
  text-align: left;
  cursor: pointer;
}

.site-app-tile.hero-tile {
  min-height: 420px;
}

.site-app-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(0.22) saturate(0.74);
}

.site-app-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 14, 13, 0.04), rgba(13, 14, 13, 0.88));
}

.site-app-tile > span,
.site-app-tile > strong,
.site-app-tile > small {
  position: relative;
  z-index: 1;
}

.site-developer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr) auto;
  gap: 18px;
  align-items: center;
}

.site-code-card {
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 106, 26, 0.28);
  border-radius: 12px;
  background: rgba(255, 106, 26, 0.055);
}

.site-code-card code {
  color: rgba(250, 248, 242, 0.9);
  font-family: var(--font-mono);
  line-height: 1.45;
}

.site-study-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.site-study-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-dashboard .home-study-chip {
  min-height: 148px;
  border-color: var(--site-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.site-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.1), transparent 54%),
    var(--site-graphite);
}

.site-final-cta h2 {
  max-width: 760px;
}

.site-audience-card:hover,
.site-product-card:hover,
.site-usecase-card:hover,
.site-app-tile:hover,
.home-dashboard .home-study-chip:hover {
  border-color: rgba(255, 106, 26, 0.42);
  background-color: rgba(255, 106, 26, 0.052);
}

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .site-header .top-nav {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    grid-column: 1 / -1;
    max-width: 100%;
    overflow-x: auto;
  }

  .site-header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-hero h1 {
    font-size: 2.7rem;
  }

  .site-audience-copy h2,
  .site-thesis-copy h2,
  .site-usecase-header h2,
  .site-story-panel h2,
  .site-showcase-copy h2,
  .site-developer-band h2,
  .site-study-copy h2,
  .site-final-cta h2 {
    font-size: 3.35rem;
  }

  .site-audience-section,
  .site-onboarding-section,
  .site-thesis-section,
  .site-connector-story,
  .site-desktop-section,
  .site-showcase-section,
  .site-developer-band,
  .site-study-section {
    grid-template-columns: 1fr;
  }

  .site-hero {
    min-height: min(64vh, 620px);
    grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.72fr);
    gap: clamp(18px, 4vw, 48px);
    padding-top: 26px;
  }

  .site-hero-copy {
    justify-self: start;
  }

  .site-hero-visual {
    justify-self: end;
    width: min(36vw, 420px);
    min-width: 220px;
  }

  .site-product-visual {
    padding-top: 0;
  }

  .site-product-grid,
  .site-onboarding-grid,
  .site-desktop-checklist,
  .site-thesis-board,
  .site-study-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-app-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header-link {
    display: none;
  }

  .site-brand-mark {
    width: 118px;
    height: 29px;
  }

  .site-header .top-nav {
    gap: 8px;
  }

  .site-header .top-nav-tab {
    font-size: 0.72rem;
    letter-spacing: 0.004em;
  }

  .site-header.is-scrolled .site-brand-mark {
    width: 108px;
    height: 26px;
  }

  .site-hero h1 {
    font-size: 2.35rem;
    line-height: 0.98;
    white-space: normal;
    text-wrap: balance;
  }

  .site-hero-actions {
    margin-top: 11px;
    gap: 7px;
  }

  .site-hero-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .site-hero {
    min-height: 420px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px 42px;
  }

  .site-hero-visual {
    align-self: center;
    justify-self: end;
    width: min(40vw, 170px);
    min-width: 132px;
  }

  .site-audience-copy h2,
  .site-onboarding-copy h2,
  .site-desktop-copy h2,
  .site-thesis-copy h2,
  .site-usecase-header h2,
  .site-story-panel h2,
  .site-showcase-copy h2,
  .site-developer-band h2,
  .site-study-copy h2,
  .site-final-cta h2 {
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .site-product-shell {
    min-height: 520px;
  }

  .site-device-object {
    min-height: 360px;
  }

  .site-device-object::before {
    inset: 16px;
  }

  .neural-render-overlay {
    top: 12px;
    left: 12px;
  }

  .neural-render-metric {
    width: 98px;
    min-height: 66px;
    padding: 10px;
  }

  .neural-render-metric.metric-a {
    right: 12px;
    top: 62px;
  }

  .neural-render-metric.metric-b {
    left: 12px;
    bottom: 18px;
  }

  .site-device-readouts,
  .site-product-grid,
  .site-onboarding-grid,
  .site-desktop-checklist,
  .site-thesis-board,
  .site-usecase-grid,
  .developer-replay-metrics,
  .site-study-list,
  .site-connector-diagram {
    grid-template-columns: 1fr;
  }

  .site-device-readouts div {
    border-right: none;
    border-bottom: 1px solid var(--site-line);
  }

  .site-device-readouts div:last-child {
    border-bottom: none;
  }

  .site-diagram-line {
    width: 1px;
    height: 44px;
    justify-self: center;
  }

  .site-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-usecase-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Capability labels for honest routing state */
.support-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(242, 242, 239, 0.72);
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-ready {
  border-color: rgba(22, 212, 192, 0.26);
  background: rgba(22, 212, 192, 0.12);
  color: rgba(190, 255, 249, 0.98);
}

.support-backend {
  border-color: rgba(120, 170, 255, 0.28);
  background: rgba(120, 170, 255, 0.12);
  color: rgba(205, 225, 255, 0.96);
}

.support-browser {
  border-color: rgba(182, 234, 215, 0.26);
  background: rgba(182, 234, 215, 0.1);
  color: rgba(219, 255, 241, 0.95);
}

.support-prototype,
.support-custom {
  border-color: rgba(255, 214, 102, 0.26);
  background: rgba(255, 214, 102, 0.11);
  color: rgba(255, 232, 166, 0.96);
}

.support-planned {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(242, 242, 239, 0.58);
}

.support-study {
  border-color: rgba(205, 168, 255, 0.24);
  background: rgba(205, 168, 255, 0.1);
  color: rgba(231, 215, 255, 0.95);
}

.library-item-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.library-support-badge {
  margin-left: 0;
}

.library-item-support {
  color: rgba(242, 242, 239, 0.46);
  font-size: 0.74rem;
  line-height: 1.35;
}

.node-support-badge {
  justify-self: center;
}

.command-row-header {
  flex-wrap: wrap;
}

.command-support-badge {
  margin-left: auto;
}

.command-port {
  flex: 0 0 auto;
}

.support-card-ready {
  box-shadow: inset 0 0 0 1px rgba(22, 212, 192, 0.06);
}

.support-card-prototype,
.support-card-planned {
  border-color: rgba(255, 214, 102, 0.08);
}

.study-strip-meta .support-badge,
.study-active-meta .support-badge {
  min-height: 30px;
  padding: 0 10px;
}

.study-strip-status {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.support-card-ready .study-strip-status {
  border-color: rgba(22, 212, 192, 0.24);
  background: rgba(22, 212, 192, 0.12);
  color: rgba(190, 255, 249, 0.95);
}

.support-card-browser .study-strip-status,
.support-card-backend .study-strip-status {
  border-color: rgba(120, 170, 255, 0.24);
  background: rgba(120, 170, 255, 0.11);
  color: rgba(205, 225, 255, 0.94);
}

.support-card-prototype .study-strip-status {
  border-color: rgba(255, 214, 102, 0.24);
  background: rgba(255, 214, 102, 0.1);
  color: rgba(255, 232, 166, 0.94);
}

.study-step-row.good .study-step-index {
  border-color: rgba(22, 212, 192, 0.28);
  background: rgba(22, 212, 192, 0.12);
  color: rgba(190, 255, 249, 0.96);
}

.study-step-row.watch .study-step-index {
  border-color: rgba(255, 214, 102, 0.26);
  background: rgba(255, 214, 102, 0.1);
  color: rgba(255, 232, 166, 0.95);
}

/* Desktop shell overrides must win over the website header breakpoints. */
body.desktop-runtime .site-header {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

body.desktop-runtime .site-header .top-nav {
  grid-column: auto;
  grid-row: auto;
  width: auto;
  max-width: 100%;
  justify-self: center;
}

body.desktop-runtime .site-header-actions {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

body.desktop-runtime .site-header .top-nav-tab {
  min-height: 34px;
  padding-inline: clamp(8px, 1.1vw, 13px);
  border-radius: 999px;
}

@media (max-width: 1040px) {
  body.desktop-runtime .site-header {
    padding-left: clamp(18px, 2.5vw, 36px);
  }

  body.desktop-runtime .site-header .top-nav {
    gap: 2px;
    padding: 3px;
  }

  body.desktop-runtime .site-header .top-nav-tab {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 760px) {
  body.desktop-runtime .site-header,
  body.desktop-runtime:not(.desktop-native-chrome) .site-header {
    padding-left: 76px;
    padding-right: 108px;
  }

  body.desktop-runtime .site-header .top-nav {
    width: min(100%, calc(100vw - 210px));
    justify-self: start;
  }

  body.desktop-runtime .site-header .top-nav-tab {
    flex: 0 0 auto;
    min-height: 28px;
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  body.desktop-runtime .site-header-actions {
    right: 12px;
  }
}

/* Kyma Neuro public landing page */
body:not(.desktop-runtime) .app-nav-tab {
  display: none;
}

body:not(.desktop-runtime) .desktop-header-connect,
body:not(.desktop-runtime) .desktop-profile-menu,
body:not(.desktop-runtime) .desktop-window-controls,
body:not(.desktop-runtime) .desktop-theme-toggle {
  display: none;
}

body.desktop-runtime .marketing-nav-tab {
  display: none;
}

.site-hero.kyma-vision-hero {
  min-height: min(82vh, 820px);
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  align-items: center;
}

.site-hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.kyma-hero-visual {
  position: relative;
  min-height: 520px;
}

.kyma-hero-visual .neural-render-canvas {
  opacity: 0.74;
}

.kyma-hero-device {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: min(78%, 440px);
  min-height: 148px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: end;
  border: 1px solid rgba(250, 248, 242, 0.12);
  border-radius: 14px;
  background: rgba(14, 15, 14, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.kyma-device-band {
  grid-column: 1 / -1;
  height: 72px;
  border: 10px solid rgba(250, 248, 242, 0.88);
  border-bottom-color: transparent;
  border-radius: 120px 120px 28px 28px;
  background:
    radial-gradient(circle at 28% 56%, rgba(255, 106, 26, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 42%, rgba(22, 212, 192, 0.85) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 56%, rgba(182, 234, 215, 0.92) 0 5px, transparent 6px);
}

.kyma-hero-device span,
.kyma-copy-list span,
.kyma-application-cloud span,
.kyma-orientation-list span {
  border: 1px solid rgba(250, 248, 242, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(250, 248, 242, 0.76);
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.kyma-hero-device span {
  padding: 7px 8px;
}

.kyma-mission-band,
.kyma-stack-section,
.kyma-vision-section,
.kyma-product-section,
.kyma-platform-section,
.kyma-scale-section,
.kyma-applications-section,
.kyma-careers-section,
.kyma-blog-section {
  padding: clamp(28px, 4.5vw, 64px);
  border-top: 1px solid var(--site-line);
}

.kyma-mission-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.1), transparent 64%),
    rgba(255, 255, 255, 0.012);
}

.kyma-stack-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.64fr) minmax(420px, 1.12fr) minmax(220px, 0.64fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 106, 26, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

.kyma-stack-labels {
  display: grid;
  gap: 12px;
}

.kyma-stack-labels article {
  min-height: 152px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(250, 248, 242, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.014);
}

.kyma-stack-labels span {
  width: fit-content;
  color: rgba(255, 106, 26, 0.86);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.kyma-stack-labels strong {
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: 1.18rem;
  line-height: 1.05;
}

.kyma-stack-labels small {
  color: var(--site-muted);
  line-height: 1.5;
}

.kyma-stack-visual {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.kyma-stack-visual h2 {
  max-width: 720px;
  margin: 0;
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.05rem, 3.5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.kyma-stack-copy {
  max-width: 640px;
  margin: 0;
  color: rgba(252, 250, 244, 0.68);
  font-size: 0.98rem;
  line-height: 1.58;
}

.kyma-stack-svg {
  width: min(100%, 760px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.32));
}

.kyma-pipeline-svg {
  margin-top: 6px;
}

.pipeline-panel {
  fill: url("#pipelinePanelFill");
  stroke: rgba(255, 106, 26, 0.28);
  stroke-width: 1.2;
}

.pipeline-grid-line {
  fill: none;
  stroke: rgba(250, 248, 242, 0.055);
  stroke-width: 1;
}

.pipeline-grid-line.vertical {
  stroke: rgba(255, 106, 26, 0.075);
}

.pipeline-main-line {
  fill: none;
  stroke: rgba(250, 248, 242, 0.2);
  stroke-width: 2;
}

.pipeline-flow-line {
  fill: none;
  stroke: #ff5c12;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 26 190;
  filter: url("#pipelineGlow");
  animation: pipelineFlow 3.2s linear infinite;
}

.pipeline-node rect,
.pipeline-output rect {
  fill: url("#pipelineNodeFill");
  stroke: rgba(255, 106, 26, 0.38);
  stroke-width: 1.1;
}

.pipeline-output rect {
  stroke: rgba(255, 106, 26, 0.68);
  filter: drop-shadow(0 0 22px rgba(255, 106, 26, 0.18));
}

.pipeline-node-title {
  fill: rgba(252, 250, 244, 0.9);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-anchor: middle;
}

.pipeline-node-meta {
  fill: rgba(252, 250, 244, 0.58);
  font-family: var(--font-interface);
  font-size: 13px;
  font-weight: 600;
  text-anchor: middle;
}

.pipeline-code {
  fill: rgba(252, 250, 244, 0.66);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.pipeline-code.value {
  fill: #ff6a1a;
}

.pipeline-wave {
  fill: none;
  stroke: rgba(255, 106, 26, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(255, 106, 26, 0.28));
  animation: pipelineWave 3.4s ease-in-out infinite;
}

.pipeline-wave.secondary {
  opacity: 0.64;
  animation-delay: -1.4s;
}

.pipeline-packet {
  fill: #ff5c12;
  filter: url("#pipelineGlow");
  animation: pipelinePacket 3.2s ease-in-out infinite;
}

.packet-two {
  animation-delay: -2.4s;
}

.packet-three {
  animation-delay: -1.6s;
}

.packet-four {
  animation-delay: -0.8s;
}

@keyframes pipelineFlow {
  to {
    stroke-dashoffset: -216;
  }
}

@keyframes pipelineWave {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pipelinePacket {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.stack-rail {
  fill: none;
  stroke: rgba(255, 106, 26, 0.34);
  stroke-width: 1.4;
  stroke-dasharray: 7 12;
  animation: stackRailFlow 4.8s linear infinite;
}

.rail-right {
  animation-delay: -1.6s;
}

.stack-layer path {
  fill: url("#stackLayerFill");
  stroke: rgba(250, 248, 242, 0.32);
  stroke-width: 1.2;
}

.stack-layer text {
  fill: rgba(252, 250, 244, 0.78);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-anchor: middle;
}

.stack-layer {
  transform-origin: 310px 210px;
  animation: stackLayerLift 5.2s ease-in-out infinite;
}

.layer-two {
  animation-delay: -1.3s;
}

.layer-three {
  animation-delay: -2.6s;
}

.layer-four {
  animation-delay: -3.9s;
}

.layer-two path,
.layer-three path {
  stroke: rgba(255, 106, 26, 0.42);
}

.layer-four path {
  fill: url("#stackAccentFill");
  stroke: rgba(255, 106, 26, 0.62);
}

.stack-pulse {
  fill: #ff6a1a;
  filter: drop-shadow(0 0 10px rgba(255, 106, 26, 0.7));
  transform-origin: center;
  animation: stackPulse 2.4s ease-in-out infinite;
}

.pulse-two {
  animation-delay: 0.42s;
}

.pulse-three {
  animation-delay: 0.84s;
}

.pulse-four {
  animation-delay: 1.26s;
}

@keyframes stackRailFlow {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes stackLayerLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes stackPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.82);
  }
  45% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.kyma-mission-band h2,
.kyma-section-copy h2,
.kyma-final-cta h2 {
  margin: 8px 0 0;
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: clamp(2.4rem, 4.4vw, 5.25rem);
  font-weight: 740;
  line-height: 0.98;
  letter-spacing: 0;
}

.kyma-mission-band p,
.kyma-section-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--site-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.kyma-section-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.kyma-vision-section,
.kyma-platform-section,
.kyma-applications-section,
.kyma-careers-section,
.kyma-blog-section {
  display: grid;
  gap: 24px;
}

.kyma-principle-grid,
.kyma-platform-grid,
.kyma-careers-grid,
.kyma-blog-grid,
.kyma-scale-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kyma-principle-grid article,
.kyma-platform-grid article,
.kyma-careers-grid article,
.kyma-blog-grid article,
.kyma-scale-board article {
  min-height: 220px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.kyma-principle-grid article:nth-child(2),
.kyma-platform-grid article:nth-child(2),
.kyma-scale-board article.accent {
  border-color: rgba(22, 212, 192, 0.2);
  background:
    linear-gradient(180deg, rgba(22, 212, 192, 0.08), transparent 80%),
    rgba(255, 255, 255, 0.018);
}

.kyma-principle-grid strong,
.kyma-platform-grid strong,
.kyma-careers-grid strong,
.kyma-blog-grid strong,
.kyma-scale-board strong {
  color: var(--site-text);
  font-family: var(--font-industrial);
  font-size: 1.34rem;
  font-weight: 720;
  letter-spacing: 0;
}

.kyma-principle-grid small,
.kyma-platform-grid small,
.kyma-careers-grid small,
.kyma-blog-grid small,
.kyma-scale-board small {
  color: var(--site-muted);
  line-height: 1.52;
}

.kyma-product-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22, 212, 192, 0.06), transparent 56%),
    rgba(255, 255, 255, 0.01);
}

.kyma-product-visual {
  min-height: 420px;
  display: grid;
  gap: 16px;
  align-content: center;
}

.kyma-product-shell {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background:
    linear-gradient(rgba(250, 248, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 248, 242, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(255, 106, 26, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.016);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.kyma-product-band {
  width: min(72%, 410px);
  aspect-ratio: 2.45 / 1;
  border: 18px solid rgba(250, 248, 242, 0.92);
  border-bottom: 8px solid rgba(250, 248, 242, 0.5);
  border-radius: 999px 999px 62px 62px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.34));
}

.kyma-product-sensor {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--site-orange);
  box-shadow: 0 0 0 8px rgba(255, 106, 26, 0.14);
}

.kyma-product-sensor.sensor-a {
  left: 31%;
  top: 46%;
}

.kyma-product-sensor.sensor-b {
  left: 49%;
  top: 38%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(22, 212, 192, 0.12);
}

.kyma-product-sensor.sensor-c {
  right: 31%;
  top: 46%;
}

.kyma-product-readout {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--site-text);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.kyma-orientation-list,
.kyma-copy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kyma-orientation-list span,
.kyma-copy-list span {
  padding: 9px 11px;
  text-align: left;
}

.kyma-application-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kyma-application-cloud span {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.026);
}

.kyma-blog-grid article span {
  width: fit-content;
  color: var(--site-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.kyma-final-cta {
  align-items: center;
}

@media (max-width: 1260px) {
  .site-hero.kyma-vision-hero,
  .kyma-mission-band,
  .kyma-stack-section,
  .kyma-product-section {
    grid-template-columns: 1fr;
  }

  .kyma-stack-section {
    justify-items: stretch;
  }

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

  .kyma-principle-grid,
  .kyma-platform-grid,
  .kyma-careers-grid,
  .kyma-blog-grid,
  .kyma-scale-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-hero.kyma-vision-hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .site-hero.kyma-vision-hero .site-hero-copy.hero-brutalist-copy {
    transform: none;
  }

  .site-hero.kyma-vision-hero .site-hero-actions {
    align-self: flex-start;
    transform: none;
  }

  .kyma-hero-visual {
    width: 100%;
    min-width: 0;
    min-height: 300px;
    justify-self: stretch;
    transform: none;
  }

  .kyma-hero-visual .neural-render-canvas {
    width: min(82vw, 300px);
    height: min(82vw, 300px);
  }

  .kyma-hero-device {
    right: 50%;
    bottom: 12px;
    width: min(100%, 300px);
    min-height: 128px;
    transform: translateX(50%);
  }

  .kyma-mission-band h2,
  .kyma-stack-visual h2,
  .kyma-section-copy h2,
  .kyma-final-cta h2 {
    font-size: 2.25rem;
  }

  .kyma-stack-labels {
    grid-template-columns: 1fr;
  }

  .kyma-stack-labels article {
    min-height: 132px;
  }

  .kyma-stack-svg {
    width: min(100%, 440px);
  }
}

/* Altara-inspired industrial public hero */
body:not(.desktop-runtime) {
  --font-industrial: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-interface: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: #050605;
}

body:not(.desktop-runtime) .app-shell {
  background:
    radial-gradient(circle at 76% 58%, rgba(255, 106, 26, 0.12), transparent 24%),
    linear-gradient(180deg, #060706 0%, #030403 100%);
}

body:not(.desktop-runtime) .site-header {
  margin: 20px clamp(14px, 1.8vw, 28px) 0;
  padding: 12px 18px;
  min-height: 62px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: "Manrope", var(--font-interface);
}

body:not(.desktop-runtime) .site-header.is-scrolled {
  border-color: rgba(250, 248, 242, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.032)),
    rgba(13, 15, 13, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

body:not(.desktop-runtime) .site-header::before,
body:not(.desktop-runtime) .site-header::after,
body:not(.desktop-runtime) .site-header-progress {
  display: none;
}

body:not(.desktop-runtime) .site-brand-button {
  min-height: 38px;
}

body:not(.desktop-runtime) .site-brand-mark {
  width: 132px;
  height: 32px;
  flex-shrink: 0;
}

body:not(.desktop-runtime) .site-brand-mark img {
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body:not(.desktop-runtime) .site-header .top-nav {
  justify-self: end;
  width: auto;
  max-width: none;
  gap: 30px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.desktop-runtime) .site-header .top-nav-tab {
  min-height: 38px;
  padding: 0;
  border-radius: 0;
  color: rgba(250, 248, 242, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Manrope", var(--font-interface);
  background: transparent;
}

body:not(.desktop-runtime) .site-header .top-nav-tab:hover,
body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab.active,
body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab[aria-current="page"] {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab.active::before,
body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: #ff6a1a;
}

body:not(.desktop-runtime) .site-header .marketing-nav-tab::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: #ff6a1a;
  opacity: 0;
  transform: scaleX(0.24);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body:not(.desktop-runtime) .site-header .marketing-nav-tab:hover::after,
body:not(.desktop-runtime) .site-header .marketing-nav-tab:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

body:not(.desktop-runtime) .site-header-actions {
  gap: 8px;
}

body:not(.desktop-runtime) .desktop-header-connect,
body:not(.desktop-runtime) .desktop-profile-menu {
  display: none;
}

body.desktop-runtime .public-header-action {
  display: none;
}

body:not(.desktop-runtime) .public-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 520;
  font-family: "Manrope", var(--font-interface);
}

body:not(.desktop-runtime) .site-header-link.public-header-action {
  min-width: 112px;
  border-color: rgba(250, 248, 242, 0.86);
  background: transparent;
  color: #fff;
}

body:not(.desktop-runtime) .site-header-cta.public-header-action {
  position: relative;
  min-width: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 22px;
  border-color: rgba(255, 106, 26, 0.55);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 232, 220, 0.94));
  color: #090a09;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px rgba(255, 106, 26, 0.12);
}

body:not(.desktop-runtime) .home-dashboard {
  width: 100%;
  max-width: none;
  padding: 0;
  --site-black: #030403;
  --site-graphite: #070807;
  --site-line: rgba(250, 248, 242, 0.16);
  --site-line-strong: rgba(250, 248, 242, 0.28);
  --site-text: rgba(252, 250, 244, 0.98);
  --site-muted: rgba(252, 250, 244, 0.68);
}

body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
  min-height: calc(100vh - 70px);
  padding: clamp(38px, 5vh, 68px) clamp(34px, 7.5vw, 118px) clamp(58px, 8vh, 96px);
  grid-template-columns: minmax(440px, 0.95fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: start;
  border-bottom: 1px solid rgba(250, 248, 242, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 77% 56%, rgba(255, 106, 26, 0.18), transparent 24%),
    linear-gradient(180deg, #050605 0%, #030403 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .site-hero.kyma-vision-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: none;
  opacity: 0;
}

body:not(.desktop-runtime) .site-hero.kyma-vision-hero::after {
  content: "";
  position: absolute;
  right: clamp(38px, 5vw, 86px);
  top: 12vh;
  bottom: 10vh;
  width: clamp(72px, 8vw, 126px);
  border-left: 1px dashed rgba(255, 106, 26, 0.28);
  border-right: 1px dashed rgba(255, 106, 26, 0.42);
  pointer-events: none;
}

body:not(.desktop-runtime) .site-hero-copy.hero-brutalist-copy {
  transform: none;
  gap: 26px;
  padding-top: clamp(34px, 8vh, 86px);
}

body:not(.desktop-runtime) .home-dashboard .home-kicker {
  position: relative;
  padding-left: 32px;
  color: rgba(252, 250, 244, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
}

body:not(.desktop-runtime) .home-dashboard .home-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  border: 1px dashed rgba(255, 106, 26, 0.72);
  background: radial-gradient(circle at center, #ff6a1a 0 4px, transparent 5px);
}

body:not(.desktop-runtime) .site-hero h1 {
  max-width: min(1180px, 86vw);
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 2.85vw, 3.55rem);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  clip-path: none;
  animation: none;
}

body:not(.desktop-runtime) .site-hero h1::after {
  display: none;
}

body:not(.desktop-runtime) .hero-title-line {
  display: block;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 0.12em;
  border-right: 1px solid rgba(252, 250, 244, 0.72);
  animation:
    kymaHeroLineType 1150ms steps(var(--hero-type-steps), end) forwards,
    kymaHeroCaret 620ms steps(1, end) infinite;
}

body:not(.desktop-runtime) .hero-title-line:nth-child(1) {
  --hero-type-steps: 27;
  animation:
    kymaHeroLineType 1150ms steps(var(--hero-type-steps), end) 260ms forwards,
    kymaHeroCaret 620ms steps(1, end) 260ms infinite,
    kymaHeroCaretRest 1ms linear 1410ms forwards;
}

body:not(.desktop-runtime) .hero-title-line:nth-child(2) {
  --hero-type-steps: 16;
  animation:
    kymaHeroLineType 900ms steps(var(--hero-type-steps), end) 1420ms forwards,
    kymaHeroCaret 620ms steps(1, end) 1420ms infinite,
    kymaHeroCaretRest 1ms linear 2500ms forwards;
}

@keyframes kymaHeroLineType {
  to {
    width: calc(100% + 0.28em);
  }
}

@keyframes kymaHeroCaret {
  0%,
  45% {
    border-color: rgba(252, 250, 244, 0.78);
  }

  46%,
  100% {
    border-color: transparent;
  }
}

@keyframes kymaHeroCaretRest {
  to {
    border-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.desktop-runtime) .hero-title-line {
    width: auto;
    border-right: 0;
    animation: none;
  }
}

body:not(.desktop-runtime) .site-hero-lede {
  max-width: 820px;
  margin: 0;
  color: rgba(252, 250, 244, 0.8);
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  line-height: 1.58;
}

body:not(.desktop-runtime) .site-hero-actions {
  margin-top: 20px;
  align-self: center;
  justify-content: center;
  gap: 12px;
  opacity: 1;
  transform: none;
  animation: none;
}

body:not(.desktop-runtime) .site-hero-button {
  position: relative;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 520;
  letter-spacing: 0;
  overflow: hidden;
  isolation: isolate;
}

body:not(.desktop-runtime) .site-hero-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-color: rgba(255, 106, 26, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 234, 224, 0.94));
  color: #090a09;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 46px rgba(255, 106, 26, 0.16);
}

body:not(.desktop-runtime) .site-hero-button.primary::before {
  content: none;
}

body:not(.desktop-runtime) .site-hero-button.primary:hover {
  border-color: rgba(255, 106, 26, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 238, 225, 0.98));
  transform: translateY(-1px);
}

body:not(.desktop-runtime) .site-hero-button.primary span,
body:not(.desktop-runtime) .site-header-cta.public-header-action span {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #1a0d07;
  line-height: 1;
}

body:not(.desktop-runtime) .site-hero-button.primary span {
  border: 0;
  color: #1a0d07;
  font-size: 1rem;
  transition: transform 180ms ease;
}

body:not(.desktop-runtime) .site-hero-button.primary:hover span {
  transform: translateX(2px);
}

body:not(.desktop-runtime) .site-hero-button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 106, 26, 0.62);
  background: rgba(255, 106, 26, 0.035);
  color: rgba(255, 232, 218, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.08);
}

body:not(.desktop-runtime) .site-hero-button.secondary:hover {
  border-color: rgba(255, 106, 26, 0.62);
  background: rgba(255, 106, 26, 0.08);
  color: #fff;
}

body:not(.desktop-runtime) .site-hero-button.secondary span {
  color: rgba(255, 182, 138, 0.96);
  transition: transform 180ms ease;
}

body:not(.desktop-runtime) .site-hero-button.secondary:hover span {
  transform: translate(2px, -2px);
}

body.kyma-contact-modal-open {
  overflow: hidden;
}

.kyma-contact-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: clamp(18px, 4vw, 48px);
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(12px);
}

.kyma-contact-modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: none;
  overflow: visible;
  display: grid;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #111;
  box-shadow: 0 34px 110px rgba(17, 17, 17, 0.18);
}

.kyma-contact-modal-panel::before {
  content: none;
}

.kyma-contact-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.kyma-contact-modal-close:hover {
  border-color: rgba(255, 106, 26, 0.48);
  background: #fff7f2;
  color: #e8520a;
}

.kyma-contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4.4vw, 42px);
  padding-bottom: clamp(20px, 2.8vw, 28px);
  padding-top: clamp(38px, 5vw, 50px);
  display: grid;
  gap: 13px;
}

.kyma-contact-form-header {
  display: grid;
  gap: 8px;
  padding: 0 48px 4px 0;
}

.kyma-contact-form-header h2 {
  margin: 0;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.7rem, 2.7vw, 2.28rem);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}

.kyma-contact-form-header p {
  max-width: none;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.94rem;
  line-height: 1.5;
  white-space: nowrap;
}

.kyma-contact-form label {
  display: grid;
  gap: 8px;
}

.kyma-contact-form label.is-invalid {
  gap: 7px;
}

.kyma-contact-form label > span {
  color: rgba(17, 17, 17, 0.72);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.kyma-contact-form input,
.kyma-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #111;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.kyma-contact-form input {
  min-height: 42px;
  padding: 0 15px;
}

.kyma-contact-form textarea {
  min-height: 94px;
  max-height: min(28vh, 190px);
  padding: 12px 15px;
  overflow: auto;
  resize: vertical;
}

.kyma-contact-form input:focus,
.kyma-contact-form textarea:focus {
  border-color: rgba(255, 106, 26, 0.68);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.12);
}

.kyma-contact-form label.is-invalid input,
.kyma-contact-form label.is-invalid textarea {
  border-color: rgba(255, 106, 26, 0.76);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.12);
}

.kyma-contact-field-error {
  min-height: 0;
  color: #e8520a;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
}

.kyma-contact-field-error:empty {
  display: none;
}

.kyma-contact-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.kyma-contact-submit {
  min-height: 46px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.kyma-contact-submit:hover {
  border-color: #ff6a1a;
  background: #ff6a1a;
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(255, 106, 26, 0.2);
}

.kyma-contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.kyma-contact-status {
  min-height: 0;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.86rem;
  line-height: 1.4;
}

.kyma-contact-status:empty {
  display: none;
}

.kyma-contact-status.is-success {
  color: #d6530f;
}

.kyma-contact-status.is-error {
  color: #e8520a;
}

body:not(.desktop-runtime) .kyma-hero-visual {
  width: min(46vw, 760px);
  min-width: 380px;
  min-height: 700px;
  transform: none;
}

body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
  position: absolute;
  right: -12%;
  bottom: -2%;
  width: 78%;
  height: 78%;
  opacity: 0.28;
  filter: sepia(0.6) saturate(1.8) hue-rotate(330deg);
}

body:not(.desktop-runtime) .kyma-hero-hardware {
  position: absolute;
  inset: 0;
  transform: perspective(1100px) rotateX(58deg) rotateZ(-32deg);
  transform-style: preserve-3d;
}

body:not(.desktop-runtime) .kyma-hardware-layer {
  position: absolute;
  left: 12%;
  width: 76%;
  aspect-ratio: 1.68 / 1;
  border: 1px solid rgba(250, 248, 242, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(250, 248, 242, 0.05), rgba(250, 248, 242, 0.01)),
    rgba(4, 5, 4, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 34px 44px rgba(0, 0, 0, 0.34);
}

body:not(.desktop-runtime) .kyma-hardware-layer::before,
body:not(.desktop-runtime) .kyma-hardware-layer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-hardware-layer::before {
  inset: 18px;
  border: 1px solid rgba(250, 248, 242, 0.14);
  border-radius: 10px;
}

body:not(.desktop-runtime) .kyma-hardware-layer::after {
  left: 0;
  right: 0;
  bottom: -12px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.22), rgba(255, 106, 26, 0.82), rgba(255, 106, 26, 0.22));
  filter: blur(0.2px);
}

body:not(.desktop-runtime) .layer-top {
  top: 1%;
  transform: translateZ(120px);
}

body:not(.desktop-runtime) .layer-mid {
  top: 30%;
  transform: translateZ(54px);
}

body:not(.desktop-runtime) .layer-base {
  top: 63%;
  border-color: rgba(255, 106, 26, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(255, 106, 26, 0.08),
    0 0 44px rgba(255, 106, 26, 0.24),
    0 36px 58px rgba(0, 0, 0, 0.4);
}

body:not(.desktop-runtime) .kyma-layer-mark {
  position: absolute;
  left: 48%;
  top: 46%;
  width: 44px;
  height: 28px;
  border: 8px solid rgba(250, 248, 242, 0.44);
  border-top: 0;
  transform: rotate(8deg);
}

body:not(.desktop-runtime) .kyma-layer-chip {
  position: absolute;
  left: 45%;
  top: 36%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 106, 26, 0.68);
  background: rgba(255, 106, 26, 0.14);
}

body:not(.desktop-runtime) .kyma-layer-chip.chip-small {
  left: 61%;
  top: 50%;
  width: 28px;
  height: 28px;
}

body:not(.desktop-runtime) .kyma-layer-track {
  position: absolute;
  left: 16%;
  right: 17%;
  height: 1px;
  background: rgba(250, 248, 242, 0.28);
}

body:not(.desktop-runtime) .kyma-layer-track.track-a {
  top: 36%;
  box-shadow:
    90px 36px 0 rgba(250, 248, 242, 0.22),
    180px 74px 0 rgba(250, 248, 242, 0.18);
}

body:not(.desktop-runtime) .kyma-layer-track.track-b {
  top: 62%;
  width: 44%;
}

body:not(.desktop-runtime) .kyma-layer-glow {
  position: absolute;
  left: 39%;
  top: 42%;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.68), rgba(255, 106, 26, 0.2) 34%, transparent 68%);
  filter: blur(8px);
}

body:not(.desktop-runtime) .kyma-exploded-line {
  position: absolute;
  width: 1px;
  height: 72%;
  border-left: 1px dashed rgba(255, 106, 26, 0.34);
  transform: translateZ(150px);
}

body:not(.desktop-runtime) .kyma-exploded-line.line-a {
  left: 18%;
  top: 8%;
}

body:not(.desktop-runtime) .kyma-exploded-line.line-b {
  left: 54%;
  top: 0;
}

body:not(.desktop-runtime) .kyma-exploded-line.line-c {
  right: 10%;
  top: 13%;
}

body:not(.desktop-runtime) .kyma-hero-hardware .kyma-device-band {
  position: absolute;
  left: 16%;
  top: 78%;
  width: 68%;
  height: 92px;
  border: 14px solid rgba(250, 248, 242, 0.86);
  border-bottom-color: transparent;
  border-radius: 140px 140px 22px 22px;
  background: transparent;
  transform: translateZ(108px);
  filter: drop-shadow(0 0 30px rgba(255, 106, 26, 0.24));
}

body:not(.desktop-runtime) .kyma-hero-hardware .kyma-device-band span {
  position: absolute;
  top: 34px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ff6a1a;
  box-shadow: 0 0 0 7px rgba(255, 106, 26, 0.16);
}

body:not(.desktop-runtime) .kyma-hero-hardware .kyma-device-band span:nth-child(1) {
  left: 28%;
}

body:not(.desktop-runtime) .kyma-hero-hardware .kyma-device-band span:nth-child(2) {
  left: 50%;
}

body:not(.desktop-runtime) .kyma-hero-hardware .kyma-device-band span:nth-child(3) {
  left: 72%;
}

body:not(.desktop-runtime) .kyma-hero-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(255, 106, 26, 0.38);
  background: rgba(5, 6, 5, 0.86);
  color: rgba(252, 250, 244, 0.82);
  font-size: 0.72rem;
  font-weight: 620;
  transform: translateZ(180px) rotateZ(32deg) rotateX(-58deg);
}

body:not(.desktop-runtime) .kyma-hero-label.label-a {
  right: 5%;
  top: 16%;
}

body:not(.desktop-runtime) .kyma-hero-label.label-b {
  right: 0;
  top: 48%;
}

body:not(.desktop-runtime) .kyma-hero-label.label-c {
  right: 7%;
  top: 78%;
}

@media (max-width: 1100px) {
  body:not(.desktop-runtime) .site-header {
    grid-template-columns: auto 1fr;
  }

  body:not(.desktop-runtime) .site-header .top-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
  }

  body:not(.desktop-runtime) .site-header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    justify-self: center;
    width: min(88vw, 620px);
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .site-header {
    margin: 12px 12px 0;
    padding: 12px 14px;
    border-radius: 16px;
  }

  body:not(.desktop-runtime) .site-brand-mark {
    width: 108px;
    height: 26px;
  }

  body:not(.desktop-runtime) .site-header-actions {
    display: none;
  }

  body:not(.desktop-runtime) .site-header .top-nav {
    gap: 20px;
  }

  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    padding: 52px 24px 58px;
  }

  body:not(.desktop-runtime) .site-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  body:not(.desktop-runtime) .site-hero-actions {
    flex-wrap: wrap;
  }

  body:not(.desktop-runtime) .site-hero-button {
    width: 100%;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    min-width: 0;
    min-height: 430px;
    width: 100%;
  }

  body:not(.desktop-runtime) .kyma-hero-hardware {
    inset: 2% -2% 0;
    transform: perspective(900px) rotateX(58deg) rotateZ(-32deg) scale(0.72);
  }

  body:not(.desktop-runtime) .kyma-hero-label {
    display: none;
  }

  body:not(.desktop-runtime) .site-hero.kyma-vision-hero::after {
    right: 16vw;
    width: 62vw;
    opacity: 0.6;
  }
}

/* Public nav collapse and brain-only hero refinement */
body:not(.desktop-runtime) .site-menu-toggle {
  display: none;
}

body:not(.desktop-runtime) .kyma-hero-hardware {
  display: none;
}

body:not(.desktop-runtime) .kyma-hero-visual {
  display: grid;
  place-items: center;
  min-height: min(68vh, 780px);
  overflow: visible;
}

body:not(.desktop-runtime) .kyma-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -1% 7% 5%;
  background:
    linear-gradient(rgba(255, 106, 26, 0.52), rgba(255, 106, 26, 0.52)) 31% 12% / 92px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.36), rgba(255, 106, 26, 0.36)) 31% 12% / 1px 68px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.34), rgba(255, 106, 26, 0.34)) 78% 13% / 118px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.26), rgba(255, 106, 26, 0.26)) 98% 13% / 1px 78px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.28), rgba(255, 106, 26, 0.28)) 28% 80% / 122px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.22), rgba(255, 106, 26, 0.22)) 28% 65% / 1px 96px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.46), rgba(255, 106, 26, 0.46)) 76% 78% / 132px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.28), rgba(255, 106, 26, 0.28)) 98% 62% / 1px 118px no-repeat,
    radial-gradient(circle at 31% 12%, rgba(255, 106, 26, 0.92) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 13%, rgba(255, 106, 26, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 80%, rgba(255, 106, 26, 0.66) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 78%, rgba(255, 106, 26, 0.88) 0 4px, transparent 5px);
  opacity: 0.8;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-hero-visual::after {
  content: "";
  position: absolute;
  width: min(84%, 560px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 54% 52%, rgba(255, 106, 26, 0.28), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(250, 248, 242, 0.05), transparent 58%);
  filter: blur(8px);
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
  position: relative;
  inset: auto;
  z-index: 2;
  width: min(100%, 760px);
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: min(72vh, 760px);
  opacity: 0.92;
  filter: drop-shadow(0 0 34px rgba(255, 106, 26, 0.22));
}

@media (max-width: 1320px) {
  body:not(.desktop-runtime) .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  body:not(.desktop-runtime) .site-header .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    grid-column: auto;
    z-index: 40;
    width: min(320px, calc(100vw - 24px));
    max-width: none;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(250, 248, 242, 0.22);
    background: #050605;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  }

  body:not(.desktop-runtime) .site-header.site-nav-open .top-nav {
    display: flex;
  }

  body:not(.desktop-runtime) .site-header .top-nav-tab {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(250, 248, 242, 0.08);
  }

  body:not(.desktop-runtime) .site-header .top-nav-tab:last-child {
    border-bottom: 0;
  }

  body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab.active::before,
  body:not(.desktop-runtime) .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
    left: 0;
    right: auto;
    top: 13px;
    bottom: 13px;
    width: 2px;
    height: auto;
  }

  body:not(.desktop-runtime) .site-header-actions {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    align-items: center;
  }

  body:not(.desktop-runtime) .site-menu-toggle {
    display: inline-flex;
    min-width: 88px;
    gap: 10px;
    border: 1px solid rgba(250, 248, 242, 0.86);
    background: transparent;
    color: #fff;
  }

  body:not(.desktop-runtime) .site-header-link.public-header-action {
    display: none;
  }
}

@media (min-width: 1321px) {
  body:not(.desktop-runtime) .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  body:not(.desktop-runtime) .site-header .top-nav,
  body:not(.desktop-runtime) .site-header-actions {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .site-header-actions {
    display: flex;
  }

  body:not(.desktop-runtime) .site-header-cta.public-header-action {
    display: none;
  }

  body:not(.desktop-runtime) .site-menu-toggle {
    min-width: 74px;
    min-height: 36px;
    font-size: 0.82rem;
  }

  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    padding-top: 44px;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    min-height: 360px;
  }

  body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
    width: min(92vw, 390px);
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

body:not(.desktop-runtime) .site-header .app-nav-tab,
body:not(.desktop-runtime) .site-header .top-nav-tab.hidden {
  display: none !important;
}

/* Final public header and hero placement refinements */
body:not(.desktop-runtime) .site-header {
  top: 10px;
  margin-top: 10px;
  border-color: rgba(255, 106, 26, 0.22);
  background: rgba(5, 6, 5, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 106, 26, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.desktop-runtime) .site-header.is-scrolled {
  border-color: rgba(255, 106, 26, 0.24);
  background: rgba(5, 6, 5, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 106, 26, 0.1),
    0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px) saturate(1.04);
  -webkit-backdrop-filter: blur(8px) saturate(1.04);
}

body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
  grid-template-columns: minmax(620px, 0.98fr) minmax(500px, 1.02fr);
  gap: clamp(8px, 1.1vw, 24px);
  min-height: min(74vh, 720px);
  padding-bottom: clamp(4px, 1.4vh, 18px);
}

body:not(.desktop-runtime) .site-hero-copy.hero-brutalist-copy {
  width: min(940px, 100%);
  max-width: none;
}

body:not(.desktop-runtime) .kyma-hero-visual {
  justify-self: end;
  align-self: center;
  width: min(56vw, 1040px);
  min-width: 600px;
  min-height: min(84vh, 940px);
  transform: translate(5vw, -14vh);
}

body:not(.desktop-runtime) .kyma-hero-visual::after {
  width: min(106%, 980px);
  transform: translateX(7%);
  background:
    radial-gradient(circle at 54% 50%, rgba(255, 106, 26, 0.13), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(250, 248, 242, 0.045), transparent 60%);
  filter: blur(10px);
}

body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
  width: min(100%, 1060px);
  max-height: min(86vh, 1060px);
  transform: translateX(7%);
  opacity: 1;
  filter:
    brightness(1.1)
    contrast(1.18)
    saturate(1.06)
    drop-shadow(0 0 22px rgba(255, 255, 248, 0.08))
    drop-shadow(0 0 26px rgba(255, 82, 16, 0.16));
}

body:not(.desktop-runtime) .site-hero.kyma-vision-hero .site-hero-actions {
  width: min(100%, 560px);
  justify-self: center;
  align-self: auto;
  justify-content: center;
  margin-inline: auto;
}

body:not(.desktop-runtime) .kyma-hero-visual::before {
  inset: 7% 5% 7% 5%;
  background:
    linear-gradient(rgba(255, 106, 26, 0.5), rgba(255, 106, 26, 0.5)) 24% 18% / 104px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.34), rgba(255, 106, 26, 0.34)) 24% 18% / 1px 78px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.34), rgba(255, 106, 26, 0.34)) 76% 18% / 104px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.26), rgba(255, 106, 26, 0.26)) 76% 18% / 1px 78px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.3), rgba(255, 106, 26, 0.3)) 24% 82% / 104px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.24), rgba(255, 106, 26, 0.24)) 24% 68% / 1px 92px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.46), rgba(255, 106, 26, 0.46)) 76% 82% / 104px 1px no-repeat,
    linear-gradient(rgba(255, 106, 26, 0.28), rgba(255, 106, 26, 0.28)) 76% 68% / 1px 92px no-repeat,
    radial-gradient(circle at 24% 18%, rgba(255, 106, 26, 0.88) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 18%, rgba(255, 106, 26, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 24% 82%, rgba(255, 106, 26, 0.66) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 82%, rgba(255, 106, 26, 0.88) 0 4px, transparent 5px);
  transform: translateX(7%);
}

@media (min-width: 981px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero::after {
    right: clamp(110px, 11vw, 180px);
    top: 20%;
    bottom: 18%;
    width: min(34vw, 460px);
    border-left-color: rgba(255, 106, 26, 0.24);
    border-right-color: rgba(255, 106, 26, 0.34);
  }
}

@media (max-width: 1320px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    justify-self: end;
    width: min(44vw, 620px);
    min-width: 330px;
    min-height: min(62vh, 640px);
    transform: translate(3vw, -12vh);
  }

  body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
    width: min(100%, 620px);
    max-height: min(62vh, 620px);
    transform: translateX(4%);
  }
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    justify-self: center;
    width: min(94vw, 760px);
    min-width: 0;
    transform: translateY(-4vh);
  }

  body:not(.desktop-runtime) .kyma-hero-visual::after,
  body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
    transform: none;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .site-header {
    top: 10px;
    margin-top: 10px;
  }

  body:not(.desktop-runtime) .site-hero h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.85rem);
    line-height: 1.08;
    max-width: 100%;
  }

  body:not(.desktop-runtime) .home-dashboard .home-kicker {
    max-width: calc(100vw - 48px);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body:not(.desktop-runtime) .site-hero-lede {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    width: 100%;
    min-width: 0;
    min-height: 390px;
    overflow: hidden;
  }

  body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
    right: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* White industrial schematic section and light header state */
body:not(.desktop-runtime) .site-brand-mark {
  position: relative;
  display: block;
}

body:not(.desktop-runtime) .site-brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

body:not(.desktop-runtime) .site-brand-mark .site-logo-dark {
  opacity: 0;
}

body:not(.desktop-runtime).public-light-header .site-brand-mark .site-logo-light {
  opacity: 0;
}

body:not(.desktop-runtime).public-light-header .site-brand-mark .site-logo-dark {
  opacity: 1;
}

body:not(.desktop-runtime).public-light-header .site-header,
body:not(.desktop-runtime).public-light-header .site-header.is-scrolled {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 36px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

body:not(.desktop-runtime).public-light-header .site-header .top-nav-tab {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime).public-light-header .site-header .top-nav-tab:hover,
body:not(.desktop-runtime).public-light-header .site-header .top-nav .top-nav-tab.active,
body:not(.desktop-runtime).public-light-header .site-header .top-nav .top-nav-tab[aria-current="page"] {
  color: #0d0d0d;
}

body:not(.desktop-runtime).public-light-header .site-header .top-nav .top-nav-tab.active::before,
body:not(.desktop-runtime).public-light-header .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
  background: #ff6a1a;
}

body:not(.desktop-runtime).public-light-header .site-menu-toggle.public-header-action {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: #0d0d0d;
}

body:not(.desktop-runtime).public-light-header .site-header-cta.public-header-action {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

body:not(.desktop-runtime).public-light-header .site-header-cta.public-header-action span {
  background: transparent;
  color: #fff;
}

body:not(.desktop-runtime).public-light-header .site-header.site-nav-open .top-nav {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.12);
}

body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) {
  --site-text: #111111;
  --site-muted: rgba(17, 17, 17, 0.66);
  --site-line: rgba(17, 17, 17, 0.12);
  --site-line-strong: rgba(17, 17, 17, 0.22);
  color: var(--site-text);
  border-top-color: var(--site-line);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    #fff;
  background-size: 116px 116px, 116px 116px, auto;
}

body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) .home-kicker {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) h2,
body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) strong {
  color: var(--site-text);
}

body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) p,
body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) small,
body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) .kyma-copy-list span,
body:not(.desktop-runtime) .home-dashboard > section:not(.site-hero) .kyma-orientation-list span {
  color: var(--site-muted);
}

body:not(.desktop-runtime) .kyma-region-section {
  scroll-margin-top: 104px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(62px, 7vw, 104px) clamp(24px, 6vw, 112px);
}

body:not(.desktop-runtime) .kyma-region-intro {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(20px, 5vw, 84px);
}

body:not(.desktop-runtime) .kyma-region-intro .home-kicker {
  grid-column: 1 / -1;
  width: fit-content;
}

body:not(.desktop-runtime) .kyma-region-section h2 {
  max-width: 760px;
  margin: 0;
  color: #111;
  font-size: clamp(2.35rem, 4.2vw, 4.9rem);
  font-weight: 640;
  line-height: 1;
  letter-spacing: 0;
}

body:not(.desktop-runtime) .kyma-region-section .kyma-stack-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .kyma-region-grid {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

body:not(.desktop-runtime) .kyma-region-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 36%, rgba(255, 106, 26, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.92);
  background-size: 52px 52px, 52px 52px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 54px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .kyma-region-card figure {
  min-height: 330px;
  margin: 0;
  padding: clamp(18px, 2.5vw, 34px);
  display: grid;
  place-items: center;
}

body:not(.desktop-runtime) .kyma-region-card img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: saturate(0.95) contrast(1.03);
}

body:not(.desktop-runtime) .kyma-region-card div {
  padding: 0 clamp(22px, 2.6vw, 34px) clamp(24px, 2.8vw, 36px);
  display: grid;
  gap: 10px;
}

body:not(.desktop-runtime) .kyma-region-card span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

body:not(.desktop-runtime) .kyma-region-card strong {
  color: #111;
  font-size: clamp(1.25rem, 1.55vw, 1.7rem);
  line-height: 1.08;
}

body:not(.desktop-runtime) .kyma-region-card small {
  max-width: 32ch;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .kyma-region-labels article,
body:not(.desktop-runtime) .kyma-principle-grid article,
body:not(.desktop-runtime) .kyma-platform-grid article,
body:not(.desktop-runtime) .kyma-careers-grid article,
body:not(.desktop-runtime) .kyma-blog-grid article,
body:not(.desktop-runtime) .kyma-scale-board article {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .kyma-region-labels span,
body:not(.desktop-runtime) .web-card-index {
  color: #ff6a1a;
}

body:not(.desktop-runtime) .home-dashboard {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  gap: 0;
}

body:not(.desktop-runtime) .studies-workspace {
  padding-right: 0;
  padding-left: 0;
}

body:not(.desktop-runtime) .kyma-mission-band {
  min-height: min(82vh, 820px);
  padding: clamp(64px, 8vw, 116px) clamp(24px, 6vw, 112px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 76% 42%, rgba(255, 106, 26, 0.1), transparent 31%),
    #fff;
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-mission-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

body:not(.desktop-runtime) .kyma-mission-band h2 {
  max-width: 680px;
  margin: 0;
  color: #111;
  font-size: clamp(2.35rem, 4.2vw, 5.15rem);
  font-weight: 640;
  line-height: 1;
}

body:not(.desktop-runtime) .kyma-mission-band p {
  max-width: 620px;
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.66;
}

body:not(.desktop-runtime) .kyma-headband-visual {
  position: relative;
  min-height: clamp(420px, 48vw, 680px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(255, 106, 26, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.86);
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 24px 70px rgba(17, 17, 17, 0.07);
}

body:not(.desktop-runtime) .kyma-headband-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 106, 26, 0.16);
  border-radius: 16px;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-headband-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

body:not(.desktop-runtime) .kyma-headband-callouts {
  position: absolute;
  left: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 34px);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-headband-callouts span {
  min-width: 78px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 106, 26, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 760;
  text-align: center;
  letter-spacing: 0.04em;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section {
  --site-text: #111;
  --site-muted: rgba(17, 17, 17, 0.62);
  --site-line: rgba(17, 17, 17, 0.1);
  position: relative;
  min-height: min(108vh, 1040px);
  padding: clamp(58px, 6vw, 92px) clamp(24px, 6vw, 112px) clamp(74px, 7vw, 118px);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--site-text);
  text-align: center;
  border-top: 1px solid rgba(255, 106, 26, 0.18);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 72% 42%, rgba(255, 106, 26, 0.11), transparent 34%),
    linear-gradient(180deg, #f8f7f3 0%, #ffffff 44%, #f5f4ef 100%);
  background-size: 112px 112px, 112px 112px, auto, auto;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(58%, 66vw, 76%);
  width: clamp(96px, 10vw, 150px);
  height: clamp(72px, 8vw, 120px);
  border-left: 1px dashed rgba(255, 106, 26, 0.2);
  border-right: 1px dashed rgba(255, 106, 26, 0.14);
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .home-kicker {
  color: rgba(17, 17, 17, 0.58);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-mission-copy {
  justify-items: center;
  gap: 14px;
  max-width: 920px;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section h2 {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0;
  color: #111;
  font-size: clamp(2.05rem, 3.05vw, 3.72rem);
  font-weight: 420;
  line-height: 1.02;
  white-space: nowrap;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section p {
  max-width: 660px;
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.68;
}

body:not(.desktop-runtime) .kyma-tech-list {
  display: grid;
  gap: 1px;
  max-width: 720px;
  margin-top: clamp(10px, 1.6vw, 18px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.1);
}

body:not(.desktop-runtime) .kyma-tech-list article {
  min-height: 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px minmax(140px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.8);
}

body:not(.desktop-runtime) .kyma-tech-list span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
}

body:not(.desktop-runtime) .kyma-tech-list strong {
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(1rem, 1.16vw, 1.24rem);
  font-weight: 520;
  line-height: 1.12;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-tech-list small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-visual {
  width: min(100%, 1120px);
  min-height: clamp(560px, 64vw, 760px);
  border-color: transparent;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-visual::before {
  inset: 8% 18%;
  border-color: rgba(255, 106, 26, 0.13);
  border-radius: 999px 999px 34px 34px;
  opacity: 0.7;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(70vw, 760px);
  height: min(58vw, 620px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.12), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-image {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(56vw, 610px);
  max-height: 92%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 28px 54px rgba(17, 17, 17, 0.14))
    drop-shadow(0 0 42px rgba(255, 106, 26, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
  user-select: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-image.is-active {
  opacity: 1;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-headband-callouts {
  inset: 0;
  z-index: 3;
  display: block;
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout {
  position: absolute;
  z-index: 1;
  min-width: 0;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 106, 26, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  cursor: pointer;
  pointer-events: auto;
  overflow: visible;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout > .callout-label,
body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout > .callout-icon {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  white-space: nowrap;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout:hover,
body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout.is-active {
  z-index: 8;
  border-color: rgba(255, 106, 26, 0.74);
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.14),
    0 0 28px rgba(255, 106, 26, 0.16);
  transform: translateY(-1px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-icon {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 106, 26, 0.9);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.12);
  box-shadow:
    0 0 0 5px rgba(255, 106, 26, 0.08),
    0 0 16px rgba(255, 106, 26, 0.24);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout.is-active .callout-icon,
body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout:hover .callout-icon {
  background: #ff6a1a;
  border-color: #ff6a1a;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-card {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 218px;
  min-width: 218px;
  max-width: 218px;
  padding: 10px;
  display: grid;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.13),
    0 0 20px rgba(255, 106, 26, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: normal;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-card strong {
  display: block;
  min-width: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #111;
  font-family: var(--font-industrial);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-card small {
  display: block;
  min-width: 0;
  padding: 8px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-interface);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  overflow-wrap: break-word;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout.is-active .callout-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout::before {
  content: "";
  position: absolute;
  width: var(--line-width, 78px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.78), rgba(255, 106, 26, 0.08));
  opacity: 0.76;
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 106, 26, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 5px rgba(255, 106, 26, 0.1),
    0 0 22px rgba(255, 106, 26, 0.32);
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .hardware-callout.is-active::after {
  animation: kymaHardwarePulse 1050ms ease-in-out infinite;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-electrodes {
  --line-width: 145px;
  left: 11%;
  top: 24%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-electrodes::before {
  left: 100%;
  top: 50%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-electrodes::after {
  left: calc(100% + var(--line-width));
  top: calc(50% - 5px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-channels {
  --line-width: 116px;
  right: 11%;
  top: 24%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-channels::before {
  right: 100%;
  top: 50%;
  transform: rotate(180deg);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-channels::after {
  right: calc(100% + var(--line-width));
  top: calc(50% - 5px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-channels .callout-card,
body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-power .callout-card {
  left: auto;
  right: 0;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-fit {
  --line-width: 94px;
  left: 9%;
  bottom: 23%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-fit::before {
  left: 100%;
  top: 50%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-fit::after {
  left: calc(100% + var(--line-width));
  top: calc(50% - 5px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-power {
  --line-width: 76px;
  right: 9%;
  bottom: 23%;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-power::before {
  right: 100%;
  top: 50%;
  transform: rotate(180deg);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .callout-power::after {
  right: calc(100% + var(--line-width));
  top: calc(50% - 5px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-hardware-detail {
  width: min(100%, 760px);
  min-height: 116px;
  margin: clamp(-18px, -1.6vw, -8px) auto 0;
  padding: 18px 20px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.055), transparent 44%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
  text-align: left;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-hardware-detail span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-hardware-detail strong {
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(1.18rem, 1.5vw, 1.72rem);
  font-weight: 520;
  line-height: 1.04;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-hardware-detail p {
  max-width: none;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.96rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-hardware-detail.is-changing {
  animation: kymaHardwareDetailIn 240ms ease both;
}

@keyframes kymaHardwarePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(255, 106, 26, 0.1),
      0 0 22px rgba(255, 106, 26, 0.32);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(255, 106, 26, 0.16),
      0 0 34px rgba(255, 106, 26, 0.42);
  }
}

@keyframes kymaHardwareDetailIn {
  from {
    opacity: 0.72;
    transform: translateY(4px);
  }

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

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-product-caption {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-colorway-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(14px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-colorway-toggle button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.54);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-colorway-toggle button:hover {
  color: rgba(17, 17, 17, 0.86);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-colorway-toggle button.is-active {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.16);
}

body:not(.desktop-runtime) .kyma-orientation-section {
  min-height: auto;
  padding: clamp(42px, 5vw, 72px) clamp(24px, 6vw, 112px) clamp(58px, 6vw, 92px);
  display: grid;
  gap: clamp(28px, 3.8vw, 50px);
  color: #111;
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 52% 0%, rgba(255, 106, 26, 0.08), transparent 34%),
    #f7f7f4;
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-orientation-intro {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

body:not(.desktop-runtime) .kyma-orientation-intro h2 {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0;
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 3.45vw, 4.15rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: normal;
  text-wrap: balance;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-orientation-intro p {
  max-width: 660px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.58;
}

body:not(.desktop-runtime) .kyma-orientation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

body:not(.desktop-runtime) .kyma-orientation-grid article {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: clamp(250px, 31vw, 390px) auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

body:not(.desktop-runtime) .kyma-orientation-grid figure {
  position: relative;
  width: 100%;
  height: clamp(250px, 31vw, 390px);
  min-height: 0;
  margin: 0;
  padding: 24px 22px 0;
  overflow: hidden;
  background: #fff;
  transition: background 220ms ease;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(2) figure {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(3) figure {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(1):hover figure,
body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(1):focus-within figure {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(2):hover figure,
body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(2):focus-within figure {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(3):hover figure,
body:not(.desktop-runtime) .kyma-orientation-grid article:nth-child(3):focus-within figure {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-grid img {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  transition: opacity 220ms ease;
}

body:not(.desktop-runtime) .kyma-orientation-grid .orientation-hover-image {
  position: absolute;
  inset: 24px 22px 0;
  width: calc(100% - 44px);
  height: calc(100% - 24px);
  opacity: 0;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:hover .orientation-hover-image,
body:not(.desktop-runtime) .kyma-orientation-grid article:focus-within .orientation-hover-image {
  opacity: 1;
}

body:not(.desktop-runtime) .kyma-orientation-grid article:hover figure > img:first-child,
body:not(.desktop-runtime) .kyma-orientation-grid article:focus-within figure > img:first-child {
  opacity: 0;
  transform: none;
}

body:not(.desktop-runtime) .kyma-orientation-grid article > div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

body:not(.desktop-runtime) .kyma-orientation-grid span {
  grid-row: 1 / span 2;
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body:not(.desktop-runtime) .kyma-orientation-grid strong {
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(1.15rem, 1.5vw, 1.7rem);
  font-weight: 520;
  line-height: 1;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-orientation-grid small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.92rem;
  line-height: 1.45;
}

body:not(.desktop-runtime) .kyma-headband-spin-section {
  width: 100%;
  padding: clamp(64px, 7vw, 112px) clamp(24px, 6vw, 112px) clamp(56px, 6vw, 96px);
  display: grid;
  gap: clamp(26px, 3.4vw, 46px);
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 106, 26, 0.14);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 106, 26, 0.14), transparent 42%),
    linear-gradient(180deg, #030403 0%, #050505 48%, #030403 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-headband-spin-copy {
  width: min(100%, 1480px);
  display: grid;
  justify-items: center;
  text-align: center;
}

body:not(.desktop-runtime) .kyma-headband-spin-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #f8f7f2;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.6rem, 2.4vw, 3rem);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

body:not(.desktop-runtime) .kyma-headband-spin-video {
  width: min(100%, 1120px);
  max-height: min(68svh, 680px);
  display: block;
  border: 0;
  border-radius: 0;
  background: #030403;
  object-fit: contain;
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.28),
    0 0 72px rgba(255, 106, 26, 0.07);
}

body:not(.desktop-runtime) .kyma-headband-spin-stage {
  position: relative;
  width: min(100%, 1120px);
  display: grid;
  place-items: center;
}

body:not(.desktop-runtime) .kyma-headband-spin-stage .kyma-headband-spin-video {
  width: 100%;
}

body:not(.desktop-runtime) .kyma-headband-spin-facts {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-headband-spin-facts li {
  position: absolute;
  width: min(24ch, 28%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(248, 247, 242, 0.88);
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 560;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

body:not(.desktop-runtime) .kyma-headband-spin-facts li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ff6a1a;
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.12);
}

body:not(.desktop-runtime) .kyma-headband-spin-facts .fact-left {
  left: clamp(18px, 3vw, 42px);
  justify-content: flex-start;
}

body:not(.desktop-runtime) .kyma-headband-spin-facts .fact-right {
  right: clamp(18px, 3vw, 42px);
  flex-direction: row-reverse;
  text-align: right;
}

body:not(.desktop-runtime) .kyma-headband-spin-facts .fact-top {
  top: clamp(54px, 15%, 120px);
}

body:not(.desktop-runtime) .kyma-headband-spin-facts .fact-bottom {
  bottom: clamp(54px, 15%, 120px);
}

body:not(.desktop-runtime) .kyma-headband-spin-cta {
  width: min(100%, 1120px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

body:not(.desktop-runtime) .kyma-headband-waitlist-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 106, 26, 0.88);
  border-radius: 999px;
  background: #ff6a1a;
  color: #fff;
  font-family: "Manrope", var(--font-interface);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(255, 106, 26, 0.18);
  transition:
    background 170ms ease,
    border-color 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease;
}

body:not(.desktop-runtime) .kyma-headband-waitlist-button:hover,
body:not(.desktop-runtime) .kyma-headband-waitlist-button:focus-visible {
  border-color: rgba(255, 124, 48, 0.98);
  background: #f05f12;
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 20px 46px rgba(255, 106, 26, 0.22);
}

body:not(.desktop-runtime) .kyma-headband-spin-cta span {
  color: rgba(248, 247, 242, 0.62);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.35;
}

body:not(.desktop-runtime) .kyma-orientation-video-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  display: block;
  gap: 0;
  padding: 0 0 clamp(28px, 4vw, 64px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 106, 26, 0.14);
  background: #050505;
  background-size: auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section {
  --site-text: #fcfaf4;
  --site-muted: rgba(252, 250, 244, 0.72);
  --site-line: rgba(255, 106, 26, 0.14);
  color: var(--site-text);
  border-top-color: var(--site-line);
  padding-bottom: clamp(28px, 4vw, 64px);
  background: #050505;
  background-size: auto;
}

body:not(.desktop-runtime) .kyma-orientation-video-section .kyma-orientation-intro {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: clamp(42px, 5vw, 76px) clamp(24px, 6vw, 112px) clamp(10px, 1.8vw, 24px);
  background: transparent;
}

body:not(.desktop-runtime) .kyma-orientation-video-section .kyma-orientation-intro h2 {
  color: #f8f7f2;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-orientation-video-section .kyma-orientation-intro h2 {
  color: #f8f7f2;
}

.kyma-orientation-video-section .kyma-orientation-intro h2 {
  color: #f8f7f2;
}

body:not(.desktop-runtime) .kyma-orientation-video {
  width: 100%;
  max-width: 100%;
  height: min(72svh, 720px);
  max-height: 720px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

body:not(.desktop-runtime) .kyma-orientation-stage {
  position: relative;
  width: 100%;
  min-height: min(72svh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

body:not(.desktop-runtime) .kyma-orientation-overlay {
  position: absolute;
  left: clamp(72px, 11vw, 190px);
  top: 50%;
  z-index: 3;
  width: clamp(116px, 13vw, 164px);
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-orientation-panel {
  position: absolute;
  right: clamp(10px, 3.5vw, 54px);
  top: 50%;
  z-index: 2;
  width: min(390px, calc(100% - 36px));
  padding: 20px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(252, 250, 244, 0.16);
  border-radius: 12px;
  background: rgba(5, 6, 5, 0.78);
  color: #fcfaf4;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
}

body:not(.desktop-runtime) .kyma-orientation-hotspot {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(252, 250, 244, 0.18);
  border-radius: 10px;
  background: rgba(5, 6, 5, 0.64);
  color: rgba(252, 250, 244, 0.72);
  text-align: left;
  backdrop-filter: blur(12px);
  cursor: pointer;
  pointer-events: auto;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

body:not(.desktop-runtime) .kyma-orientation-hotspot span,
body:not(.desktop-runtime) .kyma-orientation-panel span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

body:not(.desktop-runtime) .kyma-orientation-hotspot strong {
  font-family: var(--font-industrial);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 540;
  line-height: 1;
}

body:not(.desktop-runtime) .kyma-orientation-hotspot:hover,
body:not(.desktop-runtime) .kyma-orientation-hotspot.is-active {
  border-color: rgba(255, 106, 26, 0.72);
  background: rgba(255, 106, 26, 0.12);
  color: #fff;
}

body:not(.desktop-runtime) .kyma-orientation-panel strong {
  font-family: var(--font-industrial);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 520;
  line-height: 1.08;
}

body:not(.desktop-runtime) .kyma-orientation-panel p {
  margin: 0;
  color: rgba(252, 250, 244, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .kyma-orientation-panel-more {
  padding-top: 8px;
  border-top: 1px solid rgba(252, 250, 244, 0.12);
}

body:not(.desktop-runtime) .kyma-orientation-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

body:not(.desktop-runtime) .kyma-orientation-panel-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 26, 0.38);
  border-radius: 999px;
  background: transparent;
  color: rgba(252, 250, 244, 0.86);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

body:not(.desktop-runtime) .kyma-orientation-panel-actions button:hover {
  border-color: rgba(255, 106, 26, 0.72);
  background: rgba(255, 106, 26, 0.1);
  color: #fff;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-orientation-video-section .kyma-orientation-hotspot strong,
body:not(.desktop-runtime) .home-dashboard > .kyma-orientation-video-section .kyma-orientation-panel strong {
  color: #fcfaf4 !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-orientation-video-section .kyma-orientation-panel p {
  color: rgba(252, 250, 244, 0.72) !important;
}

body:not(.desktop-runtime) .kyma-developer-quote-section {
  position: relative;
  min-height: min(64vh, 620px);
  padding: clamp(72px, 9vw, 132px) clamp(24px, 7vw, 132px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f8f7f2;
  border-top: 1px solid rgba(255, 106, 26, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(255, 106, 26, 0.18), transparent 32%),
    linear-gradient(180deg, #050605 0%, #030403 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-developer-quote-section::before,
body:not(.desktop-runtime) .kyma-developer-quote-section::after {
  content: "";
  position: absolute;
  width: clamp(92px, 13vw, 180px);
  height: clamp(92px, 13vw, 180px);
  border-color: rgba(255, 106, 26, 0.32);
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-developer-quote-section::before {
  left: clamp(24px, 6vw, 92px);
  top: clamp(28px, 5vw, 78px);
  border-top: 1px solid;
  border-left: 1px dashed;
}

body:not(.desktop-runtime) .kyma-developer-quote-section::after {
  right: clamp(24px, 6vw, 92px);
  bottom: clamp(28px, 5vw, 78px);
  border-right: 1px dashed;
  border-bottom: 1px solid;
}

body:not(.desktop-runtime) .kyma-developer-quote-wrap {
  max-width: 1180px;
  text-align: center;
}

body:not(.desktop-runtime) .kyma-developer-quote-wrap h2 {
  position: relative;
  max-width: 1060px;
  margin: 0;
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: clamp(1.85rem, 2.7vw, 3.45rem);
  font-weight: 410;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-developer-quote-wrap h2::before,
body:not(.desktop-runtime) .kyma-developer-quote-wrap h2::after {
  color: rgba(255, 106, 26, 0.88);
  font-family: var(--font-industrial);
  font-weight: 400;
}

body:not(.desktop-runtime) .kyma-developer-quote-wrap h2::before {
  content: "“";
  margin-right: 0.08em;
}

body:not(.desktop-runtime) .kyma-developer-quote-wrap h2::after {
  content: "”";
  margin-left: 0.08em;
}

body:not(.desktop-runtime) .kyma-model-showcase-section {
  min-height: min(84vh, 820px);
  padding: clamp(64px, 7vw, 112px) clamp(24px, 7vw, 132px);
  place-items: stretch;
}

body:not(.desktop-runtime) .kyma-model-showcase-section::before {
  left: clamp(26px, 5vw, 84px);
  top: clamp(26px, 4.6vw, 72px);
  width: clamp(78px, 10vw, 132px);
  height: clamp(78px, 10vw, 132px);
}

body:not(.desktop-runtime) .kyma-model-showcase-section::after {
  right: clamp(26px, 5vw, 84px);
  bottom: clamp(26px, 4.6vw, 72px);
  width: clamp(78px, 10vw, 132px);
  height: clamp(78px, 10vw, 132px);
}

body:not(.desktop-runtime) .kyma-model-showcase-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

body:not(.desktop-runtime) .kyma-model-showcase-copy {
  display: grid;
  gap: 22px;
  text-align: left;
}

body:not(.desktop-runtime) .kyma-model-showcase-copy > span {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 106, 26, 0.3);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.08);
  color: rgba(255, 166, 111, 0.96);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-showcase-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-showcase-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 247, 242, 0.66);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .kyma-model-detail {
  margin-top: 8px;
  min-height: 186px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

body:not(.desktop-runtime) .kyma-model-detail > span {
  color: rgba(255, 166, 111, 0.96);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-detail strong {
  color: #fff;
  font-family: var(--font-industrial);
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 540;
  line-height: 1.08;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-detail p {
  color: rgba(248, 247, 242, 0.62);
  font-size: 0.94rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .kyma-model-detail.is-changing {
  animation: kymaModelDetailIn 220ms ease both;
}

body:not(.desktop-runtime) .kyma-model-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body:not(.desktop-runtime) .kyma-model-detail-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.08);
  color: rgba(255, 213, 188, 0.88);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

body:not(.desktop-runtime) .kyma-model-grid::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(255, 106, 26, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.12), transparent 62%);
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-model-node {
  position: relative;
  z-index: 1;
  min-height: 132px;
  padding: 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.036);
  color: rgba(248, 247, 242, 0.82);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

body:not(.desktop-runtime) .kyma-model-node:hover,
body:not(.desktop-runtime) .kyma-model-node.is-active {
  border-color: rgba(255, 106, 26, 0.46);
  background: rgba(255, 106, 26, 0.08);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(255, 106, 26, 0.12);
  transform: translateY(-2px);
}

body:not(.desktop-runtime) .kyma-model-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 236, 227, 0.9));
  color: #17130f;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 0 22px rgba(255, 106, 26, 0.1);
}

body:not(.desktop-runtime) .kyma-model-node.is-active .kyma-model-icon,
body:not(.desktop-runtime) .kyma-model-node:hover .kyma-model-icon {
  background: #ff6a1a;
  color: #111;
}

body:not(.desktop-runtime) .kyma-model-icon svg {
  width: 25px;
  height: 25px;
}

body:not(.desktop-runtime) .kyma-model-node > span:last-child {
  display: grid;
  gap: 7px;
}

body:not(.desktop-runtime) .kyma-model-node strong {
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.05;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-model-node small {
  max-width: 25ch;
  color: rgba(248, 247, 242, 0.72);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.36;
}

body:not(.desktop-runtime) .kyma-model-node:hover strong,
body:not(.desktop-runtime) .kyma-model-node.is-active strong {
  color: #fff;
}

body:not(.desktop-runtime) .kyma-model-node:hover small,
body:not(.desktop-runtime) .kyma-model-node.is-active small {
  color: rgba(255, 232, 218, 0.86);
}

@keyframes kymaModelDetailIn {
  from {
    opacity: 0.72;
    transform: translateY(5px);
  }

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

body:not(.desktop-runtime) .kyma-developer-ecosystem-section {
  position: relative;
  min-height: min(100vh, 980px);
  padding: clamp(70px, 7vw, 118px) 0 clamp(78px, 8vw, 126px);
  display: grid;
  gap: clamp(30px, 4vw, 54px);
  overflow: hidden;
  color: #f8f7f2;
  border-top: 1px solid rgba(255, 106, 26, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 24%, rgba(255, 106, 26, 0.18), transparent 34%),
    linear-gradient(180deg, #050605 0%, #030403 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-developer-ecosystem-section::before,
body:not(.desktop-runtime) .kyma-developer-ecosystem-section::after {
  display: none;
}

body:not(.desktop-runtime) .kyma-developer-ecosystem-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 clamp(24px, 6vw, 112px);
  text-align: center;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .home-kicker {
  color: rgba(248, 247, 242, 0.72);
}

body:not(.desktop-runtime) .kyma-developer-ecosystem-copy h2 {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0;
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: clamp(2.15rem, 3.35vw, 4.05rem);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-developer-ecosystem-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 247, 242, 0.68);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .kyma-ecosystem-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

body:not(.desktop-runtime) .kyma-ecosystem-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 2px 0;
  animation: kymaEcosystemMarquee 34s linear infinite;
}

body:not(.desktop-runtime) .kyma-ecosystem-marquee.reverse .kyma-ecosystem-track {
  animation-direction: reverse;
  animation-duration: 42s;
}

body:not(.desktop-runtime) .app-logo {
  min-width: 128px;
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  color: rgba(248, 247, 242, 0.86);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.9rem;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

body:not(.desktop-runtime) .app-logo img {
  width: 24px;
  height: 24px;
  padding: 7px;
  display: block;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-sizing: content-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 0 22px rgba(255, 106, 26, 0.09);
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars article {
  min-height: 148px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.07), transparent 46%),
    rgba(4, 5, 4, 0.72);
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars strong {
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  font-weight: 520;
  line-height: 1.04;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-ecosystem-pillars small {
  color: rgba(248, 247, 242, 0.6);
  font-size: 0.92rem;
  line-height: 1.48;
}

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

@media (prefers-reduced-motion: reduce) {
  body:not(.desktop-runtime) .kyma-ecosystem-track {
    animation: none;
  }
}

body:not(.desktop-runtime) .home-dashboard > .kyma-dark-section,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-quote-section,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section {
  --site-text: #fcfaf4;
  --site-muted: rgba(252, 250, 244, 0.68);
  --site-line: rgba(252, 250, 244, 0.14);
  color: var(--site-text) !important;
  border-top-color: rgba(255, 106, 26, 0.18) !important;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 50% 24%, rgba(255, 106, 26, 0.18), transparent 34%),
    linear-gradient(180deg, #050605 0%, #030403 100%) !important;
  background-size: 116px 116px, 116px 116px, auto, auto !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-quote-section h2,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section h2,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section strong,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .app-logo,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .kyma-ecosystem-pillars span {
  color: #fcfaf4 !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section p,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section small,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-quote-section p {
  color: rgba(252, 250, 244, 0.66) !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .app-logo {
  border-color: rgba(252, 250, 244, 0.14);
  background:
    linear-gradient(180deg, rgba(252, 250, 244, 0.11), rgba(252, 250, 244, 0.045)),
    rgba(252, 250, 244, 0.035);
  color: rgba(252, 250, 244, 0.88);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .app-logo img {
  background: rgba(252, 250, 244, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 24px rgba(255, 106, 26, 0.14);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .kyma-ecosystem-pillars {
  border-color: rgba(252, 250, 244, 0.12);
  background: rgba(252, 250, 244, 0.08);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section .kyma-ecosystem-pillars article {
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.09), transparent 48%),
    rgba(4, 5, 4, 0.76);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-developer-quote-section *,
body:not(.desktop-runtime) .home-dashboard > .kyma-developer-ecosystem-section * {
  border-color: rgba(252, 250, 244, 0.14);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-node strong,
body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-detail strong {
  color: #fcfaf4 !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-node small,
body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-detail p {
  color: rgba(252, 250, 244, 0.72) !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-node:hover small,
body:not(.desktop-runtime) .home-dashboard > .kyma-model-showcase-section .kyma-model-node.is-active small {
  color: rgba(255, 232, 218, 0.9) !important;
}

body:not(.desktop-runtime) .kyma-neural-inputs-section {
  position: relative;
  min-height: auto;
  padding: clamp(48px, 6vw, 82px) clamp(24px, 7vw, 132px);
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  overflow: hidden;
  color: #fcfaf4;
  border-top: 1px solid rgba(255, 106, 26, 0.18);
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 52% 12%, rgba(255, 106, 26, 0.12), transparent 30%),
    linear-gradient(180deg, #030403 0%, #050605 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-neural-inputs-title {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  color: #fcfaf4;
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 3.45vw, 4.15rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-neural-inputs-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
  margin: 0 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 70px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-title {
  color: #fcfaf4 !important;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars {
  width: min(100%, 430px);
  margin: 0;
  grid-template-columns: 1fr;
  border-color: rgba(252, 250, 244, 0.12);
  background: rgba(252, 250, 244, 0.055);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars article {
  min-height: 96px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.08), transparent 48%),
    rgba(4, 5, 4, 0.72);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars article + article {
  border-top: 1px solid rgba(252, 250, 244, 0.1);
  border-left: 0;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars strong {
  color: #fcfaf4 !important;
  font-size: clamp(1rem, 1.18vw, 1.28rem);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars small {
  color: rgba(252, 250, 244, 0.64) !important;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

body:not(.desktop-runtime) .kyma-neural-inputs-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  margin: 0;
  justify-self: start;
}

body:not(.desktop-runtime) .kyma-neural-inputs-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(252, 250, 244, 0.12);
  border-radius: 8px;
  background: #090a09;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 106, 26, 0.08);
}

body:not(.desktop-runtime) .kyma-careers-section,
body:not(.desktop-runtime) .kyma-blog-section {
  scroll-margin-top: 112px;
  min-height: min(100vh, 980px);
  padding: clamp(68px, 8vw, 124px) clamp(24px, 6vw, 112px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    #f7f7f5;
  background-size: 116px 116px, 116px 116px, auto;
}

body:not(.desktop-runtime) .public-page-section {
  width: 100%;
  color: #111;
}

body:not(.desktop-runtime) .public-page-section .home-kicker {
  position: relative;
  padding-left: 32px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.9rem;
  font-weight: 620;
  text-transform: none;
}

body:not(.desktop-runtime) .public-page-section .home-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  border: 1px dashed rgba(255, 106, 26, 0.72);
  background: radial-gradient(circle at center, #ff6a1a 0 4px, transparent 5px);
}

body:not(.desktop-runtime) .kyma-careers-hero,
body:not(.desktop-runtime) .kyma-blog-header {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(28px, 6vw, 96px);
}

body:not(.desktop-runtime) .kyma-careers-section h2,
body:not(.desktop-runtime) .kyma-blog-section h2 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-size: clamp(2.45rem, 4.4vw, 5.6rem);
  font-weight: 640;
  line-height: 1;
}

body:not(.desktop-runtime) .kyma-careers-section p,
body:not(.desktop-runtime) .kyma-blog-header p {
  max-width: 620px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  line-height: 1.64;
}

body:not(.desktop-runtime) .kyma-careers-hero-simple {
  max-width: 1320px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(30px, 3.8vw, 54px);
}

body:not(.desktop-runtime) .kyma-careers-hero-simple .kyma-section-copy {
  max-width: 1320px;
}

body:not(.desktop-runtime) .kyma-careers-hero-simple h2 {
  max-width: 1120px;
}

body:not(.desktop-runtime) .kyma-careers-hero-simple p {
  max-width: 960px;
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
}

body:not(.desktop-runtime) .kyma-careers-role-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto clamp(520px, 70vh, 840px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

body:not(.desktop-runtime) .kyma-careers-role-card {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(28px, 5vw, 96px);
  padding: clamp(18px, 1.8vw, 24px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: transparent;
  color: #111;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 180ms ease, opacity 180ms ease;
}

body:not(.desktop-runtime) .kyma-careers-role-card:hover,
body:not(.desktop-runtime) .kyma-careers-role-card:focus-visible {
  border-color: rgba(17, 17, 17, 0.34);
}

body:not(.desktop-runtime) .kyma-careers-role-category {
  color: #111;
  font-size: clamp(0.92rem, 1.08vw, 1.12rem);
  font-weight: 560;
  line-height: 1.08;
}

body:not(.desktop-runtime) .kyma-careers-role-detail {
  display: grid;
  gap: 4px;
}

body:not(.desktop-runtime) .kyma-careers-role-card strong {
  max-width: none;
  color: #111;
  font-size: clamp(0.94rem, 1.08vw, 1.12rem);
  font-weight: 560;
  line-height: 1.18;
}

body:not(.desktop-runtime) .kyma-careers-role-card small {
  max-width: none;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.28;
}

body:not(.desktop-runtime) .kyma-careers-role-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
}

body:not(.desktop-runtime) .kyma-careers-role-arrow::before,
body:not(.desktop-runtime) .kyma-careers-role-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #111;
}

body:not(.desktop-runtime) .kyma-careers-role-arrow::before {
  width: 22px;
  height: 2px;
  transform: translateY(-50%);
}

body:not(.desktop-runtime) .kyma-careers-role-arrow::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

body:not(.desktop-runtime) .kyma-careers-primary-link,
body:not(.desktop-runtime) .kyma-careers-apply-button {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body:not(.desktop-runtime) .kyma-careers-primary-link::after,
body:not(.desktop-runtime) .kyma-careers-apply-button::after {
  content: "↗";
  color: #ff6a1a;
  font-family: var(--font-mono);
}

body:not(.desktop-runtime) .kyma-careers-primary-link:hover,
body:not(.desktop-runtime) .kyma-careers-primary-link:focus-visible,
body:not(.desktop-runtime) .kyma-careers-apply-button:hover,
body:not(.desktop-runtime) .kyma-careers-apply-button:focus-visible {
  border-color: rgba(255, 106, 26, 0.38);
  box-shadow: 0 22px 54px rgba(255, 106, 26, 0.14);
  transform: translateY(-1px);
}

body:not(.desktop-runtime) .kyma-careers-schematic {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.86);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

body:not(.desktop-runtime) .career-schematic-node {
  position: absolute;
  min-width: 112px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

body:not(.desktop-runtime) .career-schematic-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(255, 106, 26, 0.18);
  border-radius: inherit;
}

body:not(.desktop-runtime) .node-core {
  left: 50%;
  top: 50%;
  border-color: rgba(255, 106, 26, 0.42);
  background: #111;
  color: #fff;
  transform: translate(-50%, -50%);
}

body:not(.desktop-runtime) .node-hardware {
  left: 11%;
  top: 18%;
}

body:not(.desktop-runtime) .node-models {
  right: 12%;
  top: 19%;
}

body:not(.desktop-runtime) .node-platform {
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
}

body:not(.desktop-runtime) .career-schematic-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.72), rgba(17, 17, 17, 0.18));
  transform-origin: left center;
}

body:not(.desktop-runtime) .line-a {
  transform: rotate(214deg);
}

body:not(.desktop-runtime) .line-b {
  transform: rotate(-34deg);
}

body:not(.desktop-runtime) .line-c {
  width: 31%;
  transform: rotate(90deg);
}

body:not(.desktop-runtime) .kyma-careers-grid,
body:not(.desktop-runtime) .kyma-blog-grid {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

body:not(.desktop-runtime) .kyma-careers-grid article {
  min-height: 300px;
  padding: clamp(24px, 2.8vw, 36px);
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 58px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .kyma-careers-grid span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 760;
}

body:not(.desktop-runtime) .kyma-careers-grid strong {
  color: #111;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  line-height: 1.04;
}

body:not(.desktop-runtime) .kyma-careers-grid small {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.98rem;
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-careers-application {
  max-width: 1380px;
  width: 100%;
  margin: clamp(24px, 4vw, 54px) auto 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

body:not(.desktop-runtime) .kyma-careers-application-copy,
body:not(.desktop-runtime) .kyma-careers-application-form {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.06);
}

body:not(.desktop-runtime) .kyma-careers-application-copy {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.2vw, 42px);
}

body:not(.desktop-runtime) .kyma-careers-application-copy > span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-careers-application-copy h3 {
  margin: 0;
  color: #111;
  font-size: clamp(1.8rem, 2.9vw, 3.4rem);
  font-weight: 650;
  line-height: 0.98;
}

body:not(.desktop-runtime) .kyma-careers-application-copy p {
  margin: 0;
}

body:not(.desktop-runtime) .kyma-careers-application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.5vw, 30px);
}

body:not(.desktop-runtime) .kyma-careers-application-form label,
body:not(.desktop-runtime) .kyma-careers-application-form fieldset {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

body:not(.desktop-runtime) .kyma-careers-application-form .kyma-careers-form-wide,
body:not(.desktop-runtime) .kyma-careers-application-form fieldset {
  grid-column: 1 / -1;
}

body:not(.desktop-runtime) .kyma-careers-application-form span,
body:not(.desktop-runtime) .kyma-careers-application-form legend {
  color: #111;
  font-size: 0.78rem;
  font-weight: 780;
}

body:not(.desktop-runtime) .kyma-careers-application-form fieldset p {
  margin: 0 0 4px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.88rem;
  line-height: 1.45;
}

body:not(.desktop-runtime) .kyma-careers-application-form input,
body:not(.desktop-runtime) .kyma-careers-application-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font: inherit;
  outline: none;
}

body:not(.desktop-runtime) .kyma-careers-application-form input {
  min-height: 46px;
  padding: 0 13px;
}

body:not(.desktop-runtime) .kyma-careers-application-form input[type="file"] {
  padding: 12px;
  color: rgba(17, 17, 17, 0.58);
}

body:not(.desktop-runtime) .kyma-careers-application-form textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

body:not(.desktop-runtime) .kyma-careers-application-form input:focus,
body:not(.desktop-runtime) .kyma-careers-application-form textarea:focus {
  border-color: rgba(255, 106, 26, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.09);
}

body:not(.desktop-runtime) .kyma-careers-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body:not(.desktop-runtime) .kyma-careers-interest-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(244, 241, 233, 0.62);
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.82rem;
  font-weight: 680;
}

body:not(.desktop-runtime) .kyma-careers-interest-grid input {
  width: auto;
  min-height: 0;
  accent-color: #ff6a1a;
}

body:not(.desktop-runtime) .kyma-careers-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

body:not(.desktop-runtime) .kyma-careers-form-actions small {
  max-width: 360px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.78rem;
  line-height: 1.45;
}

body:not(.desktop-runtime) .kyma-careers-form-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 106, 26, 0.38);
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.1);
  color: #111;
  font-size: 0.8rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

body:not(.desktop-runtime) .kyma-careers-footer {
  max-width: 1380px;
  margin: clamp(24px, 3vw, 44px) auto 0;
  padding: clamp(20px, 2.4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

body:not(.desktop-runtime) .kyma-careers-footer span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-careers-footer strong {
  color: #111;
  font-size: 1rem;
}

body:not(.desktop-runtime) .kyma-careers-footer > div {
  display: grid;
  gap: 6px;
}

body:not(.desktop-runtime) .kyma-careers-footer-link {
  text-decoration: none;
}

body:not(.desktop-runtime) .kyma-blog-section {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    #f4f4f2;
  background-size: 116px 116px, 116px 116px, auto;
}

body:not(.desktop-runtime) .kyma-blog-header {
  align-items: start;
}

body:not(.desktop-runtime) .kyma-blog-section h2 {
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  font-weight: 520;
  letter-spacing: -0.026em;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-blog-card {
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .kyma-blog-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body:not(.desktop-runtime) .kyma-blog-card-body {
  padding: clamp(22px, 2.6vw, 34px);
  display: grid;
  gap: 14px;
  align-content: start;
}

body:not(.desktop-runtime) .kyma-blog-card span {
  color: rgba(17, 17, 17, 0.48);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-blog-card strong {
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 520;
  line-height: 1.17;
  letter-spacing: -0.01em;
}

body:not(.desktop-runtime) .kyma-blog-card small {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.98rem;
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-blog-card em {
  width: fit-content;
  margin-top: 4px;
  padding: 4px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: rgba(17, 17, 17, 0.64);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 680;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .kyma-region-intro,
  body:not(.desktop-runtime) .kyma-region-grid,
  body:not(.desktop-runtime) .kyma-careers-hero,
  body:not(.desktop-runtime) .kyma-blog-header,
  body:not(.desktop-runtime) .kyma-careers-grid,
  body:not(.desktop-runtime) .kyma-careers-application,
  body:not(.desktop-runtime) .kyma-blog-grid {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-region-section {
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-region-card {
    min-height: auto;
  }

  body:not(.desktop-runtime) .kyma-region-card figure {
    min-height: 260px;
  }

  body:not(.desktop-runtime) .kyma-mission-band {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-headband-visual {
    min-height: 420px;
  }

  body:not(.desktop-runtime) .kyma-careers-section,
  body:not(.desktop-runtime) .kyma-blog-section {
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-careers-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body:not(.desktop-runtime) .kyma-careers-application-copy {
    position: static;
  }

  body:not(.desktop-runtime) .kyma-careers-interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.desktop-runtime) .kyma-blog-card {
    grid-template-rows: 220px 1fr;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) h2 {
    white-space: normal;
  }

  body:not(.desktop-runtime) .kyma-careers-role-card {
    min-height: 86px;
    grid-template-columns: minmax(68px, 0.34fr) minmax(0, 1fr) 24px;
    gap: 14px;
    padding: 15px 0;
    border-radius: 0;
  }

  body:not(.desktop-runtime) .kyma-careers-role-category,
  body:not(.desktop-runtime) .kyma-careers-role-card strong {
    font-size: 0.86rem;
  }

  body:not(.desktop-runtime) .kyma-careers-role-card small {
    font-size: 0.74rem;
  }

  body:not(.desktop-runtime) .kyma-careers-role-arrow {
    width: 21px;
    height: 21px;
  }

  body:not(.desktop-runtime) .kyma-careers-role-arrow::before {
    width: 19px;
  }

  body:not(.desktop-runtime) .kyma-careers-role-arrow::after {
    width: 8px;
    height: 8px;
  }

  body:not(.desktop-runtime) .kyma-careers-application-form,
  body:not(.desktop-runtime) .kyma-careers-interest-grid {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-careers-primary-link,
  body:not(.desktop-runtime) .kyma-careers-apply-button,
  body:not(.desktop-runtime) .kyma-careers-form-actions a,
  body:not(.desktop-runtime) .kyma-careers-footer-link {
    width: 100%;
  }

  body:not(.desktop-runtime) .kyma-careers-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Dedicated public pages use the dark hero language, not the white home sections. */
body:not(.desktop-runtime) .studies-workspace:has(.public-page-section:not(.hidden)) {
  display: block;
  min-height: 100vh;
  padding: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 106, 26, 0.14), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #050605 0%, #030403 100%);
  background-size: auto, 116px 116px, 116px 116px, auto;
}

body:not(.desktop-runtime) .public-page-section:not(.hidden) {
  display: block;
  width: 100%;
  min-height: 100vh;
  padding: clamp(116px, 15vh, 172px) clamp(34px, 7.5vw, 118px) clamp(72px, 8vw, 118px);
  color: rgba(252, 250, 244, 0.96);
  background: transparent;
}

body:not(.desktop-runtime) .public-page-section .home-kicker {
  color: rgba(252, 250, 244, 0.82);
}

body:not(.desktop-runtime) .public-page-section h2,
body:not(.desktop-runtime) .public-page-section strong {
  color: rgba(252, 250, 244, 0.98);
}

body:not(.desktop-runtime) .public-page-section p,
body:not(.desktop-runtime) .public-page-section small {
  color: rgba(252, 250, 244, 0.68);
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section {
  background: transparent;
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-schematic {
  border-color: rgba(250, 248, 242, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(250, 248, 242, 0.07);
}

body:not(.desktop-runtime) .public-page-section .career-schematic-node {
  border-color: rgba(250, 248, 242, 0.18);
  background: rgba(5, 6, 5, 0.78);
  color: rgba(252, 250, 244, 0.9);
}

body:not(.desktop-runtime) .public-page-section .node-core {
  border-color: rgba(255, 106, 26, 0.58);
  background: #ff6a1a;
  color: #080908;
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-grid article,
body:not(.desktop-runtime) .public-page-section .kyma-blog-card,
body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-copy,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form,
body:not(.desktop-runtime) .public-page-section .kyma-careers-footer {
  border-color: rgba(250, 248, 242, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(5, 6, 5, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(250, 248, 242, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

body:not(.desktop-runtime) .public-page-section .kyma-blog-card-body {
  background: rgba(5, 6, 5, 0.96);
}

body:not(.desktop-runtime) .public-page-section .kyma-blog-card span,
body:not(.desktop-runtime) .public-page-section .kyma-blog-card em,
body:not(.desktop-runtime) .public-page-section .kyma-careers-grid span,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-copy > span,
body:not(.desktop-runtime) .public-page-section .kyma-careers-footer span {
  color: #ff6a1a;
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card strong {
  color: rgba(252, 250, 244, 0.98);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card small {
  color: rgba(252, 250, 244, 0.68);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card {
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(5, 6, 5, 0.72);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card:hover,
body:not(.desktop-runtime) .public-page-section .kyma-careers-role-card:focus-visible {
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(5, 6, 5, 0.8);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-application-copy h3,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form span,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form legend {
  color: rgba(252, 250, 244, 0.96);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form fieldset p {
  color: rgba(252, 250, 244, 0.6);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form input,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form textarea,
body:not(.desktop-runtime) .public-page-section .kyma-careers-interest-grid label {
  border-color: rgba(250, 248, 242, 0.14);
  background: rgba(250, 248, 242, 0.055);
  color: rgba(252, 250, 244, 0.88);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form input::placeholder,
body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form textarea::placeholder {
  color: rgba(252, 250, 244, 0.36);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-application-form input[type="file"] {
  color: rgba(252, 250, 244, 0.62);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-form-actions small {
  color: rgba(252, 250, 244, 0.54);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-form-actions a {
  color: rgba(252, 250, 244, 0.96);
}

body:not(.desktop-runtime) .public-page-section .kyma-blog-card em {
  border-color: rgba(255, 106, 26, 0.35);
  background: rgba(255, 106, 26, 0.06);
}

body:not(.desktop-runtime) .public-page-section .kyma-careers-footer .ghost-button {
  border-color: rgba(255, 106, 26, 0.44);
  background: rgba(255, 106, 26, 0.08);
  color: rgba(252, 250, 244, 0.94);
}

body:not(.desktop-runtime) .public-page-section:not(.kyma-careers-section) .kyma-careers-hero {
  max-width: 980px;
  grid-template-columns: 1fr;
}

body:not(.desktop-runtime) .public-page-section h2,
body:not(.desktop-runtime) .public-page-section .kyma-blog-card strong {
  font-family: "Manrope", var(--font-interface);
  font-weight: 520;
  letter-spacing: -0.02em;
  text-transform: none;
}

body:not(.desktop-runtime) .public-page-section h2 {
  max-width: 960px;
  font-size: clamp(2.2rem, 3.05vw, 3.9rem);
  line-height: 1.08;
}

body:not(.desktop-runtime) .public-page-section .kyma-blog-card strong {
  font-size: clamp(1.25rem, 1.55vw, 1.72rem);
  line-height: 1.16;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) {
  padding: 0;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) {
  color: #111;
  background: #f7f7f4;
}

body:not(.desktop-runtime) .app-shell:has(.kyma-blog-section:not(.hidden)),
body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)),
body:not(.desktop-runtime) .studies-workspace:has(.kyma-blog-section:not(.hidden)) {
  background: #f7f7f4;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) h2,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) strong {
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) p,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) small {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) {
  padding-top: clamp(92px, 10vh, 126px);
  padding-inline: clamp(34px, 7.5vw, 118px);
  padding-bottom: clamp(96px, 11vw, 170px);
  color: #111;
  background: #f7f7f4;
}

body:not(.desktop-runtime) .app-shell:has(.kyma-careers-section:not(.hidden)) {
  background: #f7f7f4;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)),
body:not(.desktop-runtime) .studies-workspace:has(.kyma-careers-section:not(.hidden)) {
  background: #f7f7f4;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) h2,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) strong {
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) p,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) small {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) h2 {
  max-width: none;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.9rem, 2.55vw, 3.05rem);
  font-weight: 520;
  letter-spacing: -0.022em;
  line-height: 1.04;
  text-transform: none;
  white-space: nowrap;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-section-copy p {
  font-family: "Manrope", var(--font-interface);
  font-weight: 440;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-brand-mark .site-logo-light {
  opacity: 0;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-brand-mark .site-logo-dark {
  opacity: 1;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header,
body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header.is-scrolled {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(21, 21, 21, 0.07);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav-tab {
  color: rgba(17, 17, 17, 0.58);
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav-tab:hover,
body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav .top-nav-tab.active,
body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"] {
  color: #111;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav .top-nav-tab.active::before,
body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
  background: #ff6a1a;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header-link.public-header-action {
  border-color: rgba(17, 17, 17, 0.18);
  color: #111;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header-cta.public-header-action {
  border-color: rgba(255, 106, 26, 0.5);
  background: rgba(255, 255, 255, 0.74);
  color: #111;
  box-shadow: none;
}

body:not(.desktop-runtime):has(.kyma-careers-section:not(.hidden)) .site-header-cta.public-header-action span {
  background: transparent;
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-card {
  border-color: rgba(17, 17, 17, 0.2);
  background: transparent;
  box-shadow: none;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-card:hover,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-card:focus-visible {
  border-color: rgba(17, 17, 17, 0.42);
  background: transparent;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-category {
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-arrow::before {
  background-color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-role-arrow::after {
  border-color: #111;
  background-color: transparent;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-brand-mark .site-logo-light {
  opacity: 0;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-brand-mark .site-logo-dark {
  opacity: 1;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header,
body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header.is-scrolled {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(21, 21, 21, 0.07);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav-tab {
  color: rgba(17, 17, 17, 0.58);
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav-tab:hover,
body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav .top-nav-tab.active,
body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"] {
  color: #111;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav .top-nav-tab.active::before,
body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
  background: #ff6a1a;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header-link.public-header-action {
  border-color: rgba(17, 17, 17, 0.18);
  color: #111;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header-cta.public-header-action {
  border-color: rgba(255, 106, 26, 0.5);
  background: rgba(255, 255, 255, 0.74);
  color: #111;
  box-shadow: none;
}

body:not(.desktop-runtime):has(.kyma-blog-section:not(.hidden)) .site-header-cta.public-header-action span {
  background: transparent;
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-hero {
  background: #f7f7f4;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .home-kicker {
  color: rgba(17, 17, 17, 0.58);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .home-kicker::before {
  border-color: rgba(255, 106, 26, 0.72);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post {
  border-color: rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post:hover,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post:focus-visible {
  border-color: rgba(255, 106, 26, 0.36);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.08);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post div {
  background: #fff;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post strong {
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post small {
  color: rgba(17, 17, 17, 0.62);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post em {
  border-color: rgba(17, 17, 17, 0.18);
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
}

body:not(.desktop-runtime) .public-page-section.kyma-article-page:not(.hidden) {
  padding: 0;
  color: #111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.022) 1px, transparent 1px),
    #f7f7f4;
  background-size: 112px 112px, 112px 112px, auto;
}

body:not(.desktop-runtime) .studies-workspace:has(.kyma-article-page:not(.hidden)) {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.022) 1px, transparent 1px),
    #f7f7f4;
  background-size: 112px 112px, 112px 112px, auto;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .app-shell {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.022) 1px, transparent 1px),
    #f7f7f4;
  background-size: 112px 112px, 112px 112px, auto;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-brand-mark .site-logo-light {
  opacity: 0;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-brand-mark .site-logo-dark {
  opacity: 1;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header,
body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header.is-scrolled {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 36px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav-tab {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav-tab:hover,
body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav .top-nav-tab.active,
body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"] {
  color: #0d0d0d;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav .top-nav-tab.active::before,
body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header .top-nav .top-nav-tab[aria-current="page"]::before {
  background: #ff6a1a;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-menu-toggle.public-header-action {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: #0d0d0d;
}

body:not(.desktop-runtime):has(.kyma-article-page:not(.hidden)) .site-header-cta.public-header-action {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

body:not(.desktop-runtime) .kyma-blog-hero {
  min-height: max(620px, 72vh);
  padding: clamp(92px, 10vh, 126px) clamp(34px, 7.5vw, 118px) clamp(46px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1320px);
  align-content: start;
  justify-content: start;
  gap: clamp(30px, 3.8vw, 54px);
}

body:not(.desktop-runtime) .public-page-section .kyma-blog-hero .kyma-blog-header {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-header {
  max-width: 1320px;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-header h2 {
  max-width: none;
  font-size: clamp(1.9rem, 2.55vw, 3.05rem);
  font-weight: 520;
  letter-spacing: -0.022em;
  line-height: 1.04;
  white-space: nowrap;
}

body:not(.desktop-runtime) .kyma-blog-filter {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(245, 244, 240, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

body:not(.desktop-runtime) .kyma-blog-filter button {
  appearance: none;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

body:not(.desktop-runtime) .kyma-blog-filter button:hover,
body:not(.desktop-runtime) .kyma-blog-filter button:focus-visible {
  color: #111;
  outline: none;
}

body:not(.desktop-runtime) .kyma-blog-filter button:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 106, 26, 0.24);
}

body:not(.desktop-runtime) .kyma-blog-filter button.active {
  background: #ff6a1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 106, 26, 0.2);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-header p {
  max-width: 960px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.64;
}

body:not(.desktop-runtime) .kyma-featured-post {
  display: grid;
  max-width: 640px;
  justify-self: start;
  grid-template-rows: 190px auto;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.16);
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(5, 6, 5, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(250, 248, 242, 0.06),
    0 28px 74px rgba(0, 0, 0, 0.34);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body:not(.desktop-runtime) .kyma-featured-post:hover,
body:not(.desktop-runtime) .kyma-featured-post:focus-visible {
  border-color: rgba(255, 106, 26, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(250, 248, 242, 0.08),
    0 32px 84px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 106, 26, 0.12);
  outline: none;
  transform: translateY(-3px);
}

body:not(.desktop-runtime) .kyma-featured-post img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

body:not(.desktop-runtime) .kyma-featured-post div {
  padding: clamp(18px, 2.2vw, 28px);
  display: grid;
  gap: 10px;
  background: rgba(5, 6, 5, 0.96);
}

body:not(.desktop-runtime) .kyma-featured-post span {
  color: #ff6a1a;
  font-family: "Manrope", var(--font-interface);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-featured-post strong {
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  font-weight: 560;
  line-height: 1.14;
  letter-spacing: -0.012em;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-featured-post small {
  max-width: 54ch;
  color: rgba(252, 250, 244, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

body:not(.desktop-runtime) .kyma-featured-post em {
  width: fit-content;
  margin-top: 6px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 106, 26, 0.38);
  color: rgba(255, 232, 218, 0.92);
  background: rgba(255, 106, 26, 0.08);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post {
  border-color: rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post:hover,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post:focus-visible {
  border-color: rgba(255, 106, 26, 0.36);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.08);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post div {
  background: #fff;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post strong {
  color: #111;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post small {
  color: rgba(17, 17, 17, 0.62);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post em {
  border-color: rgba(17, 17, 17, 0.18);
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) h2,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post span,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post strong,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post em,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card span,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card strong,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card em {
  font-family: "Manrope", var(--font-interface);
  text-transform: none;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) h2,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post strong,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card strong {
  letter-spacing: -0.02em;
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post span,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-featured-post em,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card span,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) .kyma-blog-card em {
  letter-spacing: 0;
}

body:not(.desktop-runtime) .kyma-article-page-hero {
  min-height: auto;
  padding: 14px 0 clamp(18px, 2.6vw, 28px);
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.8vw, 30px);
}

body:not(.desktop-runtime) .kyma-article-banner {
  width: min(calc(100% - clamp(32px, 6vw, 96px)), 1536px);
  margin: 0 auto;
  justify-self: stretch;
  height: clamp(170px, 16vw, 260px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #111;
}

body:not(.desktop-runtime) .kyma-article-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

body:not(.desktop-runtime) .kyma-article-title-block {
  width: min(calc(100% - 48px), 1040px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

body:not(.desktop-runtime) .kyma-article-category {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ff6a1a;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-article-title-block h2 {
  margin: 0;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body:not(.desktop-runtime) .kyma-article-page .kyma-article-date {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: "Manrope", var(--font-interface);
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-article-document {
  padding: 0 clamp(24px, 6vw, 86px) clamp(78px, 8vw, 118px);
  color: #111;
  background: transparent;
}

body:not(.desktop-runtime) .kyma-article-prose {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.desktop-runtime) .kyma-article-prose p {
  max-width: 960px;
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .kyma-article-prose p + p {
  margin-top: 0.78em;
}

body:not(.desktop-runtime) .kyma-article-prose .kyma-article-lede {
  max-width: 980px;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  font-weight: 650;
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-article-prose .kyma-article-pull {
  max-width: 960px;
  margin-block: 0.78em;
  padding: 0;
  border: 0;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  font-weight: 650;
  line-height: 1.62;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-article-prose strong {
  color: #111;
  font-weight: 760;
}

body:not(.desktop-runtime) .kyma-article-join-button {
  width: fit-content;
  margin-top: clamp(28px, 4vw, 44px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: #111;
  color: #fcfaf4;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

body:not(.desktop-runtime) .kyma-article-join-button::after {
  content: "→";
  margin-left: 12px;
}

body:not(.desktop-runtime) .kyma-article-join-button:hover,
body:not(.desktop-runtime) .kyma-article-join-button:focus-visible {
  background: #ff6a1a;
  color: #111;
  outline: none;
  transform: translateY(-1px);
}

body:not(.desktop-runtime) .kyma-blog-posts-section {
  padding: clamp(74px, 8vw, 118px) clamp(34px, 7.5vw, 118px);
  color: #111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    #f4f4f2;
  background-size: 116px 116px, 116px 116px, auto;
}

body:not(.desktop-runtime) .kyma-article-section {
  scroll-margin-top: 88px;
}

body:not(.desktop-runtime) .kyma-article-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

body:not(.desktop-runtime) .kyma-article-header {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

body:not(.desktop-runtime) .kyma-article-date {
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-family: "Manrope", var(--font-interface);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-article-header h3 {
  margin: 0;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-article-header > p:last-child {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-article-body {
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 68px rgba(17, 17, 17, 0.08);
}

body:not(.desktop-runtime) .kyma-article-body p {
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(1rem, 1.13vw, 1.13rem);
  line-height: 1.82;
}

body:not(.desktop-runtime) .kyma-article-body p + p {
  margin-top: 1.05em;
}

body:not(.desktop-runtime) .kyma-article-body p:nth-child(8),
body:not(.desktop-runtime) .kyma-article-body p:nth-child(19),
body:not(.desktop-runtime) .kyma-article-body p:nth-child(35),
body:not(.desktop-runtime) .kyma-article-body p:nth-child(39) {
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 650;
  line-height: 1.26;
}

body:not(.desktop-runtime) .kyma-article-body strong {
  color: #111;
  font-weight: 620;
}

body:not(.desktop-runtime) .kyma-blog-posts-header {
  max-width: 1380px;
  margin: 0 auto clamp(34px, 5vw, 66px);
  display: grid;
  gap: 18px;
}

body:not(.desktop-runtime) .kyma-blog-posts-header .home-kicker {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime) .kyma-blog-posts-header h3 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: none;
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card {
  border-color: rgba(17, 17, 17, 0.13);
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card-body {
  background: #fff;
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card span {
  color: rgba(17, 17, 17, 0.48);
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card strong {
  color: #111;
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card small {
  color: rgba(17, 17, 17, 0.62);
}

body:not(.desktop-runtime) .kyma-blog-posts-section .kyma-blog-card em {
  border-color: rgba(17, 17, 17, 0.18);
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
}

body:not(.desktop-runtime) .home-dashboard .kyma-state-section {
  --site-text: #fcfaf4;
  --site-muted: rgba(252, 250, 244, 0.68);
  --site-line: rgba(252, 250, 244, 0.1);
  scroll-margin-top: 104px;
  min-height: min(96vh, 980px);
  padding: clamp(76px, 8vw, 132px) clamp(24px, 6vw, 112px);
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 124px);
  overflow: hidden;
  color: var(--site-text);
  border-top: 1px solid rgba(255, 106, 26, 0.16);
  border-bottom: 1px solid rgba(252, 250, 244, 0.08);
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.042) 1px, transparent 1px),
    radial-gradient(circle at 78% 46%, rgba(255, 106, 26, 0.18), transparent 32%),
    linear-gradient(180deg, #020303 0%, #060706 56%, #0c0704 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .kyma-state-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

body:not(.desktop-runtime) .home-dashboard .kyma-state-section .home-kicker {
  width: fit-content;
  color: rgba(252, 250, 244, 0.74);
}

body:not(.desktop-runtime) .home-dashboard .kyma-state-section h2 {
  max-width: 840px;
  margin: 0;
  color: #fcfaf4;
  font-family: var(--font-industrial);
  font-size: clamp(2.6rem, 4.6vw, 5.95rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .home-dashboard .kyma-state-section p {
  max-width: 720px;
  margin: 0;
  color: rgba(252, 250, 244, 0.7);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
}

body:not(.desktop-runtime) .kyma-state-typeblock {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-top: clamp(6px, 1vw, 12px);
  padding: 12px;
  border: 1px solid rgba(252, 250, 244, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.08), transparent 46%),
    rgba(252, 250, 244, 0.035);
  box-shadow: inset 0 1px 0 rgba(252, 250, 244, 0.08);
}

body:not(.desktop-runtime) .kyma-state-typeblock article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(252, 250, 244, 0.08);
  border-radius: 12px;
  background: rgba(3, 4, 4, 0.58);
}

body:not(.desktop-runtime) .kyma-state-typeblock span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

body:not(.desktop-runtime) .home-dashboard .kyma-state-typeblock strong {
  color: rgba(252, 250, 244, 0.9);
  font-size: clamp(0.95rem, 1.04vw, 1.08rem);
  font-weight: 650;
  line-height: 1.42;
}

body:not(.desktop-runtime) .kyma-state-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 45vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(252, 250, 244, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.04) 1px, transparent 1px),
    rgba(3, 4, 4, 0.82);
  background-size: 58px 58px, 58px 58px, auto;
  box-shadow:
    inset 0 1px 0 rgba(252, 250, 244, 0.08),
    0 36px 98px rgba(0, 0, 0, 0.38),
    0 0 74px rgba(255, 106, 26, 0.14);
}

body:not(.desktop-runtime) .kyma-state-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 106, 26, 0.18);
  border-radius: 16px;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-state-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.08) contrast(1.08);
}

body:not(.desktop-runtime) .kyma-state-overlay {
  position: absolute;
  left: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 36px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

body:not(.desktop-runtime) .kyma-state-overlay span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 106, 26, 0.34);
  border-radius: 999px;
  background: rgba(3, 4, 4, 0.68);
  color: rgba(252, 250, 244, 0.82);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) {
  --site-text: #fcfaf4;
  --site-muted: rgba(252, 250, 244, 0.68);
  --site-line: rgba(252, 250, 244, 0.1);
  color: var(--site-text);
  border-top-color: rgba(255, 106, 26, 0.16);
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.042) 1px, transparent 1px),
    radial-gradient(circle at 78% 46%, rgba(255, 106, 26, 0.18), transparent 32%),
    linear-gradient(180deg, #020303 0%, #060706 56%, #0c0704 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) .home-kicker,
body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) p {
  color: var(--site-muted);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) h2,
body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) .kyma-state-typeblock strong {
  color: var(--site-text);
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-section {
  position: relative;
  min-height: auto;
  padding: clamp(54px, 6vw, 92px) clamp(24px, 6vw, 112px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(252, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(252, 250, 244, 0.034) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(255, 106, 26, 0.12), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(22, 212, 192, 0.08), transparent 30%),
    #030403;
  background-size: 112px 112px, 112px 112px, auto, auto, auto;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-section::before,
body:not(.desktop-runtime) .home-dashboard .kyma-build-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-section::before {
  top: -8px;
  bottom: 18%;
  left: clamp(72%, 78vw, 84%);
  width: clamp(72px, 7vw, 118px);
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(255, 106, 26, 0.32) 26% 26.7%, transparent 26.7% 100%),
    linear-gradient(90deg, transparent 0 100%, rgba(255, 106, 26, 0.22) 100% 100%);
  border-left: 1px dashed rgba(255, 106, 26, 0.28);
  border-right: 1px dashed rgba(255, 106, 26, 0.18);
  opacity: 0.68;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-section::after {
  left: clamp(70%, 76vw, 84%);
  top: clamp(24px, 5vw, 62px);
  width: min(18vw, 260px);
  height: 1px;
  background: rgba(255, 106, 26, 0.28);
  box-shadow:
    0 clamp(96px, 16vw, 190px) 0 rgba(255, 106, 26, 0.2),
    clamp(28px, 3vw, 58px) clamp(96px, 16vw, 190px) 0 rgba(255, 106, 26, 0.12);
  opacity: 0.78;
}

body:not(.desktop-runtime) .kyma-build-quote-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap h2 {
  position: relative;
  max-width: 1040px;
  margin: 0;
  color: #fcfaf4;
  font-family: var(--font-industrial);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap h2::before,
body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap h2::after {
  color: rgba(255, 106, 26, 0.88);
  font-family: var(--font-industrial);
  font-weight: 400;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap h2::before {
  content: "“";
  margin-right: 0.08em;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap h2::after {
  content: "”";
  margin-left: 0.08em;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-quote-wrap p {
  max-width: 820px;
  margin: 0;
  color: rgba(252, 250, 244, 0.7);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.65;
}

body:not(.desktop-runtime) .kyma-build-intro {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(18px, 4vw, 72px);
}

body:not(.desktop-runtime) .kyma-build-intro .home-kicker {
  grid-column: 1 / -1;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-intro h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 5.75rem);
  line-height: 0.98;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-intro p {
  max-width: 520px;
  color: rgba(252, 250, 244, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
  line-height: 1.62;
}

body:not(.desktop-runtime) .kyma-build-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(360px, 1fr) minmax(220px, 0.54fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

body:not(.desktop-runtime) .kyma-build-node {
  min-height: 240px;
  padding: clamp(18px, 2.2vw, 30px);
  display: grid;
  align-content: space-between;
  gap: 22px;
  border: 1px solid rgba(252, 250, 244, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(252, 250, 244, 0.055), rgba(252, 250, 244, 0.018)),
    rgba(5, 6, 5, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(252, 250, 244, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.22);
}

body:not(.desktop-runtime) .kyma-build-node span {
  width: fit-content;
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 780;
}

body:not(.desktop-runtime) .kyma-build-node strong {
  color: #fcfaf4;
  font-family: var(--font-industrial);
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  font-weight: 420;
  line-height: 1.02;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-build-node small {
  max-width: 34ch;
  color: rgba(252, 250, 244, 0.66);
  font-size: 0.96rem;
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-build-flow {
  position: relative;
  min-height: clamp(220px, 24vw, 340px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 26, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 26, 0.12), transparent 28%),
    linear-gradient(90deg, transparent, rgba(252, 250, 244, 0.04), transparent);
}

body:not(.desktop-runtime) .kyma-build-flow::before,
body:not(.desktop-runtime) .kyma-build-flow::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(252, 250, 244, 0.08);
  border-radius: 999px;
  animation: kymaBuildBreath 4.8s ease-in-out infinite;
}

body:not(.desktop-runtime) .kyma-build-flow::after {
  inset: 31%;
  border-color: rgba(255, 106, 26, 0.18);
  animation-delay: -2.4s;
}

body:not(.desktop-runtime) .kyma-build-flow svg {
  position: relative;
  z-index: 1;
  width: min(92%, 620px);
  height: auto;
  overflow: visible;
}

body:not(.desktop-runtime) .kyma-flow-baseline,
body:not(.desktop-runtime) .kyma-flow-active {
  fill: none;
  stroke-linecap: round;
}

body:not(.desktop-runtime) .kyma-flow-baseline {
  stroke: rgba(252, 250, 244, 0.18);
  stroke-width: 2;
}

body:not(.desktop-runtime) .kyma-flow-active {
  stroke: #ff6a1a;
  stroke-width: 4;
  stroke-dasharray: 74 510;
  filter: drop-shadow(0 0 14px rgba(255, 106, 26, 0.5));
  animation: kymaFlowTrace 3.9s linear infinite;
}

body:not(.desktop-runtime) .kyma-flow-label {
  position: absolute;
  z-index: 2;
  color: rgba(252, 250, 244, 0.62);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-flow-label.label-left {
  left: 9%;
  top: 20%;
}

body:not(.desktop-runtime) .kyma-flow-label.label-mid {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 106, 26, 0.86);
}

body:not(.desktop-runtime) .kyma-flow-label.label-right {
  right: 8%;
  bottom: 21%;
}

body:not(.desktop-runtime) .kyma-flow-pulse {
  position: absolute;
  z-index: 3;
  left: 11%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff6a1a;
  box-shadow: 0 0 0 8px rgba(255, 106, 26, 0.12), 0 0 26px rgba(255, 106, 26, 0.62);
  animation: kymaPulseTravel 4.2s cubic-bezier(0.45, 0, 0.18, 1) infinite;
}

body:not(.desktop-runtime) .kyma-flow-pulse.pulse-b {
  animation-delay: -1.4s;
  opacity: 0.72;
}

body:not(.desktop-runtime) .kyma-flow-pulse.pulse-c {
  animation-delay: -2.8s;
  opacity: 0.52;
}

body:not(.desktop-runtime) .kyma-build-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(252, 250, 244, 0.1);
  background: rgba(252, 250, 244, 0.1);
}

body:not(.desktop-runtime) .kyma-build-strip span {
  min-height: 72px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(3, 4, 4, 0.92);
  color: rgba(252, 250, 244, 0.72);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes kymaFlowTrace {
  to {
    stroke-dashoffset: -584;
  }
}

@keyframes kymaPulseTravel {
  0% {
    transform: translate(0, -50%) scale(0.72);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  50% {
    transform: translate(38vw, -50%) scale(1);
  }

  100% {
    transform: translate(78vw, -50%) scale(0.72);
    opacity: 0;
  }
}

@keyframes kymaBuildBreath {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

body:not(.desktop-runtime) .kyma-public-footer {
  position: relative;
  min-height: 520px;
  padding: clamp(58px, 7vw, 96px) clamp(34px, 7.5vw, 118px) clamp(118px, 13vw, 184px);
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(140px, 0.38fr));
  gap: clamp(28px, 6vw, 92px);
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: #111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.11) 1px, transparent 1px),
    #f4f4f2;
  background-size: 118px 92px, 118px 92px, auto;
}

body:not(.desktop-runtime) .public-page-section > .kyma-public-footer {
  margin: clamp(62px, 8vw, 118px) calc(clamp(34px, 7.5vw, 118px) * -1) calc(clamp(72px, 8vw, 118px) * -1);
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer {
  margin: 0 calc(clamp(34px, 7.5vw, 118px) * -1) calc(clamp(96px, 11vw, 170px) * -1);
}

body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer {
  margin: 0;
}

body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer {
  margin: 0;
}

body:not(.desktop-runtime) .kyma-footer-brand {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: clamp(70px, 9vw, 118px);
}

body:not(.desktop-runtime) .kyma-footer-brand img {
  width: clamp(138px, 12vw, 188px);
  height: auto;
  display: block;
}

body:not(.desktop-runtime) .kyma-footer-brand span {
  color: rgba(17, 17, 17, 0.52);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.4;
}

body:not(.desktop-runtime) .kyma-footer-column {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 24px;
}

body:not(.desktop-runtime) .kyma-footer-column strong {
  color: #111;
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 700;
  line-height: 1.1;
}

body:not(.desktop-runtime) .kyma-footer-column button,
body:not(.desktop-runtime) .kyma-footer-column a {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
  font-family: "Manrope", var(--font-interface);
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

body:not(.desktop-runtime) .kyma-footer-column button:hover,
body:not(.desktop-runtime) .kyma-footer-column a:hover {
  color: #ff6a1a;
}

body:not(.desktop-runtime) .kyma-footer-watermark {
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: -0.22em;
  color: rgba(17, 17, 17, 0.055);
  font-family: var(--font-industrial);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .public-page-section:not(.hidden) {
    padding: 112px 22px 72px;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) {
    padding-top: 94px;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-blog-section:not(.hidden) {
    padding: 0;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-article-page:not(.hidden) {
    padding: 0;
  }

  body:not(.desktop-runtime) .kyma-blog-hero {
    grid-template-columns: 1fr;
    padding: 112px 22px 64px;
    gap: 28px;
  }

  body:not(.desktop-runtime) .public-page-section .kyma-blog-hero .kyma-blog-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  body:not(.desktop-runtime) .kyma-blog-filter {
    width: 100%;
    justify-self: stretch;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body:not(.desktop-runtime) .kyma-blog-filter::-webkit-scrollbar {
    display: none;
  }

  body:not(.desktop-runtime) .kyma-blog-filter button {
    flex: 1 0 auto;
    min-width: max-content;
    padding: 0 13px;
  }

  body:not(.desktop-runtime) .kyma-featured-post {
    max-width: none;
    justify-self: stretch;
    grid-template-rows: 180px auto;
  }

  body:not(.desktop-runtime) .kyma-blog-posts-section {
    padding: 70px 22px;
  }

  body:not(.desktop-runtime) .kyma-article-page-hero {
    min-height: auto;
    padding: 12px 0 20px;
    gap: 20px;
  }

  body:not(.desktop-runtime) .kyma-article-banner {
    height: 150px;
  }

  body:not(.desktop-runtime) .kyma-article-title-block {
    width: calc(100% - 44px);
  }

  body:not(.desktop-runtime) .kyma-article-document {
    padding: 0 22px 62px;
  }

  body:not(.desktop-runtime) .kyma-article-title-block h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  body:not(.desktop-runtime) .kyma-article-prose p,
  body:not(.desktop-runtime) .kyma-article-prose .kyma-article-pull {
    line-height: 1.58;
  }

  body:not(.desktop-runtime) .kyma-article-prose {
    width: 100%;
  }

  body:not(.desktop-runtime) .kyma-article-prose p,
  body:not(.desktop-runtime) .kyma-article-prose .kyma-article-lede,
  body:not(.desktop-runtime) .kyma-article-prose .kyma-article-pull {
    max-width: none;
  }

  body:not(.desktop-runtime) .kyma-article-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body:not(.desktop-runtime) .kyma-article-header {
    position: static;
  }

  body:not(.desktop-runtime) .kyma-article-body {
    padding: 24px;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-state-section {
    min-height: auto;
    padding: 72px 22px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-state-section h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  body:not(.desktop-runtime) .kyma-build-system {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-build-intro {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-build-flow {
    min-height: 210px;
    border-radius: 18px;
  }

  body:not(.desktop-runtime) .kyma-build-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.desktop-runtime) .kyma-state-typeblock article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  body:not(.desktop-runtime) .kyma-state-visual {
    min-height: clamp(320px, 74vw, 520px);
    border-radius: 18px;
  }

  body:not(.desktop-runtime) .kyma-state-overlay {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  body:not(.desktop-runtime) .kyma-public-footer {
    min-height: 560px;
    padding: 50px 22px 120px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body:not(.desktop-runtime) .public-page-section > .kyma-public-footer {
    margin: 62px -22px -72px;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer {
    margin: 0;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer {
    margin: 0;
  }

  body:not(.desktop-runtime) .kyma-footer-brand {
    gap: 48px;
  }

  body:not(.desktop-runtime) .kyma-footer-column {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-hero,
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-careers-hero-simple,
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-section-copy {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 44px);
  }

  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) h2 {
    width: 100%;
    max-width: calc(100vw - 44px);
    font-size: clamp(2rem, 8.2vw, 2.7rem);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-careers-section:not(.hidden) .kyma-section-copy p {
    width: 100%;
    max-width: calc(100vw - 44px);
    font-size: clamp(0.95rem, 4vw, 1.04rem);
    line-height: 1.56;
    overflow-wrap: anywhere;
  }

  body:not(.desktop-runtime) .site-hero-copy.hero-brutalist-copy,
  body:not(.desktop-runtime) .site-hero h1,
  body:not(.desktop-runtime) .site-hero-lede {
    min-width: 0;
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body:not(.desktop-runtime) .site-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.3rem);
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section:not(.site-hero) h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body:not(.desktop-runtime) .kyma-state-copy,
  body:not(.desktop-runtime) .kyma-section-copy {
    min-width: 0;
    max-width: calc(100vw - 48px);
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-build-intro h2 {
    max-width: calc(100vw - 48px);
    font-size: clamp(1.8rem, 8.2vw, 2.25rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-build-intro p {
    max-width: calc(100vw - 48px);
  }

  body:not(.desktop-runtime) .kyma-build-node {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-height: 190px;
  }

  body:not(.desktop-runtime) .kyma-build-flow {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  body:not(.desktop-runtime) .kyma-flow-label.label-left,
  body:not(.desktop-runtime) .kyma-flow-label.label-right {
    display: none;
  }

  body:not(.desktop-runtime) .kyma-build-strip {
    width: 100%;
    max-width: calc(100vw - 48px);
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-build-strip span {
    min-height: 54px;
  }
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .kyma-orientation-section {
    min-height: auto;
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-orientation-grid {
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .kyma-orientation-grid article {
    grid-template-rows: clamp(240px, 58vw, 340px) auto;
  }

  body:not(.desktop-runtime) .kyma-orientation-grid figure {
    height: clamp(240px, 58vw, 340px);
  }

  body:not(.desktop-runtime) .kyma-orientation-video-section,
  body:not(.desktop-runtime) .kyma-orientation-video {
    min-height: auto;
    height: auto;
  }

  body:not(.desktop-runtime) .kyma-orientation-video-section {
    padding-block: 0;
  }

  body:not(.desktop-runtime) .kyma-orientation-video {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  body:not(.desktop-runtime) .kyma-orientation-stage {
    min-height: auto;
    grid-template-columns: 84px minmax(0, 1fr);
    grid-template-areas:
      "video video"
      "nav panel";
    align-items: stretch;
    gap: 12px;
    padding: 0 12px 26px;
  }

  body:not(.desktop-runtime) .kyma-orientation-stage .kyma-orientation-video {
    grid-area: video;
    width: calc(100% + 24px);
    max-width: none;
    margin-inline: -12px;
  }

  body:not(.desktop-runtime) .kyma-orientation-overlay {
    position: relative;
    left: auto;
    top: auto;
    grid-area: nav;
    width: 100%;
    display: grid;
    gap: 6px;
    transform: none;
  }

  body:not(.desktop-runtime) .kyma-orientation-hotspot {
    width: 100%;
    min-height: 44px;
    padding: 8px 7px;
    gap: 3px;
    border-radius: 8px;
    text-align: left;
  }

  body:not(.desktop-runtime) .kyma-orientation-hotspot span {
    font-size: 0.62rem;
  }

  body:not(.desktop-runtime) .kyma-orientation-hotspot strong {
    font-size: 0.76rem;
  }

  body:not(.desktop-runtime) .kyma-orientation-panel {
    position: relative;
    top: auto;
    right: auto;
    grid-area: panel;
    width: 100%;
    margin-top: 0;
    padding: 14px;
    border-radius: 10px;
    transform: none;
  }

  body:not(.desktop-runtime) .kyma-orientation-panel p {
    font-size: 0.9rem;
  }

  body:not(.desktop-runtime) .kyma-model-showcase-section {
    min-height: auto;
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-model-showcase-shell {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body:not(.desktop-runtime) .kyma-model-showcase-copy h2,
  body:not(.desktop-runtime) .kyma-model-showcase-copy p {
    max-width: 100%;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  body:not(.desktop-runtime) .kyma-orientation-video-section {
    height: 100svh;
    min-height: 100svh;
    padding-block: 0;
  }

  body:not(.desktop-runtime) .kyma-orientation-video {
    height: 100%;
    max-height: 100svh;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .kyma-orientation-intro h2,
  body:not(.desktop-runtime) .kyma-model-showcase-copy h2,
  body:not(.desktop-runtime) .kyma-neural-inputs-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  body:not(.desktop-runtime) .kyma-orientation-grid article > div {
    grid-template-columns: 38px 1fr;
    padding: 15px;
  }

  body:not(.desktop-runtime) .kyma-orientation-grid strong {
    font-size: 1.24rem;
  }

  body:not(.desktop-runtime) .kyma-orientation-grid small {
    max-width: 34ch;
  }

  body:not(.desktop-runtime) .kyma-model-node {
    grid-template-columns: 44px 1fr;
    min-height: 118px;
  }

  body:not(.desktop-runtime) .kyma-model-node small {
    max-width: none;
  }
}

@media (max-width: 980px) {
  html,
  body,
  .app-shell,
  .studies-workspace,
  body:not(.desktop-runtime) .home-dashboard,
  body:not(.desktop-runtime) .home-dashboard > section,
  body:not(.desktop-runtime) .public-page-section {
    max-width: 100%;
    overflow-x: clip;
  }

  body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section .kyma-mission-copy,
  body:not(.desktop-runtime) .kyma-developer-ecosystem-copy,
  body:not(.desktop-runtime) .kyma-ecosystem-marquee,
  body:not(.desktop-runtime) .kyma-ecosystem-pillars {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section h2,
  body:not(.desktop-runtime) .kyma-developer-ecosystem-copy h2 {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .study-feature-image {
    transform: none;
  }

  body:not(.desktop-runtime) .kyma-footer-watermark {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero,
  body:not(.desktop-runtime) .home-dashboard > .kyma-product-tech-section,
  body:not(.desktop-runtime) .kyma-developer-ecosystem-section,
  body:not(.desktop-runtime) .kyma-model-showcase-section,
  body:not(.desktop-runtime) .kyma-orientation-section {
    width: 100%;
    max-width: 100vw;
  }

  body:not(.desktop-runtime) .kyma-developer-ecosystem-copy {
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-ecosystem-pillars {
    width: calc(100% - 44px);
  }
}

/* Current landing refinements */
body:not(.desktop-runtime) .site-hero h1 {
  width: min(760px, 100%);
  font-size: clamp(2.24rem, 2.92vw, 3.68rem);
  line-height: 1.04;
  text-wrap: normal;
}

body:not(.desktop-runtime) .hero-heading-line {
  display: block;
  white-space: nowrap;
}

body:not(.desktop-runtime) .site-hero.kyma-hero-typewriting .hero-heading-line {
  min-height: 1.04em;
}

body:not(.desktop-runtime) .site-hero.kyma-hero-typewriting .hero-heading-line.is-typing::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0.82em;
  margin-left: 0.08em;
  border-right: 2px solid rgba(252, 250, 244, 0.78);
  transform: translateY(0.08em);
  animation: kymaHeroCaret 620ms steps(1, end) infinite;
}

body:not(.desktop-runtime) .site-hero.kyma-hero-typewriting .site-hero-lede,
body:not(.desktop-runtime) .site-hero.kyma-hero-typewriting .site-hero-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

body:not(.desktop-runtime) .site-hero.kyma-hero-type-complete .site-hero-lede,
body:not(.desktop-runtime) .site-hero.kyma-hero-type-complete .site-hero-actions {
  animation: kymaHeroTextReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body:not(.desktop-runtime) .site-hero.kyma-hero-type-complete .site-hero-actions {
  animation-delay: 90ms;
}

@keyframes kymaHeroTextReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

body:not(.desktop-runtime) .site-hero-lede {
  max-width: 680px;
}

/* Light home hero */
body:not(.desktop-runtime):has(#homeDashboard:not(.hidden)) .app-shell,
body:not(.desktop-runtime):has(#homeDashboard:not(.hidden)) .studies-workspace {
  background: #fff;
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero {
  color: #111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 54%, rgba(255, 106, 26, 0.13), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
  background-size: 116px 116px, 116px 116px, auto, auto;
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero::before {
  background: none;
  opacity: 0;
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero::after {
  border-left-color: rgba(255, 106, 26, 0.26);
  border-right-color: rgba(255, 106, 26, 0.38);
  opacity: 0.88;
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero h1 {
  color: #0d0d0d;
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero .site-hero-lede {
  color: rgba(17, 17, 17, 0.66);
}

body:not(.desktop-runtime) .site-hero.kyma-hero-typewriting .hero-heading-line.is-typing::after {
  border-right-color: rgba(17, 17, 17, 0.64);
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero .site-hero-button.primary {
  border-color: rgba(255, 106, 26, 0.88);
  background: #ff6a1a;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 42px rgba(255, 106, 26, 0.2);
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero .site-hero-button.primary:hover {
  border-color: rgba(232, 82, 10, 0.94);
  background: #f05f12;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 20px 46px rgba(255, 106, 26, 0.24);
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero .site-hero-button.secondary {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(17, 17, 17, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 14px 32px rgba(17, 17, 17, 0.055);
}

body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero .site-hero-button.secondary:hover {
  border-color: rgba(255, 106, 26, 0.5);
  background: rgba(255, 246, 240, 0.86);
  color: #111;
}

body:not(.desktop-runtime) .kyma-hero-visual {
  filter: drop-shadow(0 28px 52px rgba(17, 17, 17, 0.12));
}

body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
  opacity: 0.98;
}

body:not(.desktop-runtime) .kyma-build-overview-section {
  padding: clamp(68px, 6.2vw, 98px) clamp(24px, 6vw, 112px);
  min-height: auto;
  color: #111;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #f4f4f2;
}

body:not(.desktop-runtime) .kyma-build-overview {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 3.5vw, 44px);
}

body:not(.desktop-runtime) .kyma-build-overview-copy {
  display: grid;
  gap: 12px;
  text-align: left;
}

body:not(.desktop-runtime) .home-dashboard .kyma-build-overview-copy h2 {
  max-width: 920px;
  margin: 0;
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(2rem, 2.75vw, 3.25rem);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-build-overview-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: start;
  padding-top: clamp(24px, 2.6vw, 36px);
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

body:not(.desktop-runtime) .kyma-build-overview-panel > p {
  max-width: 34ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.55;
}

body:not(.desktop-runtime) .kyma-build-overview-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
}

body:not(.desktop-runtime) .kyma-build-overview-list article {
  min-height: 96px;
  padding: clamp(18px, 2vw, 24px) 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}

body:not(.desktop-runtime) .kyma-build-overview-list article div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

body:not(.desktop-runtime) .kyma-build-overview-list span {
  color: #ff6a1a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-top: 0.28em;
}

body:not(.desktop-runtime) .kyma-build-overview-list strong {
  color: #111;
  font-family: var(--font-industrial);
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .kyma-build-overview-list small {
  max-width: 48ch;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.9rem;
  line-height: 1.46;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section {
  margin-top: clamp(34px, 4vw, 64px);
}

body:not(.desktop-runtime) .kyma-neural-inputs-section {
  margin-top: 0;
  margin-bottom: clamp(42px, 5vw, 82px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer,
body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer {
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  overflow: hidden;
  background: #f4f4f2;
  background-size: auto;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer .kyma-footer-inner,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer .kyma-footer-inner,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer .kyma-footer-inner,
body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer .kyma-footer-inner {
  position: relative;
  width: min(100%, 1240px);
  min-height: 300px;
  margin: 0 auto;
  padding: clamp(44px, 5.5vw, 76px) clamp(24px, 6vw, 72px) clamp(96px, 9vw, 128px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  overflow: hidden;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer .kyma-footer-brand,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer .kyma-footer-brand,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer .kyma-footer-brand,
body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer .kyma-footer-brand {
  gap: clamp(54px, 6vw, 82px);
}

body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer .kyma-footer-column,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer .kyma-footer-column,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer .kyma-footer-column,
body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer .kyma-footer-column {
  gap: 18px;
}

body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer .kyma-footer-watermark,
body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer .kyma-footer-watermark,
body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer .kyma-footer-watermark,
body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer .kyma-footer-watermark {
  display: none;
}

body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer {
  width: auto;
  margin-right: calc(clamp(34px, 7.5vw, 118px) * -1);
  margin-bottom: calc(clamp(96px, 11vw, 170px) * -1);
  margin-left: calc(clamp(34px, 7.5vw, 118px) * -1);
}

@media (min-width: 981px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    min-height: min(58vh, 610px);
    padding-top: clamp(34px, 4vh, 54px);
    padding-bottom: 0;
    align-items: center;
  }

  body:not(.desktop-runtime) .site-hero-copy.hero-brutalist-copy {
    padding-top: clamp(34px, 6vh, 64px);
    transform: translateY(-76px);
  }

  body:not(.desktop-runtime) .site-hero.kyma-vision-hero .site-hero-actions {
    width: auto;
    justify-self: start;
    justify-content: flex-start;
    margin-left: clamp(34px, 4.2vw, 74px);
    margin-right: 0;
  }

  body:not(.desktop-runtime) .kyma-hero-visual {
    width: min(48vw, 820px);
    min-width: 500px;
    min-height: min(62vh, 650px);
    transform: translate(5vw, -8vh);
  }

  body:not(.desktop-runtime) .kyma-hero-visual .neural-render-canvas {
    width: min(100%, 820px);
    max-height: min(64vh, 820px);
  }
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .site-hero.kyma-vision-hero {
    min-height: auto;
  }

  body:not(.desktop-runtime) .site-hero-copy.hero-brutalist-copy {
    padding-top: clamp(16px, 3.5vh, 34px);
    transform: translateY(-24px);
  }

  body:not(.desktop-runtime) .kyma-build-overview-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-build-section::before {
    left: auto;
    right: -18px;
    width: 72px;
    opacity: 0.38;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-build-section::after {
    left: auto;
    right: 18px;
    width: min(34vw, 180px);
    opacity: 0.34;
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-section {
    gap: 32px;
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-content {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars {
    width: min(100%, 680px);
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-visual {
    width: min(100%, 760px);
    justify-self: start;
  }

  body:not(.desktop-runtime) .kyma-build-overview-panel > p {
    max-width: 54ch;
  }

  body:not(.desktop-runtime) .kyma-build-overview-list article {
    min-height: 86px;
  }

  body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer,
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer,
  body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer,
  body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer {
    width: 100%;
    margin-bottom: 0;
  }

  body:not(.desktop-runtime) .home-dashboard > .kyma-public-footer .kyma-footer-inner,
  body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer .kyma-footer-inner,
  body:not(.desktop-runtime) .public-page-section.kyma-blog-section > .kyma-public-footer .kyma-footer-inner,
  body:not(.desktop-runtime) .public-page-section.kyma-article-page > .kyma-public-footer .kyma-footer-inner {
    min-height: auto;
    padding: 42px 22px 96px;
    flex-direction: column;
    gap: 30px;
  }

  body:not(.desktop-runtime) .public-page-section.kyma-careers-section > .kyma-public-footer {
    margin-right: -22px;
    margin-bottom: -72px;
    margin-left: -22px;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .kyma-headband-spin-section {
    padding: 46px 18px 38px;
    gap: 22px;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-video {
    width: 100%;
    max-height: none;
    border-radius: 0;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:not(.desktop-runtime) .site-hero h1 {
    font-size: min(clamp(1.65rem, 8.2vw, 2.25rem), calc((100vw - 48px) / 15.6));
    line-height: 1.08;
  }

  body:not(.desktop-runtime) .hero-heading-line {
    white-space: nowrap;
  }

  body:not(.desktop-runtime) .site-hero-actions {
    justify-content: flex-start;
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-section {
    padding-inline: 22px;
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-title {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-content,
  body:not(.desktop-runtime) .home-dashboard > .kyma-neural-inputs-section .kyma-ecosystem-pillars,
  body:not(.desktop-runtime) .kyma-neural-inputs-visual {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  body:not(.desktop-runtime) .kyma-neural-inputs-visual img {
    border-radius: 6px;
  }

  body:not(.desktop-runtime) .site-hero-button {
    width: 100%;
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) {
  --site-text: #111;
  --site-muted: rgba(17, 17, 17, 0.68);
  --site-line: rgba(17, 17, 17, 0.13);
  color: #111;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #f4f4f2;
  background-size: auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) h2,
body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-list strong {
  color: #111;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-panel > p {
  color: rgba(17, 17, 17, 0.68);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-list small {
  color: rgba(17, 17, 17, 0.62);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-panel,
body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-list {
  border-top-color: rgba(17, 17, 17, 0.13);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-state-section.kyma-build-overview-section:not(.site-hero) .kyma-build-overview-list article {
  border-bottom-color: rgba(17, 17, 17, 0.13);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section {
  --site-text: #f8f7f2;
  --site-muted: rgba(252, 250, 244, 0.72);
  --site-line: rgba(252, 250, 244, 0.06);
  color: var(--site-text);
  padding-bottom: 0;
  border-top: 1px solid rgba(252, 250, 244, 0.05);
  border-bottom: 0;
  background: #030303;
  background-size: auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2 {
  width: min(100%, 1180px);
  max-width: 1180px;
  color: #f8f7f2;
  font-family: var(--font-industrial);
  font-size: clamp(2.2rem, 3.45vw, 4.15rem);
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
  border: 0;
  border-radius: 0;
  background: #030303;
  box-shadow: none;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage {
  width: min(100%, 1120px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section + section.kyma-orientation-video-section {
  margin-top: 0;
  border-top: 0;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy,
body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section .kyma-orientation-intro {
  width: min(100%, 1120px);
  margin: 0 auto;
  justify-items: start;
  text-align: left;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section .kyma-orientation-intro {
  padding: clamp(42px, 5vw, 76px) 0 clamp(10px, 1.8vw, 24px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2,
body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section .kyma-orientation-intro h2 {
  width: auto;
  max-width: 920px;
  margin: 0;
  font-family: var(--font-industrial);
  font-size: clamp(2rem, 2.75vw, 3.25rem);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section .kyma-orientation-intro {
    width: 100%;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-stage {
    gap: 18px;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-facts {
    position: relative;
    inset: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    pointer-events: auto;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-facts li {
    position: relative;
    inset: auto;
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-facts .fact-right {
    right: auto;
    flex-direction: row;
    text-align: left;
  }

  body:not(.desktop-runtime) .kyma-headband-spin-cta {
    width: 100%;
    flex-wrap: wrap;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-orientation-video-section .kyma-orientation-intro {
    padding-right: 22px;
    padding-left: 22px;
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section {
  padding: 0;
  display: block;
  background: #030303;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage {
  position: relative;
  width: 100%;
  min-height: min(78svh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
  width: 100%;
  height: min(78svh, 820px);
  min-height: 520px;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
  position: absolute;
  z-index: 3;
  top: clamp(42px, 7vh, 82px);
  left: 50%;
  width: min(100% - 48px, 1120px);
  margin: 0;
  transform: translateX(-50%);
  justify-items: start;
  text-align: left;
  pointer-events: none;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2 {
  max-width: 920px;
  color: #f8f7f2;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-cta {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(28px, 5.2vh, 62px);
  width: auto;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 10px 12px 10px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(252, 250, 244, 0.1);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts {
  position: absolute;
  inset: 0;
  z-index: 3;
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    min-height: 620px;
    height: 74svh;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts {
    inset: auto 22px clamp(118px, 17vh, 150px);
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    min-height: 680px;
    height: 82svh;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    top: 34px;
    width: calc(100% - 36px);
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts {
    inset: auto 18px 128px;
    grid-template-columns: 1fr;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-cta {
    width: calc(100% - 36px);
    max-width: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-waitlist-button {
    width: 100%;
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
  top: clamp(34px, 5.2vh, 72px);
  bottom: auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2 {
  max-width: none;
  color: #f8f7f2;
  font-size: clamp(1.35rem, 1.85vw, 2.25rem);
  font-weight: 520;
  line-height: 1.02;
  text-align: center;
  text-transform: none;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-left {
  left: clamp(88px, 12vw, 230px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-right {
  right: clamp(88px, 12vw, 230px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-top {
  top: clamp(82px, 17%, 150px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-bottom {
  bottom: clamp(94px, 16%, 150px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts li {
  width: min(23ch, 22%);
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    bottom: 210px;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    bottom: 246px;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage {
  min-height: min(92svh, 980px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
  height: min(92svh, 980px);
  min-height: 720px;
  object-fit: contain;
  object-position: center;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
  top: clamp(34px, 5.2vh, 72px);
  bottom: auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-cta {
  bottom: clamp(12px, 2.6vh, 32px);
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    min-height: 760px;
    height: 88svh;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    bottom: 228px;
  }
}

@media (max-width: 760px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    min-height: 760px;
    height: 88svh;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    bottom: 268px;
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-left {
  left: clamp(150px, 18vw, 320px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-right {
  right: clamp(150px, 18vw, 320px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-top {
  top: clamp(170px, 28%, 260px);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-bottom {
  bottom: clamp(170px, 28%, 260px);
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-left,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-right {
    left: auto;
    right: auto;
  }
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section {
  --site-text: #f8f7f2;
  --site-muted: rgba(252, 250, 244, 0.64);
  --site-line: rgba(252, 250, 244, 0.08);
  color: var(--site-text) !important;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(252, 250, 244, 0.05) !important;
  background: #030303 !important;
  background-size: auto !important;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-title {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  color: #f8f7f2 !important;
  font-family: var(--font-industrial);
  font-size: clamp(2rem, 2.75vw, 3.25rem);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  justify-self: stretch;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-content {
  width: min(100%, 1120px);
  margin: 0 auto;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-ecosystem-pillars article {
  background: rgba(4, 5, 4, 0.72);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual {
  position: relative;
  width: min(100%, 800px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(252, 250, 244, 0.12);
  border-radius: 8px;
  background: #090a09;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 106, 26, 0.08);
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual .kyma-neural-inputs-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  background: transparent;
  box-shadow: none;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual .is-primary {
  animation: kymaNeuralInputsPrimary 10s ease-in-out infinite;
}

body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual .is-secondary {
  opacity: 0;
  animation: kymaNeuralInputsSecondary 10s ease-in-out infinite;
}

@keyframes kymaNeuralInputsPrimary {
  0%,
  42%,
  100% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }
}

@keyframes kymaNeuralInputsSecondary {
  0%,
  42%,
  100% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual .kyma-neural-inputs-image {
    animation: none;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-visual .is-secondary {
    display: none;
  }
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-title,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-neural-inputs-section .kyma-neural-inputs-content {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .kyma-contact-modal-backdrop {
    padding: 14px;
    align-items: start;
    overflow-y: auto;
  }

  .kyma-contact-modal-panel {
    width: 100%;
    max-height: none;
    margin: 10px 0;
    overflow: visible;
  }

  .kyma-contact-form {
    padding: 34px 20px 24px;
    gap: 13px;
  }

  .kyma-contact-form-header {
    padding-right: 42px;
  }

  .kyma-contact-form-header p {
    white-space: normal;
  }

  .kyma-contact-form input {
    min-height: 44px;
  }

  .kyma-contact-form textarea {
    min-height: 104px;
    max-height: 30vh;
  }

  body:not(.desktop-runtime) .home-dashboard .site-hero.kyma-vision-hero::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 66px;
    width: min(64vw, 280px);
    height: 330px;
    transform: translateX(-50%);
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual {
    width: min(100%, 440px);
    min-height: 390px;
    margin: 0 auto;
    overflow: visible;
    transform: none;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual::before {
    inset: 8% 2% 8%;
    background:
      linear-gradient(rgba(255, 106, 26, 0.44), rgba(255, 106, 26, 0.44)) 18% 20% / 64px 1px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.28), rgba(255, 106, 26, 0.28)) 18% 20% / 1px 48px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.32), rgba(255, 106, 26, 0.32)) 78% 21% / 64px 1px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.24), rgba(255, 106, 26, 0.24)) 78% 21% / 1px 50px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.3), rgba(255, 106, 26, 0.3)) 18% 78% / 70px 1px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.22), rgba(255, 106, 26, 0.22)) 18% 66% / 1px 58px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.38), rgba(255, 106, 26, 0.38)) 77% 77% / 70px 1px no-repeat,
      linear-gradient(rgba(255, 106, 26, 0.24), rgba(255, 106, 26, 0.24)) 77% 64% / 1px 66px no-repeat,
      radial-gradient(circle at 18% 20%, rgba(255, 106, 26, 0.86) 0 3px, transparent 4px),
      radial-gradient(circle at 78% 21%, rgba(255, 106, 26, 0.72) 0 3px, transparent 4px),
      radial-gradient(circle at 18% 78%, rgba(255, 106, 26, 0.66) 0 3px, transparent 4px),
      radial-gradient(circle at 77% 77%, rgba(255, 106, 26, 0.82) 0 3px, transparent 4px);
    opacity: 0.72;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual::after,
  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual .neural-render-canvas {
    transform: none;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual .neural-render-canvas {
    width: min(100%, 390px);
    margin: 0 auto;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage {
    min-height: auto;
    height: auto;
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 18px;
    padding: 44px 18px 34px;
    overflow: visible;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    width: min(100%, 520px);
    height: auto;
    min-height: 0;
    object-fit: contain;
    grid-row: 1;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy {
    position: static;
    width: 100%;
    transform: none;
    grid-row: 2;
    text-align: center;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts {
    position: static;
    width: min(100%, 520px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    grid-row: 3;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts li,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-left,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-right {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid rgba(252, 250, 244, 0.1);
    border-radius: 8px;
    background: rgba(252, 250, 244, 0.045);
    text-align: left;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-cta {
    position: static;
    width: min(100%, 520px);
    max-width: none;
    margin: 0 auto;
    transform: none;
    grid-row: 4;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-stage {
    min-height: auto;
    height: auto;
    padding: 52px 28px 42px;
    display: grid;
    gap: 22px;
    overflow: visible;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-video {
    height: auto;
    min-height: 0;
    width: min(100%, 720px);
    object-fit: contain;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-copy,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-cta {
    position: static;
    width: min(100%, 720px);
    margin: 0 auto;
    transform: none;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts li,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-left,
  body:not(.desktop-runtime) .home-dashboard > section.kyma-headband-spin-section .kyma-headband-spin-facts .fact-right {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 980px) {
  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual {
    justify-self: center;
    place-items: center;
    width: min(94vw, 520px);
    margin-inline: auto;
    transform: none;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual::after,
  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual .neural-render-canvas {
    justify-self: center;
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual .neural-render-canvas {
    width: min(92vw, 440px);
    max-width: 100%;
    margin-inline: auto;
    transform: translateX(clamp(8px, 2.8vw, 18px));
  }
}

@media (max-width: 520px) {
  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual {
    width: min(100%, 390px);
  }

  body:not(.desktop-runtime) .home-dashboard .kyma-hero-visual .neural-render-canvas {
    width: min(88vw, 360px);
    transform: translateX(clamp(10px, 4vw, 16px));
  }
}
