:root {
  --paper: #f8fbff;
  --paper-2: #f1f7ff;
  --paper-sunk: #eaf4ff;
  --card: rgba(255, 255, 255, .84);
  --ink: #24304a;
  --ink-2: #536077;
  --ink-3: #8190a6;
  --ink-4: #a9b5c8;
  --line: rgba(102, 204, 255, .22);
  --line-2: rgba(102, 204, 255, .34);
  --line-strong: rgba(214, 165, 51, .56);
  --cyan: #66ccff;
  --cyan-deep: #2196d4;
  --cyan-soft: rgba(102, 204, 255, .18);
  --gold: #d6a533;
  --gold-deep: #7a4d10;
  --gold-soft: rgba(214, 165, 51, .16);
  --gold-grad: linear-gradient(135deg, #fff7c6 0%, #e8c15b 38%, #b9821f 70%, #6f4610 100%);
  --sky-grad: linear-gradient(135deg, rgba(102, 204, 255, .95), rgba(102, 204, 255, .22));
  --shadow-sm: 0 1px 2px rgba(21, 50, 77, .06);
  --shadow-md: 0 16px 40px -20px rgba(33, 150, 212, .34), 0 2px 8px -4px rgba(122, 77, 16, .18);
  --shadow-lg: 0 32px 80px -34px rgba(33, 150, 212, .42), 0 8px 22px -12px rgba(122, 77, 16, .28);
  --serif: "Noto Serif SC", "Songti SC", serif;
  --sans: "Noto Sans SC", -apple-system, "PingFang SC", system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --measure: 1240px;
  --gutter: clamp(22px, 6vw, 88px)
}

* {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: radial-gradient(circle at 8% 0%, rgba(102, 204, 255, .24), transparent 30%), radial-gradient(circle at 88% 12%, rgba(255, 224, 128, .30), transparent 28%), linear-gradient(180deg, #fbfdff 0%, var(--paper) 46%, #f7fbff 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body.music-dock-ready {
  padding-bottom: 126px
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E")
}

::selection {
  background: var(--cyan);
  color: #fff
}

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

.progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #fff3b0, var(--gold));
  z-index: 200;
  width: 0;
  box-shadow: 0 0 18px rgba(102, 204, 255, .72)
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 69px;
  background: rgba(248, 251, 255, .78);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  animation: chrome-breathe 8.5s ease-in-out infinite
}

.topbar__inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0
}

.brand__mark {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 32px rgba(214, 165, 51, .22)
}

.brand__dot {
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan)
}

.brand__sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto
}

.nav a {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  transition: .2s;
  white-space: nowrap
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--cyan-soft));
  box-shadow: inset 0 0 0 1px rgba(102, 204, 255, .28)
}

.nav__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 !important;
  border: 1px solid rgba(102, 204, 255, .22);
  background: rgba(255, 255, 255, .42)
}

.nav__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}

.nav__icon:hover {
  transform: translateY(-1px)
}

.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: inline-block
}

.hero {
  padding: 72px 0 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  animation: page-breathe 9s ease-in-out infinite
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center
}

.hero__copy {
  min-height: clamp(500px, 54vw, 650px);
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 48px 0;
  animation: hero-copy-in .72s ease both
}

@property --stack-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --stack-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 20%;
}

@property --stack-width {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 30%;
}

@property --stack-rotate {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --stack-opacity {
  syntax: "<number>";
  inherits: false;
  initial-value: .3;
}

.hero__image-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  perspective: 760px;
  transform-style: preserve-3d;
  --tilt-x: 0deg;
  --tilt-y: 0deg
}

.hero__stack-image {
  position: absolute;
  display: block;
  object-fit: cover;
  z-index: var(--stack-z, 1);
  width: clamp(170px, var(--stack-width, 30%), 460px);
  aspect-ratio: var(--stack-ratio, 4 / 5);
  left: var(--stack-x, 50%);
  top: var(--stack-y, 20%);
  border: 1px solid rgba(102, 204, 255, .26);
  border-radius: 12px;
  box-shadow: 0 26px 70px -34px rgba(33, 150, 212, .52), 0 14px 34px -28px rgba(122, 77, 16, .32);
  opacity: var(--stack-opacity, .3);
  filter: saturate(1.16) contrast(1.02) brightness(1.04);
  transform:
    translate(-50%, -50%)
    translate3d(var(--image-x, 0px), var(--image-y, 0px), calc(var(--stack-z, 1) * 8px))
    rotate(var(--stack-rotate, 0deg))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(var(--image-scale, 1));
  transform-origin: center;
  transition:
    --stack-x 1.48s cubic-bezier(.16, .86, .18, 1),
    --stack-y 1.48s cubic-bezier(.16, .86, .18, 1),
    --stack-width 1.48s cubic-bezier(.16, .86, .18, 1),
    --stack-rotate 1.48s cubic-bezier(.16, .86, .18, 1),
    --stack-opacity 1.18s ease,
    left 1.48s cubic-bezier(.16, .86, .18, 1),
    top 1.48s cubic-bezier(.16, .86, .18, 1),
    width 1.48s cubic-bezier(.16, .86, .18, 1),
    opacity 1.18s ease,
    filter .68s ease,
    box-shadow .76s ease,
    border-color .76s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .22), #000 16%, #000 78%, rgba(0, 0, 0, .22));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .22), #000 16%, #000 78%, rgba(0, 0, 0, .22))
}

.hero__stack-image.is-active {
  border-color: rgba(214, 165, 51, .46);
  box-shadow: 0 34px 82px -34px rgba(33, 150, 212, .68), 0 18px 44px -30px rgba(122, 77, 16, .42);
  filter: saturate(1.24) contrast(1.06) brightness(1.08);
  animation: hero-active-glow 3.8s ease-in-out infinite
}

.hero__image-stack.is-switching .hero__stack-image.is-active {
  animation: hero-active-glow 4.8s ease-in-out infinite
}

.hero__stack-dots {
  position: absolute;
  right: 12%;
  bottom: 10%;
  z-index: 24;
  display: flex;
  gap: 7px;
  align-items: center;
  opacity: .72
}

