:root {
  --bg: #050816;
  --bg-deep: #02040c;
  --surface: rgba(10, 18, 38, 0.74);
  --surface-strong: rgba(9, 16, 34, 0.9);
  --surface-soft: rgba(15, 24, 48, 0.64);
  --line: rgba(118, 169, 255, 0.16);
  --line-strong: rgba(90, 202, 255, 0.28);
  --text: #f5f7ff;
  --muted: #97a4c5;
  --muted-strong: #c7d4f4;
  --accent: #76a9ff;
  --accent-bright: #54d8ff;
  --accent-soft: #a9daff;
  --shadow-lg: 0 28px 80px rgba(1, 5, 16, 0.54);
  --shadow-xl: 0 40px 120px rgba(1, 4, 12, 0.64);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(84, 216, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(118, 169, 255, 0.2), transparent 20%),
    radial-gradient(circle at 54% 0%, rgba(54, 112, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #090f22 0%, #060b18 38%, #02040c 100%);
}

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

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

.site-noise,
.site-grid,
.site-aura {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.site-noise {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 88%);
}

.site-grid {
  opacity: 0.28;
  background:
    linear-gradient(rgba(118, 169, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 169, 255, 0.08) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: linear-gradient(180deg, black 8%, rgba(0, 0, 0, 0.42) 40%, transparent 100%);
}

.site-aura {
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}

.aura-one {
  top: 60px;
  left: 4%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(84, 216, 255, 0.16);
}

.aura-two {
  top: 280px;
  right: 5%;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(118, 169, 255, 0.18);
  animation-duration: 18s;
}

.aura-three {
  top: 54%;
  left: 36%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(54, 112, 255, 0.16);
  animation-duration: 14s;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 88px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 19, 40, 0.9), rgba(7, 12, 28, 0.82)),
    rgba(7, 11, 24, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow:
    0 0 18px rgba(84, 216, 255, 0.5),
    0 0 34px rgba(118, 169, 255, 0.22);
  transform: rotate(12deg);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.nav-links a,
.header-cta,
.button {
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(84, 216, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(16, 25, 52, 0.9), rgba(10, 16, 36, 0.82)),
    rgba(10, 16, 34, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(84, 216, 255, 0.08);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(84, 216, 255, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 34px rgba(84, 216, 255, 0.14);
}

.site-main {
  display: grid;
  gap: 42px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 42px;
  padding: 88px 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 16px;
  border: 1px solid rgba(118, 169, 255, 0.18);
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(18, 28, 56, 0.84), rgba(10, 16, 34, 0.74)),
    rgba(9, 15, 32, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(84, 216, 255, 0.08);
}

h1,
h2,
h3,
.price-row strong,
.panel-title,
.insight-card strong {
  margin: 0;
  font-family: "Sora", sans-serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 6.3rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #d8eaff 30%, #8bd8ff 64%, #54d8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow:
    0 0 24px rgba(118, 169, 255, 0.1),
    0 0 52px rgba(84, 216, 255, 0.1);
}

.hero-text,
.panel-copy,
.section-intro p,
.feature-card p,
.pricing-card p,
.suite-cta p,
.insight-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 54ch;
  margin-top: 24px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.22) 50%, transparent 82%);
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary {
  color: #07111d;
  background: linear-gradient(135deg, #d9f0ff 0%, var(--accent-bright) 34%, var(--accent) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 18px 44px rgba(84, 216, 255, 0.26),
    0 0 60px rgba(118, 169, 255, 0.22);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof span,
.stack-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(118, 169, 255, 0.14);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(17, 26, 54, 0.82), rgba(10, 16, 34, 0.78)),
    rgba(9, 15, 32, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(84, 216, 255, 0.06);
}

.hero-preview {
  position: relative;
}

.preview-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
}

.orbit-one {
  top: 8%;
  right: 4%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(84, 216, 255, 0.34), transparent 68%);
}

.orbit-two {
  bottom: 8%;
  left: 2%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(118, 169, 255, 0.28), transparent 68%);
}

.preview-frame,
.suite-shell,
.feature-card,
.pricing-card,
.preview-main,
.insight-card,
.preview-topbar,
.video-stage,
.timeline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(15, 24, 48, 0.94), rgba(8, 13, 29, 0.9)),
    rgba(7, 11, 24, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    var(--shadow-xl);
  backdrop-filter: blur(24px);
}

