:root {
  color-scheme:light;
  --bg:#eef0f2;
  --bg-soft:#e2e5e8;
  --surface:rgba(255,255,255,.92);
  --surface-solid:#fff;
  --surface-hover:#f3f5f6;
  --text:#151719;
  --muted:#737981;
  --border:rgba(22,26,30,.14);
  --border-strong:rgba(22,26,30,.28);
  --accent:#236fb2;
  --accent-soft:rgba(35,111,178,.12);
  --shadow:0 30px 90px rgba(22,26,30,.16);
  --topbar-height:66px;
}

html[data-theme="dark"] {
  color-scheme:dark;
  --bg:#202020;
  --bg-soft:#303030;
  --surface:#303030AA;
  --surface-solid:#202020;
  --surface-hover:#1c2024;
  --text:#f1f3f5;
  --muted:#8f979f;
  --border:rgba(255,255,255,.09);
  --border-strong:rgba(255,255,255,.17);
  --accent:#6ca8de;
  --accent-soft:rgba(108,168,222,.12);
  --shadow:0 30px 90px rgba(0,0,0,.42);
}

* {
  box-sizing:border-box;
}

html.app-active,body.app-active {
  overflow:hidden !important;
}

html.app-active {
  scrollbar-gutter:auto;
}

html {
  overflow-y:auto;
  scrollbar-gutter:stable;
}

body {
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,Helvetica,sans-serif;
  font-size:16px;
  transition:background-color .22s ease,color .22s ease;
}

button {
  font:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

#mobileMenuButton {
  display:none;
}

#viktrWorkspace {
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}

#topbar {
  height:var(--topbar-height);
  padding:0 22px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:5000;
  display:flex;
  align-items:center;
  gap:24px;
  border-bottom:1px solid var(--border);
  background:color-mix(in srgb,var(--surface-solid) 84%,transparent);
  backdrop-filter:blur(18px);
}

#brandButton {
  height:46px;
  padding:0;
  display:flex;
  align-items:center;
  gap:11px;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
}

.brand-logo {
  width:auto;
  height:42px;
  display:block;
}

#mainMenu {
  height:100%;
  display:flex;
  align-items:center;
  gap:3px;
}

.menu-item {
  height:38px;
  padding:0 14px;
  position:relative;
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:14px;
  font-weight:700;
  transition:color .18s ease,background .18s ease;
}

.menu-item::after {
  content:"";
  height:1px;
  position:absolute;
  left:14px;
  right:14px;
  bottom:2px;
  background:var(--accent);
  transform:scaleX(0);
  transition:transform .25s cubic-bezier(.2,.8,.2,1);
}

.menu-item:hover,.menu-item.active {
  color:var(--text);
}

.menu-item:hover::after,.menu-item.active::after {
  transform:scaleX(1);
}

#runningApps {
  height:100%;
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:7px;
}

.running-app {
  height:34px;
  padding:0 12px;
  display:flex;
  align-items:center;
  gap:7px;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--surface-hover);
  color:var(--muted);
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  letter-spacing:.05em;
  transition:border-color .18s ease,color .18s ease,transform .18s ease,background .18s ease;
}

.running-app::before {
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--muted);
}

.running-app:hover {
  color:var(--text);
  transform:translateY(-1px);
}

.running-app.focused {
  color:var(--text);
  border-color:var(--accent);
  background:var(--accent-soft);
}

.running-app.focused::before {
  background:var(--accent);
  box-shadow:0 0 10px var(--accent);
}

.running-app.minimized {
  opacity:.62;
}

.topbar-actions {
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

#themeButton {
  width:36px;
  height:36px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:50%;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  transition:color .18s ease,border-color .18s ease,background .18s ease,transform .25s ease;
}

#themeButton:hover {
  color:var(--text);
  border-color:var(--accent);
  background:var(--accent-soft);
  transform:rotate(18deg);
}

.language-selector {
  height:36px;
  padding:0 4px;
  display:flex;
  align-items:center;
  gap:2px;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--surface-hover);
}

