/* ==========================================================================
   DOZ — Deutsches Optimierungszentrum · site.css
   Everything the Tailwind CDN can't express: fonts, themes, atmosphere, motion.

   THEMING: all colors live in CSS variables. :root holds the dark palette;
   html.light switches to light. LIGHT is the site default: the head bootstrap
   adds html.light unless localStorage['doz-theme'] === 'dark'. Tailwind
   utilities pick the vars up via tailwind-config.js, so bg-surface, text-ink,
   border-line … re-theme freely.
   ========================================================================== */

/* ----- Design tokens ------------------------------------------------------- */
:root {
  /* palette (space-separated RGB for Tailwind <alpha-value> support) */
  --c-night: 3 7 15;
  --c-surface: 10 17 32;
  --c-raised: 17 26 46;
  --c-ink: 244 246 251;
  --c-muted: 139 147 167;
  --c-silver: 201 206 217;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-accent: 215 25 32;
  --c-accentstrong: 179 20 29;
  --c-gold: 245 184 0;

  /* pixel map bands (the logo): "black" band is silver on dark ground */
  --map-a: #c9ced9;
  --map-b: #d71920;
  --map-c: #f5b800;
  /* outline map */
  --map-stroke: rgba(201, 206, 217, 0.85);
  --geo-1: #141d33;
  --geo-2: #0a1120;
  --geo-3: #070d1a;
  --map-label: #f4f6fb;
  --label-shadow: 0 1px 12px rgba(3, 7, 15, 0.95);
  --label-shadow-big: 0 2px 18px rgba(3, 7, 15, 0.9);

  --gridline: rgba(255, 255, 255, 0.025);
  --stripe-a: #2a2f3a; /* flag black, lifted to read on dark */
  --focus: #f5b800;
  --shadow-card:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(215, 25, 32, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-card-gold:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 8px 24px rgba(245, 184, 0, 0.07),
    0 24px 64px rgba(0, 0, 0, 0.5);
  --glass-bg: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  --glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 16px 48px rgba(0, 0, 0, 0.45);
}

html.light {
  --c-night: 244 245 248;
  --c-surface: 255 255 255;
  --c-raised: 236 238 244;
  --c-ink: 23 26 33;
  --c-muted: 96 102 116;
  --c-silver: 42 47 58; /* the flag-black role, back to dark like the original logo */
  --c-line: rgba(15, 23, 42, 0.12);
  --c-gold: 158 117 0; /* readable gold for TEXT on light ground */

  --map-a: #171a21; /* pixel map: real black band, like the original picture */
  --map-stroke: rgba(23, 26, 33, 0.7);
  --geo-1: #ffffff;
  --geo-2: #f2f4f8;
  --geo-3: #e8ebf2;
  --map-label: #171a21;
  --label-shadow: 0 1px 10px rgba(255, 255, 255, 0.95);
  --label-shadow-big: 0 2px 16px rgba(255, 255, 255, 0.9);

  --gridline: rgba(15, 23, 42, 0.045);
  --stripe-a: #111111;
  --focus: #9a7500;
  --shadow-card:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(215, 25, 32, 0.05),
    0 20px 48px rgba(15, 23, 42, 0.1);
  --shadow-card-gold:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(158, 117, 0, 0.08),
    0 20px 48px rgba(15, 23, 42, 0.1);
  --glass-bg: linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  --glass-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 8px rgba(15, 23, 42, 0.08),
    0 16px 48px rgba(15, 23, 42, 0.12);
}

/* ----- Self-hosted fonts (GDPR: no Google Fonts CDN) --------------------- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-v22-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-v22-latin-700.woff2') format('woff2');
}

/* ----- Base --------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  background-color: rgb(var(--c-night));
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: rgb(var(--c-night));
  color: rgb(var(--c-ink));
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(215, 25, 32, 0.35);
  color: rgb(var(--c-ink));
}

/* Focus ring — keyboard users always see it, in both themes. */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- Glass navbar (pill) -------------------------------------------------- */
/* Auto-hide: slides away while scrolling down, returns on the first upward scroll. */
.nav-anim {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-hidden {
  transform: translateY(-130%);
}

.nav-glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
}

/* ----- Header-Bildmarke (Original-Logo, eine Variante je Theme) --------------
   logo.png = Original (schwarzes Band, fürs helle Theme); logo-dark.png =
   Schwarz durch Silber ersetzt, sonst wäre das obere Band auf Dunkel unsichtbar. */
.logo-img-light { display: none; }
html.light .logo-img-light { display: block; }
html.light .logo-img-dark { display: none; }

/* ----- Theme toggle (sliding moon/sun pill, top right) ----------------------- */
.theme-toggle {
  position: relative;
  width: 3.5rem;
  height: 1.75rem;
  padding: 3px;
  border-radius: 9999px;
  border: 1px solid var(--c-line);
  background: rgb(var(--c-night) / 0.55);
  cursor: pointer;
  flex: none;
}
.theme-toggle .toggle-knob {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: rgb(var(--c-raised));
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}
html.light .theme-toggle .toggle-knob {
  transform: translateX(1.65rem);
  background: #ffffff;
}
.theme-toggle .icon-sun,
html.light .theme-toggle .icon-moon {
  display: none;
}
html.light .theme-toggle .icon-sun {
  display: block;
}
.theme-toggle .toggle-rest {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
  right: 9px;
}
html.light .theme-toggle .toggle-rest {
  right: auto;
  left: 9px;
}
.theme-toggle .toggle-rest .icon-sun {
  display: block;
}
html.light .theme-toggle .toggle-rest .icon-sun {
  display: none;
}
.theme-toggle .toggle-rest .icon-moon {
  display: none;
}
html.light .theme-toggle .toggle-rest .icon-moon {
  display: block;
}

/* ----- Atmosphere ------------------------------------------------------------
   One cool ink glow + a faint gold ember. Red is reserved for CTAs and the
   watermark so the field stays quiet. .glow-field and .grid-lines both paint
   background-image, so elements carrying BOTH classes get a combined rule
   below — otherwise one would silently override the other. */
.glow-field {
  background-image:
    radial-gradient(ellipse 95% 85% at 28% -22%, rgba(52, 76, 130, 0.78) 0%, rgba(48, 70, 120, 0.26) 45%, transparent 75%),
    radial-gradient(ellipse 60% 50% at 88% -10%, rgba(245, 184, 0, 0.1), transparent 70%);
}
.glow-field-low {
  background-image:
    radial-gradient(ellipse 90% 80% at 50% 120%, rgba(52, 76, 130, 0.66) 0%, rgba(48, 70, 120, 0.22) 45%, transparent 72%),
    radial-gradient(ellipse 46% 40% at 12% 104%, rgba(245, 184, 0, 0.08), transparent 70%);
}
html.light .glow-field {
  background-image:
    radial-gradient(ellipse 90% 75% at 28% -20%, rgba(120, 140, 190, 0.22) 0%, rgba(120, 140, 190, 0.08) 45%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 88% -8%, rgba(245, 184, 0, 0.1), transparent 68%);
}
html.light .glow-field-low {
  background-image:
    radial-gradient(ellipse 85% 70% at 50% 118%, rgba(120, 140, 190, 0.18) 0%, rgba(120, 140, 190, 0.07) 45%, transparent 70%),
    radial-gradient(ellipse 42% 36% at 12% 102%, rgba(245, 184, 0, 0.07), transparent 70%);
}

/* Retired: .aurora blob layer. Kept as a no-op so existing markup stays valid. */
.aurora {
  position: relative;
}

/* Faint technical grid lines (solo use). */
.grid-lines {
  background-image:
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Hero atmosphere: glow + grid composed in one stack. Layer order (top→bottom):
   1. fade that melts the grid into the page base toward the hero's bottom edge
   2. cool ink glow  3. gold ember  4./5. grid lines */
.glow-field.grid-lines {
  background-image:
    linear-gradient(to bottom, rgb(var(--c-night) / 0) 40%, rgb(var(--c-night)) 96%),
    radial-gradient(ellipse 95% 85% at 28% -22%, rgba(52, 76, 130, 0.78) 0%, rgba(48, 70, 120, 0.26) 45%, transparent 75%),
    radial-gradient(ellipse 60% 50% at 88% -10%, rgba(245, 184, 0, 0.1), transparent 70%),
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}
html.light .glow-field.grid-lines {
  background-image:
    linear-gradient(to bottom, rgb(var(--c-night) / 0) 40%, rgb(var(--c-night)) 96%),
    radial-gradient(ellipse 90% 75% at 28% -20%, rgba(120, 140, 190, 0.22) 0%, rgba(120, 140, 190, 0.08) 45%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 88% -8%, rgba(245, 184, 0, 0.1), transparent 68%),
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}
.glow-field-low.grid-lines {
  background-image:
    linear-gradient(to bottom, rgb(var(--c-night)) 2%, rgb(var(--c-night) / 0) 30%),
    radial-gradient(ellipse 90% 80% at 50% 120%, rgba(52, 76, 130, 0.66) 0%, rgba(48, 70, 120, 0.22) 45%, transparent 72%),
    radial-gradient(ellipse 46% 40% at 12% 104%, rgba(245, 184, 0, 0.08), transparent 70%),
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}
html.light .glow-field-low.grid-lines {
  background-image:
    linear-gradient(to bottom, rgb(var(--c-night)) 2%, rgb(var(--c-night) / 0) 30%),
    radial-gradient(ellipse 85% 70% at 50% 118%, rgba(120, 140, 190, 0.18) 0%, rgba(120, 140, 190, 0.07) 45%, transparent 70%),
    radial-gradient(ellipse 42% 36% at 12% 102%, rgba(245, 184, 0, 0.07), transparent 70%),
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}

/* Hero logo: pixels assemble on load, whole mark floats gently. */
.px-anim rect {
  opacity: 0;
  transform: scale(0.2);
  transform-origin: center;
  transform-box: fill-box;
  animation: px-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes px-in {
  to {
    opacity: 1;
    transform: none;
  }
}
.float-slow {
  animation: float-slow 7s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes float-slow {
  from {
    transform: translateY(-6px) rotate(-0.4deg);
  }
  to {
    transform: translateY(8px) rotate(0.4deg);
  }
}

/* Pixel map band colors (theme-aware; classes set by layout.js/hero-scrolly.js) */
.px-a {
  fill: var(--map-a);
}
.px-b {
  fill: var(--map-b);
}
.px-c {
  fill: var(--map-c);
}

/* Film grain: inline SVG turbulence, sits above gradients, below content. */
.grain {
  position: relative;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}
html.light .grain::before {
  opacity: 0.05;
}
.grain > * {
  position: relative;
  z-index: 2;
}

/* Subpage headers: the DOZ pixel map as a large quiet watermark, right side. */
.page-watermark {
  position: absolute;
  top: 50%;
  right: -7%;
  transform: translateY(-48%);
  width: min(40vw, 480px);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
html.light .page-watermark {
  opacity: 0.09;
}
.page-watermark svg {
  width: 100%;
  height: auto;
}

/* German-flag device, band A adapts per theme. */
.flag-stripe {
  background: linear-gradient(
    to right,
    var(--stripe-a) 0%,
    var(--stripe-a) 33.4%,
    #d71920 33.4%,
    #d71920 66.7%,
    #f5b800 66.7%,
    #f5b800 100%
  );
}

/* Layered, color-tinted card shadows (never flat shadow-md). */
.card-shadow {
  box-shadow: var(--shadow-card);
}
.card-shadow-gold {
  box-shadow: var(--shadow-card-gold);
}

/* Eyebrow label with the pixel-square tick. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--c-muted));
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 1.5px;
  background: #f5b800;
  flex: none;
}

/* Map label next to the Gelsenkirchen marker: soft halo so the text stays
   readable over the outline strokes — theme-aware. */
.map-label {
  text-shadow: 0 2px 14px rgba(3, 7, 15, 0.9);
}
html.light .map-label {
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95);
}

/* Media hero (video background): a dark block in BOTH themes, so text inside
   uses fixed light colors instead of theme variables. */
.media-hero {
  background-color: #03070f;
}
.media-hero .eyebrow {
  color: rgb(255 255 255 / 0.72);
}

/* Satellite dive: stacked open-data imagery, blended by the scroll camera. */
.sat-layer {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
}
#hero-sat::after {
  /* vignette keeps the night mood around the bright imagery */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 78% 68% at 50% 48%, transparent 55%, rgba(3, 7, 15, 0.55) 100%);
}
html.light #hero-sat::after {
  background: radial-gradient(ellipse 78% 68% at 50% 48%, transparent 60%, rgba(244, 245, 248, 0.5) 100%);
}

/* Team presence: dot in the map (area = headcount), count annotated OUTSIDE
   the map via a leader line. */
.team-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: rgba(245, 184, 0, 0.4);
  border: 1.5px solid rgba(245, 184, 0, 0.95);
  box-shadow: 0 0 16px rgba(245, 184, 0, 0.3);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}
