/* MOA 메인홈 스타일. 변경 전 ../../MOA_HOME_GUIDE.md 확인. 브랜드 4색 HEX와 로고는 임의 변경 금지. */
:root {
  --blue: #4C70F8;
  --purple: #875CF5;
  --green: #20C87A;
  --pale: #CAD0F9;
  --navy: #0F172A;
  --text: #1F2937;
  --muted: #667085;
  --light-text: #98A2B3;
  --border: #E8ECF3;
  --surface: #F7F9FC;
  --white: #FFFFFF;
  --page-pad: 18px;
  --bottom-nav: 62px;
  --radius-notice: 12px;
  --radius-action: 14px;
  --radius-card: 16px;
  --radius-hero: 20px;
  --shadow-card: none;
  --shadow-sheet: 0 -18px 48px rgba(15, 23, 42, .16);
  --font-ui: "Wanted Sans Variable", "Wanted Sans", -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-display: "Paperlogy", var(--font-ui);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #F1F3F7; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  background: #F1F3F7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input { font: inherit; }
button { color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.app-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100dvh;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 0 36px rgba(15, 23, 42, .07);
  display: flex;
  flex-direction: column;
}
.page-pad { padding-left: var(--page-pad); padding-right: var(--page-pad); }

.site-header {
  position: relative;
  z-index: 30;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(232, 236, 243, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-row {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 100px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 3px; }
.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.icon-button svg, [data-icon] svg { width: 22px; height: 22px; display: block; }
.icon-button:active, .account-button:active, .bottom-nav-item:active { background: var(--surface); }
.account-button {
  min-height: 36px; padding: 0 10px; border: 1px solid #EBEEF4; border-radius: 13px;
  background: #FBFCFE; display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 600; cursor: pointer;
}
.account-mark { display: inline-grid; place-items: center; }
.account-mark svg { width: 18px; height: 18px; }

.top-tabs {
  height: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.top-tab {
  position: relative; min-width: 44px; padding: 0; border: 0; background: transparent;
  font-size: 13.5px; font-weight: 500; color: var(--muted); cursor: pointer;
}
.top-tab.is-active { color: var(--navy); font-weight: 700; }
.top-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
  background: var(--blue);
}

main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(var(--bottom-nav) + 48px + env(safe-area-inset-bottom));
  scrollbar-width: none;
}
main::-webkit-scrollbar { display: none; }

.notice-wrap { padding-top: 9px; }
.notice-card {
  width: 100%; min-height: 36px; padding: 5px 2px; border: 0;
  border-bottom: 1px solid #EEF1F6; border-radius: 0; background: transparent; color: #4B5567;
  display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 500;
  text-align: left; cursor: pointer;
}
.notice-card strong {
  flex: 0 0 auto; padding: 4px 7px; border-radius: 7px; background: #EEF2FF;
  color: var(--blue); font-size: 9.5px; line-height: 1; font-weight: 700; letter-spacing: .02em;
}
.notice-card span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice-card svg { width: 15px; height: 15px; color: var(--blue); }

.hero-wrap { padding-top: 9px; }
.hero-card {
  position: relative; min-height: 176px; padding: 18px; border: 1px solid #E7EAF7;
  border-radius: var(--radius-hero); background: #F6F7FF; overflow: hidden; box-shadow: none;
}
.hero-card::before {
  content: ""; position: absolute; z-index: 3; top: 0; left: 18px; width: 72px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--purple) 25% 50%, var(--green) 50% 75%, var(--pale) 75%);
}
.hero-copy { position: relative; z-index: 2; width: 66%; min-width: 0; }
.hero-eyebrow {
  margin: 0 0 5px; color: var(--blue); font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
}
.hero-card h1 {
  margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 25px;
  line-height: 1.16; letter-spacing: -.026em; font-weight: 700; white-space: pre-line;
}
.hero-description {
  margin: 6px 0 0; color: var(--muted); font-size: 11.5px; line-height: 1.42;
}
.hero-cta {
  min-height: 34px; margin-top: 10px; padding: 0 13px; border: 0; border-radius: 11px;
  background: var(--blue); color: var(--white); font-size: 11.5px; font-weight: 650;
  box-shadow: none; cursor: pointer;
}
.hero-cta:active { transform: translateY(1px); }
.hero-logo-crop {
  position: absolute; z-index: 1; width: 112px; height: 112px; right: 12px; bottom: 13px;
  opacity: .96; filter: none;
}
.hero-logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-section, .topic-section { padding-top: 29px; scroll-margin-top: 104px; }
#quick { padding-top: 21px; }
#quick .section-heading { margin-bottom: 9px; }
#quick .section-heading p {
  margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45;
}
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.section-heading h2 {
  margin: 0; color: var(--navy); font-size: 18px; line-height: 1.3;
  letter-spacing: -.02em; font-weight: 650;
}
.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.46;
}
.text-link {
  flex: 0 0 auto; min-height: 34px; padding: 0 1px 0 8px; border: 0;
  background: transparent; color: var(--muted); font-size: 11.5px; font-weight: 600; cursor: pointer;
}
.text-link::after { content: " ›"; color: var(--blue); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 6px;
  row-gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.quick-card {
  min-width: 0; min-height: 70px; padding: 3px 2px 2px; border: 0;
  border-radius: var(--radius-action); background: transparent; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; gap: 5px; text-align: center; cursor: pointer;
  box-shadow: none; transition: transform 160ms ease, background-color 160ms ease;
}
.quick-card:active { transform: scale(.98); background: #F8F9FC; }
.quick-icon {
  width: 40px; height: 40px; border-radius: var(--radius-action); display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .028);
}
.quick-icon svg { width: 20px; height: 20px; stroke-width: 1.7; }
.quick-card:nth-child(4n+1) .quick-icon { background: #EEF2FF; color: var(--blue); }
.quick-card:nth-child(4n+2) .quick-icon { background: #F4EEFF; color: var(--purple); }
.quick-card:nth-child(4n+3) .quick-icon { background: #EAF9F2; color: var(--green); }
.quick-card:nth-child(4n+4) .quick-icon { background: #F0F1FC; color: #6670B6; }
.quick-name {
  width: 100%; min-height: 26px; color: var(--text); font-size: 11px; line-height: 1.18;
  letter-spacing: -.01em; font-weight: 600; overflow: hidden; display: -webkit-box;
  -webkit-box-orient: vertical; -webkit-line-clamp: 2; white-space: normal; overflow-wrap: anywhere;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.recommend-card {
  position: relative; min-height: 136px; padding: 14px; border: 1px solid var(--border);
  border-top-width: 3px; border-radius: var(--radius-card); background: var(--white);
  text-align: left; cursor: pointer; overflow: hidden; box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.recommend-card::after { display: none; }
.recommend-card:nth-child(4n+1) { background: var(--white); border-top-color: var(--blue); }
.recommend-card:nth-child(4n+2) { background: var(--white); border-top-color: var(--purple); }
.recommend-card:nth-child(4n+3) { background: var(--white); border-top-color: var(--green); }
.recommend-card:nth-child(4n+4) { background: var(--white); border-top-color: var(--pale); }
.recommend-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.recommend-icon {
  width: 34px; height: 34px; border-radius: 11px; background: #F1F4FF;
  display: grid; place-items: center; color: var(--blue); box-shadow: none;
}
.recommend-card:nth-child(4n+2) .recommend-icon { color: var(--purple); }
.recommend-card:nth-child(4n+3) .recommend-icon { color: var(--green); }
.recommend-card:nth-child(4n+4) .recommend-icon { color: #6670B6; }
.recommend-icon svg { width: 19px; height: 19px; }
.status-chip {
  flex: 0 0 auto; padding: 4px 7px; border-radius: 8px; background: var(--surface);
  color: #6B7585; font-size: 9.5px; line-height: 1; font-weight: 650;
}
.recommend-card h3 {
  position: relative; z-index: 1; margin: 12px 0 4px; color: var(--navy);
  font-size: 14px; line-height: 1.3; font-weight: 650;
}
.recommend-card p {
  position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 11.5px;
  line-height: 1.42; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.new-section {
  position: relative; margin-top: 29px; padding-top: 23px; padding-bottom: 3px;
  border-top: 1px solid #F0F2F6; border-bottom: 1px solid #F0F2F6;
  background: #FAFBFD; scroll-margin-top: 104px;
}
.new-section .section-heading h2 span { color: var(--purple); }
.new-scroller {
  display: flex;
  gap: 10px;
  padding: 0 var(--page-pad) 17px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.new-scroller::-webkit-scrollbar { display: none; }
.new-card {
  position: relative; flex: 0 0 154px; min-height: 118px; padding: 13px;
  border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white);
  text-align: left; scroll-snap-align: start; cursor: pointer; box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease;
}
.new-card-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.new-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: #F1F4FF;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.new-card:nth-child(3n+2) .new-icon { background: #F5F0FF; color: var(--purple); }
.new-card:nth-child(3n+3) .new-icon { background: #ECF9F3; color: var(--green); }
.new-icon svg { width: 18px; height: 18px; }
.new-badge {
  padding: 4px 7px; border-radius: 999px; background: #F0E9FF; color: var(--purple);
  font-size: 9px; line-height: 1; font-weight: 700; letter-spacing: .04em;
}
.new-card h3 {
  margin: 11px 0 4px; color: var(--navy); font-size: 13.5px; line-height: 1.3; font-weight: 650;
}
.new-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.topic-section { padding-top: 31px; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.topic-card {
  position: relative; min-height: 88px; padding: 12px 9px 12px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white);
  display: flex; align-items: center; gap: 9px; text-align: left; cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.topic-card::after {
  content: "›";
  flex: 0 0 auto;
  margin-left: auto;
  color: #B2BAC7;
  font-size: 18px;
  line-height: 1;
}
.topic-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #F1F4FF;
  color: var(--blue);
}
.topic-icon svg { width: 18px; height: 18px; }
.topic-card:nth-child(4n+2) .topic-icon { background: #F6F0FF; color: var(--purple); }
.topic-card:nth-child(4n+3) .topic-icon { background: #ECF9F3; color: var(--green); }
.topic-card:nth-child(4n+4) .topic-icon { background: #F1F2FC; color: #6670B6; }
.topic-card-text { min-width: 0; }
.topic-card strong {
  display: block; color: var(--navy); font-size: 12.5px; line-height: 1.25; font-weight: 650;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.topic-card small {
  display: -webkit-box; margin-top: 4px; color: var(--muted); font-size: 10.5px;
  line-height: 1.25; overflow: hidden; white-space: normal;
  -webkit-box-orient: vertical; -webkit-line-clamp: 2;
}

.site-footer {
  margin-top: 38px;
  padding-top: 25px;
  padding-bottom: 32px;
  border-top: 1px solid var(--border);
  background: #F9FAFC;
}
.footer-logo { width: 88px; height: auto; opacity: .86; }
.site-footer p {
  max-width: 310px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 17px; }
.footer-links button {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 550;
  cursor: pointer;
}

.bottom-nav {
  position: fixed; z-index: 100; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(100%, 480px); height: calc(var(--bottom-nav) + env(safe-area-inset-bottom));
  padding: 1px 6px env(safe-area-inset-bottom); border-top: 1px solid rgba(232, 236, 243, .92);
  background: rgba(255, 255, 255, .97); display: grid; grid-template-columns: repeat(5, 1fr);
  box-shadow: none; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.bottom-nav-item {
  min-width: 0; padding: 3px 0 2px; border: 0; border-radius: 12px; background: transparent;
  color: #858E9C; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; cursor: pointer; transition: color 160ms ease, background-color 160ms ease;
}
.bottom-nav-item span {
  position: relative; width: 34px; height: 24px; display: grid; place-items: center; border-radius: 11px;
}
.bottom-nav-item svg {
  position: relative; z-index: 1; width: 20px; height: 20px; stroke-width: 1.7;
}
.bottom-nav-item em {
  font-style: normal; font-size: 10px; line-height: 1; font-weight: 500;
}
.bottom-nav-item.is-active { color: var(--blue); }
.bottom-nav-item.is-active span { background: #F1F4FF; }
.bottom-nav-item.is-active em { font-weight: 700; }

.overlay, .search-overlay { position: fixed; z-index: 120; inset: 0; }
.overlay[hidden], .search-overlay[hidden], .toast[hidden] { display: none; }
.overlay { display: flex; align-items: flex-end; justify-content: center; }
.overlay-backdrop { position: absolute; inset: 0; border: 0; background: rgba(15, 23, 42, .42); }
.sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(82vh, 740px);
  padding-bottom: env(safe-area-inset-bottom);
  border-radius: 24px 24px 0 0;
  background: var(--white);
  box-shadow: var(--shadow-sheet);
  overflow: hidden;
}
.sheet-handle {
  width: 40px;
  height: 4px;
  margin: 9px auto 1px;
  border-radius: 999px;
  background: #D7DCE5;
}
.sheet-header {
  min-height: 58px;
  padding: 4px 10px 4px var(--page-pad);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sheet-header h2 { margin: 0; color: var(--navy); font-size: 18px; font-weight: 700; }
.sheet-content {
  max-height: calc(min(82vh, 740px) - 72px);
  overflow-y: auto;
  padding: 15px var(--page-pad) 26px;
}

.result-list { display: grid; gap: 8px; }
.result-item {
  width: 100%;
  min-height: 70px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  cursor: pointer;
}
.result-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #F1F4FF;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.result-icon svg { width: 19px; height: 19px; }
.result-copy { min-width: 0; flex: 1; }
.result-copy strong { display: block; color: var(--navy); font-size: 13.5px; font-weight: 700; }
.result-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-meta { flex: 0 0 auto; color: var(--light-text); font-size: 10px; font-weight: 600; }
.empty-state { padding: 32px 10px; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.55; }

.category-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.category-button {
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
}
.category-button strong { display: block; color: var(--navy); font-size: 13.5px; font-weight: 700; }
.category-button span { display: block; margin-top: 4px; color: var(--muted); font-size: 11.5px; }

.account-menu { display: grid; gap: 8px; }
.menu-button {
  width: 100%;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  cursor: pointer;
}
.menu-button > span:first-child {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #F1F4FF;
  display: grid;
  place-items: center;
}
.menu-button svg { width: 19px; height: 19px; color: var(--blue); }
.menu-button > span:last-child { min-width: 0; flex: 1; }
.menu-button strong { display: block; font-size: 13.5px; color: var(--navy); }
.menu-button small { display: block; margin-top: 3px; color: var(--muted); font-size: 11.5px; line-height: 1.35; }

.search-overlay { background: var(--white); overflow-y: auto; }
.search-head {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 66px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .96);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.search-field {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #EEF1F5;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-field:focus-within { border-color: rgba(76, 112, 248, .34); background: var(--white); }
.search-field svg { width: 19px; height: 19px; color: var(--muted); }
.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
}
.search-field input::placeholder { color: var(--light-text); }
.search-body { padding-top: 17px; padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
.search-guide { margin: 0 0 13px; color: var(--muted); font-size: 12px; }

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: calc(84px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(calc(100% - 36px), 420px);
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(15, 23, 42, .94);
  color: var(--white);
  text-align: center;
  font-size: 12.5px;
  line-height: 1.4;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .2);
}

:focus-visible { outline: 2px solid rgba(76, 112, 248, .34); outline-offset: 2px; }

@media (hover: hover) {
  .quick-card, .recommend-card, .new-card, .topic-card, .result-item, .category-button, .menu-button, .hero-cta {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .quick-card:hover, .topic-card:hover, .result-item:hover, .category-button:hover, .menu-button:hover {
    transform: translateY(-1px);
    border-color: #DCE2EC;
  }
  .recommend-card:hover, .new-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 360px) {
  :root { --page-pad: 16px; }
  .brand img { width: 96px; }
  .hero-card { min-height: 174px; padding-left: 17px; }
  .hero-copy { width: 65%; }
  .hero-card h1 { font-size: 24px; }
  .hero-logo-crop { width: 104px; height: 104px; right: 10px; bottom: 15px; }
  .hero-logo-crop img { width: 100%; }
  .quick-grid { gap: 6px; padding: 6px; }
  .quick-card { min-height: 86px; }
  .quick-name { font-size: 11.5px; }
  .topic-card { padding-left: 10px; gap: 8px; }
  .topic-card::after { display: none; }
}
@media (min-width: 414px) {
  :root { --page-pad: 20px; }
  .hero-card { min-height: 178px; padding-top: 18px; }
  .hero-logo-crop { width: 116px; height: 116px; }
  .hero-logo-crop img { width: 100%; }
}
@media (min-width: 481px) {
  .app-shell { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}