.language-selector>span {
  width:1px;
  height:14px;
  margin:0 2px;
  background:var(--border-strong);
}

.language-button {
  min-width:34px;
  height:28px;
  padding:0 8px;
  border:0;
  border-radius:14px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  font-size:14px;
  font-weight:800;
  letter-spacing:.06em;
  transition:color .18s ease,background .18s ease,transform .18s ease;
}

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

.language-button.active {
  background:var(--accent-soft);
  color:var(--accent);
}

.language-button:active {
  transform:scale(.94);
}

#menuLayer {
  height:0;
  position:fixed;
  top:var(--topbar-height);
  left:0;
  right:0;
  z-index:4900;
  overflow:hidden;
  border-bottom:1px solid transparent;
  background-color:color-mix(in srgb,var(--surface-solid) 96%,transparent);
  background-image:linear-gradient(color-mix(in srgb,var(--text) 4%,transparent) 1px,transparent 1px),linear-gradient(90deg,color-mix(in srgb,var(--text) 4%,transparent) 1px,transparent 1px);
  background-size:32px 32px;
  backdrop-filter:blur(20px);
  transition:height .38s cubic-bezier(.16,1,.3,1),border-color .2s ease;
}

#menuLayer.open {
  height:190px;
  border-bottom-color:var(--border);
}

#menuChildren {
  max-width:1180px;
  height:100%;
  padding:24px 28px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-child {
  min-width:190px;
  padding:18px 20px;
  position:relative;
  overflow:visible;
  border:1px solid var(--border);
  background:var(--surface-solid);
  color:var(--text);
  cursor:pointer;
  text-align:left;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}

#menuLayer.open .menu-child {
  opacity:1;
  transform:translateY(0) scale(1);
}

.menu-child:nth-child(1) {
  transition-delay:.02s;
}

.menu-child:nth-child(2) {
  transition-delay:.06s;
}

.menu-child:nth-child(3) {
  transition-delay:.10s;
}

.menu-child:nth-child(4) {
  transition-delay:.14s;
}

.menu-child::before {
  content:"";
  width:7px;
  height:7px;
  position:absolute;
  top:3px;
  left:20px;
  border-radius:50%;
  background:var(--border-strong);
  transition:left .32s cubic-bezier(.16,1,.3,1),background .18s ease,box-shadow .18s ease,transform .18s ease;
}

.menu-child::after {
  content:"";
  width:0;
  height:1px;
  position:absolute;
  top:6px;
  left:20px;
  background:var(--accent);
  opacity:0;
  transition:width .35s cubic-bezier(.16,1,.3,1),opacity .18s ease;
}

.menu-child:hover {
  border-color:color-mix(in srgb,var(--accent) 70%,var(--border));
  background:radial-gradient(180px circle at var(--mouse-x) var(--mouse-y),color-mix(in srgb,var(--accent) 14%,transparent),transparent 70%),var(--surface-solid);
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--accent) 14%,transparent);
  transform:translateY(-4px);
}

.menu-child:hover::before {
  left:calc(100% - 27px);
  background:var(--accent);
  box-shadow:0 0 14px var(--accent);
  transform:scale(1.15);
}

.menu-child:hover::after {
  width:calc(100% - 40px);
  opacity:1;
}

.menu-child-title {
  display:block;
  position:relative;
  z-index:2;
  font-size:15px;
  font-weight:750;
  transition:transform .22s ease,color .18s ease;
}

.menu-child-subtitle {
  display:block;
  margin-top:7px;
  position:relative;
  z-index:2;
  color:var(--muted);
  font-size:16px;
  line-height:1.45;
  transition:transform .22s ease,color .18s ease;
}

.menu-child:hover .menu-child-title {
  transform:translateX(4px);
}

.menu-child:hover .menu-child-subtitle {
  color:var(--text);
  transform:translateX(6px);
}

#desktop {
  min-height:100vh;
  padding-top:var(--topbar-height);
}