.hero__stack-dot {
  display: block;
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(129, 144, 166, .38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .24);
  cursor: pointer;
  transition: width .34s ease, background .34s ease, opacity .34s ease
}

.hero__stack-dot.is-active {
  width: 36px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 1
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes hero-active-glow {
  0%,
  100% {
    box-shadow: 0 34px 82px -34px rgba(33, 150, 212, .62), 0 18px 44px -30px rgba(122, 77, 16, .38)
  }

  50% {
    box-shadow: 0 40px 92px -34px rgba(33, 150, 212, .78), 0 22px 52px -30px rgba(122, 77, 16, .52)
  }
}

@keyframes band-line-flow {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: .28
  }

  48% {
    transform: translateX(18%);
    opacity: .62
  }
}

@keyframes page-breathe {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(102, 204, 255, .05)
  }

  50% {
    box-shadow: inset 0 1px 0 rgba(102, 204, 255, .22), inset 0 -1px 0 rgba(214, 165, 51, .12)
  }
}

@keyframes chrome-breathe {
  0%,
  100% {
    border-color: rgba(102, 204, 255, .18);
    box-shadow: 0 1px 0 rgba(102, 204, 255, .04)
  }

  50% {
    border-color: rgba(102, 204, 255, .38);
    box-shadow: 0 18px 42px -36px rgba(33, 150, 212, .48)
  }
}

@keyframes surface-breathe {
  0%,
  100% {
    border-color: rgba(102, 204, 255, .24);
    box-shadow: var(--shadow-sm)
  }

  50% {
    border-color: rgba(102, 204, 255, .42);
    box-shadow: 0 24px 58px -40px rgba(33, 150, 212, .48), 0 6px 18px -16px rgba(122, 77, 16, .24)
  }
}

@keyframes micro-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(102, 204, 255, .06)
  }

  50% {
    box-shadow: 0 10px 26px -24px rgba(33, 150, 212, .46)
  }
}

@keyframes title-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(102, 204, 255, 0))
  }

  50% {
    filter: drop-shadow(0 12px 26px rgba(102, 204, 255, .18))
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 18px 0 24px;
  background: linear-gradient(120deg, var(--ink) 0%, var(--gold-deep) 36%, var(--gold) 58%, var(--cyan-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-breathe 7.5s ease-in-out infinite
}

.hero__lead {
  max-width: 62ch;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.85
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: .18s
}

.btn:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md)
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(6px);
  transition: opacity .64s ease, transform .64s ease, filter .64s ease;
  transition-delay: var(--reveal-delay, 0ms)
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0)
}

.btn--primary {
  background: linear-gradient(135deg, #fff4b8, #d6a533 58%, #8d5d16);
  border-color: rgba(214, 165, 51, .72);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .18)
}

.cloud-tool {
  display: grid;
  gap: 22px;
  max-width: 860px
}

.cloud-form {
  display: grid;
  gap: 12px
}

.cloud-form label {
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase
}

.cloud-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center
}

.cloud-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font: 600 13px/1.4 var(--mono);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  outline: none
}

.cloud-form input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .14)
}

.cloud-form p {
  margin: 0;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 13px;
  overflow-wrap: anywhere
}

.cloud-browser {
  display: grid;
  gap: 18px
}

.cloud-browser__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.cloud-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 800
}

.cloud-breadcrumb button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cyan-deep);
  font: inherit;
  cursor: pointer
}

.cloud-entry {
  width: 100%;
  min-height: 220px;
  text-align: left
}

button.cloud-entry {
  cursor: pointer;
  font: inherit;
  color: inherit
}

.cloud-entry--folder h3:before {
  content: "/";
  margin-right: 6px;
  color: var(--cyan-deep)
}

.cloud-entry__url {
  margin-top: 14px;
  color: var(--ink-3);
  font: 12px/1.55 var(--mono);
  overflow-wrap: anywhere
}

.cloud-entry__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 252, 255, .72));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  animation: surface-breathe 7.8s ease-in-out infinite
}

.stat-card:before {
  content: "";
  position: absolute;
  inset: -1px auto auto -1px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(102, 204, 255, .32), transparent 65%)
}

.stat-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 18px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-breathe 8.2s ease-in-out infinite
}

.stats {
  display: grid;
  gap: 12px
}

.stat {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line)
}

.stat span:first-child {
  color: var(--ink-3);
  font-size: 13px
}

.stat b {
  font-variant-numeric: tabular-nums;
  color: var(--cyan-deep)
}

.anime-slot {
  min-width: 0
}

.anime-frame {
  margin: 0;
  display: grid;
  align-content: end;
  min-height: 280px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 204, 255, .16), rgba(255, 255, 255, .72) 42%, rgba(214, 165, 51, .16));
  box-shadow: var(--shadow-md);
  position: relative;
  animation: surface-breathe 8.8s ease-in-out infinite
}

.anime-frame img,
.anime-frame__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.anime-frame img {
  object-fit: cover
}

.anime-frame__placeholder {
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(102, 204, 255, .26) 46% 48%, transparent 48%),
    linear-gradient(45deg, transparent 0 58%, rgba(214, 165, 51, .24) 58% 60%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(241, 247, 255, .38))
}

.anime-frame figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(248, 251, 255, .92) 42%, rgba(248, 251, 255, .98));
  color: var(--ink-2)
}

.anime-frame figcaption span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 900
}

.anime-frame figcaption small {
  font-size: 12px;
  font-weight: 700
}

.profile-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 34px;
  align-items: start
}

.cloud-scene {
  display: grid;
  gap: 34px;
  align-items: start;
  max-width: 900px
}

.band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  animation: page-breathe 10s ease-in-out infinite
}

.band:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(102, 204, 255, .45), rgba(214, 165, 51, .34), transparent);
  opacity: .52;
  animation: band-line-flow 8.5s ease-in-out infinite
}

.band > .wrap {
  position: relative;
  z-index: 1
}

.band--2 {
  background: linear-gradient(180deg, rgba(102, 204, 255, .08), rgba(214, 165, 51, .07))
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px
}

.section-head h2 {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.1;
  margin: 10px 0 0;
  letter-spacing: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-breathe 8s ease-in-out infinite
}

