/* Generated by scripts/build-css.mjs. Edit the files in styles/ instead. */

@layer tokens, base, motion, components, responsive;

@layer tokens {
:root {
  --ink: #082a52;
  --ink-soft: #49657e;
  --blue: #1255b4;
  --blue-bright: #2f72df;
  --canvas: #f3f7fb;
  --paper: #ffffff;
  --line: #dbe5ee;
  --line-strong: #c2d2e1;
  --accent: #d9ef83;
  --muted: #61788d;
  --touch-target: 44px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card-hover: 0 1rem 2.25rem rgba(8, 42, 82, 0.1);
  --shadow-control: 0 0.55rem 1.35rem rgba(8, 42, 82, 0.16);
  --footer-background: var(--ink);
  --footer-button: var(--paper);
  --footer-button-line: rgba(8, 42, 82, 0.22);
  --footer-button-hover: var(--accent);
  --footer-line: rgba(255, 255, 255, 0.2);
  --footer-orbit: rgba(255, 255, 255, 0.15);
  --footer-orbit-soft: rgba(255, 255, 255, 0.11);
  --footer-muted: rgba(255, 255, 255, 0.72);
}
}

@layer base {
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

button,
a {
  font: inherit;
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
}

@layer motion {
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  animation: loading-screen-exit 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loading-brand {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  opacity: 0;
  transform: translateY(1rem) scale(0.96);
  animation: loading-brand-cycle 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-logo {
  display: block;
  width: min(78vw, 26rem);
  height: auto;
}

.reveal-target {
  opacity: 1;
  translate: 0 0;
}

html.reveal-ready .reveal-target {
  opacity: 0;
  translate: clamp(2.5rem, 6vw, 6rem) 0;
}

html.reveal-ready .snap-section.is-revealed .reveal-target {
  animation: content-reveal 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-ring {
  animation-delay: 0s;
}

.hero-content {
  animation-delay: 0.1s;
}

.section-header {
  animation-delay: 0s;
}

.presentation-card:nth-child(1) {
  animation-delay: 0.08s;
}

.presentation-card:nth-child(2) {
  animation-delay: 0.14s;
}

.presentation-card:nth-child(3) {
  animation-delay: 0.2s;
}

.presentation-card:nth-child(4) {
  animation-delay: 0.26s;
}

.presentation-card:nth-child(5) {
  animation-delay: 0.32s;
}

.social-footer {
  animation-delay: 0.38s;
}

@keyframes loading-brand-cycle {
  0% {
    opacity: 0;
    transform: translateY(1rem) scale(0.96);
  }

  24%,
  65% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-0.7rem) scale(1.02);
  }
}

@keyframes loading-screen-exit {
  0%,
  70% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes content-reveal {
  from {
    opacity: 0;
    translate: clamp(2.5rem, 6vw, 6rem) 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}
}

@layer components {
.site-shell {
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.snap-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-brand {
  position: absolute;
  top: max(clamp(1.25rem, 3.5vw, 3rem), env(safe-area-inset-top));
  left: max(clamp(1rem, 3.5vw, 3.75rem), env(safe-area-inset-left));
  z-index: 3;
  display: block;
  width: min(34vw, 18rem);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms var(--ease-out);
}

.hero-brand:hover .hero-logo {
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(90vw, 78rem);
  align-items: center;
  flex-direction: column;
  padding-inline: 1rem;
  text-align: center;
}

.hero h1 {
  position: relative;
  max-width: min(90vw, 1320px);
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.5rem, 8.4vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-align: center;
  text-wrap: balance;
}

.hero-meta {
  margin: clamp(1.1rem, 2.2vw, 2rem) 0 0;
  color: var(--blue);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--touch-target);
  margin-top: clamp(1rem, 2vw, 1.6rem);
  padding: 0.8rem 1rem 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: var(--shadow-control);
  transition: background 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.hero-cta:hover {
  background: var(--blue);
  box-shadow: 0 0.7rem 1.65rem rgba(18, 85, 180, 0.2);
  transform: translateY(-2px);
}

.hero-cta:active {
  box-shadow: 0 0.35rem 0.9rem rgba(8, 42, 82, 0.16);
  transform: translateY(0);
}

.hero-cta-icon,
.team-button-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-ring {
  position: absolute;
  z-index: 0;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-ring::before,
.hero-ring::after {
  position: absolute;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-ring::before {
  inset: 13%;
}

.hero-ring::after {
  inset: 27%;
  border-color: var(--blue-bright);
}

.program-section {
  overflow: hidden;
  background: var(--canvas);
}
}

@layer components {
.program-grid {
  display: grid;
  grid-template-rows: minmax(0, 80%) minmax(0, 20%);
  gap: 0;
  height: 100%;
  padding: 0;
}

.agenda-column {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding-top: clamp(0.75rem, 1.8vw, 1.5rem);
  padding-right: max(clamp(1rem, 3.5vw, 3.75rem), env(safe-area-inset-right));
  padding-bottom: clamp(0.5rem, 1.2vw, 1rem);
  padding-left: max(clamp(1rem, 3.5vw, 3.75rem), env(safe-area-inset-left));
}

.section-header {
  max-width: 44rem;
  padding: 0 0 clamp(0.4rem, 1vw, 0.75rem);
}

.section-header h2,
.social-content h2 {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro {
  display: none;
}

.presentation-list {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(0.6rem, 1.2vw, 1.1rem);
}

.presentation-card {
  display: flex;
  min-height: 0;
  align-items: center;
  flex-direction: column;
  gap: clamp(0.35rem, 0.7vw, 0.55rem);
  padding: clamp(0.75rem, 1.2vw, 1.15rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: clamp(0.75rem, 1.2vw, 1rem);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.presentation-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.presentation-day {
  display: flex;
  width: 100%;
  align-items: baseline;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.15rem;
  text-align: left;
}

.presentation-day span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.presentation-day strong {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.speaker-photo {
  position: relative;
  display: grid;
  width: min(100%, clamp(10.5rem, 16vw, 15.5rem));
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0.85rem;
  background: var(--canvas);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.speaker-photo.has-photo::before,
.speaker-photo.has-photo::after,
.speaker-photo:has(img)::before,
.speaker-photo:has(img)::after {
  display: none;
}

.speaker-photo::before {
  position: absolute;
  width: 1.2rem;
  height: 0.3rem;
  margin-top: 2rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  content: "";
}

.speaker-photo::after {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 85, 180, 0.14);
  border-radius: 50%;
  content: "";
}

.speaker-photo span {
  position: relative;
  z-index: 1;
}

.presentation-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.presentation-slot,
.presentation-topic {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.presentation-slot {
  display: block;
  color: var(--blue);
  font-weight: 800;
}

.presentation-copy h3 {
  margin: 0.35rem 0 0.15rem;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.presentation-topic {
  margin: 0.1rem 0 0.35rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.speaker-bio {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.42;
  text-wrap: pretty;
}

.speaker-bio strong {
  color: var(--ink);
  font-weight: 700;
}

.team-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  align-self: center;
  width: min(100%, clamp(11rem, 15vw, 14rem));
  min-width: 0;
  min-height: 3.25rem;
  margin-top: auto;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-button:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.team-button:not(:disabled):hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-1px);
}

.team-button:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.team-button:disabled .team-button-icon {
  opacity: 0.52;
}
}

@layer components {
.social-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding-top: clamp(0.7rem, 1.6vw, 1.5rem);
  padding-right: max(clamp(1rem, 3.5vw, 3.75rem), env(safe-area-inset-right));
  padding-bottom: max(clamp(0.7rem, 1.6vw, 1.5rem), env(safe-area-inset-bottom));
  padding-left: max(clamp(1rem, 3.5vw, 3.75rem), env(safe-area-inset-left));
  background: var(--footer-background);
  color: var(--paper);
}

.social-footer-orbit {
  position: absolute;
  right: -5%;
  top: -52%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid var(--footer-orbit);
  border-radius: 50%;
  pointer-events: none;
}

.social-footer-orbit::before,
.social-footer-orbit::after {
  position: absolute;
  border: 1px solid var(--footer-orbit-soft);
  border-radius: 50%;
  content: "";
}

.social-footer-orbit::before {
  inset: 16%;
}

.social-footer-orbit::after {
  inset: 31%;
  border-color: var(--accent);
}

.brand-placeholder,
.social-content,
.contact-block {
  position: relative;
  z-index: 1;
}

.brand-placeholder {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  gap: 1rem;
}

.brand-link {
  display: flex;
  flex: 0 1 clamp(8rem, 40%, 11rem);
  align-self: flex-start;
  min-height: var(--touch-target);
  align-items: center;
  justify-content: center;
  width: auto;
  color: var(--paper);
  text-decoration: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.brand-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: auto;
}

.social-content {
  display: grid;
  justify-items: center;
  padding: 0;
}

.social-content h2 {
  max-width: 18rem;
  color: var(--paper);
  font-size: clamp(1.5rem, 2.8vw, 3rem);
}

.social-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: fit-content;
  margin-top: 0;
  justify-content: center;
}

.social-link {
  display: flex;
  width: clamp(2.8rem, 5vw, 3.6rem);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--footer-button-line);
  border-radius: 50%;
  background: var(--footer-button);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.social-link:hover {
  border-color: var(--footer-button-hover);
  background: var(--footer-button-hover);
  color: var(--ink);
  box-shadow: 0 0.55rem 1.3rem rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.social-mark {
  display: grid;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.social-mark-image {
  display: block;
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 0;
  background-color: var(--ink);
  mask: url("/instagram.png") center / contain no-repeat;
  -webkit-mask: url("/instagram.png") center / contain no-repeat;
}

.contact-block {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-self: stretch;
  flex: 1 1 0;
  gap: 0;
  min-width: 0;
  width: auto;
  padding: 0;
  border: 0;
}

.contact-block::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--footer-line);
  content: "";
}

.contact-phone {
  position: relative;
  display: inline-flex;
  align-self: start;
  align-items: flex-start;
  width: fit-content;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.contact-phone::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, var(--touch-target));
  height: var(--touch-target);
  content: "";
  transform: translate(-50%, -50%);
}

.contact-phone:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.social-footer a:focus-visible {
  outline-color: var(--accent);
}

.contact-block address {
  position: relative;
  align-self: end;
  max-width: 22rem;
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.45;
}
}

@layer responsive {
@media (max-width: 900px) {
  .site-shell {
    scroll-snap-type: y proximity;
  }

  .snap-section {
    height: auto;
    min-height: 100svh;
    scroll-snap-stop: normal;
  }

  .program-section {
    overflow: visible;
  }

  .program-grid {
    height: auto;
    min-height: 100%;
    grid-template-rows: auto auto;
  }

  .agenda-column {
    min-height: 0;
    padding: 1.25rem max(1.25rem, env(safe-area-inset-right)) 1.25rem max(1.25rem, env(safe-area-inset-left));
  }

  .presentation-list {
    flex: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .social-footer {
    min-height: 20svh;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    padding: 0.8rem max(1.25rem, env(safe-area-inset-right)) max(0.8rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  }

  .social-content {
    align-self: center;
  }

  .contact-block {
    padding: 0;
    border: 0;
  }

  html.reveal-ready .program-section .section-header,
  html.reveal-ready .program-section .presentation-card,
  html.reveal-ready .program-section .social-footer {
    opacity: 1;
    translate: none;
    animation: none;
  }
}

@media (max-width: 620px) {
  .hero-brand {
    top: max(1.25rem, env(safe-area-inset-top));
    left: max(1rem, env(safe-area-inset-left));
    width: min(54vw, 13rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 16vw, 5.5rem);
    line-height: 0.88;
  }

  .hero-ring {
    width: 110vw;
  }

  .program-grid {
    gap: 0;
    padding: 0;
  }

  .agenda-column {
    padding: 1rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
  }

  .section-header h2 {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .section-intro {
    margin-top: 0.7rem;
    font-size: 0.9rem;
  }

  .presentation-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .presentation-card {
    gap: 0.55rem;
    padding: 0.6rem;
    border-radius: 0.8rem;
  }

  .presentation-card .speaker-photo {
    width: clamp(9.5rem, 30vw, 13.5rem);
  }

  .presentation-copy h3 {
    font-size: 0.86rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
  }

  .presentation-topic {
    font-size: 0.7rem;
  }

  .team-button {
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.78rem;
  }

  .team-button-label {
    display: inline;
  }

  .social-footer {
    min-height: 20svh;
    grid-template-columns: 1fr;
    padding: 0.8rem max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    gap: 0.75rem;
  }

  .brand-placeholder {
    top: -0.4rem;
  }

  .contact-block address {
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .social-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
  }

  .social-content {
    padding: 0;
  }

  .social-content h2 {
    font-size: clamp(1.7rem, 10vw, 3rem);
  }
}

@media (max-width: 399px) {
  .presentation-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(8rem, auto);
  }

  .presentation-card {
    min-height: 7rem;
  }

  .social-footer {
    min-height: 20svh;
    padding: 0.8rem max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  }
}

@media (max-width: 340px) {
  .brand-placeholder {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .brand-link {
    flex: 0 0 auto;
    width: 8rem;
  }

  .contact-block {
    align-self: auto;
    min-height: 2.85rem;
    width: 100%;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero-brand {
    width: min(28vw, 11rem);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .hero-meta,
  .hero-cta {
    margin-top: 0.75rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-cta:active {
    transform: translateY(1px);
  }

  .social-link:active {
    transform: scale(0.97);
  }

  .contact-phone:active {
    color: var(--accent);
  }
}

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

  .loading-screen {
    display: none;
  }

  .loading-brand,
  .reveal-target {
    opacity: 1;
    translate: none;
    animation: none !important;
  }

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