/* ==========================================================================
   Ganmu.site — Dark Precision
   ========================================================================== */

:root {
  --bg: #080A0D;
  --surface: #11151A;
  --accent: #8B5CFF;
  --text: #F5F3FF;
  --muted: #8C919B;
  --gradient: linear-gradient(135deg, #8B5CFF 0%, #B58CFF 100%);
  --border: 1px solid rgba(245, 243, 255, 0.10);
  --border-active: rgba(139, 92, 255, 0.65);
  --radius-btn: 12px;
  --radius-card: 16px;
  --radius-panel: 24px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
  --font: "Sora", sans-serif;
  --nav-h: 64px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--gradient);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius-btn);
}

.skip-link:focus {
  top: var(--space-2);
}

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

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-title span {
  display: block;
}

.section-title--sm {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
}

.section-head {
  margin-bottom: var(--space-6);
}

.section-head .label {
  margin-bottom: var(--space-2);
}

.accent-line {
  width: 48px;
  height: 1px;
  background: var(--gradient);
  margin-bottom: var(--space-3);
}

/* Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn--primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 0 0 rgba(139, 92, 255, 0);
}

.btn--primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9B70FF 0%, #C4A0FF 100%);
  box-shadow: 0 12px 32px rgba(139, 92, 255, 0.28);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 243, 255, 0.25);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Navigation
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 10, 13, 0.92);
  border-bottom: 1px solid rgba(245, 243, 255, 0.06);
  backdrop-filter: blur(12px);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.nav:hover {
  background: rgba(6, 8, 10, 0.97);
  border-bottom-color: rgba(245, 243, 255, 0.12);
}

.nav__inner {
  width: min(100% - 48px, var(--max));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  justify-self: start;
}

.nav__brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav__brand-ext {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav__center {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  justify-self: center;
}

.nav__center-mobile {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  justify-self: center;
}

.nav__explore {
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 0.3s var(--ease);
}

.nav__explore:hover {
  color: var(--accent);
}

.nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav__menu-btn {
  display: none;
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  color: var(--text);
}

.nav__drawer {
  display: none;
}

/* Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-5);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(139, 92, 255, 0.14) 0%,
    rgba(139, 92, 255, 0) 45%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__content .label {
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.hero__title span {
  display: block;
}

.hero__support {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--space-4);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-3);
}

.hero__systems {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__systems li,
.hero__scroll {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero__scroll {
  transition: color 0.3s var(--ease);
}

.hero__scroll:hover {
  color: var(--accent);
}

/* Orbit — Ganmu signature symbol
   ========================================================================== */

.orbit {
  position: relative;
  width: min(420px, 42vw);
  aspect-ratio: 1;
}

.orbit--lg {
  width: min(560px, 70vw);
}

.orbit__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #0c1016 0%, #080A0D 70%);
  border: 1px solid rgba(245, 243, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
}

.orbit__spinner {
  position: absolute;
  inset: 0;
  animation: orbit 18s linear infinite;
}

.orbit__arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg,
    transparent 0deg,
    transparent 240deg,
    #8B5CFF 280deg,
    #B58CFF 320deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.orbit__line {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(245, 243, 255, 0.18);
  animation: orbit 28s linear infinite reverse;
}

.orbit__point {
  position: absolute;
  top: 7%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(139, 92, 255, 0.45);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

/* Reveal
   ========================================================================== */

.reveal {
  animation: reveal-up 0.9s var(--ease) both;
}

.reveal--delay-1 {
  animation-delay: 0.12s;
}

.reveal--delay-2 {
  animation-delay: 0.24s;
}

.reveal--delay-3 {
  animation-delay: 0.36s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Statement
   ========================================================================== */

.statement {
  background: var(--surface);
  padding: var(--space-8) 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.statement__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-6);
  align-items: end;
  margin-top: var(--space-5);
}

.statement__body {
  max-width: 620px;
  padding-bottom: var(--space-2);
}

.statement__body p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Principles
   ========================================================================== */

.principles {
  padding: var(--space-8) 0;
}

.principles__list {
  border-top: var(--border);
}

.principle {
  border-bottom: var(--border);
}

.principle__link {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-2);
  position: relative;
  transition:
    background 0.35s var(--ease),
    padding-left 0.35s var(--ease);
}

.principle__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient);
  opacity: 0;
  transform: scaleY(0.4);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.principle__link:hover,
.principle__link:focus-visible {
  background: rgba(245, 243, 255, 0.02);
  padding-left: calc(var(--space-2) + 8px);
}

.principle__link:hover::before,
.principle__link:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.principle__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.principle__title {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  transition: transform 0.35s var(--ease);
}

.principle__link:hover .principle__title {
  transform: translateX(4px);
}

.principle__desc {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
}

.principle__arrow {
  font-size: 1.25rem;
  color: var(--muted);
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease);
}

.principle__link:hover .principle__arrow {
  transform: translateX(8px);
  color: var(--accent);
}

/* Featured Work
   ========================================================================== */