.section-head p {
  max-width: 52ch;
  margin: 0;
  color: var(--ink-2)
}

.profile-block {
  display: grid;
  gap: 22px;
  max-width: 980px
}

.profile-copy {
  display: grid;
  gap: 12px;
  max-width: 76ch;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.9
}

.profile-copy p {
  margin: 0
}

.profile-facts,
.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.profile-facts span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em
}

.profile-link {
  display: inline-grid;
  gap: 1px;
  min-width: 112px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(102, 204, 255, .28);
  color: var(--cyan-deep);
  transition: border-color .18s, color .18s, transform .18s;
  animation: micro-breathe 7.2s ease-in-out infinite
}

.profile-link:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--line-strong);
  transform: translateY(-1px)
}

.profile-link span {
  font-weight: 900
}

.profile-link small {
  color: var(--ink-3);
  font-size: 12px
}

.grid {
  display: grid;
  gap: 18px
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
  animation: surface-breathe 7.4s ease-in-out infinite
}

.card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #fff3b0, var(--gold));
  opacity: .78
}

.card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 24% 0, rgba(255, 255, 255, .66), transparent 34%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease
}

.card:hover:after,
.card:focus-within:after {
  opacity: 1;
  transform: translateY(0)
}

a.card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

.card__meta {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  color: var(--cyan-deep);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700
}

.card h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 12px
}

.card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.75
}

.card--post.card--with-image {
  padding-top: 0
}

.post-card__thumb {
  margin: 0 -24px 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(135deg, rgba(102, 204, 255, .16), rgba(214, 165, 51, .12))
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .22s ease
}

a.card--with-image:hover .post-card__thumb img {
  transform: scale(1.035)
}

.friend-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start
}

.friend-card__avatar {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(102, 204, 255, .34);
  background: linear-gradient(135deg, rgba(102, 204, 255, .18), rgba(214, 165, 51, .16));
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  overflow: hidden
}

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

.friend-exchange {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(0, 1.36fr);
  gap: 28px;
  align-items: start
}

.friend-exchange__panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 26px 28px;
  border-top: 1px solid rgba(102, 204, 255, .42);
  border-bottom: 1px solid rgba(214, 165, 51, .24);
  background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28));
  box-shadow: 0 26px 70px -56px rgba(33, 150, 212, .72);
  animation: surface-breathe 8.2s ease-in-out infinite
}

.friend-exchange__panel:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  border-radius: 999px
}

.friend-exchange__intro h3 {
  max-width: 18em;
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3
}

.friend-exchange__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ink-2);
  font-size: 13px
}

.friend-exchange__table tr {
  border-top: 1px solid rgba(102, 204, 255, .18)
}

.friend-exchange__table th,
.friend-exchange__table td {
  padding: 13px 0;
  vertical-align: top
}

.friend-exchange__table th {
  width: 96px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: left
}

.friend-exchange__table td {
  overflow-wrap: anywhere
}

.friend-exchange__steps {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  counter-reset: friend-step
}

.friend-exchange__steps li {
  position: relative;
  padding: 0 0 18px 18px;
  border-left: 1px solid rgba(102, 204, 255, .28);
  color: var(--ink-2);
  counter-increment: friend-step;
  transition: border-color .2s ease, transform .2s ease
}

.friend-exchange__steps li:hover {
  border-left-color: var(--line-strong);
  transform: translateX(2px)
}

.friend-exchange__steps li:before {
  content: counter(friend-step);
  position: absolute;
  left: -17px;
  top: -2px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 204, 255, .42);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(102, 204, 255, .18), rgba(214, 165, 51, .12));
  color: var(--gold-deep);
  font: 900 12px/1 var(--mono);
  box-shadow: 0 12px 28px -22px rgba(33, 150, 212, .66)
}

.friend-exchange__steps h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px
}

.friend-exchange__steps p {
  margin: 0 0 10px;
  line-height: 1.8
}

.friend-exchange code {
  border: 1px solid rgba(102, 204, 255, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .58);
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: .92em;
  padding: 1px 5px
}

.friend-exchange pre {
  margin: 10px 0 0;
  padding: 14px 16px;
  overflow: auto;
  border: 1px solid rgba(102, 204, 255, .22);
  border-radius: 10px;
  background: rgba(246, 251, 255, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .68)
}

.friend-exchange pre code {
  display: block;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.7;
  padding: 0
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px
}

.tag {
  display: inline-flex;
  height: 24px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(102, 204, 255, .45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(102, 204, 255, .18), rgba(214, 165, 51, .12));
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700
}

[hidden] {
  display: none !important
}

.timeline-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--shadow-sm)
}

.timeline-controls__button {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 204, 255, .18), rgba(214, 165, 51, .12));
  color: var(--cyan-deep);
  font: 900 18px/1 var(--sans);
  cursor: pointer;
  transition: .18s
}

.timeline-controls__button:hover,
.timeline-controls__button:focus-visible {
  border-color: var(--line-strong);
  color: var(--gold-deep);
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 10px 24px -18px rgba(33, 150, 212, .7)
}

.timeline-controls__button:disabled {
  cursor: not-allowed;
  opacity: .36;
  transform: none;
  box-shadow: none
}

.timeline-controls__status {
  min-width: 96px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  text-align: center;
  white-space: nowrap
}

.timeline {
  position: relative;
  min-height: var(--timeline-height, 1120px);
  margin-top: 20px;
  padding: 12px 0 34px;
  isolation: isolate;
  overflow: visible
}

.timeline__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
  pointer-events: none
}

.timeline__curve path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke
}

.timeline__curve-shadow {
  stroke: rgba(102, 204, 255, .12);
  stroke-width: 14;
  filter: blur(2px)
}

.timeline__curve-main {
  stroke: rgba(102, 204, 255, .64);
  stroke-width: 4;
  stroke-dasharray: 14 12;
  animation: timeline-flow 20s linear infinite
}

.timeline__curve-gold {
  stroke: rgba(214, 165, 51, .62);
  stroke-width: 1.7
}