.hero {
  min-height:calc(100vh - var(--topbar-height));
  padding:90px max(6vw,32px);
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);
  align-items:center;
  gap:80px;
  overflow:hidden;
}

.hero-grid {
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.7;
  background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(circle at 60% 45%,black,transparent 74%);
}

.hero-content {
  position:relative;
  z-index:2;
}

.hero-status {
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  letter-spacing:.13em;
}

.status-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px var(--accent);
}

.hero h1 {
  max-width:800px;
  margin:0;
  font-size:clamp(48px,7vw,104px);
  line-height:.94;
  letter-spacing:-.055em;
  font-weight:650;
}

.hero h1 span {
  display:block;
  color:var(--muted);
}

.hero p {
  max-width:650px;
  margin:34px 0 0;
  color:var(--muted);
  font-size:19px;
  line-height:1.7;
}

.hero-actions {
  margin-top:36px;
  display:flex;
  gap:10px;
}

.primary-action,.secondary-action {
  min-height:46px;
  padding:0 19px;
  border-radius:3px;
  cursor:pointer;
  font-weight:700;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}

.primary-action {
  border:1px solid var(--accent);
  background:var(--accent);
  color:#fff;
}

.secondary-action {
  border:1px solid var(--border-strong);
  background:transparent;
  color:var(--text);
}

.primary-action:hover,.secondary-action:hover {
  transform:translateY(-2px);
}

.hero-showcase {
  width:44%;
  height:64%;
  position:absolute;
  right:3%;
  top:50%;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-showcase-image {
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.35));
  transform:translate3d(0,0,0) scale(.82);
  will-change:transform,opacity;
}

.hero-showcase-image.is-entering {
  opacity:1;
  transform:translate3d(0,0,0) scale(1);
  transition:opacity .7s ease,transform .7s cubic-bezier(.2,.8,.2,1);
}

.hero-showcase-image.is-drifting {
  opacity:1;
  transform:translate3d(var(--drift-x),0,0) scale(1.015);
  transition:transform 3s linear;
}

.hero-showcase-image.is-leaving {
  opacity:0;
  transform:translate3d(var(--exit-x),0,0) scale(.96);
  transition:opacity .65s ease,transform .65s ease;
}

.desktop-intro {
  padding:90px clamp(28px,6vw,110px);
  display:grid;
  grid-template-columns:180px 1fr;
  gap:60px;
  border-bottom:1px solid var(--border);
  background:var(--surface-solid);
}

.desktop-section-label {
  display:flex;
  flex-direction:column;
  gap:10px;
  color:var(--muted);
}

.desktop-section-label span {
  color:var(--accent);
  font-size:14px;
  font-weight:800;
  letter-spacing:.16em;
}

.desktop-section-label strong {
  font-size:14px;
  font-weight:800;
  letter-spacing:.14em;
}

.desktop-intro-content h2 {
  margin:0;
  font-size:clamp(40px,5vw,78px);
  line-height:.98;
  letter-spacing:-.045em;
}

.desktop-intro-content p {
  max-width:720px;
  margin:28px 0 0;
  color:var(--muted);
  font-size:19px;
  line-height:1.75;
}

.desktop-capabilities {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid var(--border);
}

.desktop-capability {
  min-height:360px;
  padding:42px;
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-right:1px solid var(--border);
  background:var(--surface-solid);
  transition:background .22s ease;
}

.desktop-capability:last-child {
  border-right:0;
}

.desktop-capability:hover {
  background:var(--surface-hover);
}

.desktop-capability::after {
  content:"";
  width:160px;
  height:160px;
  position:absolute;
  right:-80px;
  bottom:-80px;
  border:1px solid var(--border);
  border-radius:50%;
  transition:transform .4s ease,border-color .25s ease;
}

.desktop-capability:hover::after {
  border-color:var(--accent);
  transform:scale(1.35);
}

.capability-index {
  color:var(--accent);
  font-size:14px;
  font-weight:800;
  letter-spacing:.14em;
}

.capability-icon {
  width:46px;
  height:46px;
  margin-top:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  color:var(--muted);
  font-size:17px;
  transition:color .2s ease,border-color .2s ease,transform .2s ease;
}

