:root {
  --snow: #f7f8f5;
  --paper: #ffffff;
  --ink: #0e1111;
  --graphite: #1d2424;
  --mist: #e9eeeb;
  --line: #cfd8d4;
  --oak: #d7c29f;
  --steel: #718487;
  --glacier: #bfeee9;
  --focus: #163f3d;
  --shadow: 0 24px 80px rgba(14, 17, 17, 0.12);
  --display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --body: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  mix-blend-mode: difference;
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: max-content;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 32px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  color: currentColor;
  font-family: var(--display);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.header-cta {
  opacity: 0.88;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  justify-content: center;
  min-width: 76px;
  min-height: 38px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(92px, 12vw, 132px) clamp(18px, 4vw, 56px) clamp(24px, 5vw, 64px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(10, 13, 13, 0.98) 0%, rgba(10, 13, 13, 0.92) 35%, rgba(10, 13, 13, 0.58) 61%, rgba(10, 13, 13, 0.08) 100%),
    url("assets/hero-north-workstation.png") right center / cover no-repeat,
    var(--ink);
}

.hero-content {
  max-width: 980px;
  padding-bottom: clamp(18px, 4vw, 38px);
}

.eyebrow,
.section-kicker,
.quote-label {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--glacier);
}

.eyebrow.dark,
.section-kicker {
  color: var(--steel);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 108px;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: clamp(28px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.25;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 180px));
  gap: 1px;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-metrics div {
  min-height: 112px;
  padding: 18px;
  background: rgba(14, 17, 17, 0.62);
  backdrop-filter: blur(16px);
}

.hero-metrics span {
  display: block;
  font-family: var(--display);
  font-size: 46px;
  line-height: 0.9;
}