.timeline__item {
  position: absolute;
  left: var(--timeline-x, 50%);
  top: var(--timeline-y, 50%);
  z-index: 1;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  outline: none;
  --dot-size: 9px;
  --label-gap: 18px;
  --label-width: min(260px, 28vw);
  --label-scale: 1;
  --label-hover-scale: 1.24;
  --hit-size: 46px;
  animation: timeline-float 7.6s ease-in-out infinite;
  animation-delay: var(--timeline-delay, 0ms)
}

.timeline__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--hit-size);
  height: var(--hit-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  transform: translate(-50%, -50%);
  pointer-events: auto
}

.timeline__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--dot-size);
  height: var(--dot-size);
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 5px rgba(102, 204, 255, .13), 0 0 22px rgba(214, 165, 51, .34);
  transform: translate(-50%, -50%) scale(1);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease
}

.timeline__text {
  position: absolute;
  top: 50%;
  width: var(--label-width);
  color: var(--ink);
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .82), 0 10px 26px rgba(33, 150, 212, .18);
  transform: translateY(-50%) scale(var(--label-scale));
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, color .22s ease;
  will-change: transform
}

.timeline__item--left .timeline__text {
  right: var(--label-gap);
  text-align: right;
  transform-origin: right center
}

.timeline__item--right .timeline__text {
  left: var(--label-gap);
  text-align: left;
  transform-origin: left center
}

.timeline__time {
  display: block;
  font-size: 10px;
  color: var(--cyan-deep);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.timeline__item h3 {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.22;
  margin: 3px 0 0;
  letter-spacing: 0
}

.timeline__item--dot {
  --dot-size: 7px;
  --label-width: min(180px, 24vw);
  --label-hover-scale: 1.18;
  --hit-size: 42px;
  z-index: 1
}

.timeline[data-label-min-rank="1"] .timeline__item--dot:not(:hover):not(:focus-within) .timeline__text,
.timeline[data-label-min-rank="2"] .timeline__item--dot:not(:hover):not(:focus-within) .timeline__text,
.timeline[data-label-min-rank="2"] .timeline__item--minor:not(:hover):not(:focus-within) .timeline__text,
.timeline[data-label-min-rank="3"] .timeline__item--dot:not(:hover):not(:focus-within) .timeline__text,
.timeline[data-label-min-rank="3"] .timeline__item--minor:not(:hover):not(:focus-within) .timeline__text,
.timeline[data-label-min-rank="3"] .timeline__item--mid:not(:hover):not(:focus-within) .timeline__text {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(.72)
}

.timeline__item--minor {
  --dot-size: 9px;
  --label-width: min(210px, 26vw);
  opacity: .9
}

.timeline__item--mid {
  --dot-size: 12px;
  --hit-size: 54px;
  --label-width: min(250px, 30vw)
}

.timeline__item--mid h3 {
  font-size: 15px
}

.timeline__item--major {
  --dot-size: 17px;
  --label-width: min(320px, 34vw);
  --label-hover-scale: 1.28;
  --hit-size: 64px;
  z-index: 2
}

.timeline__item--major .timeline__dot {
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 0 0 7px rgba(102, 204, 255, .16), 0 0 36px rgba(214, 165, 51, .42)
}

.timeline__item--major .timeline__time {
  font-size: 11px
}

.timeline__item--major h3 {
  color: var(--gold-deep);
  font-size: 18px
}

.timeline__item:hover,
.timeline__item:focus-within {
  z-index: 5;
  opacity: 1
}

.timeline__item:hover .timeline__dot,
.timeline__item:focus-within .timeline__dot {
  box-shadow: 0 0 0 9px rgba(102, 204, 255, .18), 0 0 42px rgba(214, 165, 51, .5);
  transform: translate(-50%, -50%) scale(1.55)
}

.timeline__item:hover .timeline__text,
.timeline__item:focus-within .timeline__text {
  color: var(--ink-strong);
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(var(--label-hover-scale))
}

.timeline__item p {
  color: var(--ink-2);
  margin: 0
}

@keyframes timeline-flow {
  to {
    stroke-dashoffset: -180
  }
}

@keyframes timeline-float {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(102, 204, 255, 0))
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(102, 204, 255, .24))
  }
}

.page-head {
  padding: 76px var(--gutter) 38px
}

.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 52px);
  line-height: 1.04;
  margin: 16px 0 18px;
  letter-spacing: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-breathe 8s ease-in-out infinite
}

.page-head p {
  max-width: 62ch;
  color: var(--ink-2);
  font-size: 14px
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 12px
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(102, 204, 255, .28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(102, 204, 255, .12), rgba(214, 165, 51, .11));
  color: var(--gold-deep);
  font-weight: 800
}

.page-meta b {
  color: var(--cyan-deep);
  font-variant-numeric: tabular-nums
}

.page-head--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px
}

.page-head--archive {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px)
}

.page-head__action {
  flex-shrink: 0;
  margin-bottom: 12px
}

.page-head__rss {
  margin-top: 10px
}

.article-list {
  max-width: var(--measure);
  padding-bottom: 80px
}

.post-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start
}

.post-masonry__column {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0
}

.post-tools {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 1px solid rgba(102, 204, 255, .24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .28));
  box-shadow: 0 22px 56px -46px rgba(33, 150, 212, .52);
  overflow: hidden;
  animation: hero-copy-in .78s .1s ease both, surface-breathe 8s ease-in-out infinite
}

.post-tools__bar {
  display: grid;
  gap: 12px;
  align-items: start;
  padding: 16px 16px 0
}

.post-search {
  display: grid;
  gap: 6px;
  min-width: 0
}

.post-search span,
.post-tools__count {
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase
}

.post-search input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font: 700 13px/1.4 var(--sans);
  outline: none;
  padding: 0 14px;
  box-shadow: var(--shadow-sm)
}

.post-search input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .14)
}

.post-tools__count {
  color: var(--ink-3);
  padding-bottom: 2px
}

.post-tags-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-height: 108px;
  overflow: auto;
  padding: 0 16px 16px
}

