:root {
  --font-display: "Instrument Sans", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --page-width: 1260px;
  --bg: #121315;
  --bg-soft: #17191d;
  --panel: rgba(24, 26, 30, 0.9);
  --panel-strong: rgba(31, 34, 39, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f4f3ee;
  --ink-soft: rgba(244, 243, 238, 0.78);
  --ink-muted: rgba(244, 243, 238, 0.52);
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 54px 160px rgba(0, 0, 0, 0.42);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --accent-main: rgba(105, 224, 226, 0.82);
  --accent-soft: rgba(229, 216, 178, 0.72);
  --accent-deep: rgba(89, 139, 255, 0.32);
  --pointer-x: 76%;
  --pointer-y: 18%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(86, 124, 166, 0.2), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(214, 194, 142, 0.1), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(94, 170, 153, 0.08), transparent 34%),
    linear-gradient(180deg, #111214 0%, #16181b 48%, #0e0f11 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 132px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016) 0, rgba(255, 255, 255, 0.016) 1px, transparent 1px, transparent 118px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 84%);
}

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

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

button,
summary {
  font: inherit;
  color: inherit;
}

.page-shell {
  width: min(var(--page-width), calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.site-header,
.hero-shell,
.wins-shell,
.trust-shell,
.question-shell,
.launch-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(19, 21, 24, 0.84);
}

.brandmark,
.header-cta,
.button,
.hero-links a,
.hero-proof span,
.hero-stage-tab,
.win-card,
.prompt-card,
.info-card,
.feedback-card,
.faq-item,
.launch-links a,
.site-footer a {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brandmark-seal {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(145deg, #253547 0%, #171e29 56%, #101318 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.brandmark-ring {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(211, 208, 193, 0.84);
  border-right-color: transparent;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.brandmark-core {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #dccd93;
}

.brandmark-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brandmark-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.brandmark-copy span {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.header-cta,
.button-primary {
  background: #f2f1eb;
  color: #111214;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.button-primary {
  min-height: 54px;
  padding: 0 24px;
}

.button:focus-visible,
.header-cta:focus-visible,
.hero-stage-tab:focus-visible,
.hero-links a:focus-visible,
.launch-links a:focus-visible,
.faq-item summary:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(112, 214, 224, 0.34);
  outline-offset: 3px;
}

.site-header a:hover,
.site-header a:focus-visible,
.button:hover,
.button:focus-visible,
.hero-links a:hover,
.hero-links a:focus-visible,
.hero-proof span:hover,
.hero-stage-tab:hover,
.hero-stage-tab:focus-visible,
.win-card:hover,
.prompt-card:hover,
.info-card:hover,
.feedback-card:hover,
.faq-item:hover,
.launch-links a:hover,
.launch-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

section[id] {
  scroll-margin-top: 108px;
}

.section-label,
.info-card-label,
.hero-state-kicker,
.prompt-card-label,
.win-step {
  margin: 0;
  color: rgba(244, 243, 238, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading,
.gallery-heading {
  display: grid;
  gap: 10px;
}

h1,
h2,
h3,
.faq-item summary {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
}

h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.05;
}

.section-heading > p:last-child,
.gallery-heading > p:last-child,
.hero-subtitle,
.hero-note,
.hero-state-copy > p:last-of-type,
.hero-caption,
.win-card p:last-child,
.prompt-card-copy p,
.info-card > p:last-of-type,
.feedback-card p,
.faq-item p,
.launch-copy p,
.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  grid-template-areas:
    "main stage"
    "meta stage";
  gap: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-shell[data-accent="cyan"] {
  --accent-main: rgba(105, 224, 226, 0.82);
  --accent-soft: rgba(225, 221, 194, 0.68);
  --accent-deep: rgba(86, 132, 244, 0.34);
}

.hero-shell[data-accent="sand"] {
  --accent-main: rgba(231, 209, 145, 0.82);
  --accent-soft: rgba(128, 200, 214, 0.64);
  --accent-deep: rgba(210, 161, 92, 0.26);
}

.hero-shell[data-accent="mint"] {
  --accent-main: rgba(133, 224, 193, 0.8);
  --accent-soft: rgba(214, 208, 184, 0.66);
  --accent-deep: rgba(93, 166, 155, 0.28);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -160px -120px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.hero-copy-main {
  grid-area: main;
}

.hero-copy-meta {
  grid-area: meta;
  gap: 16px;
}

.hero-subtitle {
  max-width: 24rem;
  font-size: 1.1rem;
  color: var(--ink);
}

.hero-note {
  max-width: 28rem;
  font-size: 0.98rem;
}

.command-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.command-chip span {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.command-chip strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}

.hero-links,
.launch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-links a,
.launch-links a,
.site-footer a {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-stage {
  grid-area: stage;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-stage-tabs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  width: fit-content;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-stage-tab.is-active {
  background: rgba(244, 243, 238, 0.1);
  color: var(--ink);
}

.hero-stage-stack {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 6px);
  background:
    radial-gradient(circle at 12% 12%, var(--accent-deep), transparent 30%),
    linear-gradient(145deg, rgba(33, 36, 40, 0.96), rgba(20, 22, 25, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-stage-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 48%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.hero-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-panel-glow {
  position: absolute;
  inset: auto auto -70px 54%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-main), transparent 70%);
  filter: blur(14px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-prompt {
  position: relative;
  z-index: 1;
  margin: 0;
  width: fit-content;
  max-width: min(100%, 24rem);
  padding: 12px 16px;
  border-radius: 22px;
  background: rgba(246, 245, 238, 0.95);
  color: #141518;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.96fr);
  gap: 18px;
  align-items: end;
}

.hero-state-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(19, 21, 24, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-state-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

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

.metric-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card span {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-shot,
.prompt-card-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(15, 17, 19, 0.82);
  box-shadow: var(--shadow-strong);
}

.hero-shot {
  min-height: 420px;
  padding: 14px;
}

.hero-shot::before,
.prompt-card-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.hero-shot img,
.prompt-card-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(1.08) contrast(1.06) saturate(1.02);
}

.hero-caption {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.wins-shell,
.trust-shell,
.question-shell,
.launch-shell {
  display: grid;
  gap: 20px;
  padding: 28px;
}

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

.win-card,
.prompt-card,
.info-card,
.feedback-card,
.faq-stack {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(20, 22, 26, 0.68);
}

.win-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.gallery-heading {
  margin-top: 6px;
}

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

.prompt-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.prompt-card[data-accent="cyan"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 203, 214, 0.14), transparent 32%),
    rgba(20, 22, 26, 0.72);
}

.prompt-card[data-accent="sand"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(222, 201, 144, 0.14), transparent 32%),
    rgba(20, 22, 26, 0.72);
}

.prompt-card[data-accent="mint"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 214, 180, 0.14), transparent 32%),
    rgba(20, 22, 26, 0.72);
}

.prompt-card-head {
  display: grid;
  gap: 10px;
}

.prompt-card-prompt {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.prompt-card-shot {
  min-height: 320px;
  padding: 12px;
}

.prompt-card-copy {
  display: grid;
  gap: 10px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.08fr) minmax(0, 0.96fr);
  gap: 16px;
}

.info-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roles-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.info-table {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-table-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-table-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-table dt {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-table dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.info-table dd a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(244, 243, 238, 0.26);
  text-underline-offset: 0.18em;
}

.trust-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-main);
  box-shadow: 0 0 16px var(--accent-main);
}

.question-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 16px;
}

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

.feedback-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.faq-stack {
  padding: 8px 20px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 18px;
}

.launch-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 214, 163, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(113, 216, 215, 0.14), transparent 24%),
    rgba(20, 22, 26, 0.84);
}

.launch-copy {
  display: grid;
  gap: 10px;
  max-width: 40rem;
}

.launch-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 4px 0;
}

.site-footer p {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

@media (hover: hover) {
  .hero-shot:hover,
  .prompt-card-shot:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "stage"
      "meta";
  }

  .trust-layout,
  .question-layout,
  .launch-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage-stack {
    min-height: 560px;
  }

  .launch-actions {
    justify-items: start;
  }

  .feedback-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(var(--page-width), calc(100% - 20px));
  }

  .wins-grid {
    grid-template-columns: 1fr;
  }

  .prompt-gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .prompt-gallery::-webkit-scrollbar {
    display: none;
  }

  .prompt-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 12px;
  }

  .site-header {
    top: 10px;
    padding: 12px 14px;
  }

  .brandmark-copy span {
    display: none;
  }

  .header-cta,
  .button-primary {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .hero-shell,
  .wins-shell,
  .trust-shell,
  .question-shell,
  .launch-shell {
    padding: 18px;
    border-radius: 30px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .hero-note,
  .hero-links a,
  .launch-links a {
    font-size: 0.92rem;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-stage-tabs {
    width: 100%;
  }

  .hero-stage-tab {
    flex: 1 1 0;
  }

  .hero-stage-stack {
    min-height: 440px;
  }

  .hero-actions {
    display: none;
  }

  .command-chip {
    display: none;
  }

  .hero-panel {
    padding: 16px;
    gap: 14px;
  }

  .hero-prompt {
    max-width: 88%;
    font-size: 0.88rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-shot {
    order: 1;
    min-height: 250px;
    padding: 10px;
  }

  .hero-state-copy {
    order: 2;
    padding: 16px;
  }

  .hero-state-copy h2 {
    max-width: none;
    font-size: 1.7rem;
  }

  .metric-grid {
    gap: 8px;
  }

  .metric-card {
    padding: 12px 10px;
  }

  .metric-card strong {
    font-size: 0.94rem;
  }

  .prompt-card-shot {
    min-height: 260px;
    padding: 10px;
  }

  .info-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-stack {
    padding: 6px 16px;
  }

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

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

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