.callout-node {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1.05;
}
.callout-node .co-n {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: rgb(var(--c-ink));
  text-shadow: var(--label-shadow);
}
.callout-node .co-name {
  display: block;
  margin-top: 3px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--c-muted));
  text-shadow: var(--label-shadow);
}
#hero-lines line {
  stroke: rgb(var(--c-silver) / 0.5);
  stroke-width: 1;
}

/* Legend variants: gold tick (default .eyebrow) / red tick for Kunden. */
.eyebrow-red::before {
  background: #d71920;
}

/* City fly-by labels + map label shadows (scroll hero). */
.city-node {
  position: absolute;
  /* Punkt-Mitte (nicht Box-Mitte) liegt auf der Stadtposition */
  transform: translate(-3px, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}
.city-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(245, 184, 0, 0.8);
  box-shadow: 0 0 12px rgba(245, 184, 0, 0.35);
}
.city-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--c-silver) / 0.9);
  text-shadow: var(--label-shadow);
}
.map-label {
  text-shadow: var(--label-shadow-big);
}

/* ----- Motion ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track {
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marker-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(2.6);
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
.marker-pulse {
  animation: marker-pulse 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: center;
}

.btn-lift {
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
}
.btn-lift:hover {
  transform: translateY(-2px);
}
.btn-lift:active {
  transform: translateY(0) scale(0.98);
}

/* Cards come alive on hover: gentle grow + lift, ring brightens via opacity.
   Standalone translate/scale properties compose with the transform-based
   .reveal entrance instead of overwriting it. */