.tag-filter {
  display: inline-flex;
  height: 28px;
  align-items: center;
  border: 1px solid rgba(102, 204, 255, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: var(--gold-deep);
  font: 800 12px/1 var(--sans);
  padding: 0 10px;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s, transform .18s;
  animation: micro-breathe 7.6s ease-in-out infinite
}

.tag-filter:hover,
.tag-filter.is-active {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, var(--gold-soft), var(--cyan-soft));
  color: var(--cyan-deep);
  transform: translateY(-1px)
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--ink-3);
  font-size: 13px;
  margin-bottom: 12px;
  animation: chrome-breathe 9s ease-in-out infinite
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px
}

.footer__beian {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(102, 204, 255, .16);
  display: flex;
  justify-content: center;
  text-align: center
}

.footer__beian a {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 700
}

.footer__beian a:hover {
  color: var(--cyan-deep)
}

.footer__identity {
  display: grid;
  gap: 4px;
  min-width: 180px
}

.footer__identity strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px
}

.footer__groups {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.footer__group {
  min-width: 128px
}

.footer__group p {
  margin: 0 0 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase
}

.footer__group nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.footer a {
  color: var(--cyan-deep);
  font-weight: 700
}

.music-dock-ready meting-js,
.music-dock-ready .aplayer.aplayer-fixed {
  position: fixed !important;
  left: -9999px !important;
  bottom: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important
}

.music-dock-ready .aplayer.aplayer-fixed .aplayer-body,
.music-dock-ready .aplayer.aplayer-fixed .aplayer-miniswitcher,
.music-dock-ready .aplayer.aplayer-fixed .aplayer-list,
.music-dock-ready .aplayer.aplayer-fixed .aplayer-lrc {
  opacity: 0 !important;
  pointer-events: none !important
}

.music-dock {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 124;
  width: min(760px, calc(100vw - 36px));
  min-height: 78px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(102, 204, 255, .32);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .9), rgba(248, 251, 255, .72)),
    linear-gradient(90deg, rgba(102, 204, 255, .18), rgba(214, 165, 51, .14));
  backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 30px 82px -44px rgba(33, 150, 212, .76), 0 16px 38px -30px rgba(122, 77, 16, .48);
  overflow: visible;
  transition: width .26s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: music-dock-in .56s ease backwards, player-breathe 6.2s ease-in-out infinite
}

.music-dock:hover {
  transform: translateY(-1px);
  border-color: rgba(102, 204, 255, .46);
  box-shadow: 0 34px 88px -44px rgba(33, 150, 212, .82), 0 18px 42px -30px rgba(122, 77, 16, .52)
}

.music-dock:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, .38) 38%, transparent 52%);
  opacity: .22;
  transform: translateX(-18%);
  animation: dock-sheen 5.8s ease-in-out infinite
}

.music-dock__cover {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(102, 204, 255, .24), rgba(214, 165, 51, .18)),
    rgba(255, 255, 255, .62);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .54), 0 16px 28px -22px rgba(36, 48, 74, .86)
}

.music-dock--launcher {
  width: min(360px, calc(100vw - 36px));
  min-height: 0;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  cursor: pointer
}

.music-dock--launcher .music-dock__cover {
  display: grid;
  place-items: center
}

.music-dock--launcher .music-dock__cover svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan-deep);
  stroke-width: 2;
  fill: var(--cyan-soft)
}

.music-dock--launcher .music-dock__controls {
  grid-column: auto
}

.music-dock--launcher .music-dock__button[disabled] {
  cursor: wait;
  opacity: .64
}

.music-dock--launcher.is-loading .music-dock__cover {
  animation: music-cover-breathe 1.4s ease-in-out infinite
}

.music-dock.is-playing .music-dock__cover {
  animation: music-cover-breathe 3.2s ease-in-out infinite
}

.music-dock__main {
  min-width: 0;
  display: grid;
  gap: 8px;
  transition: opacity .2s ease, transform .2s ease
}

.music-dock__meta {
  min-width: 0;
  display: grid;
  gap: 1px
}

.music-dock__meta strong,
.music-dock__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.music-dock__meta strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3
}

.music-dock__meta span {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 700
}

.music-dock__wave {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  opacity: .72
}

.music-dock__wave span {
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(214, 165, 51, .86), rgba(102, 204, 255, .9));
  transform: scaleY(var(--wave-scale, .24));
  transform-origin: center bottom;
  box-shadow: 0 0 12px rgba(102, 204, 255, calc(var(--wave-energy, .2) * .38));
  transition: transform .12s ease, opacity .18s ease;
  animation: music-wave-idle 1.2s ease-in-out infinite;
  animation-delay: var(--wave-delay, 0ms)
}

.music-dock.is-playing .music-dock__wave span {
  animation-name: music-wave-live;
  animation-duration: .62s
}

.music-dock__progress {
  display: grid;
  grid-template-columns: 42px minmax(120px, 1fr) 42px;
  gap: 8px;
  align-items: center;
  color: var(--ink-3);
  font: 700 11px/1 var(--mono)
}

.music-dock input[type="range"] {
  min-width: 0;
  height: 6px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-deep) var(--range-fill, 0%), rgba(129, 144, 166, .24) var(--range-fill, 0%));
  accent-color: var(--cyan-deep)
}

.music-dock input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .15);
  cursor: pointer
}

.music-dock input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .15);
  cursor: pointer
}

.music-dock__progress input {
  width: 100%;
  --range-fill: var(--progress, 0%)
}

.music-dock__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap
}

.music-dock__button {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(102, 204, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: var(--ink-2);
  font-size: 0;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease
}

.music-dock__button svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none
}

.music-dock__button svg polygon,
.music-dock__button svg circle,
.music-dock__button svg rect {
  vector-effect: non-scaling-stroke
}

.music-dock__button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(102, 204, 255, .18), rgba(214, 165, 51, .12));
  box-shadow: 0 12px 28px -20px rgba(33, 150, 212, .7)
}

.music-dock__button:active {
  transform: translateY(0) scale(.96)
}

.music-dock__button[aria-pressed="true"] {
  color: var(--cyan-deep);
  border-color: rgba(102, 204, 255, .56);
  background: linear-gradient(135deg, rgba(102, 204, 255, .2), rgba(214, 165, 51, .13))
}

