* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --page-bg: #040507;
  --page-bg-secondary: #0b1017;
  --surface: rgba(16, 19, 28, 0.62);
  --surface-strong: rgba(10, 12, 18, 0.72);
  --surface-soft: rgba(145, 170, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.11);
  --text-primary: #f6f7fb;
  --text-secondary: rgba(235, 238, 255, 0.74);
  --text-muted: rgba(206, 209, 227, 0.5);
  --accent: #92a6ff;
  --accent-2: #6fd2ff;
  --accent-3: #c3d4ff;
  --accent-highlight: rgba(160, 194, 255, 0.24);
  --selection-bg: rgba(111, 210, 255, 0.28);
  --selection-text: #ffffff;
  --button-bg: #f7f9ff;
  --button-text: #0c1018;
  --shadow: 0 26px 90px rgba(3, 7, 13, 0.42);
  --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

body[data-theme="light"] {
  color-scheme: light;
  --page-bg: #f3f6fb;
  --page-bg-secondary: #ffffff;
  --surface: rgba(255, 255, 255, 0.64);
  --surface-strong: rgba(255, 255, 255, 0.78);
  --surface-soft: rgba(135, 168, 255, 0.08);
  --surface-border: rgba(29, 31, 48, 0.08);
  --text-primary: #121524;
  --text-secondary: rgba(23, 28, 48, 0.76);
  --text-muted: rgba(27, 33, 55, 0.48);
  --accent: #5d84ff;
  --accent-2: #4dbef4;
  --accent-3: #98b7ff;
  --accent-highlight: rgba(93, 132, 255, 0.16);
  --selection-bg: rgba(93, 132, 255, 0.22);
  --selection-text: #0f1320;
  --button-bg: #121524;
  --button-text: #f7f8ff;
  --shadow: 0 26px 70px rgba(120, 134, 166, 0.16);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% -10%, rgba(175, 214, 255, 0.13), transparent 34%),
    radial-gradient(circle at 20% 18%, rgba(125, 155, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-secondary) 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.07), transparent 42%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.012) 18%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0) 88%,
      rgba(255, 255, 255, 0.03)
    );
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

body[data-theme="light"]::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), transparent 40%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.68) 0,
      rgba(255, 255, 255, 0.1) 24%,
      rgba(255, 255, 255, 0) 62%
    );
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0)
    );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

body[data-theme="light"]::after {
  background:
    linear-gradient(
      180deg,
      rgba(128, 154, 235, 0.05),
      rgba(128, 154, 235, 0)
    );
  mix-blend-mode: normal;
  opacity: 0.55;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  width: 100%;
  padding: 28px 28px 80px;
}

.background-wash,
.background-ribbon {
  position: fixed;
  filter: blur(110px);
  pointer-events: none;
  z-index: -2;
}

.background-wash {
  top: -6rem;
  width: 30rem;
  height: 22rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 45%, rgba(194, 225, 255, 0.5), transparent 32%),
    radial-gradient(circle at 68% 42%, rgba(113, 170, 255, 0.38), transparent 38%),
    radial-gradient(circle at 50% 65%, rgba(84, 112, 185, 0.2), transparent 56%);
  animation: washFloat 22s ease-in-out infinite alternate;
  opacity: 0.82;
}

.background-wash-left {
  left: -8rem;
}

.background-wash-right {
  right: -10rem;
  top: auto;
  bottom: -2rem;
  animation-duration: 24s;
  animation-delay: -6s;
}

.background-ribbon {
  left: 50%;
  bottom: 3rem;
  width: min(86vw, 66rem);
  height: 10rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 50%, rgba(133, 173, 255, 0.22), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(196, 224, 255, 0.16), transparent 40%),
    radial-gradient(circle at 76% 45%, rgba(111, 211, 255, 0.18), transparent 32%);
  animation: ribbonShift 20s ease-in-out infinite alternate;
  opacity: 0.72;
}

.footer-nav,
.footer-actions {
  display: flex;
  align-items: center;
}

.site-header,
.composer-card,
.feature-card {
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.site-header {
  position: sticky;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto 52px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: rgba(12, 15, 22, 0.36);
  box-shadow: var(--shadow);
  z-index: 10;
}

body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.52);
}

.brand-lockup,
.header-actions,
.hero-actions,
.suggestion-row,
.composer-input-shell,
.composer-controls,
.feature-section {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 14px;
}