.work {
  padding: var(--space-8) 0;
  background: var(--surface);
  border-top: var(--border);
  border-bottom: var(--border);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: var(--space-4);
  border: var(--border);
  border-radius: var(--radius-panel);
  background: var(--bg);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.panel:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.panel__visual {
  position: absolute;
  right: -20px;
  top: 24px;
  width: 160px;
  height: 160px;
  opacity: 0.85;
  pointer-events: none;
}

.panel__orbit {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(245, 243, 255, 0.12);
  background:
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(139, 92, 255, 0.18) 59%, transparent 62%),
    conic-gradient(from 180deg, transparent 0deg, transparent 250deg, #8B5CFF 300deg, #B58CFF 340deg, transparent 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: orbit 22s linear infinite;
}

.panel__orbit--alt {
  animation-direction: reverse;
  animation-duration: 26s;
}

.panel__orbit--sm {
  transform: scale(0.75);
  transform-origin: center;
}

.panel .label {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
}

.panel__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  max-width: 14ch;
}

.panel__desc {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-4);
}

.panel__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s var(--ease);
}

.panel__link span {
  transition: transform 0.3s var(--ease);
}

.panel:hover .panel__link {
  color: var(--accent);
}

.panel:hover .panel__link span {
  transform: translateX(6px);
}

/* Signature Visual
   ========================================================================== */

.signature {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: var(--space-8) var(--space-3);
  overflow: hidden;
  background: var(--bg);
}

.signature__orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.55;
  pointer-events: none;
}

.signature__orbit::before {
  content: "";
  position: absolute;
  width: min(640px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 255, 0.12) 0%,
    rgba(139, 92, 255, 0) 55%
  );
}

.signature__title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.signature__title span {
  display: block;
}

/* Archive
   ========================================================================== */

.archive {
  padding: var(--space-8) 0;
  border-top: var(--border);
}

.archive__list {
  border-top: var(--border);
}

.archive__row {
  display: grid;
  grid-template-columns: 12px 1fr auto auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-1);
  border-bottom: var(--border);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}

.archive__row:hover,
.archive__row:focus-visible {
  transform: translateX(8px);
  background: rgba(245, 243, 255, 0.015);
}

.archive__indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.archive__row:hover .archive__indicator,
.archive__row:focus-visible .archive__indicator {
  opacity: 1;
  transform: scale(1);
}

.archive__meta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.archive__row:hover .archive__num,
.archive__row:focus-visible .archive__num {
  color: var(--accent);
}

.archive__arrow {
  color: var(--muted);
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease);
}

.archive__row:hover .archive__arrow,
.archive__row:focus-visible .archive__arrow {
  transform: translateX(8px);
  color: var(--accent);
}

/* Final CTA
   ========================================================================== */

.cta {
  position: relative;
  padding: var(--space-8) 0;
  background: var(--bg);
  border-top: var(--border);
  overflow: hidden;
  text-align: center;
}

.cta__glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(720px, 90vw);
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 255, 0.16) 0%,
    rgba(139, 92, 255, 0) 65%
  );
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.cta__title span {
  display: block;
}

.cta__support {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

/* Footer
   ========================================================================== */

.footer {
  background: var(--surface);
  padding: var(--space-7) 0 var(--space-5);
  border-top: var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: var(--space-3);
}

.footer__ext {
  font-size: 0.35em;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  vertical-align: super;
}

.footer__tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 280px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-content: start;
  padding-top: var(--space-2);
}

.footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__divider {
  height: 1px;
  background: var(--gradient);
  opacity: 0.7;
  margin-bottom: var(--space-4);
}

.footer__bottom {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Responsive — Tablet
   ========================================================================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: var(--space-5);
    padding-bottom: var(--space-7);
    gap: var(--space-4);
  }

  .hero__visual {
    min-height: 320px;
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .hero__meta {
    position: relative;
    bottom: auto;
    margin-top: var(--space-4);
    order: 3;
  }

  .orbit {
    width: min(340px, 70vw);
  }

  .statement__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  .panel {
    min-height: 360px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

/* Responsive — Mobile
   ========================================================================== */

@media (max-width: 720px) {
  .container,
  .hero,
  .nav__inner {
    width: min(100% - 48px, var(--max));
  }

  .nav__center,
  .nav__explore {
    display: none;
  }

  .nav__center-mobile,
  .nav__menu-btn {
    display: block;
  }

  .nav__inner {
    grid-template-columns: 1fr auto auto;
    gap: var(--space-2);
  }

  .nav__drawer {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: var(--space-3) var(--space-3) var(--space-4);
    background: rgba(6, 8, 10, 0.98);
    border-bottom: var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease);
  }

  .nav__drawer a {
    padding: 12px 0;
    border-bottom: var(--border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav__toggle:checked ~ .nav__drawer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__toggle:focus-visible + .nav__menu-btn {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }

  .hero__title {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .principle__link {
    grid-template-columns: 48px 1fr auto;
    padding: var(--space-3) 0;
  }

  .principle__desc {
    font-size: 0.95rem;
  }

  .archive__row {
    grid-template-columns: 10px 1fr auto;
    gap: var(--space-2);
  }

  .archive__arrow {
    display: none;
  }

  .archive__meta {
    font-size: 12px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .cta .btn {
    width: 100%;
    max-width: 360px;
  }

  .signature {
    min-height: 70vh;
  }

  .principles,
  .work,
  .archive,
  .cta,
  .statement {
    padding: var(--space-7) 0;
  }
}

/* Reduced motion
   ========================================================================== */

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