@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800&family=Noto+Serif+SC:wght@600;700;900&display=swap");

:root {
  color-scheme: light;
  --paper: #fff;
  --canvas: #f5f7fb;
  --canvas-deep: #edf1f8;
  --ink: #172033;
  --ink-soft: #4c5870;
  --muted: #7e899f;
  --line: #dfe5ef;
  --line-soft: #edf1f6;
  --blue: #2859e8;
  --blue-dark: #173cae;
  --blue-ink: #102d82;
  --sky: #6ed9ef;
  --cyan: #c9f5fa;
  --wash: #eaf0ff;
  --success: #15856f;
  --danger: #c94155;
  --warning: #d48a1c;
  --shadow-sm: 0 1px 2px rgba(24, 43, 78, .05), 0 8px 24px rgba(24, 43, 78, .06);
  --shadow: 0 22px 55px rgba(30, 55, 103, .12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --header-height: 76px;
  --sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  --serif: "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(40, 89, 232, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 89, 232, .025) 1px, transparent 1px),
    var(--canvas);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(245,247,251,.72) 30%, rgba(245,247,251,.94));
  content: "";
  pointer-events: none;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: var(--cyan);
  color: var(--blue-ink);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .32;
  pointer-events: none;
}

.ambient-one {
  top: -220px;
  right: 5vw;
  background: #91dff2;
}

.ambient-two {
  top: 35vh;
  left: -260px;
  background: #9aafff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(213, 221, 235, .85);
  background: rgba(250, 251, 254, .86);
  backdrop-filter: blur(22px) saturate(1.3);
}

.header-shell {
  display: flex;
  align-items: center;
  width: min(1460px, 100%);
  height: var(--header-height);
  margin: auto;
  padding: 0 32px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 13px;
  transition: transform .2s ease;
}
.brand:hover { transform: scale(1.03); }

.brand-emblem {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 10px 11px;
  gap: 3.5px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(145deg, #4273ff 0%, #244dd6 65%, #143492 100%);
  box-shadow: 0 10px 28px rgba(40, 89, 232, .32), inset 0 1px rgba(255,255,255,.4);
}

.brand-emblem i {
  width: 4.5px;
  border-radius: 3px 3px 1px 1px;
  background: white;
}

.brand-emblem i:nth-child(1) { height: 15px; opacity: .62; }
.brand-emblem i:nth-child(2) { height: 25px; }
.brand-emblem i:nth-child(3) { height: 19px; opacity: .83; }

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3px;
}

.desktop-nav a {
  position: relative;
  padding: 25px 14px 22px;
  color: var(--ink-soft);
  font-weight: 600;
  transition: color .2s;
}

.desktop-nav a::after {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--blue-ink);
}

.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.global-search {
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 390px;
  height: 44px;
  margin-left: auto;
  padding: 0 13px;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  transition: .2s ease;
}

.global-search:focus-within {
  border-color: rgba(40, 89, 232, .55);
  background: white;
  box-shadow: 0 0 0 4px rgba(40, 89, 232, .09);
}

.global-search svg {
  width: 19px;
  color: var(--muted);
}

.global-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.global-search input::placeholder {
  color: #9ca6b8;
}

.global-search kbd {
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--canvas);
  color: var(--muted);
  font: 11px var(--sans);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: none;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--ink-soft);
  transition: .2s ease;
}

.icon-button:hover,
.icon-button.is-active {
  background: var(--wash);
  color: var(--blue);
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.notification-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: #f05469;
}

