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

:root {
  --bg:        #060a0d;
  --bg-card:   #0b1114;
  --bg-hover:  #101a1e;
  --accent:    #2fe0c2;
  --accent-br: #6ffbe0;
  --accent-2:  #9ff7e6;
  --accent-dim:rgba(47, 224, 194, 0.14);
  --accent-bd: rgba(47, 224, 194, 0.30);
  --text:      #e6f4f0;
  --muted:     #93a8a4;
  --faint:     #46585a;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-bd); border-radius: 3px; }

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
code { background: rgba(255,255,255,.05); padding: 2px 7px; border-radius: 4px; font-size: 13px; color: var(--accent-br); font-family: ui-monospace, Menlo, Consolas, monospace; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bd);
  color: var(--accent-br);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 56px;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

.grad {
  background: linear-gradient(135deg, var(--accent-br), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04211b;
  box-shadow: 0 0 28px rgba(47,224,194,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(111,251,224,.55);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--accent-bd);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 14px; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6,10,13,.78);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .03em;
}
.logo img { width: 30px; height: 30px; }
.logo .logo-dot { color: var(--accent-br); }
nav { display: flex; align-items: center; gap: 8px; }
nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
nav a.active { color: var(--accent-br); }
.nav-dl {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #04211b !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  box-shadow: 0 0 18px rgba(47,224,194,.3);
}
.nav-dl:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(111,251,224,.5); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; margin: 5px 0;
  transition: all .25s;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(47,224,194,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(111,251,224,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent-bd);
  color: var(--accent-br);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.hero-version {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hero-subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats { display: flex; gap: 32px; }
.hero-stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-br);
  line-height: 1;
}
.hero-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,224,194,.16) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-panel {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-bd);
  box-shadow: 0 0 80px rgba(47,224,194,.18), 0 0 0 1px rgba(255,255,255,.04);
  background: var(--bg-card);
  position: relative;
}
.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.hero-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.hero-panel-title img { width: 22px; height: 22px; }
.hero-panel-sub { font-size: 11px; color: var(--faint); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.hero-panel-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.panel-row:hover { border-color: rgba(47,224,194,.35); }
.panel-row.on { border-color: rgba(47,224,194,.35); background: rgba(47,224,194,.06); }
.panel-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.panel-name { font-size: 14px; font-weight: 500; }
.panel-key { font-size: 11px; color: var(--faint); font-family: ui-monospace, Menlo, Consolas, monospace; }
.panel-switch {
  width: 36px;
  height: 20px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.panel-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--faint);
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.panel-row.on .panel-switch { background: rgba(47,224,194,.18); border-color: rgba(47,224,194,.5); }
.panel-row.on .panel-switch::after { transform: translateX(16px); background: var(--accent-br); box-shadow: 0 0 10px rgba(47,224,194,.55); }
.hero-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: .02em;
}

#highlights { padding: 80px 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hl-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, background .2s, transform .2s;
}
.hl-card:hover {
  border-color: var(--accent-bd);
  background: var(--bg-hover);
  transform: translateY(-2px);
}
.hl-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.hl-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.hl-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

#how { padding: 80px 0; }
.howto-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
}
.howto-card h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 18px;
}
.howto-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 900px;
}
.howto-card p:last-child { margin-bottom: 0; }
.howto-card strong { color: var(--text); }

#features { padding: 80px 0; }
.features-cats { display: flex; flex-direction: column; gap: 48px; }
.feat-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.feat-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feat-cat-title { font-size: clamp(20px, 2.5vw, 26px); margin-bottom: 4px; }
.feat-cat-desc { color: var(--muted); font-size: 14px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s, background .2s, transform .2s;
}
.feat-card:hover {
  border-color: var(--accent-bd);
  background: var(--bg-hover);
  transform: translateY(-2px);
}
.feat-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

#crucials { padding: 80px 0; }
.crucials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.crucial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: border-color .2s, background .2s;
}
.crucial-card:hover {
  border-color: var(--accent-bd);
  background: var(--bg-hover);
}
.crucial-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.crucial-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.crucial-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

#install { padding: 80px 0; }
.install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.install-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bd), var(--accent), var(--accent-bd));
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color .2s;
}
.step-card:hover { border-color: var(--accent-bd); }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04211b;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(47,224,194,.3);
  position: relative;
  z-index: 1;
}
.step-title { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

#faq { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent-bd); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .3s, color .2s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent-br); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

#download { padding: 100px 0; }
.dl-box {
  background: linear-gradient(135deg, rgba(47,224,194,.12) 0%, rgba(6,10,13,0) 100%);
  border: 1px solid var(--accent-bd);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dl-box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(47,224,194,.22) 0%, transparent 70%);
  pointer-events: none;
}
.dl-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.dl-desc {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
}
.dl-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.dl-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.dl-meta-item svg { width: 14px; height: 14px; color: var(--accent-br); flex-shrink: 0; }

.page-hero {
  padding: 160px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero-inner { position: relative; }
.page-title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 14px; }
.page-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
  line-height: 1.7;
}

.archive-table { width: 100%; border-collapse: collapse; }
.archive-table th, .archive-table td { text-align: left; padding: 14px 18px; font-size: 14px; }
.archive-table th {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.archive-table td { color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.04); }
.archive-table td:first-child { color: var(--text); font-weight: 600; }

.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 24px; margin: 36px 0 12px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 12px; }
.legal-body strong { color: var(--text); }

footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img { width: 28px; height: 28px; }
.footer-brand-name { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; }
.footer-tagline { color: var(--muted); font-size: 13px; max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-br); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--faint);
  font-size: 13px;
}

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--accent-bd), transparent); margin: 0; }

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .install-steps { grid-template-columns: repeat(2, 1fr); }
  .install-steps::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-panel { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 768px) {
  nav a:not(.nav-dl) { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .install-steps { grid-template-columns: 1fr; }
  .crucials-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .dl-box { padding: 48px 24px; }
  .footer-links { gap: 24px; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: rgba(6,10,13,.97);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--accent-dim); color: var(--accent-br); }
@media (min-width: 769px) { .hamburger { display: none !important; } }
@media (max-width: 768px) { .hamburger { display: block; } }

:root {
  --radius:    14px;
  --radius-lg: 22px;
  --bg-card:   #0c1216;
  --bg-hover:  #122026;
  --muted:     #9db4b0;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ring:      rgba(111, 251, 224, .6);
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { letter-spacing: -0.015em; }
::selection { background: rgba(47, 224, 194, .28); color: #eefffb; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 10px;
}
.btn, .btn-primary, .btn-ghost, .nav-dl {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
  letter-spacing: .015em;
}
.btn-primary { box-shadow: 0 6px 22px -8px rgba(47, 224, 194, .55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(111, 251, 224, .65); }
.btn-ghost:hover { transform: translateY(-1px); }
.hl-card, .feat-card, .crucial-card, .step-card, .faq-item, .dl-box, .howto-card {
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              background .25s var(--ease), box-shadow .25s var(--ease);
}
.hl-card:hover, .feat-card:hover, .crucial-card:hover {
  box-shadow: 0 16px 38px -20px rgba(0, 0, 0, .9);
}
.tag, .hero-badge { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
header { backdrop-filter: blur(18px) saturate(1.1); -webkit-backdrop-filter: blur(18px) saturate(1.1); }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