.music-dock__button--play {
  width: 36px;
  min-width: 36px;
  color: #fff;
  border-color: rgba(214, 165, 51, .62);
  background: linear-gradient(135deg, #66ccff, #d6a533);
  box-shadow: 0 14px 30px -20px rgba(33, 150, 212, .8)
}

.music-dock__volume {
  width: 78px;
  --range-fill: var(--volume, 45%)
}

.music-dock__lyrics {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan-deep);
  font: 800 12px/1.45 var(--sans);
  text-align: left;
  cursor: pointer
}

.music-dock__lyrics span,
.music-dock__lyrics small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.music-dock__lyrics small {
  color: var(--ink-3);
  font-size: 10px
}

.music-dock.is-lyrics-off .music-dock__lyrics {
  display: none
}

.music-dock__list {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  max-height: 0;
  margin-top: 0;
  overflow: auto;
  opacity: 0;
  border-top: 1px solid transparent;
  transition: max-height .24s ease, opacity .2s ease, margin-top .2s ease, border-color .2s ease
}

.music-dock.is-list-open .music-dock__list {
  max-height: 280px;
  margin-top: 8px;
  padding-top: 8px;
  opacity: 1;
  border-top-color: rgba(102, 204, 255, .2)
}

.music-dock__list-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, auto);
  gap: 12px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, .36);
  color: var(--ink-2);
  font: 800 12px/1.2 var(--sans);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease
}

.music-dock__list-item span,
.music-dock__list-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.music-dock__list-item small {
  color: var(--ink-3);
  text-align: right
}

.music-dock__list-item:hover,
.music-dock__list-item.is-active {
  border-color: rgba(102, 204, 255, .34);
  background: linear-gradient(90deg, rgba(102, 204, 255, .16), rgba(214, 165, 51, .1));
  color: var(--gold-deep)
}

.music-dock.is-collapsed {
  width: auto;
  min-height: 58px;
  grid-template-columns: 46px auto;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  border-radius: 16px
}

.music-dock.is-collapsed .music-dock__cover {
  width: 44px;
  border-radius: 12px
}

.music-dock.is-collapsed .music-dock__main,
.music-dock.is-collapsed .music-dock__list {
  display: none
}

.music-dock.is-collapsed:not(.is-lyrics-off) {
  width: min(520px, calc(100vw - 36px));
  grid-template-columns: 44px minmax(120px, 1fr) auto;
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none
}

.music-dock.is-collapsed:not(.is-lyrics-off):before {
  opacity: 0
}

.music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__main {
  display: grid;
  gap: 0
}

.music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__meta,
.music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__progress,
.music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__wave {
  display: none
}

.music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__lyrics {
  display: grid;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .9), 0 0 1px rgba(255, 255, 255, .95)
}

.music-dock.is-collapsed .music-dock__controls {
  flex-wrap: nowrap;
  gap: 6px
}

.music-dock.is-collapsed .music-dock__button:not(.music-dock__button--play):not(.music-dock__button--fold),
.music-dock.is-collapsed .music-dock__volume {
  display: none
}

@keyframes music-dock-in {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes music-cover-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .54), 0 16px 28px -22px rgba(36, 48, 74, .86)
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72), 0 20px 34px -22px rgba(33, 150, 212, .82), 0 0 0 6px rgba(102, 204, 255, .08)
  }
}

@keyframes music-wave-idle {
  0%,
  100% {
    transform: scaleY(calc(var(--wave-scale, .24) * .82))
  }

  50% {
    transform: scaleY(calc(var(--wave-scale, .24) * 1.08))
  }
}

@keyframes music-wave-live {
  0%,
  100% {
    opacity: .62;
    transform: scaleY(calc(var(--wave-scale, .4) * .78))
  }

  50% {
    opacity: 1;
    transform: scaleY(calc(var(--wave-scale, .4) * 1.18))
  }
}

@keyframes dock-sheen {
  0%,
  58%,
  100% {
    transform: translateX(-34%);
    opacity: .16
  }

  72% {
    transform: translateX(42%);
    opacity: .34
  }
}

@keyframes player-breathe {
  0%,
  100% {
    border-color: rgba(102, 204, 255, .3);
    box-shadow: 0 28px 70px -38px rgba(33, 150, 212, .66), 0 14px 34px -28px rgba(122, 77, 16, .38)
  }

  50% {
    border-color: rgba(102, 204, 255, .46);
    box-shadow: 0 34px 82px -38px rgba(33, 150, 212, .78), 0 18px 42px -28px rgba(122, 77, 16, .5)
  }
}

.aplayer.aplayer-fixed {
  z-index: 120;
  font-family: var(--sans);
  color: var(--ink);
  left: 18px;
  right: auto;
  bottom: 18px;
  width: min(520px, calc(100vw - 36px));
  max-width: min(520px, calc(100vw - 36px));
  margin: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none
}

.aplayer.aplayer-fixed .aplayer-body {
  left: 18px;
  right: auto;
  bottom: 18px;
  width: min(520px, calc(100vw - 36px)) !important;
  max-width: min(520px, calc(100vw - 36px));
  height: 70px;
  padding-right: 18px;
  border: 1px solid rgba(102, 204, 255, .3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(102, 204, 255, .22), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(214, 165, 51, .18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(248, 251, 255, .72));
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 28px 70px -38px rgba(33, 150, 212, .72), 0 14px 34px -28px rgba(122, 77, 16, .44);
  overflow: hidden;
  transition: width .28s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  animation: player-breathe 5.8s ease-in-out infinite
}

.aplayer.aplayer-fixed .aplayer-pic {
  width: 56px !important;
  height: 56px !important;
  margin: 7px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5), 0 10px 24px -18px rgba(36, 48, 74, .8)
}

.aplayer.aplayer-fixed .aplayer-info {
  height: 70px !important;
  margin-left: 70px !important;
  padding: 9px 108px 0 8px !important;
  border: 0 !important;
  background: transparent;
  transform-origin: 0 0
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-music {
  width: 100%;
  height: 19px;
  margin: 0 0 11px;
  padding-bottom: 0
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller {
  align-items: center
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  margin-left: 0
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(129, 144, 166, .24);
  overflow: visible
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
  height: 3px;
  border-radius: 999px;
  background: rgba(129, 144, 166, .28)
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
  height: 3px;
  border-radius: 999px
}

.aplayer.aplayer-fixed .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
  width: 11px;
  height: 11px;
  margin-top: -4px;
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .16)
}