.preview-frame {
  padding: 20px;
  border-radius: 32px;
  animation: float-panel 7s ease-in-out infinite;
}

.preview-frame::before,
.suite-shell::before,
.feature-card::before,
.pricing-card::before,
.video-stage::before,
.preview-main::before,
.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preview-frame::before,
.suite-shell::before {
  background:
    radial-gradient(circle at top right, rgba(84, 216, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(118, 169, 255, 0.12), transparent 28%, transparent 72%, rgba(84, 216, 255, 0.08));
}

.preview-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(18, 28, 56, 0.88), rgba(12, 18, 38, 0.82)),
    rgba(8, 14, 30, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.window-dots span:nth-child(2) {
  background: rgba(84, 216, 255, 0.68);
}

.window-dots span:nth-child(3) {
  background: rgba(118, 169, 255, 0.68);
}

.preview-search,
.preview-pill,
.panel-chip,
.panel-status,
.stage-score,
.pricing-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-search {
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(118, 169, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(8, 14, 30, 0.7);
}

.preview-pill,
.panel-chip,
.stage-score,
.pricing-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(84, 216, 255, 0.16);
  border-radius: 999px;
  color: var(--accent-soft);
  background:
    linear-gradient(180deg, rgba(18, 28, 56, 0.88), rgba(12, 18, 38, 0.82)),
    rgba(9, 15, 32, 0.78);
  box-shadow: 0 0 20px rgba(84, 216, 255, 0.08);
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.86fr);
  gap: 18px;
  margin-top: 18px;
}

.preview-main {
  padding: 24px;
  border-radius: 28px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.panel-status {
  color: var(--muted-strong);
  opacity: 0.9;
}

.panel-title {
  margin-top: 18px;
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.panel-copy {
  max-width: 48ch;
  margin-top: 14px;
}

.video-stage {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(84, 216, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(16, 25, 52, 0.94), rgba(10, 16, 34, 0.92)),
    rgba(9, 14, 30, 0.82);
}

.video-stage-glow {
  position: absolute;
  inset: 14% 22% auto;
  height: 170px;
  background:
    radial-gradient(circle at center, rgba(84, 216, 255, 0.24), transparent 54%),
    radial-gradient(circle at 72% 46%, rgba(118, 169, 255, 0.24), transparent 42%);
  filter: blur(26px);
}

.stage-wave {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 132px;
  margin-top: 34px;
}

.stage-wave span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(217, 240, 255, 0.96), rgba(84, 216, 255, 0.5));
  box-shadow: 0 0 26px rgba(84, 216, 255, 0.18);
  animation: pulse-bars 2.6s ease-in-out infinite;
}

.stage-wave span:nth-child(1) {
  height: 38%;
}

.stage-wave span:nth-child(2) {
  height: 56%;
  animation-delay: 0.08s;
}

.stage-wave span:nth-child(3) {
  height: 72%;
  animation-delay: 0.16s;
}

.stage-wave span:nth-child(4) {
  height: 92%;
  animation-delay: 0.24s;
}

.stage-wave span:nth-child(5) {
  height: 62%;
  animation-delay: 0.32s;
}

.stage-wave span:nth-child(6) {
  height: 78%;
  animation-delay: 0.4s;
}

.stage-wave span:nth-child(7) {
  height: 88%;
  animation-delay: 0.48s;
}

.stage-wave span:nth-child(8) {
  height: 58%;
  animation-delay: 0.56s;
}

.stage-wave span:nth-child(9) {
  height: 76%;
  animation-delay: 0.64s;
}