.card-lift {
  position: relative;
  transition:
    translate 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    scale 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-lift:hover {
  translate: 0 -3px;
  scale: 1.015;
}
.card-lift:active {
  translate: 0 -1px;
  scale: 0.995;
}
.card-lift::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgb(var(--c-silver) / 0.28);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.card-lift:hover::after {
  opacity: 1;
}

/* Text-only tiles (hero stats): grow slightly from their left edge. */
.tile-lift {
  transition: scale 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left center;
}
.tile-lift:hover {
  scale: 1.04;
}

.faq-item .faq-chevron {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[data-open='true'] .faq-chevron {
  transform: rotate(45deg);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[data-open='true'] .faq-panel {
  grid-template-rows: 1fr;
}
.faq-panel > div {
  overflow: hidden;
}

/* ----- Reduced motion ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .marker-pulse,
  .px-anim rect,
  .float-slow {
    animation: none;
  }
  .px-anim rect {
    opacity: 1;
    transform: none;
  }
  .theme-toggle .toggle-knob,
  .nav-anim {
    transition: none;
  }
  .btn-lift,
  .faq-item .faq-chevron,
  .faq-panel {
    transition: none;
  }
  .card-lift,
  .tile-lift {
    transition: none;
  }
  .card-lift:hover,
  .card-lift:active {
    translate: none;
    scale: none;
  }
  .tile-lift:hover {
    scale: none;
  }
}