.publish-button {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  gap: 7px;
  border-radius: 13px;
  background: linear-gradient(135deg, #3768f4, #2048c8);
  box-shadow: 0 9px 22px rgba(40, 89, 232, .24);
  color: white;
  font-weight: 700;
  transition: .2s ease;
}

.publish-button:hover {
  box-shadow: 0 12px 28px rgba(40, 89, 232, .34);
  transform: translateY(-1px);
}

.publish-button span {
  font-size: 19px;
  font-weight: 400;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  max-width: 128px;
  height: 42px;
  padding: 0 13px 0 5px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}

.account-pill:hover,
.account-pill.is-active {
  border-color: rgba(40,89,232,.28);
  background: var(--wash);
  color: var(--blue-ink);
}

.account-pill > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-avatar,
.avatar {
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #4273ff, #153aaf);
  color: white;
  font-weight: 800;
}

.account-avatar {
  width: 31px;
  height: 31px;
  font-size: 12px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-main {
  width: min(1380px, 100%);
  min-height: calc(100vh - var(--header-height));
  margin: auto;
  padding: 30px 30px 90px;
  outline: none;
}

.page-shell {
  animation: page-in .36s ease both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
}

.route-loading {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 55vh;
  color: var(--muted);
}

.route-loading p {
  margin: 13px 0 0;
  font-size: 13px;
}

.loading-mark {
  display: flex;
  align-items: flex-end;
  height: 34px;
  gap: 4px;
}

.loading-mark i {
  width: 6px;
  border-radius: 5px;
  background: var(--blue);
  animation: loading-wave .8s ease-in-out infinite alternate;
}

.loading-mark i:nth-child(1) { height: 15px; }
.loading-mark i:nth-child(2) { height: 30px; animation-delay: -.35s; }
.loading-mark i:nth-child(3) { height: 22px; animation-delay: -.15s; }

@keyframes loading-wave {
  to { height: 10px; opacity: .38; }
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.page-heading h1,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.page-heading p {
  max-width: 580px;
  margin: 8px 0 0;
  color: var(--muted);
}

.featured-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  min-height: 330px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(118deg, rgba(13, 40, 119, .98), rgba(34, 79, 203, .94) 56%, rgba(79, 194, 222, .88)),
    #244cc4;
  box-shadow: var(--shadow);
  color: white;
}

.featured-hero::after {
  position: absolute;
  right: 20%;
  bottom: -85px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.05), 0 0 0 76px rgba(255,255,255,.035);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 19px;
  padding: 6px 11px;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  background: rgba(255,255,255,.09);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.hero-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ff3ff;
  box-shadow: 0 0 0 4px rgba(143,243,255,.12);
  content: "";
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.hero-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  margin: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(8, 26, 78, .24);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  font-family: var(--serif);
  font-size: 31px;
}

.hero-metrics span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 19px 0;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.metric-row:last-child {
  border-bottom: 0;
}

.metric-row > div {
  display: grid;
}

.feed-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 20px;
  gap: 16px;
}

.view-tabs {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.68);
}

.view-tabs a,
.view-tabs button {
  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.view-tabs a.is-active,
.view-tabs button.is-active {
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--blue-ink);
}

.topic-scroll {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  overflow: auto;
  gap: 8px;
  scrollbar-width: none;
}

.topic-scroll::-webkit-scrollbar {
  display: none;
}

.topic-chip {
  flex: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255,255,255,.65);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: .18s ease;
}

.topic-chip:hover,
.topic-chip.is-active {
  border-color: rgba(40,89,232,.24);
  background: var(--wash);
  color: var(--blue);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 25px;
}

.feed-grid {
  columns: 4 220px;
  column-gap: 16px;
}

.folio-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(218,225,237,.95);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(20,39,79,.035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}

.folio-card:hover {
  border-color: rgba(40,89,232,.2);
  box-shadow: 0 18px 38px rgba(27,50,95,.12);
  transform: translateY(-4px);
}