.stage-wave span:nth-child(10) {
  height: 54%;
  animation-delay: 0.72s;
}

.stage-wave span:nth-child(11) {
  height: 70%;
  animation-delay: 0.8s;
}

.stage-wave span:nth-child(12) {
  height: 44%;
  animation-delay: 0.88s;
}

.stage-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.timeline-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.timeline-track {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.segment {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(84, 216, 255, 0.34), rgba(118, 169, 255, 0.92));
  box-shadow: 0 0 24px rgba(84, 216, 255, 0.1);
}

.segment-one {
  flex: 0.8;
}

.segment-two {
  flex: 1.15;
}

.segment-three {
  flex: 0.6;
}

.preview-side {
  display: grid;
  gap: 16px;
}

.insight-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 26, 54, 0.88), rgba(10, 16, 34, 0.84)),
    rgba(8, 13, 29, 0.78);
}

.insight-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.insight-card span {
  display: block;
  margin-top: 10px;
}

.insight-label {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accent-card {
  border-color: rgba(84, 216, 255, 0.26);
  background:
    radial-gradient(circle at top right, rgba(84, 216, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(20, 32, 64, 0.94), rgba(10, 16, 34, 0.88)),
    rgba(8, 13, 29, 0.8);
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.suite {
  padding-bottom: 16px;
}

.suite-shell {
  padding: 38px;
  border-radius: 36px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-intro p:last-child {
  max-width: 62ch;
  margin: 18px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 28, 56, 0.88), rgba(10, 16, 34, 0.82)),
    rgba(8, 13, 29, 0.78);
}

.feature-card::before,
.pricing-card::before,
.preview-main::before,
.insight-card::before,
.video-stage::before {
  background:
    linear-gradient(135deg, rgba(84, 216, 255, 0.12), transparent 26%, transparent 74%, rgba(118, 169, 255, 0.08));
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(84, 216, 255, 0.18);
  border-radius: 14px;
  color: var(--accent-soft);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(18, 28, 56, 0.88), rgba(12, 18, 38, 0.82)),
    rgba(9, 15, 32, 0.76);
  box-shadow: 0 0 22px rgba(84, 216, 255, 0.08);
}

.feature-card h3 {
  margin: 18px 0 0;
  font-size: 1.32rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin-top: 12px;
}

.pricing-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.pricing-card {
  padding: 28px;
  border-radius: 30px;
}

.pricing-card-trial {
  border-color: rgba(84, 216, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(84, 216, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(21, 34, 68, 0.96), rgba(10, 17, 36, 0.9)),
    rgba(9, 15, 32, 0.82);
}

.price-row {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.price-row strong {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.price-row span {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-card p:last-child {
  margin-top: 14px;
}

.suite-cta {
  text-align: center;
  margin-top: 34px;
}

.button-large {
  min-width: min(100%, 360px);
  min-height: 64px;
  padding: 0 34px;
}

.suite-cta p {
  max-width: 56ch;
  margin: 16px auto 0;
}

@keyframes drift {
  from {
    transform: translate3d(-14px, -8px, 0) scale(0.98);
  }

  to {
    transform: translate3d(18px, 14px, 0) scale(1.03);
  }
}

@keyframes float-panel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-bars {
  0%,
  100% {
    opacity: 0.76;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy,
  .section-intro {
    max-width: 700px;
  }

  .hero-preview {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 16px;
  }

  .nav-links {
    display: none;
  }

  .preview-grid,
  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .suite-shell {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-text {
    letter-spacing: 0.18em;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 54px;
    gap: 30px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .hero-text,
  .section-intro p:last-child {
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .preview-frame {
    padding: 16px;
    border-radius: 26px;
  }

  .preview-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .window-dots {
    display: none;
  }

  .preview-main,
  .insight-card,
  .feature-card,
  .pricing-card {
    padding: 20px;
  }

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

  .timeline-labels,
  .stage-foot {
    gap: 10px;
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