.desktop-capability:hover .capability-icon {
  color:var(--accent);
  border-color:var(--accent);
  transform:translateY(-3px);
}

.desktop-capability h3 {
  margin:26px 0 0;
  font-size:24px;
  line-height:1.1;
}

.desktop-capability p {
  max-width:420px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.desktop-capability button {
  margin-top:auto;
  padding:0;
  display:flex;
  align-items:center;
  gap:14px;
  align-self:flex-start;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font:inherit;
  font-size:14px;
  font-weight:800;
}

.desktop-capability button i {
  color:var(--muted);
  transition:transform .18s ease,color .18s ease;
}

.desktop-capability button:hover i {
  color:var(--accent);
  transform:translateX(4px);
}

.desktop-cta {
  min-height:360px;
  padding:80px clamp(28px,6vw,110px);
  position:relative;
  display:grid;
  grid-template-columns:180px 1fr auto;
  align-items:center;
  gap:60px;
  overflow:hidden;
  background:var(--surface-hover);
}

.desktop-cta::after {
  content:"";
  width:420px;
  height:420px;
  position:absolute;
  right:4%;
  top:50%;
  border:1px solid var(--border);
  border-radius:50%;
  transform:translateY(-50%);
  box-shadow:0 0 0 60px color-mix(in srgb,var(--text) 1.5%,transparent),0 0 0 120px color-mix(in srgb,var(--text) 1%,transparent);
  pointer-events:none;
}

.desktop-cta-status {
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  letter-spacing:.13em;
  white-space:nowrap;
}

.desktop-cta-status span {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 14px var(--accent);
}

.desktop-cta-content {
  position:relative;
  z-index:2;
}

.desktop-cta-content h2 {
  margin:0;
  font-size:clamp(36px,5vw,72px);
  line-height:.98;
  letter-spacing:-.045em;
}

.desktop-cta-content p {
  max-width:620px;
  margin:20px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.desktop-cta>button {
  min-width:190px;
  height:56px;
  padding:0 20px;
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  border:1px solid var(--accent);
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font:inherit;
  font-size:14px;
  font-weight:800;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}

.desktop-cta>button:hover {
  background:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}

.desktop-solutions {
  padding:90px clamp(28px,6vw,110px);
  border-bottom:1px solid var(--border);
  background:var(--surface-solid);
}

.desktop-solutions-header {
  margin-bottom:48px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
}

.desktop-solutions-header>div>span {
  color:var(--accent);
  font-size:14px;
  font-weight:800;
  letter-spacing:.16em;
}

.desktop-solutions-header h2 {
  margin:14px 0 0;
  font-size:clamp(38px,5vw,72px);
  line-height:.98;
  letter-spacing:-.045em;
}

.desktop-solutions-header>button {
  height:42px;
  padding:0 16px;
  display:flex;
  align-items:center;
  gap:16px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font:inherit;
  font-size:14px;
  font-weight:800;
  transition:border-color .18s ease,color .18s ease,background .18s ease;
}

.desktop-solutions-header>button:hover {
  border-color:var(--accent);
  color:var(--accent);
  background:var(--accent-soft);
}

.desktop-solutions-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--border);
  border-left:1px solid var(--border);
}

.desktop-solution {
  min-height:340px;
  padding:34px;
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--surface-solid);
  transition:background .22s ease;
}

.desktop-solution:hover {
  background:var(--surface-hover);
}

.desktop-solution::before {
  content:"";
  width:260px;
  height:260px;
  position:absolute;
  right:-130px;
  top:50%;
  border:1px solid var(--border);
  border-radius:50%;
  transform:translateY(-50%);
  transition:border-color .25s ease,transform .4s ease;
}

.desktop-solution:hover::before {
  border-color:color-mix(in srgb,var(--accent) 55%,var(--border));
  transform:translateY(-50%) scale(1.12);
}

