:root {
  color-scheme: dark;
  --bg: #090b10;
  --bg-soft: #0e1118;
  --panel: rgba(20, 24, 34, 0.76);
  --panel-solid: #141822;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f7fb;
  --muted: #9da5b4;
  --muted-strong: #c5cad3;
  --red: #ff4b4b;
  --red-bright: #ff6961;
  --violet: #9c7cff;
  --cyan: #5de4d7;
  --gold: #ffcc66;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-one {
  width: 540px;
  height: 540px;
  top: -220px;
  right: -120px;
  background: var(--red);
}

.ambient-two {
  width: 440px;
  height: 440px;
  top: 42vh;
  left: -240px;
  background: var(--violet);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 16, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 105, 97, 0.45);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 75, 75, 0.22), rgba(156, 124, 255, 0.12));
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.62rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 650;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: #fff;
}

.nav-github {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding-block: 90px;
}

.eyebrow,
.kicker,
.panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red);
}

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

h1 {
  max-width: 820px;
  margin-block: 24px 28px;
  font-size: clamp(3rem, 7.4vw, 6.7rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

h1 em {
  background: linear-gradient(100deg, var(--red-bright), #ff9b72 42%, var(--violet));
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 34px 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.coffee-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #eb3948);
  box-shadow: 0 14px 34px rgba(255, 75, 75, 0.22);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(93, 228, 215, 0.8);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px);
}

.hero-panel::before {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -70px;
  right: -60px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  filter: blur(60px);
  opacity: 0.25;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
}

.hero-metric strong {
  font-size: clamp(4.2rem, 8vw, 6.4rem);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-metric span {
  color: var(--red-bright);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel > p {
  color: var(--muted);
  font-size: 0.82rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-block: 26px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--line);
}

.mini-grid div {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: rgba(8, 10, 15, 0.84);
}

.mini-grid strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.mini-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.micro-note {
  margin-bottom: 0;
  font-size: 0.7rem !important;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ticker > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  min-width: max-content;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.content-section {
  padding-block: 120px;
}

.section-heading {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 54px;
}

.section-number {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--red-bright);
  font: 700 0.72rem "SFMono-Regular", Consolas, monospace;
}

.section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.install-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 10, 15, 0.88);
  box-shadow: var(--shadow);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 600 0.7rem "SFMono-Regular", Consolas, monospace;
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.terminal-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3b3f49;
}

.terminal-dots span:first-child { background: #ff605c; }
.terminal-dots span:nth-child(2) { background: #ffbd44; }
.terminal-dots span:last-child { background: #00ca4e; }

.command-row,
.compact-command {
  display: flex;
  align-items: center;
  gap: 16px;
}

.command-row {
  padding: 30px;
}

.command-row code {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.command-row code::before {
  margin-right: 12px;
  color: var(--red-bright);
  content: "$";
}

.copy-button {
  min-width: 72px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.copy-button.small {
  min-width: auto;
  padding: 6px 10px;
}

.command-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding: 14px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.command-meta code,
.safety-note code,
.step-card code,
.requirement-list code,
.check-card code {
  color: var(--cyan);
}

.safety-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 40px;
  color: var(--muted);
  font-size: 0.78rem;
}

.safety-note p {
  margin: 0;
}

.safety-note a,
.text-link,
table a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(93, 228, 215, 0.35);
  text-underline-offset: 3px;
}

.safety-icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(93, 228, 215, 0.4);
  border-radius: 50%;
  color: var(--cyan);
  font: 700 0.7rem Georgia, serif;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card,
.method-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.step-card > span {
  color: var(--red-bright);
  font: 700 0.7rem "SFMono-Regular", Consolas, monospace;
}

.step-card h3,
.method-card h3,
.check-card h3 {
  margin: 22px 0 10px;
  font-size: 1.1rem;
}

.step-card p,
.method-card p,
.check-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.requirements-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.65fr);
  gap: 28px;
}

.requirement-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.requirement-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: var(--bg-soft);
}

.requirement-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.requirement-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.requirement-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--red-bright);
  font: 760 0.66rem "SFMono-Regular", Consolas, monospace;
}

.check-card {
  align-self: stretch;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(156, 124, 255, 0.09), rgba(255, 75, 75, 0.04));
}

