/* Gustl subsite additions; base.css provides shared foundations. */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--subsite-bg);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

.subsite-navigation {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 12, 22, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.4s ease;
}

#einblicke {
  max-width: 100vw;
}

[data-gw=shots] {
  overscroll-behavior-x: contain;
  scrollbar-width: none !important;
  -ms-overflow-style: none;
}

[data-gw=shots]::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

[data-gw=shots] > div:first-child {
  margin-left: auto;
}

[data-gw=shots] > div:last-child {
  margin-right: auto;
}

::-moz-selection {
  background: rgba(111, 162, 255, 0.28);
}

::selection {
  background: rgba(111, 162, 255, 0.28);
}

@keyframes gwFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gwFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gwFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes gwPulseG {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 185, 110, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(29, 185, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 185, 110, 0);
  }
}
@keyframes gwSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gwGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 1180px) {
  [data-gw=gustlcut] {
    opacity: 0.28 !important;
  }
  [data-gw=herochat] {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  [data-gw=navmenu] {
    display: none !important;
  }
  [data-gw=gustlcut] {
    display: none !important;
  }
  [data-gw=beweisgrid], [data-gw=quotegrid] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  [data-gw=procrow] {
    overflow-x: auto;
    padding-bottom: 14px;
  }
}
@media (max-width: 720px) {
  [data-gw=boardgrid] {
    grid-template-columns: 1fr !important;
  }
  section .u-grid-template-columns-repeat-4-1fr {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  section .u-grid-template-columns-repeat-3-1fr {
    grid-template-columns: 1fr !important;
  }
  section .u-grid-template-columns-1fr-1fr {
    grid-template-columns: 1fr !important;
  }
  h1.u-font-size-82px {
    font-size: 58px !important;
  }
  h2.u-font-size-42px {
    font-size: 32px !important;
  }
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--subsite-accent) !important;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
/* Subsite-only utilities not available in base.css */
.u-color-e8edf6 {
  color: var(--subsite-text);
}

.u-background-070c16 {
  background: var(--subsite-bg);
}

.u-border-bottom-1px-solid-rgba-255-255-255-0-07 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.u-max-width-1280px {
  max-width: 1280px;
}

.subsite-u-padding-0-32px {
  padding: 0 32px;
}

.u-height-72px {
  height: 72px;
}

.hover-u-color-6fa2ff:hover {
  color: var(--subsite-accent);
}

.u-opacity-0-92 {
  opacity: 0.92;
}

.u-gap-30px {
  gap: 30px;
}

.u-color-aeb8ca {
  color: var(--subsite-muted);
}

.u-padding-11px-22px {
  padding: 11px 22px;
}

.u-background-linear-gradient-135deg-3d8bff-1b5bff {
  background: linear-gradient(135deg, #3D8BFF, #1B5BFF);
}

.u-box-shadow-0-8px-22px-rgba-27-91-255-0-5-inset-0-1px-0-rgba-255-255-255-0-25 {
  box-shadow: 0 8px 22px rgba(27, 91, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.u-transition-box-shadow-0-25s-transform-0-25s {
  transition: box-shadow 0.25s, transform 0.25s;
}

.hover-u-box-shadow-0-12px-30px-rgba-27-91-255-0-7:hover {
  box-shadow: 0 12px 30px rgba(27, 91, 255, 0.7);
}

.hover-u-transform-translatey-1px:hover {
  transform: translateY(-1px);
}

.u-min-height-100vh {
  min-height: 100vh;
}

.u-background-linear-gradient-180deg-rgba-7-12-22-0-72-0-rgba-7-12-22-0-35-34-rgba-7-12-22-0-6-68 {
  background: linear-gradient(180deg, rgba(7, 12, 22, 0.72) 0%, rgba(7, 12, 22, 0.35) 34%, rgba(7, 12, 22, 0.6) 68%, rgba(7, 12, 22, 0.97) 100%);
}

.u-background-linear-gradient-90deg-rgba-7-12-22-0-85-0-rgba-7-12-22-0-25-44-transparent-70 {
  background: linear-gradient(90deg, rgba(7, 12, 22, 0.85) 0%, rgba(7, 12, 22, 0.25) 44%, transparent 70%);
}

.u-z-index-2 {
  z-index: 2;
}

.u-right-3 {
  right: 3%;
}

.u-height-90 {
  height: 90%;
}

.u-filter-drop-shadow-0-30px-60px-rgba-0-0-0-0-55 {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.u-webkit-mask-image-linear-gradient-to-bottom-000-82-transparent-99 {
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
}

.u-mask-image-linear-gradient-to-bottom-000-82-transparent-99 {
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
          mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
}

.u-animation-gwfadeup-1-1s-0-5s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 1.1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-right-27 {
  right: 27%;
}

.u-top-26 {
  top: 26%;
}

.u-z-index-4 {
  z-index: 4;
}

.u-width-250px {
  width: 250px;
}

.u-transform-translatey-10px {
  transform: translateY(10px);
}

.u-transition-opacity-0-6s-cubic-bezier-0-16-1-0-3-1-transform-0-6s-cubic-bezier-0-16-1-0-3-1 {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.u-background-rgba-255-255-255-0-96 {
  background: rgba(255, 255, 255, 0.96);
}

.u-border-radius-16px-16px-16px-4px {
  border-radius: 16px 16px 16px 4px;
}

.u-box-shadow-0-20px-46px-rgba-0-0-0-0-4 {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
}

.u-margin-bottom-7px {
  margin-bottom: 7px;
}

.u-background-12233f {
  background: #12233f;
}

.u-width-172 {
  width: 172%;
}

.u-left-34 {
  left: -34%;
}

.u-top-6 {
  top: 6%;
}

.u-color-6b7688 {
  color: #6B7688;
}

.u-min-height-40px {
  min-height: 40px;
}

.u-width-2px {
  width: 2px;
}

.u-height-15px {
  height: 15px;
}

.u-margin-left-1px {
  margin-left: 1px;
}

.u-vertical-align-2px {
  vertical-align: -2px;
}

.u-animation-gwglow-1s-steps-1-infinite {
  animation: gwGlow 1s steps(1) infinite;
}

.u-bottom-8px {
  bottom: -8px;
}

.u-width-16px {
  width: 16px;
}

.u-height-16px {
  height: 16px;
}

.u-transform-rotate-45deg {
  transform: rotate(45deg);
}

.u-padding-0-32px-84px {
  padding: 0 32px 84px;
}

.u-animation-gwfadeup-0-9s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-width-8px {
  width: 8px;
}

.u-height-8px {
  height: 8px;
}

.u-animation-gwpulseg-2s-infinite {
  animation: gwPulseG 2s infinite;
}

.u-letter-spacing-0-24em {
  letter-spacing: 0.24em;
}

.u-font-size-82px {
  font-size: 82px;
}

.u-line-height-0-98 {
  line-height: 0.98;
}

.subsite-u-letter-spacing-0-03em {
  letter-spacing: -0.03em;
}

.u-animation-gwfadeup-0-9s-0-1s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-font-size-27px {
  font-size: 27px;
}

.u-line-height-1-25 {
  line-height: 1.25;
}

.u-animation-gwfadeup-0-9s-0-18s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 0.9s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-max-width-560px {
  max-width: 560px;
}

.u-animation-gwfadeup-0-9s-0-26s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 0.9s 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-animation-gwfadeup-0-9s-0-34s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwFadeUp 0.9s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-box-shadow-0-12px-30px-rgba-27-91-255-0-55-inset-0-1px-0-rgba-255-255-255-0-25 {
  box-shadow: 0 12px 30px rgba(27, 91, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hover-u-box-shadow-0-16px-40px-rgba-27-91-255-0-75:hover {
  box-shadow: 0 16px 40px rgba(27, 91, 255, 0.75);
}

.u-border-1px-solid-rgba-255-255-255-0-16 {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hover-u-background-rgba-255-255-255-0-12:hover {
  background: rgba(255, 255, 255, 0.12);
}

.u-bottom-26px {
  bottom: 26px;
}

.u-left-50 {
  left: 50%;
}

.u-transform-translatex-50 {
  transform: translateX(-50%);
}

.u-animation-gwglow-2-4s-ease-in-out-infinite {
  animation: gwGlow 2.4s ease-in-out infinite;
}

.u-background-0a1120 {
  background: var(--subsite-panel);
}

.u-padding-40px-28px {
  padding: 40px 28px;
}

.u-border-right-1px-solid-rgba-255-255-255-0-07 {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.u-font-size-46px {
  font-size: 46px;
}

.u-padding-110px-0-100px {
  padding: 110px 0 100px;
}

.u-font-size-42px {
  font-size: 42px;
}

.u-line-height-1-14 {
  line-height: 1.14;
}

.u-margin-top-48px {
  margin-top: 48px;
}

.u-background-linear-gradient-160deg-101c30-0b1424 {
  background: linear-gradient(160deg, #101C30, #0B1424);
}

.u-padding-38px-34px {
  padding: 38px 34px;
}

.u-width-52px {
  width: 52px;
}

.u-background-rgba-111-162-255-0-12 {
  background: rgba(111, 162, 255, 0.12);
}

.u-font-size-24px {
  font-size: 24px;
}

.u-background-rgba-29-185-110-0-12 {
  background: rgba(29, 185, 110, 0.12);
}

.u-padding-104px-0-110px {
  padding: 104px 0 110px;
}

.u-border-top-1px-solid-rgba-255-255-255-0-07 {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.u-margin-bottom-64px {
  margin-bottom: 64px;
}

.u-width-138px {
  width: 138px;
}

.u-width-60px {
  width: 60px;
}

.u-height-60px {
  height: 60px;
}

.u-border-radius-17px {
  border-radius: 17px;
}

.u-background-0f1a2c {
  background: #0F1A2C;
}

.u-color-8fa3be {
  color: #8FA3BE;
}

.u-color-5f6b7e {
  color: #5F6B7E;
}

.u-color-c6cfdd {
  color: #C6CFDD;
}

.u-padding-108px-0-110px {
  padding: 108px 0 110px;
}

.u-margin-bottom-52px {
  margin-bottom: 52px;
}

.u-grid-template-columns-repeat-3-1fr {
  grid-template-columns: repeat(3, 1fr);
}

.u-background-rgba-111-162-255-0-1 {
  background: rgba(111, 162, 255, 0.1);
}

.u-font-size-18-5px {
  font-size: 18.5px;
}

.u-color-9ba6b8 {
  color: #9BA6B8;
}

.u-margin-9px-0-0 {
  margin: 9px 0 0;
}

.u-margin-bottom-44px {
  margin-bottom: 44px;
}

.u-background-rgba-245-177-76-0-1 {
  background: rgba(245, 177, 76, 0.1);
}

.u-border-1px-solid-rgba-245-177-76-0-35 {
  border: 1px solid rgba(245, 177, 76, 0.35);
}

.u-padding-6px-13px {
  padding: 6px 13px;
}

.u-color-f5b14c {
  color: var(--subsite-warning);
}

.u-user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.subsite-u-top-12px {
  top: 12px;
}

.u-right-12px {
  right: 12px;
}

.u-background-rgba-10-13-19-0-7 {
  background: rgba(10, 13, 19, 0.7);
}

.u-border-1px-solid-rgba-245-177-76-0-4 {
  border: 1px solid rgba(245, 177, 76, 0.4);
}

.u-border-radius-6px {
  border-radius: 6px;
}

.u-padding-4px-8px {
  padding: 4px 8px;
}

.u-width-54px {
  width: 54px;
}

.u-border-radius-2px {
  border-radius: 2px;
}

.u-transition-background-0-3s {
  transition: background 0.3s;
}

.u-gap-64px {
  gap: 64px;
}

.u-min-height-560px {
  min-height: 560px;
}

.u-padding-90px-0 {
  padding: 90px 0;
}

.u-background-3fd98b {
  background: var(--subsite-success);
}

.u-color-3fd98b {
  color: var(--subsite-success);
}

.u-min-height-460px {
  min-height: 460px;
}

.u-background-linear-gradient-90deg-0a1120-0-rgba-10-17-32-0-2-20-transparent-55 {
  background: linear-gradient(90deg, var(--subsite-panel) 0%, rgba(10, 17, 32, 0.2) 20%, transparent 55%);
}

.u-right-28px {
  right: 28px;
}

.u-bottom-28px {
  bottom: 28px;
}

.u-background-rgba-10-17-32-0-82 {
  background: rgba(10, 17, 32, 0.82);
}

.u-padding-16px-18px {
  padding: 16px 18px;
}

.u-animation-gwfloat-6s-ease-in-out-infinite {
  animation: gwFloat 6s ease-in-out infinite;
}

.u-background-rgba-63-217-139-0-14 {
  background: rgba(63, 217, 139, 0.14);
}

.u-color-8fe3b6 {
  color: #8FE3B6;
}

.u-padding-108px-0-112px {
  padding: 108px 0 112px;
}

.u-max-width-360px {
  max-width: 360px;
}

.u-padding-18px-26px {
  padding: 18px 26px;
}

.u-border-bottom-1px-solid-rgba-255-255-255-0-08 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.u-grid-template-columns-1-5fr-1fr {
  grid-template-columns: 1.5fr 1fr;
}

.u-gap-0 {
  gap: 0;
}

.u-padding-22px-26px {
  padding: 22px 26px;
}

.u-border-right-1px-solid-rgba-255-255-255-0-08 {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.u-margin-bottom-16px {
  margin-bottom: 16px;
}

.u-color-7a8496 {
  color: #7A8496;
}

.u-background-0d1728 {
  background: #0D1728;
}

.u-border-1px-solid-rgba-255-255-255-0-06 {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.u-background-f5b14c {
  background: var(--subsite-warning);
}

.u-background-7a8496 {
  background: #7A8496;
}

.u-margin-top-10px {
  margin-top: 10px;
}

.u-border-radius-4px {
  border-radius: 4px;
}

.u-background-rgba-255-255-255-0-08 {
  background: rgba(255, 255, 255, 0.08);
}

.u-background-linear-gradient-90deg-2c7be5-6fa2ff {
  background: linear-gradient(90deg, #2C7BE5, var(--subsite-accent));
}

.u-transition-width-0-5s-cubic-bezier-0-16-1-0-3-1 {
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.u-animation-gwslidein-0-5s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-grid-template-columns-0-85fr-1-15fr {
  grid-template-columns: 0.85fr 1.15fr;
}

.u-gap-60px {
  gap: 60px;
}

.u-min-height-520px {
  min-height: 520px;
}

.u-min-height-500px {
  min-height: 500px;
}

.u-background-linear-gradient-180deg-transparent-55-rgba-10-17-32-0-7 {
  background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 32, 0.7));
}

.u-background-linear-gradient-270deg-0a1120-0-transparent-32 {
  background: linear-gradient(270deg, var(--subsite-panel) 0%, transparent 32%);
}

.u-padding-80px-0 {
  padding: 80px 0;
}

.u-line-height-1-3 {
  line-height: 1.3;
}

.u-margin-top-28px {
  margin-top: 28px;
}

.u-background-radial-gradient-900px-400px-at-50-0-rgba-111-162-255-0-1-transparent-70 {
  background: radial-gradient(900px 400px at 50% 0%, rgba(111, 162, 255, 0.1), transparent 70%);
}

.u-letter-spacing-0-025em {
  letter-spacing: -0.025em;
}

.u-line-height-1-08 {
  line-height: 1.08;
}

.u-margin-20px-auto-0 {
  margin: 20px auto 0;
}

.u-padding-17px-30px {
  padding: 17px 30px;
}

.u-padding-15px-26px {
  padding: 15px 26px;
}

.u-padding-28px-0 {
  padding: 28px 0;
}

.u-margin-top-84px {
  margin-top: 84px;
}

.u-border-top-1px-solid-rgba-255-255-255-0-08 {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.u-opacity-0-7 {
  opacity: 0.7;
}

.u-background-linear-gradient-120deg-13233f-0d1424 {
  background: linear-gradient(120deg, #13233f, #0D1424);
}

.u-width-165 {
  width: 165%;
}

.u-left-32 {
  left: -32%;
}

.u-background-rgba-255-255-255-0-04 {
  background: rgba(255, 255, 255, 0.04);
}

.u-max-height-296px {
  max-height: 296px;
}

.u-background-141f33 {
  background: #141F33;
}

.u-animation-gwslidein-0-4s-cubic-bezier-0-16-1-0-3-1-both {
  animation: gwSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.u-border-1px-solid-rgba-111-162-255-0-3 {
  border: 1px solid rgba(111, 162, 255, 0.3);
}

.u-padding-7px-11px {
  padding: 7px 11px;
}

.hover-u-background-rgba-111-162-255-0-2:hover {
  background: rgba(111, 162, 255, 0.2);
}

.u-max-width-264px {
  max-width: 264px;
}

.u-box-shadow-0-18px-44px-rgba-0-0-0-0-4 {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.u-width-175 {
  width: 175%;
}

.u-left-36 {
  left: -36%;
}

.u-top-8 {
  top: 8%;
}

.u-border-3px-solid-070c16 {
  border: 3px solid var(--subsite-bg);
}

/* Subsite components and states */
:root {
  --subsite-bg: #070c16;
  --subsite-panel: #0a1120;
  --subsite-card: #0c1526;
  --subsite-text: #e8edf6;
  --subsite-muted: #aeb8ca;
  --subsite-accent: #6fa2ff;
  --subsite-success: #3fd98b;
  --subsite-warning: #f5b14c;
  --subsite-container: 1280px;
}

body.subsite-page {
  background: var(--subsite-bg);
}

.subsite {
  min-height: 100%;
  background: var(--subsite-bg);
  color: var(--subsite-text);
}

.subsite-footer .u-color-6b7688 {
  color: #748198;
}

.subsite-page input::-moz-placeholder {
  color: #748198;
  opacity: 1;
}

.subsite-page input::placeholder {
  color: #748198;
  opacity: 1;
}

.subsite-navigation.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.subsite [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subsite [data-step-dot].is-complete {
  background: var(--subsite-accent);
  border-color: var(--subsite-accent);
  color: #071018;
}

.subsite [data-step-dot].is-current {
  box-shadow: 0 14px 34px rgba(111, 162, 255, 0.4);
  transform: scale(1.12);
}

.subsite [data-step-line].is-complete {
  width: 100%;
}

.subsite .status-tile--open [data-tile-dot] {
  background: #7a8496;
}

.subsite .status-tile--work [data-tile-dot] {
  background: var(--subsite-warning);
}

.subsite .status-tile--done [data-tile-dot] {
  background: var(--subsite-success);
}

.subsite .status-tile--open [data-tile-state] {
  color: #7a8496;
}

.subsite .status-tile--work [data-tile-state] {
  color: var(--subsite-warning);
}

.subsite .status-tile--done [data-tile-state] {
  color: var(--subsite-success);
}

.subsite [data-gw=herochat].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subsite .screenshot-gallery.is-dragging {
  cursor: grabbing;
}

.subsite .screenshot-gallery__card {
  z-index: 50;
}

.subsite [data-seg].is-active {
  background: var(--subsite-accent);
}

.route-progress__bar {
  transform-origin: left center;
}

.feature-card {
  box-sizing: border-box;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: var(--subsite-card);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  background: #0f1a2e;
  border-color: rgba(111, 162, 255, 0.4);
}

.screenshot-gallery {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 32px 28px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.screenshot-gallery:focus-visible {
  outline: 3px solid var(--subsite-accent);
  outline-offset: 3px;
}

.screenshot-gallery__card {
  flex: 0 0 560px;
  max-width: 86vw;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-gallery__control {
  position: absolute;
  z-index: 400;
  top: 50%;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(10, 17, 32, 0.75);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s;
}

.screenshot-gallery__control:hover {
  background: rgba(27, 91, 255, 0.6);
}

.screenshot-gallery__control--previous {
  left: 22px;
}

.screenshot-gallery__control--next {
  right: 22px;
}

.screenshot-gallery__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #0a0d13;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.heatmap__cell {
  aspect-ratio: 1;
  border-radius: 3px;
}

.heatmap__cell--0 {
  background: #12233f;
}

.heatmap__cell--1 {
  background: #1e4a86;
}

.heatmap__cell--2 {
  background: #2c7be5;
}

.heatmap__cell--3 {
  background: var(--subsite-accent);
}

/* CTA hover states shared by the subsite header and footer. */
.subsite-button {
  transition: background-color 0.25s ease, background-position 0.25s ease, box-shadow 0.25s ease;
}

.subsite-button--filled {
  background-image: linear-gradient(135deg, #3d8bff, #1b5bff, #0f47e6);
  background-position: 0 0;
  background-size: 200% 100%;
}

.subsite-button--filled:hover {
  background-position: 100% 0;
}

.subsite-button--border:hover {
  background: var(--content-theme-control-hover, rgba(255, 255, 255, 0.12)) !important;
}/*# sourceMappingURL=denq_subsite.css.map */