:root {
  --ink: #1c1410;
  --ink2: #5a4d44;
  --muted: #8b7f76;
  --line: #f0e6de;
  --accent: #f05a24;
  --accent2: #ff8a3d;
  --accent-deep: #d94814;
  --bg: #fff7f1;
  --card: #fff;
  --radius: 16px;
  --maxw: 1360px;
  --shadow: 0 8px 20px -10px rgba(240, 90, 36, .35);
}

* { box-sizing: border-box; }
html { scrollbar-width: thin; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  flex-shrink: 0;
  cursor: pointer;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.brand b {
  background: linear-gradient(92deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  flex: 1;
  min-width: 0;
}
.nav a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.nav a:hover { background: #fff1e8; color: var(--ink); }
.nav a.on { color: var(--ink); font-weight: 700; }
.hdr__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }
.hdr__link { font-size: 14px; color: var(--ink2); font-weight: 500; white-space: nowrap; cursor: pointer; }
.hdr__link:hover { color: var(--accent); }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(94deg, var(--accent), var(--accent2));
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(240, 90, 36, .55);
}

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 60px 24px 30px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  height: 420px;
  z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(240, 90, 36, .16), transparent 70%),
    radial-gradient(50% 50% at 80% 10%, rgba(255, 138, 61, .14), transparent 70%);
}
.hero__in { position: relative; z-index: 1; }
.hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(92deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { margin: 0 auto 26px; max-width: 620px; color: var(--ink2); font-size: 17px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { height: 52px; padding: 0 30px; font-size: 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(28, 20, 16, .05);
  transition: border-color .18s, color .18s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Triple cards ---------- */
.tri { display: grid; grid-template-columns: 1fr 1.4fr 1.6fr; gap: 18px; margin-top: 20px; }
.tcard {
  position: relative;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  isolation: isolate;
  box-shadow: 0 1px 2px rgba(28, 20, 16, .05), 0 18px 36px -20px rgba(240, 90, 36, .35);
  transition: box-shadow .3s;
  cursor: pointer;
}
.tcard:hover { box-shadow: 0 2px 6px rgba(28, 20, 16, .06), 0 30px 56px -20px rgba(240, 90, 36, .5); }
.tcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(101deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .8) 24%, rgba(255, 255, 255, .32) 46%, rgba(255, 255, 255, 0) 64%);
}
.tcard__c { position: absolute; inset: 0; z-index: 2; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(240, 90, 36, .28);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.badge { color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 5px; letter-spacing: .04em; }
.badge.hot { background: linear-gradient(135deg, #ff6b81, #ff3355); }
.badge.fire { background: linear-gradient(135deg, #ff8a3d, #ff5a1f); }
.badge.new { background: linear-gradient(135deg, #34d399, #0ea57f); }
.tcard h3 { margin: 14px 0 6px; font-size: 24px; font-weight: 800; color: #1a1330; max-width: 66%; }
.tcard__desc { margin: 0; font-size: 13px; color: #5a5470; font-weight: 500; max-width: 62%; }
.tcard__tags { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.tcard__tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(240, 90, 36, .22);
  padding: 3px 9px;
  border-radius: 999px;
}
.tcard__go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(137deg, #242424, #5d5959);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
}

/* ---------- Partners ---------- */
.ps {
  overflow: hidden;
  margin: 34px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ps__t {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ps 34s linear infinite;
  align-items: center;
}
.ps__t span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .45;
  white-space: nowrap;
}
@keyframes ps { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; }
.why .c { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.why .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(240, 90, 36, .14), rgba(255, 138, 61, .14));
  color: var(--accent);
  margin-bottom: 12px;
}
.why .ic svg { width: 20px; height: 20px; }
.why h4 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.why p { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- Sections ---------- */
.sec, .cases, .news, .band { scroll-margin-top: 80px; }
.sec { margin-top: 48px; }
.sec__h { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.sec__h h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.sec__h span { font-size: 14px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #ffc9a8;
  box-shadow: 0 14px 30px -14px rgba(240, 90, 36, .4);
}
.card__img { aspect-ratio: 186 / 130; overflow: hidden; background: #fff4ec; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__b { padding: 11px 13px 13px; }
.card__n { font-size: 14.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card__s { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }

.sec__h .news__all { margin-left: auto; font-size: 13.5px; font-weight: 700; color: var(--accent); white-space: nowrap; cursor: pointer; }
.sec__h .news__all:hover { color: var(--accent-deep); }
.news__meta { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); margin-bottom: 5px; }
.news__cat { font-weight: 800; color: var(--accent); background: #fff1e8; padding: 2px 8px; border-radius: 999px; }
.news__t { font-size: 14px; font-weight: 700; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tool {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  transition: background .18s, border-color .18s;
  cursor: pointer;
}
.tool:hover { background: #fff8f3; border-color: #ffd2b5; }
.tool img {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}
.tool__n { font-size: 14px; font-weight: 700; }
.tool__s { font-size: 12px; color: var(--muted); }

/* ---------- Cases ---------- */
.cases { margin-top: 48px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.cases__tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 18px; }
.tab {
  background: #fafafa;
  border: 1px solid #eaeaef;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: #5c5c5c;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.tab:hover { background: #fff1e8; }
.tab.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ccard {
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  display: block;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  cursor: pointer;
}
.ccard:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(28, 20, 16, .35); }
.ccard__img { aspect-ratio: 1 / 1; overflow: hidden; }
.ccard__img img { width: 100%; height: 100%; object-fit: cover; }
.ccard__b { padding: 9px 11px 11px; background: #fff; }
.ccard__n { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard__t { display: inline-block; margin-top: 5px; font-size: 11px; color: #94a3b8; background: #f4f4f7; padding: 2px 8px; border-radius: 5px; }

/* ---------- Band ---------- */
.band {
  margin: 56px 0 0;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(120deg, #1c1410, #3a2418);
  border-radius: 24px;
  color: #fff;
}
.band h2 { margin: 0 0 10px; font-size: 30px; font-weight: 800; }
.band p { margin: 0 auto 24px; max-width: 560px; color: rgba(255, 255, 255, .72); font-size: 15px; }
.band .btn-primary { height: 52px; padding: 0 34px; font-size: 16px; }

/* ---------- Articles ---------- */
.news { margin-top: 56px; }
.news__h { text-align: center; margin-bottom: 30px; }
.news__h h2 { margin: 0 0 10px; font-size: 30px; font-weight: 800; letter-spacing: -.01em; }
.news__h p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.news__h .rule { width: 56px; height: 4px; border-radius: 3px; margin: 0 auto; background: linear-gradient(90deg, #ff8a3d, #f05a24); }
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.na {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  box-shadow: 0 6px 20px -12px rgba(28, 20, 16, .18);
  cursor: pointer;
}
.na:hover { transform: translateY(-4px); box-shadow: 0 20px 42px -18px rgba(28, 20, 16, .28); border-color: #ffd2b5; }
.na__img { aspect-ratio: 16 / 9; overflow: hidden; background: #fff4ec; }
.na__img img { width: 100%; height: 100%; object-fit: cover; }
.na__b { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.na__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.na__tag { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.na__tag.trend { color: #e8365d; background: #ffe9ef; }
.na__tag.flow { color: #c2410c; background: #fff1e8; }
.na__date { font-size: 13px; color: #9a97a6; }
.na__t {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.na__ex {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.na__more { color: var(--accent); font-weight: 700; font-size: 14px; margin-top: auto; }
.na:hover .na__more { text-decoration: underline; }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 48px 0 28px;
  position: relative;
}
.page-hero h1 { margin: 0 0 10px; font-size: 34px; font-weight: 800; }
.page-hero p { margin: 0; color: var(--ink2); font-size: 16px; max-width: 640px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.crumb a:hover { color: var(--accent); }

/* ---------- Side dock ---------- */
.sd {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(15, 23, 42, .1), 0 1px 4px rgba(15, 23, 42, .04);
}
.sd__wrap { position: relative; display: flex; }
.sd__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 46px;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #5b6170;
  text-decoration: none;
  font-family: inherit;
  transition: background .15s, color .15s;
}
.sd__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background: #f1f1f4;
}
.sd > .sd__item:first-child::before { display: none; }
.sd__item:hover { background: #fff1e8; color: var(--accent); }
.sd__ico { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: inherit; }
.sd__ico svg { width: 18px; height: 18px; }
.sd__label { font-size: 10.5px; line-height: 12px; color: inherit; }
.sd__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 12px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: var(--accent);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(240, 90, 36, .26);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s, transform .16s;
}
.sd__tip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: inherit;
  border-radius: 2px;
}
.sd__item:hover .sd__tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.sd__pop {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
  display: none;
  z-index: 2;
}
.sd__wrap.open .sd__pop { display: block; }
.sd__pop::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid #ececf2;
  border-top: 1px solid #ececf2;
}
.sd__qr {
  display: block;
  width: 190px;
  height: 190px;
  margin: 0 auto 10px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}
.sd__pop-title { margin: 0; font-size: 13px; color: #4b4b57; text-align: center; font-weight: 600; }
.sd__hours { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f4; }
.sd__hours-label { margin: 0; font-size: 12px; color: #94a3b8; }
.sd__hours-text { margin: 4px 0 0; font-size: 13px; color: #4b4b57; }

/* ---------- Footer ---------- */
.ftr { background: #1c1410; color: rgba(255, 255, 255, .7); margin-top: 56px; padding: 40px 24px 24px; }
.ftr__in { max-width: var(--maxw); margin: 0 auto; }
.ftr__cols { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ftr__brand { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; font-size: 17px; }
.ftr__brand img { width: 28px; height: 28px; border-radius: 7px; background: #fff; object-fit: cover; }
.ftr__col p { margin: 12px 0 0; font-size: 13px; max-width: 280px; line-height: 1.8; }
.ftr__col h4 { margin: 0 0 12px; color: #fff; font-size: 14px; font-weight: 700; }
.ftr__col a, .ftr__col .li { display: block; font-size: 13px; color: rgba(255, 255, 255, .6); margin-bottom: 8px; transition: color .15s; }
.ftr__col a:hover { color: #fff; }
.ftr__qr { width: 96px; text-align: center; }
.ftr__qr img { width: 96px; height: 96px; border-radius: 6px; background: #fff; padding: 4px; }
.ftr__qr span { display: block; margin-top: 6px; font-size: 11px; color: rgba(255, 255, 255, .6); }
.ftr__bar {
  border-top: 1px solid #3a322c;
  margin-top: 26px;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ftr__bar a { color: inherit; }
.ftr__bar a:hover { color: #fff; }

/* ---------- Mobile drawer ---------- */
.drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  z-index: 40;
  background: rgba(28, 20, 16, .28);
}
.drawer.open { display: block; }
.drawer__panel {
  background: #fff;
  padding: 12px 16px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer__panel a {
  display: block;
  padding: 12px 8px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink2);
}
.drawer__panel a:hover { background: #fff1e8; color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .cgrid { grid-template-columns: repeat(4, 1fr); }
  .tri { grid-template-columns: 1fr 1fr; }
  .tri .tcard:last-child { grid-column: 1 / -1; height: 220px; }
  .tools { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 900px) {
  .news__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .sd { right: 8px; }
  .sd__pop { width: 212px; padding: 14px; }
  .sd__qr { width: 170px; height: 170px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  body { overflow-x: hidden; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .tri { grid-template-columns: 1fr; }
  .tri .tcard, .tri .tcard:last-child { height: 200px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .tools { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .sec__h { flex-wrap: wrap; }
  .sec__h h2 { font-size: 20px; }
  .sec__h .news__all { width: 100%; margin-left: 0; }
  .hdr .btn-primary { display: none; }
  .hdr__link { display: none; }
  .band h2 { font-size: 22px; }
  .page-hero h1 { font-size: 26px; }
  .sd { display: none; }
}

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