.card-cover {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(122,220,239,.72), transparent 30%),
    linear-gradient(145deg, #dbe5fb, #98afe5);
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.folio-card:hover .card-cover img {
  transform: scale(1.035);
}

.card-cover-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(145deg, #244ec5, #6bcbe1);
  background-size: 24px 24px, 24px 24px, auto;
  color: rgba(255,255,255,.88);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .1em;
}

.card-cover img + .card-cover-fallback {
  display: none;
}

.video-pill,
.location-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
  background: rgba(17,27,54,.55);
  color: white;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.video-pill {
  top: 12px;
  right: 12px;
  padding: 6px 9px;
}

.location-pill {
  right: 11px;
  bottom: 11px;
  max-width: calc(100% - 22px);
  padding: 5px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body {
  padding: 15px 15px 14px;
}

.card-tags {
  display: flex;
  margin-bottom: 9px;
  overflow: hidden;
  gap: 6px;
}

.card-tags span {
  flex: none;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.card-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-summary {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
}

.card-meta .avatar {
  width: 27px;
  height: 27px;
  font-size: 11px;
}

.card-author {
  display: grid;
  min-width: 0;
  margin-right: auto;
  line-height: 1.25;
}

.card-author strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-author small {
  color: var(--muted);
  font-size: 9px;
}

.mini-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
}

.mini-stat svg {
  width: 15px;
}

.right-rail {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
}

.rail-card,
.panel {
  border: 1px solid rgba(218,225,237,.95);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}

.rail-card {
  padding: 20px;
}

.rail-card h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 17px;
}

.rail-card > p {
  margin: -6px 0 15px;
  color: var(--muted);
  font-size: 12px;
}

.trend-list {
  display: grid;
  gap: 4px;
}

.trend-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  padding: 9px 4px;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.trend-item:last-child {
  border-bottom: 0;
}

.trend-item b {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.trend-item span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trend-item small {
  color: var(--muted);
  font-size: 10px;
}

.signin-callout {
  overflow: hidden;
  background:
    radial-gradient(circle at 110% -10%, rgba(110,217,239,.45), transparent 38%),
    linear-gradient(145deg, #183987, #2657df);
  color: white;
}

.signin-callout h3 {
  font-size: 19px;
}

.signin-callout p {
  color: rgba(255,255,255,.68);
}

.button,
.button-secondary,
.button-ghost,
.button-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: .18s ease;
}

.button {
  background: linear-gradient(135deg, #3768f4, #2048c8);
  box-shadow: 0 9px 20px rgba(40,89,232,.2);
  color: white;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(40,89,232,.3);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(40,89,232,.2);
  background: var(--wash);
  color: var(--blue);
}

.button-ghost {
  border-color: var(--line);
  background: white;
  color: var(--ink-soft);
}

.button-danger {
  border-color: rgba(201,65,85,.18);
  background: #fff1f3;
  color: var(--danger);
}

.button:disabled,
.button-secondary:disabled,
.button-ghost:disabled,
.button-danger:disabled {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
}

.button-wide {
  width: 100%;
}

.state-card {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 44px 24px;
  border: 1px dashed #cfd8e7;
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
  text-align: center;
}

.state-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: var(--wash);
  color: var(--blue);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 900;
}

.state-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
}

.state-card p {
  max-width: 430px;
  margin: 9px 0 21px;
  color: var(--muted);
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(480px, 1.08fr);
  min-height: calc(100vh - var(--header-height) - 90px);
  overflow: hidden;
  border: 1px solid rgba(218,225,237,.9);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.auth-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
  padding: 46px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13,39,112,.18), rgba(8,27,80,.76)),
    url("../assets/covers/lake.jpg") center/cover;
  color: white;
}

.auth-story::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,255,255,.06), 0 0 0 100px rgba(255,255,255,.035);
  content: "";
}

.auth-story-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 900;
}

.auth-story-copy {
  position: relative;
  z-index: 1;
}

.auth-story-copy h2 {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.auth-story-copy p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
}

.auth-form-wrap {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 54px 8vw;
}

.auth-form {
  width: min(440px, 100%);
}

.auth-form .eyebrow {
  margin-bottom: 10px;
}

.auth-form h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 35px;
}

