/* Shared Skovrum marketing shell.
   Page-specific layouts stay in landing.html/features.html; this file owns
   cross-page theme behavior and the shared floating theme control. */
html[data-marketing-theme="light"],
html[data-marketing-theme="light"] body{background:#fbfbfe}
html[data-marketing-theme="dark"],
html[data-marketing-theme="dark"] body{background:#101017}

.theme-fab{
  position:fixed;right:20px;bottom:calc(20px + env(safe-area-inset-bottom,0px));z-index:60;
  width:38px;height:38px;border:1px solid var(--line);border-radius:12px;
  background:var(--surface);color:var(--muted);
  box-shadow:0 12px 26px -16px rgba(40,42,70,.5);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  font:700 19px/1 'Manrope',sans-serif;display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:transform .18s ease,border-color .18s ease,color .18s ease,background .18s ease
}
.theme-fab:hover{transform:translateY(-2px);border-color:rgba(124,92,241,.42);color:var(--purple-strong)}
.theme-fab:focus-visible{outline:2px solid #7c5cf1;outline-offset:3px}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .js .rv{opacity:1;transform:none;transition:none}
}