.brand-mark {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand-mark sup {
  margin-left: 0.08em;
  font-size: 0.84em;
  color: var(--text-muted);
  opacity: 0.72;
  vertical-align: top;
}

.suggestion-pill {
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.header-actions {
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
}

.footer-brand,
.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.footer-brand sup {
  margin-left: 0.08em;
  font-size: 0.6em;
  color: var(--text-muted);
  opacity: 0.72;
  vertical-align: top;
}

.footer-nav {
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-actions {
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: max-content;
  margin-left: auto;
  min-width: 0;
}

.footer-nav a {
  font-size: 0.95rem;
  white-space: nowrap;
}

.theme-toggle,
.primary-pill,
.primary-cta,
.secondary-cta,
.composer-submit,
.suggestion-pill {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.theme-toggle,
.primary-pill,
.primary-cta,
.secondary-cta,
.composer-submit,
.suggestion-pill {
  cursor: pointer;
}

.theme-toggle:hover,
.primary-pill:hover,
.primary-cta:hover,
.secondary-cta:hover,
.composer-submit:hover,
.suggestion-pill:hover {
  transform: translateY(-1px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font: inherit;
}

.theme-toggle-track {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

body[data-theme="light"] .theme-toggle-track {
  background: rgba(18, 21, 36, 0.16);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(214, 222, 237, 0.82) 100%);
  box-shadow: 0 8px 16px rgba(8, 12, 18, 0.24);
  transition: transform 180ms ease;
}

body[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(18px);
  background: linear-gradient(135deg, rgba(86, 92, 108, 0.96) 0%, rgba(130, 136, 152, 0.9) 100%);
  box-shadow: 0 8px 16px rgba(90, 104, 140, 0.2);
}

.theme-toggle-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.primary-pill,
.primary-cta {
  border: none;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 700;
  text-decoration: none;
}

.primary-pill {
  padding: 15px 28px;
  border-radius: 999px;
}

.hero-section,
.composer-section,
.feature-section {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-section {
  position: relative;
  padding: 34px 0 18px;
  text-align: center;
}

.hero-section::before {
  position: absolute;
  right: 12%;
  bottom: -22%;
  width: 22rem;
  height: 22rem;
  border-radius: 42% 58% 54% 46%;
  background:
    radial-gradient(circle at 30% 30%, rgba(188, 220, 255, 0.24), transparent 34%),
    radial-gradient(circle at 60% 60%, rgba(109, 162, 255, 0.2), transparent 40%);
  content: "";
  filter: blur(28px);
  animation: blobRotate 20s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.feature-eyebrow {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

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

.primary-cta,
.secondary-cta {
  padding: 16px 24px;
  border-radius: 999px;
}

.secondary-cta {
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
}

.composer-section {
  position: relative;
  max-width: 1040px;
  padding-top: 32px;
}

.composer-card {
  position: relative;
  width: min(100%, 800px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(196, 221, 255, 0.12);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 29, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -16px 24px rgba(255, 255, 255, 0.02),
    0 18px 32px rgba(4, 7, 12, 0.18),
    0 38px 90px rgba(3, 7, 13, 0.34),
    var(--shadow);
  overflow: hidden;
  transition:
    opacity 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body[data-theme="light"] .composer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -14px 20px rgba(150, 170, 214, 0.035),
    0 14px 26px rgba(120, 134, 166, 0.055),
    0 18px 48px rgba(120, 134, 166, 0.08),
    var(--shadow);
}

body:not([data-theme="light"]) .composer-card {
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -16px 24px rgba(255, 255, 255, 0.018),
    0 18px 32px rgba(4, 7, 12, 0.18),
    0 38px 90px rgba(3, 7, 13, 0.34),
    var(--shadow);
}

.composer-card.is-engaged {
  opacity: 0.84;
}

body:not([data-theme="light"]) .composer-card.is-engaged {
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(11, 14, 20, 0.42);
}

body[data-theme="light"] .composer-card.is-engaged {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(241, 246, 255, 0.48)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -8px 14px rgba(150, 170, 214, 0.018),
    0 8px 18px rgba(120, 134, 166, 0.028),
    0 12px 28px rgba(120, 134, 166, 0.04),
    var(--shadow);
}

.composer-card::before {
  position: absolute;
  inset: 1px;
  border-radius: 39px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 26%, rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 0%, rgba(220, 238, 255, 0.12), transparent 30%);
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.composer-card::after {
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 214, 255, 0.14), transparent 68%);
  content: "";
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
}

.composer-glow {
  position: absolute;
  inset: auto 8% -24% 8%;
  height: 12rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 50%, rgba(180, 215, 255, 0.14), transparent 36%),
    radial-gradient(circle at 72% 45%, rgba(147, 226, 255, 0.1), transparent 34%);
  filter: blur(70px);
  animation: ribbonShift 22s ease-in-out infinite alternate;
  opacity: 0.5;
}

body[data-theme="light"] .composer-glow {
  background:
    radial-gradient(circle at 20% 50%, rgba(180, 215, 255, 0.08), transparent 38%),
    radial-gradient(circle at 72% 45%, rgba(147, 226, 255, 0.06), transparent 36%);
  filter: blur(78px);
  opacity: 0.24;
}

.suggestion-row {
  position: relative;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.suggestion-pill {
  padding: 10px 16px;
  font: inherit;
}

.composer-input-shell {
  position: relative;
  gap: 16px;
  align-items: stretch;
  flex-direction: column;
  min-height: 9.5rem;
  padding: 18px;
  border: 1px solid rgba(200, 224, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -10px 18px rgba(255, 255, 255, 0.02),
    0 10px 30px rgba(5, 8, 14, 0.08);
}

body:not([data-theme="light"]) .composer-input-shell {
  border-color: rgba(188, 220, 255, 0.22);
  background: rgba(255, 255, 255, 0.028);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -6px 12px rgba(255, 255, 255, 0.012),
    0 0 0 1px rgba(136, 186, 255, 0.1);
}

body:not([data-theme="light"]) .composer-card.is-engaged .composer-input-shell {
  border-color: rgba(210, 232, 255, 0.26);
  background: rgba(255, 255, 255, 0.042);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -6px 12px rgba(255, 255, 255, 0.015),
    0 0 0 1px rgba(156, 198, 255, 0.14);
}

body[data-theme="light"] .composer-input-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.72)),
    rgba(246, 249, 255, 0.72);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -8px 14px rgba(164, 182, 216, 0.045),
    0 8px 18px rgba(124, 138, 170, 0.05);
}

body[data-theme="light"] .composer-card.is-engaged .composer-input-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.8)),
    rgba(248, 250, 255, 0.82);
  border-color: rgba(17, 24, 39, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -8px 14px rgba(164, 182, 216, 0.06),
    0 10px 22px rgba(124, 138, 170, 0.07);
}

.composer-input-shell::before {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.015) 28%, rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 0%, rgba(220, 238, 255, 0.12), transparent 28%);
  content: "";
  pointer-events: none;
}

body:not([data-theme="light"]) .composer-input-shell::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012) 26%, rgba(255, 255, 255, 0));
}