.auth-form > p {
  margin: 9px 0 25px;
  color: var(--muted);
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 14px;
  background: var(--canvas-deep);
}

.auth-switch a {
  padding: 9px;
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.auth-switch a.is-active {
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--blue-ink);
}

.method-switch {
  display: flex;
  margin-bottom: 21px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.method-switch button {
  position: relative;
  padding: 0 1px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.method-switch button.is-active {
  color: var(--blue);
}

.method-switch button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
}

.form-stack {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span,
.field-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: #fbfcfe;
  transition: .18s ease;
}

.input,
.select {
  height: 47px;
  padding: 0 14px;
}

.textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(40,89,232,.55);
  background: white;
  box-shadow: 0 0 0 4px rgba(40,89,232,.08);
}

.input::placeholder,
.textarea::placeholder {
  color: #a7b0c0;
}

.field-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.form-help {
  color: var(--muted);
  font-size: 11px;
}

.form-error {
  padding: 10px 12px;
  border: 1px solid #ffd3da;
  border-radius: 11px;
  background: #fff4f6;
  color: var(--danger);
  font-size: 12px;
}

.auth-footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.auth-footer a {
  color: var(--blue);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: start;
  gap: 24px;
}

.detail-media {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  border-radius: 26px;
  background: #12204a;
  box-shadow: var(--shadow);
}

.detail-media img,
.detail-media video {
  width: 100%;
  max-height: calc(100vh - var(--header-height) - 48px);
  object-fit: contain;
  background: #101a36;
}

.detail-media .card-cover-fallback {
  position: relative;
  min-height: 620px;
}

.detail-panel {
  overflow: hidden;
}