.aplayer.aplayer-fixed .aplayer-icon path {
  fill: var(--ink-2)
}

.aplayer.aplayer-fixed .aplayer-icon:hover path {
  fill: var(--gold-deep)
}

.aplayer.aplayer-fixed .aplayer-icon-back,
.aplayer.aplayer-fixed .aplayer-icon-forward,
.aplayer.aplayer-fixed .aplayer-icon-menu,
.aplayer.aplayer-fixed .aplayer-icon-play {
  bottom: 25px
}

.aplayer.aplayer-fixed .aplayer-icon-back {
  right: 78px
}

.aplayer.aplayer-fixed .aplayer-icon-play {
  right: 52px
}

.aplayer.aplayer-fixed .aplayer-icon-forward {
  right: 26px
}

.aplayer.aplayer-fixed .aplayer-icon-menu {
  right: 2px
}

.aplayer.aplayer-fixed .aplayer-miniswitcher {
  width: 22px;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, rgba(102, 204, 255, .2), rgba(214, 165, 51, .14));
  box-shadow: inset 1px 0 0 rgba(102, 204, 255, .16);
  cursor: pointer
}

.aplayer.aplayer-fixed .aplayer-miniswitcher:hover {
  background: linear-gradient(180deg, rgba(102, 204, 255, .28), rgba(214, 165, 51, .22))
}

.aplayer.aplayer-fixed .aplayer-miniswitcher .aplayer-icon path {
  fill: var(--cyan-deep)
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
  width: 70px !important;
  border-radius: 18px
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-info {
  display: block !important;
  transform: scaleX(0)
}

.aplayer.aplayer-fixed .aplayer-list {
  position: fixed;
  left: 18px;
  bottom: 112px;
  width: min(520px, calc(100vw - 36px));
  margin: 0;
  border: 1px solid rgba(102, 204, 255, .3);
  border-radius: 16px;
  background: rgba(248, 251, 255, .92);
  backdrop-filter: saturate(170%) blur(18px);
  box-shadow: 0 26px 62px -42px rgba(33, 150, 212, .7);
  overflow: hidden
}

.aplayer.aplayer-fixed .aplayer-list ol {
  max-height: 320px
}

.aplayer.aplayer-fixed .aplayer-list ol li {
  height: 34px;
  line-height: 34px;
  border-top-color: rgba(102, 204, 255, .16);
  color: var(--ink-2)
}

.aplayer.aplayer-fixed .aplayer-list ol li:hover,
.aplayer.aplayer-fixed .aplayer-list ol li.aplayer-list-light {
  background: linear-gradient(90deg, rgba(102, 204, 255, .14), rgba(214, 165, 51, .1))
}

.aplayer .aplayer-info .aplayer-music .aplayer-title {
  color: var(--ink)
}

.aplayer .aplayer-info .aplayer-music .aplayer-author,
.aplayer .aplayer-list ol li .aplayer-list-author {
  color: var(--ink-3)
}

.aplayer .aplayer-lrc {
  text-shadow: none;
  color: var(--ink-3)
}

.aplayer .aplayer-lrc p {
  color: rgba(83, 96, 119, .62);
  font-weight: 700
}

.aplayer .aplayer-lrc p.aplayer-lrc-current {
  color: var(--cyan-deep);
  background: linear-gradient(90deg, rgba(102, 204, 255, .18), rgba(214, 165, 51, .14), transparent);
  border-radius: 999px;
  font-weight: 900;
  text-shadow: 0 10px 28px rgba(102, 204, 255, .28)
}

.aplayer.aplayer-fixed .aplayer-lrc {
  left: 50%;
  right: auto;
  bottom: 116px;
  width: min(720px, calc(100vw - 36px));
  z-index: 119;
  height: 40px;
  pointer-events: none;
  transform: translateX(-50%)
}

.aplayer.aplayer-fixed .aplayer-lrc p.aplayer-lrc-current {
  display: inline-block;
  min-width: min(520px, calc(100vw - 80px));
  padding: 2px 16px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, .68), rgba(102, 204, 255, .2), rgba(214, 165, 51, .16), rgba(255, 255, 255, .52));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px -28px rgba(33, 150, 212, .6)
}

.music-lrc-off .aplayer.aplayer-fixed .aplayer-lrc {
  display: none
}

.aplayer.aplayer-fixed,
.aplayer.aplayer-fixed .aplayer-body,
.aplayer.aplayer-fixed .aplayer-miniswitcher,
.aplayer.aplayer-fixed .aplayer-list,
.aplayer.aplayer-fixed .aplayer-lrc {
  opacity: 0 !important;
  pointer-events: none !important
}

.notfound {
  min-height: calc(100vh - 125px);
  display: grid;
  place-items: center;
  text-align: center
}

.notfound h1 {
  font-family: var(--serif);
  font-size: clamp(60px, 15vw, 140px);
  line-height: 1;
  margin: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0
}

.notfound p {
  color: var(--ink-2);
  font-size: 16px
}

