:root {
  --color-bg: #FFFFFF;
  --color-panel: #F7F7F5;
  --color-panel-cool: #EFF6F7;
  --color-border: #E8E8E6;
  --color-accent: #ECA400;
  --color-accent-dark: #C07E00;
  --color-text: #1E2528;
  --color-text-muted: #5F6B70;
  --color-success: #2F8F6B;
  --color-warning: #ECA400;
  --color-error: #D64545;
  --color-illustration-field: #DDEFE9;
  --color-illustration-ridge-far: #C3E1D6;
  --color-illustration-ridge-near: #A8D5C6;
  --color-illustration-water: #7CBFBA;
  --color-illustration-water-deep: #64ACA8;
  --color-illustration-green-light: #7FBD97;
  --color-illustration-green: #4C9C77;
  --color-illustration-green-deep: #2E7A5B;
  --color-illustration-trunk: #3D6B55;
  --color-ripple: rgba(255, 255, 255, 0.34);
  --color-reflection: rgba(255, 255, 255, 0.16);
  --color-glass: rgba(255, 255, 255, 0.48);
  --color-glass-highlight: rgba(255, 255, 255, 0.75);
  --color-glass-shadow: rgba(30, 37, 40, 0.06);
  --color-shadow-soft: rgba(30, 37, 40, 0.08);
  --color-shadow-faint: rgba(30, 37, 40, 0.05);
  --color-overlay: rgba(30, 37, 40, 0.32);
  --color-focus: rgba(236, 164, 0, 0.3);
  --color-accent-wash: rgba(236, 164, 0, 0.12);
  --color-success-wash: rgba(47, 143, 107, 0.12);
  --color-error-wash: rgba(214, 69, 69, 0.1);

  --font-display: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;

  --radius-small: 12px;
  --radius-medium: 18px;
  --radius-large: 34px;
  --radius-pill: 999px;

  --shadow-small: 0 1px 2px var(--color-glass-shadow), 0 6px 16px var(--color-shadow-soft);
  --shadow-large: 0 2px 6px var(--color-shadow-faint), 0 18px 40px var(--color-shadow-soft);

  --content-width: 1200px;
  --reading-width: 820px;
  --header-width: 1280px;
  --header-height: 68px;
  --gutter: clamp(16px, 3vw, 32px);
  --section-space: clamp(72px, 10vw, 132px);
  --transition-fast: 160ms ease;
  --transition-soft: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

html.nav-open {
  overflow: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main,
section,
header,
footer,
nav,
article,
aside,
div {
  min-width: 0;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button {
  border: 0;
}

a {
  color: var(--color-accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-text);
}

p,
ul,
ol,
blockquote,
pre,
table {
  margin-top: 0;
  margin-bottom: 1.25em;
}

ul,
ol {
  padding-left: 1.35em;
}

li + li {
  margin-top: 0.35em;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  margin-bottom: 0.45em;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: 0.002em;
  line-height: 1.16;
}

h2 {
  margin-bottom: 0.65em;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.22;
}

h3 {
  margin-bottom: 0.55em;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
}

h4 {
  margin-bottom: 0.45em;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

strong {
  font-weight: 600;
}

small {
  color: var(--color-text-muted);
}

code,
kbd,
samp {
  font-family: var(--font-mono);
}

code {
  overflow-wrap: anywhere;
  border-radius: var(--radius-small);
  background: var(--color-panel-cool);
  color: var(--color-text);
  padding: 0.12em 0.38em;
  font-size: 0.9em;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-medium);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 20px;
  line-height: 1.65;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  overflow-wrap: normal;
  white-space: pre;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text);
}

th,
td {
  border-bottom: 1px solid var(--color-border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--color-panel-cool);
  color: var(--color-text);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

::selection {
  background: var(--color-accent-wash);
  color: var(--color-text);
}

.wrap {
  width: 100%;
  max-width: calc(var(--content-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.reading-wrap {
  width: 100%;
  max-width: calc(var(--reading-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header-shell {
  width: 100%;
  max-width: min(100%, calc(var(--header-width) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  overflow-x: clip;
}

.section-panel {
  background: var(--color-panel);
  color: var(--color-text);
}

.section-cool {
  background: var(--color-panel-cool);
  color: var(--color-text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nowrap-keyword {
  white-space: nowrap;
}

.muted {
  color: var(--color-text-muted);
}

.mono {
  font-family: var(--font-mono);
}

.card,
.panel {
  border-radius: var(--radius-large);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-large);
}

.card {
  padding: clamp(22px, 3vw, 34px);
}

.panel {
  padding: clamp(26px, 4vw, 48px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card-grid > * {
  min-width: 0;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.btn {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.button svg,
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.button-primary,
.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-small);
}

.button-primary:hover,
.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.button-secondary,
.btn-ghost {
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-small);
}

.button-secondary:hover,
.btn-ghost:hover {
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.button-quiet {
  background: var(--color-panel);
  color: var(--color-text);
}

.button-quiet:hover {
  background: var(--color-panel-cool);
  color: var(--color-text);
}

.button[disabled],
.button.is-disabled {
  cursor: not-allowed;
  background: var(--color-border);
  color: var(--color-text-muted);
  box-shadow: none;
  transform: none;
}

.site-head {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
  color: var(--color-text);
}

.head-row {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  color: var(--color-text);
  text-decoration: none;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 14.5px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.desktop-nav a:hover {
  color: var(--color-accent-dark);
}

.desktop-nav a.is-active {
  color: var(--color-text);
  font-weight: 600;
}

.header-tools {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.language-button,
.menu-button {
  min-height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: var(--color-panel);
  color: var(--color-text-muted);
  box-shadow: var(--shadow-small);
}

.language-button {
  min-width: 118px;
  padding: 8px 15px;
  font-size: 13.5px;
  white-space: nowrap;
}

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

.language-short {
  display: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 104;
  display: none;
  width: 190px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-large);
}

.language-menu.is-open {
  display: block;
}

.language-menu a {
  display: flex;
  min-height: 44px;
  width: 100%;
  align-items: center;
  padding: 10px 16px;
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--color-panel-cool);
  color: var(--color-text);
}

.menu-button {
  display: none;
  min-width: 44px;
  width: 44px;
  padding: 0;
  place-items: center;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 103;
  display: none;
  width: min(420px, 100%);
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-large);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer-group {
  padding: 10px var(--gutter) 18px;
}

.mobile-drawer-label {
  margin: 12px 0 6px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mobile-drawer a {
  display: flex;
  min-height: 48px;
  width: 100%;
  align-items: center;
  border-radius: var(--radius-small);
  padding: 10px 12px;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-drawer a:hover,
.mobile-drawer a.is-active,
.mobile-drawer a[aria-current="true"] {
  background: var(--color-panel-cool);
  color: var(--color-text);
}

.nav-veil {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 99;
  display: none;
  background: var(--color-overlay);
}

.nav-veil.is-open {
  display: block;
}

.site-footer {
  overflow-x: clip;
  background: var(--color-panel);
  color: var(--color-text);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--color-text-muted);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
  color: var(--color-text-muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  padding-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--transition-soft), transform var(--transition-soft);
}

.reveal.shown {
  opacity: 1;
  transform: none;
}

.hero {
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  padding-top: 36px;
  text-align: center;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badge,
.proto-pill,
.badge {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  box-shadow: var(--shadow-small);
  line-height: 1.4;
}

.hero-badge {
  background: var(--color-panel);
  color: var(--color-text-muted);
  font-size: 13px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-success);
  animation: badge-breathe 2.8s ease-in-out infinite;
}

.proto-pill {
  background: var(--color-panel-cool);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.hero h1 {
  max-width: 920px;
  margin-inline: auto;
}

.hero-desc {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--color-text);
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 26px auto 32px;
}

.platform-item {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding-inline: 20px;
  color: var(--color-text-muted);
  font-size: 13.5px;
  text-decoration: none;
}

.platform-item:hover {
  color: var(--color-accent-dark);
}

.platform-item + .platform-item {
  border-left: 1px solid var(--color-border);
}

.platform-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lake {
  position: relative;
  width: calc(100% - 64px);
  max-width: 1376px;
  height: 380px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--color-illustration-field);
  color: var(--color-text);
  box-shadow: var(--shadow-large);
}

.lake-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-field {
  fill: var(--color-illustration-field);
}

.scene-ridge-far {
  fill: var(--color-illustration-ridge-far);
}

.scene-ridge-near {
  fill: var(--color-illustration-ridge-near);
}

.scene-water {
  fill: var(--color-illustration-water);
}

.scene-water-deep {
  fill: var(--color-illustration-water-deep);
}

.scene-green-light {
  fill: var(--color-illustration-green-light);
}

.scene-green {
  fill: var(--color-illustration-green);
}

.scene-green-deep {
  fill: var(--color-illustration-green-deep);
}

.scene-trunk {
  fill: var(--color-illustration-trunk);
}

.scene-ripple {
  fill: var(--color-ripple);
}

.scene-reflection {
  fill: var(--color-reflection);
}

.tube {
  position: absolute;
  top: 48%;
  right: 0;
  left: 0;
  height: 72px;
  transform: translateY(-50%);
}

.parcel {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 1;
  width: 46px;
  height: 40px;
  border-radius: var(--radius-small);
  background: linear-gradient(160deg, var(--color-accent), var(--color-accent-dark));
  filter: blur(6px);
  opacity: 0.85;
  animation: parcel-glide 28s linear infinite;
}

.tube-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--color-glass);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(7px) saturate(1.05);
  -webkit-backdrop-filter: blur(7px) saturate(1.05);
}

.tube-glass::before,
.tube-glass::after {
  position: absolute;
  right: 0;
  left: 0;
  border-radius: var(--radius-pill);
  content: "";
}

.tube-glass::before {
  top: 8px;
  height: 12px;
  background: linear-gradient(90deg, transparent, var(--color-glass-highlight) 18%, var(--color-glass-highlight) 82%, transparent);
  opacity: 0.85;
}

.tube-glass::after {
  bottom: 5px;
  height: 8px;
  background: var(--color-glass-shadow);
}

.preview-block {
  padding-top: 72px;
  padding-bottom: 72px;
  overflow-x: clip;
}

.preview-block + .preview-block {
  border-top: 1px solid var(--color-border);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.swatch {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-small);
}

.swatch-color {
  height: 92px;
}

.swatch-body {
  padding: 14px;
}

.swatch-body strong,
.swatch-body code {
  display: block;
}

.swatch-bg {
  background: var(--color-bg);
}

.swatch-panel {
  background: var(--color-panel);
}

.swatch-panel-cool {
  background: var(--color-panel-cool);
}

.swatch-border {
  background: var(--color-border);
}

.swatch-accent {
  background: var(--color-accent);
}

.swatch-accent-dark {
  background: var(--color-accent-dark);
}

.swatch-text {
  background: var(--color-text);
}

.swatch-muted {
  background: var(--color-text-muted);
}

.swatch-success {
  background: var(--color-success);
}

.swatch-warning {
  background: var(--color-warning);
}

.swatch-error {
  background: var(--color-error);
}

.swatch-water {
  background: var(--color-illustration-water);
}

@keyframes parcel-glide {
  from {
    transform: translateX(-140px);
  }

  to {
    transform: translateX(calc(100vw + 140px));
  }
}

@keyframes badge-breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .menu-button {
    display: grid;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .lake {
    width: calc(100% - 32px);
    height: 300px;
  }
}

@media (max-width: 768px) {
  h1,
  .hero h1 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .platform-item {
    padding: 4px 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 15px;
  }

  .language-button {
    min-width: 52px;
    padding-inline: 11px;
  }

  .language-full {
    display: none;
  }

  .language-short {
    display: inline;
  }

  .card-grid,
  .swatch-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: auto;
  }

  .button-row,
  .hero-cta {
    align-items: stretch;
  }

  .hero-cta .button,
  .hero-cta .btn {
    flex: 1 1 150px;
  }

  .platform-row {
    row-gap: 8px;
  }

  .platform-item + .platform-item {
    border-left: 0;
  }

  .lake {
    width: calc(100% - 32px);
    height: 250px;
  }

  .tube {
    height: 62px;
  }

  .parcel {
    top: 14px;
    width: 40px;
    height: 34px;
  }

  .tilt,
  [class*="tilt-"] {
    transform: none;
  }

  th,
  td {
    padding: 12px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 128px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-badge,
  .proto-pill {
    padding: 6px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  .parcel {
    left: 50%;
    animation: none;
    transform: translateX(-50%);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}