.detail-section {
  padding: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.detail-section:last-child {
  border-bottom: 0;
}

.author-row,
.user-result {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-row .avatar,
.user-result .avatar {
  width: 46px;
  height: 46px;
  font-size: 17px;
}

.author-copy,
.user-copy {
  display: grid;
  min-width: 0;
  margin-right: auto;
}

.author-copy strong,
.user-copy strong {
  font-weight: 800;
}

.author-copy small,
.user-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
}

.detail-body {
  margin: 14px 0 0;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 17px;
  gap: 7px;
}

.tag-list a,
.tag-list span {
  padding: 5px 10px;
  border-radius: 99px;
  background: var(--wash);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.detail-time {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 700;
}

.action-button svg {
  width: 18px;
}

.action-button.is-active {
  border-color: rgba(40,89,232,.2);
  background: var(--wash);
  color: var(--blue);
}

.comment-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 18px;
  gap: 8px;
}

.comment-list {
  display: grid;
  gap: 2px;
}

.comment {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 13px 0;
  gap: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.comment .avatar {
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-head strong {
  font-size: 12px;
}

.comment-head time {
  color: var(--muted);
  font-size: 10px;
}

.comment p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.search-hero {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 0, rgba(110,217,239,.65), transparent 28%),
    linear-gradient(135deg, #193d9a, #2c61e7);
  box-shadow: var(--shadow);
  color: white;
}

.search-hero h1 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 36px;
}

.search-box-large {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 760px;
  gap: 9px;
}

.search-box-large .input {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.94);
}

.result-section {
  margin-top: 28px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.section-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
}

.section-header span {
  color: var(--muted);
  font-size: 12px;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.user-result {
  padding: 17px;
}

.user-copy p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.product-card {
  overflow: hidden;
  transition: .2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: linear-gradient(145deg, #dce6fc, #a9c0ee);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 15px;
}

.product-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.product-body p {
  margin: 5px 0 12px;
  color: var(--muted);
  font-size: 11px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-row strong {
  color: var(--blue);
  font-size: 19px;
}

.price-row del {
  color: #a6afbe;
  font-size: 11px;
}

.price-row span {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
}

.notification-list,
.conversation-list {
  display: grid;
  gap: 10px;
}

.notification-item,
.conversation-item {
  display: flex;
  align-items: center;
  padding: 17px 19px;
  gap: 13px;
}

.notification-item.is-unread {
  border-color: rgba(40,89,232,.2);
  background: linear-gradient(90deg, rgba(234,240,255,.9), white 70%);
}

.notification-copy,
.conversation-copy {
  display: grid;
  min-width: 0;
  margin-right: auto;
}

.notification-copy strong,
.conversation-copy strong {
  font-size: 13px;
}

.notification-copy p,
.conversation-copy p {
  margin: 2px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-item time,
.conversation-item time {
  color: var(--muted);
  font-size: 10px;
}

.unread-badge {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 99px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.messages-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 650px;
  overflow: hidden;
}

.conversation-sidebar {
  border-right: 1px solid var(--line);
}

.conversation-sidebar .section-header {
  padding: 21px 20px 12px;
}

.conversation-sidebar .conversation-list {
  gap: 0;
}

.conversation-sidebar .conversation-item {
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  box-shadow: none;
}

.conversation-sidebar .conversation-item.is-active {
  background: var(--wash);
}

.chat-pane {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.chat-header {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 800;
}

.message-thread {
  display: flex;
  flex-direction: column-reverse;
  overflow: auto;
  padding: 22px;
  gap: 12px;
  background: #f9fafd;
}

.message {
  display: flex;
  align-items: flex-end;
  max-width: 76%;
  gap: 8px;
}

.message.is-mine {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message .avatar {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.message-bubble {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: white;
  color: var(--ink-soft);
  font-size: 13px;
}

.message.is-mine .message-bubble {
  border-color: var(--blue);
  border-radius: 14px 14px 4px 14px;
  background: var(--blue);
  color: white;
}

.chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 15px;
  gap: 9px;
  border-top: 1px solid var(--line);
  background: white;
}

.profile-cover {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 10%, rgba(110,217,239,.5), transparent 27%),
    linear-gradient(135deg, #153681, #2d62df);
  box-shadow: var(--shadow);
  color: white;
}

.profile-cover::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

.profile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  min-height: 260px;
  padding: 37px;
  gap: 18px;
}

.profile-copy .avatar {
  width: 94px;
  height: 94px;
  border: 4px solid rgba(255,255,255,.35);
  box-shadow: 0 14px 30px rgba(6,19,58,.25);
  font-size: 31px;
}

.profile-main {
  display: grid;
  margin-right: auto;
}

.profile-main h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
}

.profile-main p {
  max-width: 620px;
  margin: 7px 0 0;
  color: rgba(255,255,255,.7);
}

.profile-stats {
  display: flex;
  gap: 24px;
}

.profile-stats div {
  display: grid;
  text-align: center;
}

.profile-stats strong {
  font-family: var(--serif);
  font-size: 23px;
}

.profile-stats span {
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.profile-actions {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0 26px;
  gap: 9px;
}

.security-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 26px;
  overflow: hidden;
}

.security-cell {
  padding: 17px;
  border-right: 1px solid var(--line-soft);
}

.security-cell:last-child {
  border-right: 0;
}

.security-cell span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.security-cell strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-heading {
  margin-bottom: 27px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.settings-wide {
  grid-column: 1 / -1;
}

.settings-panel {
  padding: 25px;
}

.settings-panel-head {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-soft);
}

.settings-panel-head h2 {
  margin: 4px 0 5px;
  font-family: var(--serif);
  font-size: 23px;
}

.settings-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.settings-form {
  display: grid;
  padding-top: 20px;
  gap: 17px;
}

.settings-fields {
  display: grid;
  gap: 15px;
}

.settings-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-bio {
  min-height: 122px;
}

.settings-submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 42px;
  gap: 14px;
}

.settings-current {
  margin-right: auto;
  color: var(--muted);
  font-size: 11px;
}

.provider-list {
  display: grid;
  padding-top: 12px;
}

.provider-row,
.session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 15px;
}

.provider-row + .provider-row {
  border-top: 1px solid var(--line-soft);
}

.provider-row > span,
.session-row > span {
  display: grid;
  gap: 3px;
}

.provider-row small,
.session-row small {
  color: var(--muted);
  font-size: 11px;
}

.session-row {
  padding-top: 20px;
}

.settings-danger {
  border-color: rgba(201,65,85,.18);
  background:
    linear-gradient(135deg, rgba(255,244,246,.82), rgba(255,255,255,.96));
}

.settings-danger .settings-panel-head {
  border-bottom-color: rgba(201,65,85,.12);
}

.settings-danger .eyebrow,
.settings-danger .settings-panel-head h2 {
  color: var(--danger);
}

.publish-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 22px;
}

.publish-editor {
  padding: 28px;
}

.publish-editor h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 31px;
}

.publish-title-input {
  height: auto;
  padding: 4px 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.publish-title-input:focus {
  border-bottom-color: var(--blue);
  box-shadow: none;
}

.publish-body {
  min-height: 320px;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2;
}

.publish-body:focus {
  box-shadow: none;
}

.publish-aside {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  padding: 21px;
  gap: 16px;
}

.publish-aside h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
}

.toast-stack {
  position: fixed;
  top: calc(var(--header-height) + 14px);
  left: 50%;
  z-index: 300;
  display: grid;
  width: min(420px, calc(100% - 24px));
  gap: 8px;
  pointer-events: none;
  transform: translateX(-50%);
}

.toast {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(20,30,50,.92);
  box-shadow: 0 14px 30px rgba(14,23,42,.22);
  color: white;
  font-size: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: toast-in .24s ease both;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: .25s ease;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px); }
}