@media(max-width:900px) {
  .hero__grid {
    grid-template-columns: 1fr
  }

  .grid--3,
  .grid--2,
  .friend-exchange,
  .profile-scene {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .timeline-controls {
    margin-top: 14px;
    margin-left: 0
  }

  .page-head--split,
  .page-head--archive {
    grid-template-columns: 1fr;
    display: grid
  }

  .post-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .timeline {
    min-height: var(--timeline-height, 1120px);
    padding: 18px 0 10px
  }

  .timeline__curve-main {
    stroke-width: 3.2
  }

  .timeline__curve-shadow {
    stroke-width: 10
  }

  .timeline__item {
    --label-width: min(178px, 38vw);
    --label-gap: 13px
  }

  .timeline__item h3 {
    font-size: 11px
  }

  .timeline__item--mid h3 {
    font-size: 13px
  }

  .timeline__item--major h3 {
    font-size: 15px
  }

  .timeline__item:hover .timeline__text,
  .timeline__item:focus-within .timeline__text {
    transform: translateY(-50%) scale(1.14)
  }

  .nav {
    gap: 0
  }

  .brand__sub {
    display: none
  }
}

@media(max-width:620px) {
  body {
    font-size: 12px;
    line-height: 1.55
  }

  body.music-dock-ready {
    padding-bottom: 206px
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px
  }

  .topbar {
    min-height: 0
  }

  .topbar__inner {
    min-height: 58px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: center;
    flex-direction: row;
    gap: 8px
  }

  .brand {
    flex-shrink: 0
  }

  .brand__mark {
    font-size: 17px
  }

  .nav {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3px;
    flex: 1 1 auto
  }

  .nav a {
    padding: 5px 8px;
    font-size: 11px
  }

  .nav__icon {
    width: 30px;
    height: 30px
  }

  .nav__icon svg {
    width: 16px;
    height: 16px
  }

  .cloud-form__row {
    grid-template-columns: 1fr
  }

  .post-tools__bar {
    align-items: stretch
  }

  .post-search {
    width: 100%
  }

  .post-tools__count {
    width: 100%;
    margin-left: 0
  }

  .hero {
    padding: 38px 0 46px
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
    margin: 12px 0 16px
  }

  .hero__lead {
    font-size: 13px;
    line-height: 1.7
  }

  .post-masonry {
    grid-template-columns: 1fr
  }

  .timeline-controls {
    width: 100%;
    justify-content: space-between
  }

  .timeline-controls__status {
    min-width: 0;
    flex: 1
  }

  .hero__actions {
    gap: 10px
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 0 12px
  }

  .hero__copy {
    min-height: 460px
  }

  .hero__content {
    padding: 12px 0 62px
  }

  .section-head {
    margin-bottom: 20px
  }

  .section-head h2 {
    font-size: 24px
  }

  .page-head {
    padding-top: 44px;
    padding-bottom: 26px
  }

  .page-head h1 {
    font-size: clamp(28px, 8.4vw, 40px);
    margin: 10px 0 12px
  }

  .page-head p,
  .profile-copy {
    font-size: 13px;
    line-height: 1.72
  }

  .page-meta {
    margin-top: 14px;
    font-size: 11px
  }

  .card {
    padding: 18px
  }

  .card h3 {
    font-size: 18px
  }

  .hero__stack-image {
    width: clamp(150px, var(--stack-width, 42%), 300px);
    left: var(--stack-x, 50%);
    opacity: var(--stack-opacity, .3)
  }

  .hero__stack-dots {
    right: 8%;
    bottom: 7%
  }

  .aplayer.aplayer-fixed {
    left: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px)
  }

  .aplayer.aplayer-fixed .aplayer-body {
    left: 10px;
    bottom: 10px;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px);
    height: 66px;
    border-radius: 16px
  }

  .aplayer.aplayer-fixed .aplayer-pic {
    width: 52px !important;
    height: 52px !important;
    margin: 7px;
    border-radius: 12px
  }

  .aplayer.aplayer-fixed .aplayer-info {
    height: 66px !important;
    margin-left: 66px !important;
    padding-right: 86px !important
  }

  .aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
    width: 66px !important
  }

  .aplayer.aplayer-fixed .aplayer-list {
    left: 10px;
    bottom: 96px;
    width: calc(100vw - 20px)
  }

  .aplayer.aplayer-fixed .aplayer-lrc {
    bottom: 96px;
    width: calc(100vw - 20px)
  }

  .aplayer.aplayer-fixed .aplayer-lrc p.aplayer-lrc-current {
    min-width: 0;
    max-width: calc(100vw - 40px)
  }

  .music-dock {
    left: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 16px
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) {
    width: calc(100vw - 20px);
    grid-template-columns: 44px minmax(0, 1fr) auto
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__main {
    grid-column: 2
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__controls {
    grid-column: 3
  }

  .music-dock__cover {
    width: 44px;
    border-radius: 12px
  }

  .music-dock__main {
    gap: 6px
  }

  .music-dock__wave {
    height: 16px;
    gap: 2px
  }

  .music-dock__wave span {
    width: 2px;
    height: 14px
  }

  .music-dock__meta strong {
    font-size: 12px
  }

  .music-dock__meta span {
    font-size: 10px
  }

  .music-dock__progress {
    grid-template-columns: 34px minmax(86px, 1fr) 34px;
    gap: 6px;
    font-size: 10px
  }

  .music-dock__controls {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px
  }

  .music-dock__button {
    width: 28px;
    height: 28px;
    min-width: 28px;
    padding: 0
  }

  .music-dock__button--play {
    width: 32px;
    min-width: 32px
  }

  .music-dock__button svg {
    width: 14px;
    height: 14px
  }

  .music-dock__volume {
    width: 68px
  }

  .music-dock__lyrics {
    font-size: 11px
  }

  .music-dock__list-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    align-items: start;
    min-height: 42px;
    padding: 7px 10px
  }

  .music-dock__list-item small {
    text-align: left
  }

  .music-dock.is-collapsed {
    width: auto;
    grid-template-columns: 50px auto;
    padding: 8px;
    gap: 8px
  }

  .music-dock.is-collapsed .music-dock__cover {
    width: 48px
  }

  .music-dock.is-collapsed .music-dock__controls {
    grid-column: auto
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) {
    width: calc(100vw - 20px);
    grid-template-columns: 44px minmax(0, 1fr) auto
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__cover {
    width: 44px
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__main {
    display: grid;
    grid-column: 2
  }

  .music-dock.is-collapsed:not(.is-lyrics-off) .music-dock__controls {
    grid-column: 3
  }

  .friend-exchange__panel {
    padding: 22px 18px
  }

  .friend-exchange__intro h3 {
    font-size: 20px
  }

  .friend-exchange__table,
  .friend-exchange__table tbody,
  .friend-exchange__table tr,
  .friend-exchange__table th,
  .friend-exchange__table td {
    display: block;
    width: 100%
  }

  .friend-exchange__table th {
    padding: 12px 0 3px
  }

  .friend-exchange__table td {
    padding: 0 0 12px
  }

  .friend-exchange__steps {
    padding-left: 28px
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px
  }

  .footer__groups,
  .footer__group nav {
    justify-content: flex-start
  }
}

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

  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
    filter: none
  }
}