.hero-metrics small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-builder {
  align-self: end;
  justify-self: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(14, 17, 17, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.builder-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.builder-topline strong {
  font-size: 13px;
}

.count-row,
.segmented {
  display: grid;
  gap: 6px;
}

.count-row {
  grid-template-columns: repeat(4, 1fr);
}

.count-button,
.segmented button,
.variant-card,
.spin-button,
.copy-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.count-button {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
}

.count-button[aria-pressed="true"],
.segmented button[aria-pressed="true"],
.variant-card[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.count-button[aria-pressed="true"] {
  border-color: var(--glacier);
  background: var(--glacier);
  color: var(--ink);
}

.hero-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-brief span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.config-section,
.machine-spec-section,
.north-section,
.proof-section,
.pricing-section {
  padding: clamp(72px, 10vw, 142px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  max-width: 1380px;
  margin: 0 auto clamp(34px, 6vw, 72px);
}

.section-heading h2,
.north-copy h2,
.proof-section h2,
.pricing-section h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p,
.north-copy p,
.pricing-copy p {
  margin-bottom: 0;
  color: #4a5554;
  font-size: 20px;
  line-height: 1.35;
}

.config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}

.config-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.config-panel {
  padding: clamp(16px, 2vw, 24px);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.variant-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  text-align: left;
}

.variant-card:hover,
.segmented button:hover,
.spin-button:hover,
.copy-button:hover {
  transform: translateY(-1px);
  border-color: var(--ink);
}

.variant-card span,
.variant-card small,
.field-label,
.control-block label,
.spec-list span,
.quote-note,
.source-list,
.copy-button {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
}

.variant-card span,
.field-label,
.control-block label,
.spec-list span {
  color: var(--steel);
  font-weight: 600;
  text-transform: uppercase;
}

.variant-card[aria-pressed="true"] span,
.variant-card[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.68);
}

.variant-card strong {
  display: block;
  max-width: 10ch;
  font-family: var(--display);
  font-size: 30px;
  line-height: 0.92;
  text-transform: uppercase;
}

.variant-card small {
  color: #596563;
}

.control-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.chassis-block {
  padding-top: 0;
  border-top: 0;
}

.control-block label,
.field-label {
  display: block;
  margin-bottom: 10px;
}

.chassis-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 18px;
  align-items: stretch;
}

.chassis-stage {
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(14, 17, 17, 0.06);
  border-radius: 8px;
  background: var(--paper);
  perspective: 1100px;
}

.chassis-stage[data-tone="black"] {
  background: var(--paper);
}

.chassis-stage::after {
  content: none;
}

.chassis-turntable {
  width: min(88%, 460px);
  transform: rotateX(3deg) rotateY(-10deg) translateY(-10px);
  transform-style: preserve-3d;
  transform-origin: 50% 66%;
  transition: transform 260ms ease;
  z-index: 1;
  animation: chassis-float 5.8s ease-in-out infinite;
}

.chassis-stage:hover .chassis-turntable {
  transform: rotateX(3deg) rotateY(-16deg) translateY(-15px);
}

.chassis-stage.is-spinning .chassis-turntable {
  animation: chassis-spin 860ms cubic-bezier(0.7, 0, 0.2, 1);
}

.chassis-turntable img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.chassis-badge {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: min(78%, 260px);
  padding: 10px 12px;
  border: 1px solid rgba(14, 17, 17, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(14, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.chassis-badge span,
.chassis-badge strong,
.spin-button {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.chassis-badge strong {
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.9;
}

.chassis-controls {
  display: grid;
  gap: 16px;
  align-content: end;
}

.swatch-row button {
  gap: 8px;
}

.swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.swatch-white {
  background: linear-gradient(135deg, #ffffff 0%, #e3e7e4 100%);
}

.swatch-black {
  border-color: #303737;
  background: linear-gradient(135deg, #050606 0%, #353c3c 100%);
}

.spin-button {
  min-height: 48px;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 56px;
  padding: 0 44px 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.split-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.segmented {
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.segmented button {
  min-height: 48px;
  padding: 0 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.control-block .toggle {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink) !important;
  cursor: pointer;
  margin-bottom: 0;
}

.control-block .toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.control-block .toggle .toggle-track {
  width: 48px;
  height: 28px;
  display: block;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--steel);
  border-radius: 999px;
  background: var(--mist);
}

.control-block .toggle .toggle-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--steel);
  transition: transform 180ms ease, background 180ms ease;
}

.control-block .toggle input:checked + .toggle-track {
  border-color: var(--ink);
  background: var(--glacier);
}

.control-block .toggle input:checked + .toggle-track::after {
  transform: translateX(20px);
  background: var(--ink);
}

.control-block .toggle .toggle-label {
  min-width: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-panel {
  position: sticky;
  top: 88px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quote-image {
  aspect-ratio: 4 / 3;
  background: var(--graphite);
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-main,
.spec-list,
.quote-note,
.copy-button {
  margin-inline: 18px;
}

.quote-main {
  padding: 22px 0 8px;
}

.quote-label {
  color: var(--steel);
}

.quote-main strong {
  display: block;
  font-family: var(--display);
  font-size: 60px;
  line-height: 0.95;
}

.quote-main span {
  display: block;
  margin-top: 8px;
  color: #4e5b59;
  font-size: 16px;
  font-weight: 700;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 12px;
  background: var(--paper);
}

.spec-list strong {
  text-align: right;
}

.copy-button {
  width: calc(100% - 36px);
  min-height: 52px;
  margin-top: 18px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
}

.quote-note {
  margin-top: 14px;
  margin-bottom: 20px;
  color: #65716f;
}

.north-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  background: var(--paper);
}

.machine-spec-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.machine-spec-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  max-width: 1380px;
  margin: 0 auto clamp(34px, 6vw, 72px);
}

.machine-spec-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.machine-spec-heading p {
  margin-bottom: 0;
  color: #4a5554;
  font-size: 20px;
  line-height: 1.35;
}

.machine-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1380px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.machine-spec-grid article {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.5vw, 28px);
  background: var(--snow);
}

.machine-spec-grid span {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.machine-spec-grid strong {
  display: block;
  margin: 18px 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}

.machine-spec-grid p {
  margin-bottom: 0;
  color: #4a5554;
  font-size: 17px;
  line-height: 1.35;
}

.north-copy {
  max-width: 790px;
}

.north-copy p {
  margin-top: 26px;
}

.slat-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--snow);
}

.slat-stage img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.slat-data {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(14, 17, 17, 0.18);
  border-radius: 6px;
  background: rgba(247, 248, 245, 0.76);
  backdrop-filter: blur(18px);
}

.slat-data span {
  font-family: var(--display);
  font-size: 104px;
  line-height: 0.8;
}

.slat-data strong {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-section {
  background: var(--ink);
  color: var(--paper);
}

.proof-section h2 {
  max-width: 980px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.proof-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 32px);
  background: var(--ink);
}

.proof-grid span {
  color: var(--glacier);
  font-family: var(--mono);
  font-size: 12px;
}

.proof-grid h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.35;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 88px);
  background: var(--snow);
}

.pricing-copy {
  align-self: end;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.source-list a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.source-list a:hover {
  border-color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30;
  transform: translate(-50%, 16px);
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes chassis-spin {
  0% {
    transform: rotateX(3deg) rotateY(-10deg) translateY(-10px);
  }

  45% {
    transform: rotateX(3deg) rotateY(172deg) translateY(-14px) scale(0.96);
  }

  100% {
    transform: rotateX(3deg) rotateY(350deg) translateY(-10px);
  }
}

@keyframes chassis-float {
  0%,
  100% {
    transform: rotateX(3deg) rotateY(-10deg) translateY(-10px);
  }

  50% {
    transform: rotateX(3deg) rotateY(-12deg) translateY(-18px);
  }
}

@media (min-width: 1680px) {
  h1 {
    font-size: 132px;
  }

  .section-heading h2,
  .machine-spec-heading h2,
  .north-copy h2,
  .proof-section h2,
  .pricing-section h2 {
    font-size: 104px;
  }
}

@media (max-width: 1280px) {
  h1 {
    font-size: 92px;
  }

  .section-heading h2,
  .machine-spec-heading h2,
  .north-copy h2,
  .proof-section h2,
  .pricing-section h2 {
    font-size: 68px;
  }

  .quote-main strong {
    font-size: 50px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-builder {
    max-width: 520px;
  }

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

  .config-grid,
  .north-section,
  .pricing-section,
  .machine-spec-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .machine-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-panel {
    position: relative;
    top: auto;
  }

  h1 {
    font-size: 76px;
  }

  .chassis-configurator {
    grid-template-columns: 1fr;
  }

  .chassis-controls {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    background:
      linear-gradient(180deg, rgba(10, 13, 13, 0.96) 0%, rgba(10, 13, 13, 0.86) 58%, rgba(10, 13, 13, 0.58) 100%),
      url("assets/hero-north-workstation.png") center bottom / cover no-repeat,
      var(--ink);
  }

  .hero-metrics,
  .proof-grid,
  .source-list,
  .split-controls,
  .machine-spec-grid,
  .matrix {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 92px;
  }

  h1 {
    font-size: 39px;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-metrics span {
    font-size: 36px;
  }

  .section-heading h2,
  .machine-spec-heading h2,
  .north-copy h2,
  .proof-section h2,
  .pricing-section h2 {
    font-size: 42px;
  }

  .section-heading p,
  .machine-spec-heading p,
  .north-copy p,
  .pricing-copy p {
    font-size: 17px;
  }

  .machine-spec-grid strong {
    font-size: 28px;
  }

  .quote-main strong {
    font-size: 44px;
  }

  .slat-data span {
    font-size: 72px;
  }

  .proof-grid h3 {
    font-size: 30px;
  }

  .variant-card {
    min-height: 132px;
  }

  .slat-stage,
  .slat-stage img {
    min-height: 360px;
  }

  .chassis-stage {
    min-height: 300px;
  }

  .chassis-turntable {
    width: min(96%, 360px);
  }

  .chassis-turntable img {
    max-height: 300px;
  }

  .chassis-controls {
    grid-template-columns: 1fr;
  }
}

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