.mobile-nav {
  display: none;
}

@media (max-width: 1180px) {
  .header-shell {
    gap: 15px;
  }

  .brand-copy {
    display: none;
  }

  .desktop-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .global-search {
    max-width: 300px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .feed-grid {
    columns: 3 210px;
  }

  .user-grid,
  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .header-shell {
    padding: 0 20px;
  }

  .desktop-nav,
  .header-actions .icon-button,
  .publish-button {
    display: none;
  }

  .global-search {
    max-width: none;
    margin-left: 0;
  }

  .featured-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 44px;
  }

  .hero-metrics {
    display: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .right-rail {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .feed-grid {
    columns: 3 200px;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-story {
    min-height: 320px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-media {
    position: relative;
    top: 0;
  }

  .detail-media img,
  .detail-media video {
    max-height: 68vh;
  }

  .messages-layout {
    grid-template-columns: 280px minmax(0,1fr);
  }

  .publish-layout {
    grid-template-columns: 1fr;
  }

  .publish-aside {
    position: static;
  }

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

  .settings-wide {
    grid-column: auto;
  }

  .market-grid,
  .user-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 62px;
  }

  body {
    background-size: 28px 28px;
  }

  .site-header {
    background: rgba(250,251,254,.94);
  }

  .header-shell {
    height: var(--header-height);
    padding: 0 13px;
    gap: 11px;
  }

  .brand-emblem {
    width: 37px;
    height: 37px;
    padding: 8px 9px;
  }

  .global-search {
    height: 39px;
    border-radius: 12px;
  }

  .global-search kbd {
    display: none;
  }

  .account-pill {
    width: 38px;
    height: 38px;
    padding: 3px;
    border: 0;
    background: transparent;
  }

  .account-pill > span:last-child {
    display: none;
  }

  .account-avatar {
    width: 32px;
    height: 32px;
  }

  .app-main {
    padding: 15px 10px 88px;
  }

  .featured-hero {
    min-height: 285px;
    margin-bottom: 18px;
    border-radius: 23px;
  }

  .hero-copy {
    padding: 31px 26px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .feed-toolbar {
    display: grid;
    margin-bottom: 15px;
  }

  .view-tabs {
    width: fit-content;
  }

  .topic-scroll {
    justify-content: flex-start;
    margin: 0 -10px;
    padding: 0 10px;
  }

  .feed-grid {
    columns: 2 145px;
    column-gap: 10px;
  }

  .folio-card {
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .card-body {
    padding: 11px;
  }

  .card-title {
    font-family: var(--sans);
    font-size: 14px;
  }

  .card-summary,
  .card-author small {
    display: none;
  }

  .card-meta {
    margin-top: 11px;
  }

  .right-rail {
    grid-template-columns: 1fr;
  }

  .right-rail .signin-callout {
    display: none;
  }

  .page-heading {
    align-items: flex-start;
    flex-direction: column;
    margin: 7px 4px 18px;
    gap: 10px;
  }

  .page-heading h1,
  .page-title {
    font-size: 30px;
  }

  .auth-page {
    min-height: auto;
    border-radius: 23px;
  }

  .auth-story {
    min-height: 220px;
    padding: 25px;
  }

  .auth-story-copy h2 {
    font-size: 29px;
  }

  .auth-story-copy p {
    display: none;
  }

  .auth-form-wrap {
    padding: 29px 22px 34px;
  }

  .auth-form h1 {
    font-size: 28px;
  }

  .detail-layout {
    gap: 12px;
  }

  .detail-media {
    border-radius: 19px;
  }

  .detail-media .card-cover-fallback {
    min-height: 410px;
  }

  .detail-panel {
    border-radius: 19px;
  }

  .detail-section {
    padding: 18px;
  }

  .detail-title {
    font-size: 25px;
  }

  .action-button {
    font-size: 12px;
  }

  .search-hero {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .search-hero h1 {
    font-size: 28px;
  }

  .search-box-large {
    grid-template-columns: 1fr;
  }

  .user-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .messages-layout {
    display: block;
    min-height: 0;
  }

  .conversation-sidebar {
    border-right: 0;
  }

  .messages-layout.has-chat .conversation-sidebar {
    display: none;
  }

  .messages-layout:not(.has-chat) .chat-pane {
    display: none;
  }

  .chat-pane {
    min-height: calc(100vh - 170px);
  }

  .profile-copy {
    align-items: flex-start;
    flex-direction: column;
    padding: 27px;
  }

  .profile-stats {
    width: 100%;
    justify-content: space-between;
  }

  .security-strip {
    grid-template-columns: 1fr 1fr;
  }

  .security-cell:nth-child(2) {
    border-right: 0;
  }

  .security-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .profile-actions {
    flex-wrap: wrap;
  }

  .settings-panel {
    padding: 20px;
  }

  .settings-fields.two-column {
    grid-template-columns: 1fr;
  }

  .settings-submit,
  .provider-row,
  .session-row {
    align-items: stretch;
    flex-direction: column;
  }

  .settings-current {
    margin-right: 0;
  }

  .publish-editor {
    padding: 20px;
  }

  .publish-body {
    min-height: 250px;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(66px + env(safe-area-inset-bottom));
    padding: 6px 8px env(safe-area-inset-bottom);
    border-top: 1px solid rgba(216,223,235,.94);
    background: rgba(252,253,255,.94);
    box-shadow: 0 -8px 30px rgba(26,45,82,.06);
    backdrop-filter: blur(20px);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: #8d97a9;
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-nav a svg {
    width: 21px;
    height: 21px;
  }

  .mobile-nav a.is-active {
    color: var(--blue);
  }

  .mobile-nav .mobile-compose {
    align-self: center;
    justify-self: center;
    width: 43px;
    height: 36px;
    margin-top: -3px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3768f4, #2048c8);
    box-shadow: 0 7px 17px rgba(40,89,232,.29);
    color: white;
    font-size: 24px;
    font-weight: 400;
  }

  .toast-stack {
    top: 73px;
  }
}

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