.check-card h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.compact-command {
  margin-block: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 7, 11, 0.7);
}

.compact-command code {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  font-size: 0.7rem;
}

.check-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 26px 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  list-style: none;
}

.check-card li::before {
  margin-right: 9px;
  color: var(--cyan);
  content: "✓";
}

.text-link {
  font-size: 0.78rem;
}

.benchmark-section {
  width: min(1380px, calc(100vw - 40px));
}

.benchmark-intro {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.benchmark-intro > p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted-strong);
}

.reproduction-card {
  overflow: hidden;
  margin-block: 32px 72px;
  border: 1px solid rgba(255, 105, 97, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 75, 75, 0.12), transparent 28%),
    rgba(10, 12, 17, 0.92);
  box-shadow: var(--shadow);
}

.repro-header,
.context-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.repro-header {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.repro-header h3,
.context-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.repro-table-wrap {
  overflow-x: auto;
}

.repro-table {
  min-width: 1020px;
}

.repro-table td:first-child {
  min-width: 66px;
}

.repro-table td:nth-child(2) {
  min-width: 285px;
}

.winner-row {
  background: rgba(255, 75, 75, 0.065);
}

.rank {
  color: var(--muted);
  font: 760 0.74rem "SFMono-Regular", Consolas, monospace;
}

.kind.reproduced {
  background: rgba(93, 228, 215, 0.1);
  color: var(--cyan);
}

.margin-chip {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(93, 228, 215, 0.24);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 800;
}

.margin-chip.winner {
  border-color: rgba(255, 105, 97, 0.35);
  background: rgba(255, 75, 75, 0.1);
  color: var(--red-bright);
}

.repro-note {
  margin: 0;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.repro-note code {
  color: var(--cyan);
}

.context-heading {
  margin-bottom: 24px;
}

.benchmark-filters {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.filter-button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 720;
}

.filter-button.active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(10, 12, 17, 0.88);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 0.74rem;
}

th,
td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: #11141c;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--text);
  font-size: 0.78rem;
}

td:first-child {
  min-width: 220px;
}

td:nth-child(4) {
  min-width: 150px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 140ms ease, opacity 140ms ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.our-row {
  background: rgba(255, 75, 75, 0.035);
}

.kind {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kind.ours {
  background: rgba(255, 75, 75, 0.14);
  color: var(--red-bright);
}

.kind.reported {
  background: rgba(156, 124, 255, 0.12);
  color: #b6a3ff;
}

tr.filtered-out {
  display: none;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.method-card h3 {
  margin-top: 9px;
}

.architecture-section {
  padding-top: 80px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 18px;
  align-items: center;
}

.architecture-flow > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
}

.architecture-flow small {
  color: var(--red-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.architecture-flow strong {
  margin-block: 10px 4px;
  font-size: 0.9rem;
}

.architecture-flow span {
  color: var(--muted);
  font-size: 0.68rem;
}

.architecture-flow b {
  color: var(--line-strong);
  font-size: 1.4rem;
}

.support-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-block: 70px 130px;
  padding: 48px;
  border: 1px solid rgba(255, 204, 102, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 204, 102, 0.13), transparent 30%),
    linear-gradient(140deg, rgba(255, 75, 75, 0.08), rgba(156, 124, 255, 0.05));
  box-shadow: var(--shadow);
}

.support-section h2 {
  max-width: 700px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.support-section p:not(.kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.coffee-button {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--gold);
  color: #18130a;
  font-size: 0.86rem;
  font-weight: 820;
  box-shadow: 0 16px 40px rgba(255, 204, 102, 0.16);
  transition: transform 160ms ease;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
}

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

.footer-links a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #1a1e28;
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  nav a:not(.nav-github) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 100px 80px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .step-grid,
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .requirements-layout {
    grid-template-columns: 1fr;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow b {
    justify-self: center;
    transform: rotate(90deg);
  }

  .support-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .content-section {
    padding-block: 84px;
  }

  .section-heading {
    gap: 14px;
  }

  .step-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .command-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .command-meta {
    padding-inline: 22px;
  }

  .benchmark-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .repro-header,
  .context-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .benchmark-filters {
    max-width: 100%;
    overflow-x: auto;
  }

  .support-section {
    margin-bottom: 84px;
    padding: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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