.composer-input-shell::after {
  position: absolute;
  inset: auto 10% -16% 10%;
  height: 34%;
  width: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 235, 255, 0.18), transparent 70%);
  content: "";
  filter: blur(20px);
  opacity: 0.34;
  pointer-events: none;
  transform: none;
}

body:not([data-theme="light"]) .composer-input-shell::after {
  background: radial-gradient(circle, rgba(214, 235, 255, 0.08), transparent 72%);
  filter: blur(18px);
  opacity: 0.18;
}

.composer-controls {
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.composer-submit {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  box-shadow: none;
}

.composer-submit {
  color: var(--text-muted);
  font-size: 1.6rem;
  margin-left: auto;
}

.composer-submit.is-active {
  color: #ffffff;
}

body[data-theme="light"] .composer-submit.is-active {
  color: #121524;
}

.composer-input {
  width: 100%;
  min-height: 5.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: clamp(1rem, 1.75vw, 1.2rem);
  font-family: inherit;
  line-height: 1.6;
  outline: none;
  resize: none;
  position: relative;
  z-index: 1;
}

body[data-theme="light"] .composer-input {
  color: var(--text-secondary);
}

.composer-input::placeholder {
  color: var(--text-muted);
}

.feature-section {
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
}

.feature-card {
  flex: 1 1 0;
  padding: 24px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.feature-card-large {
  flex: 1.3 1 0;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.feature-card p:last-child {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

@keyframes washFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2rem, -1rem, 0) scale(1.08);
  }
}

@keyframes ribbonShift {
  0% {
    transform: translateX(-50%) scaleX(0.95);
  }
  100% {
    transform: translateX(-50%) scaleX(1.08);
  }
}

@keyframes blobRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-actions,
  .footer-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-section h1 {
    max-width: 12ch;
  }

  .feature-section {
    align-items: stretch;
    flex-direction: column;
  }

  .composer-icon,
  .composer-submit {
    width: auto;
    height: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 18px 16px 56px;
  }

  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 14px;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .primary-pill {
    flex: 0 0 auto;
    padding: 12px 20px;
  }

  .brand-lockup {
    min-width: 0;
    flex-wrap: nowrap;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-nav {
    width: 100%;
  }

  .hero-section {
    padding-top: 8px;
  }

  .composer-card {
    padding: 18px;
    border-radius: 28px;
  }

  .suggestion-row {
    margin-top: 22px;
  }

  .composer-input {
    min-height: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