.solution-top {
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.solution-top span {
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  letter-spacing:.13em;
}

.solution-top i {
  color:var(--muted);
  font-size:20px;
}

.solution-content {
  margin-top:auto;
  position:relative;
  z-index:2;
}

.solution-content h3 {
  margin:0;
  font-size:clamp(30px,3vw,48px);
  letter-spacing:-.035em;
}

.solution-content p {
  max-width:520px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.solution-content button {
  margin-top:24px;
  padding:0;
  display:flex;
  align-items:center;
  gap:14px;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font:inherit;
  font-size:14px;
  font-weight:800;
}

.solution-content button i {
  color:var(--muted);
  transition:color .18s ease,transform .18s ease;
}

.solution-content button:hover i {
  color:var(--accent);
  transform:translate(3px,-3px);
}

#windowLayer {
  position:fixed;
  inset:var(--topbar-height) 0 0;
  z-index:3000;
  pointer-events:none;
  overflow:hidden;
}

.app-window {
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  overflow:hidden;
  border:0;
  background:var(--surface-solid);
  opacity:0;
  transform:translateY(12px);
  pointer-events:auto;
  transition:opacity .2s ease,transform .28s cubic-bezier(.16,1,.3,1);
}

.app-window.visible {
  opacity:1;
  transform:translateY(0);
}

.app-window.minimized {
  opacity:0;
  transform:translateY(18px);
  pointer-events:none;
}

.window-titlebar {
  width:100%;
  height:52px;
  padding:0 12px 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:var(--surface-solid);
}

.window-app-info {
  min-width:0;
  height:100%;
  display:flex;
  align-items:center;
  gap:10px;
}

.window-app-logo {
  width:28px;
  height:28px;
  object-fit:contain;
  flex:0 0 28px;
}

.window-title {
  color:var(--text);
  font-size:14px;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
  white-space:nowrap;
}

.window-status {
  margin-left:4px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
}

.window-controls {
  display:flex;
  align-items:center;
  gap:2px;
  flex-shrink:0;
}

.window-controls button {
  width:38px;
  height:38px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
}

.window-controls button:hover {
  background:var(--surface-hover);
  color:var(--text);
}

.window-content {
  width:100%;
  height:calc(100% - 52px);
  padding:0;
  overflow:auto;
}

.app-placeholder {
  max-width:740px;
}

.app-placeholder small {
  color:var(--accent);
  font-weight:800;
  letter-spacing:.15em;
}

.app-placeholder h2 {
  margin:14px 0;
  font-size:clamp(36px,5vw,68px);
  letter-spacing:-.04em;
}

.app-placeholder p {
  color:var(--muted);
  font-size:19px;
  line-height:1.7;
}

.window-loading-screen {
  position:absolute;
  inset:0;
  z-index:100;
  overflow:hidden;
  pointer-events:all;
  background:var(--surface-solid);
}

.window-loading-grid {
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(var(--loading-cols),1fr);
  grid-template-rows:repeat(var(--loading-rows),1fr);
}

.window-loading-square {
  background:var(--surface-solid);
  border-right:1px solid color-mix(in srgb,var(--text) 4%,transparent);
  border-bottom:1px solid color-mix(in srgb,var(--text) 4%,transparent);
  opacity:1;
}

.window-loading-logo {
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:opacity .25s ease,transform .35s cubic-bezier(.16,1,.3,1);
}

.window-loading-logo img {
  width:clamp(420px,42vw,900px);
  max-width:86vw;
  max-height:44vh;
  object-fit:contain;
}

.window-loading-screen.is-revealing .window-loading-square {
  opacity:0;
  transition:opacity .25s ease calc(var(--loading-order) * 25ms);
}

.window-loading-screen.is-revealing .window-loading-logo {
  opacity:0;
  transform:translate(-50%,-50%) scale(.94);
  transition-delay:.30s;
}

.window-loading-screen.is-finished {
  pointer-events:none;
}

.app-window.is-loading .window-content {
  visibility:hidden;
}

article img {
  width:65%;
  height:auto;
  display:block;
  margin:0 auto;
}

@media(max-width:1000px) {
  .desktop-intro {
    grid-template-columns:130px 1fr;
  }

  .desktop-capabilities {
    grid-template-columns:1fr;
  }

  .desktop-capability {
    min-height:290px;
    border-right:0;
    border-bottom:1px solid var(--border);
  }

  .desktop-capability:last-child {
    border-bottom:0;
  }

  .desktop-cta {
    grid-template-columns:130px 1fr;
  }

  .desktop-cta>button {
    grid-column:2;
    justify-self:start;
  }
}

@media(max-width:900px) {
  #topbar {
    padding:0 14px;
    gap:10px;
  }

  #mainMenu {
    display:none;
  }

  #menuLayer.mobile-main-open,#menuLayer.open {
    height:calc(100vh - var(--topbar-height));
    border-bottom-color:var(--border);
    background-color:color-mix(in srgb,var(--surface-solid) 96%,transparent);
    background-image:linear-gradient(color-mix(in srgb,var(--text) 5%,transparent) 1px,transparent 1px),linear-gradient(90deg,color-mix(in srgb,var(--text) 5%,transparent) 1px,transparent 1px);
    background-size:32px 32px;
  }

  .menu-item {
    width:100%;
    height:48px;
    text-align:left;
  }

  #mobileMenuButton {
    width:36px;
    height:36px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--border);
    border-radius:50%;
    background:transparent;
    color:var(--muted);
    cursor:pointer;
  }

  #runningApps {
    overflow:hidden;
    justify-content:flex-end;
  }

  .running-app {
    max-width:190px;
    padding:0 14px;
  }

  #menuChildren {
    height:100%;
    padding:26px 18px 40px;
    display:grid;
    grid-template-columns:1fr;
    align-content:start;
    gap:12px;
    overflow-y:auto;
    background:transparent;
  }

  .menu-child {
    width:100%;
    min-width:0;
    min-height:92px;
    padding:20px;
    background:color-mix(in srgb,var(--surface-solid) 92%,transparent);
    backdrop-filter:blur(8px);
  }

  .mobile-menu-back {
    width:max-content;
    height:42px;
    padding:0 16px;
    margin-bottom:8px;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--border);
    background:color-mix(in srgb,var(--surface-solid) 92%,transparent);
    color:var(--text);
    cursor:pointer;
    font-size:13px;
    font-weight:800;
  }

  .mobile-menu-back:hover {
    border-color:var(--accent);
    color:var(--accent);
  }

  .hero {
    min-height:auto;
    padding:70px 24px 50px;
    display:block;
  }

  .hero h1 {
    font-size:clamp(46px,15vw,76px);
  }

  .hero p {
    font-size:16px;
  }

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

  .hero-showcase {
    width:100%;
    height:340px;
    margin-top:45px;
    position:relative;
    right:auto;
    top:auto;
    transform:none;
  }

  .app-window {
    width:100%;
    height:100%;
    inset:0;
    left:0;
    top:0;
    border:0;
    transform:translateY(18px);
  }

  .app-window.visible {
    transform:translateY(0);
  }

  .app-window.minimized {
    transform:translateY(20px);
  }

  .window-content {
    padding:28px 20px;
  }
}

@media(max-width:800px) {
  .desktop-intro {
    padding:65px 28px;
    grid-template-columns:1fr;
    gap:30px;
  }

  .desktop-section-label {
    flex-direction:row;
    align-items:center;
  }

  .desktop-capability {
    padding:32px 28px;
  }

  .desktop-solutions {
    padding:65px 28px;
  }

  .desktop-solutions-header {
    align-items:flex-start;
    flex-direction:column;
  }

  .desktop-solutions-grid {
    grid-template-columns:1fr;
  }

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

  .desktop-cta {
    padding:65px 28px;
    grid-template-columns:1fr;
    gap:32px;
  }

  .desktop-cta-status,.desktop-cta-content,.desktop-cta>button {
    grid-column:1;
  }

  .desktop-cta::after {
    width:280px;
    height:280px;
    right:-140px;
  }
}

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