:root {
  --bg: oklch(97.8% 0.008 244);
  --surface: oklch(99.1% 0.004 244);
  --surface-soft: oklch(97.1% 0.01 242);
  --surface-strong: oklch(95.4% 0.016 240);
  --ink: oklch(24% 0.022 252);
  --ink-soft: oklch(47% 0.017 252);
  --line: oklch(89% 0.012 242);
  --accent: oklch(63% 0.162 238);
  --accent-deep: oklch(54% 0.15 238);
  --accent-soft: oklch(93.8% 0.022 238);
  --accent-cloud: oklch(96.7% 0.016 238);
  --community-surface: oklch(95.9% 0.016 236);
  --community-surface-strong: oklch(93.1% 0.023 236);
  --community-line: oklch(84.8% 0.018 236 / 0.88);
  --community-text: oklch(24.5% 0.022 252);
  --community-muted: oklch(45% 0.016 252);
  --shadow-soft: 0 18px 44px oklch(27% 0.018 252 / 0.07);
  --shadow-strong: 0 24px 60px oklch(27% 0.02 252 / 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --pricing-card-width: 230px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Heiti SC", "SimHei", sans-serif;
  background: linear-gradient(180deg, oklch(97.2% 0.012 244) 0%, oklch(93.6% 0.036 240) 52%, oklch(90.8% 0.052 232) 100%);
}

.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(97.2% 0.012 244) 0%, oklch(93.6% 0.036 240) 52%, oklch(90.8% 0.052 232) 100%);
}

.page-aura__blob,
.page-aura__diffusion {
  position: absolute;
  display: block;
  pointer-events: none;
}

.page-aura__blob {
  display: block;
  width: 70vmax;
  height: 70vmax;
  border-radius: 42% 58% 55% 45%;
  opacity: 1;
  filter: blur(22px) saturate(178%);
  mix-blend-mode: screen;
  will-change: transform;
}

.page-aura__blob--1 {
  left: -24vmax;
  top: -22vmax;
  background:
    radial-gradient(circle at 42% 48%, oklch(73% 0.17 220 / 0.92) 0%, oklch(86% 0.09 226 / 0.66) 38%, transparent 70%);
  animation: page-field-one 7.5s ease-in-out infinite alternate;
}

.page-aura__blob--2 {
  right: -26vmax;
  top: -18vmax;
  background:
    radial-gradient(circle at 48% 44%, oklch(74% 0.18 240 / 0.9) 0%, oklch(86% 0.1 238 / 0.64) 40%, transparent 72%);
  animation: page-field-two 2s ease-in-out infinite alternate;
}

.page-aura__blob--3 {
  left: 20%;
  top: 16%;
  width: 62vmax;
  height: 62vmax;
  background:
    radial-gradient(circle at 50% 50%, oklch(76% 0.13 198 / 0.82) 0%, oklch(88% 0.07 206 / 0.56) 42%, transparent 72%);
  animation: page-field-three 10s ease-in-out infinite alternate;
}

.page-aura__blob--4 {
  left: -20vmax;
  bottom: -24vmax;
  width: 64vmax;
  height: 64vmax;
  background:
    radial-gradient(circle at 48% 44%, oklch(78% 0.12 252 / 0.76) 0%, oklch(90% 0.064 246 / 0.5) 44%, transparent 74%);
  animation: page-field-four 2s ease-in-out infinite alternate;
}

.page-aura__diffusion {
  left: -12%;
  right: -12%;
  bottom: -22%;
  height: 30vh;
  border-radius: 50px;
  opacity: 1;
  background:
    radial-gradient(ellipse at 50% 8%, oklch(74% 0.15 224 / 0.68) 0%, oklch(88% 0.08 232 / 0.44) 36%, transparent 72%);
  filter: blur(34px);
  will-change: transform, opacity;
  animation: page-diffusion-float 2s ease-in-out infinite alternate;
}

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

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

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

.page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 16px 0 56px;
}

.hero,
.story,
.spotlight,
.community,
.footer,
.quick-nav {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 420px);
  padding: clamp(36px, 8vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, oklch(98.8% 0.007 244 / 0.92) 0%, oklch(96.7% 0.015 238 / 0.82) 52%, oklch(95.4% 0.022 232 / 0.74) 100%);
  box-shadow:
    var(--shadow-soft),
    0 0 40px oklch(89% 0.044 228 / 0.12);
  animation-delay: 0.04s;
  transform: translateZ(0) scale(1);
  transition:
    transform 560ms ease-in-out,
    box-shadow 560ms ease-in-out,
    border-color 560ms ease-in-out,
    filter 560ms ease-in-out;
}

.hero__center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 50px);
  text-align: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 560ms ease-in-out,
    filter 560ms ease-in-out,
    transform 560ms ease-in-out;
}

.hero::before {
  inset: -24%;
  background:
    radial-gradient(circle at 14% 24%, oklch(90% 0.06 214 / 0.64) 0%, transparent 34%),
    radial-gradient(circle at 80% 22%, oklch(89% 0.07 238 / 0.56) 0%, transparent 32%),
    radial-gradient(circle at 56% 74%, oklch(92% 0.04 198 / 0.44) 0%, transparent 36%),
    radial-gradient(circle at 30% 78%, oklch(94% 0.03 248 / 0.34) 0%, transparent 28%);
  filter: blur(34px) saturate(118%);
  opacity: 0.92;
  will-change: transform;
  animation: hero-aurora-flow 24s ease-in-out infinite alternate;
}

.hero::after {
  left: -8%;
  right: -8%;
  bottom: -18%;
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 0%, oklch(88% 0.055 224 / 0.4) 0%, oklch(94% 0.036 232 / 0.24) 42%, transparent 74%);
  filter: blur(28px);
  opacity: 0.88;
  will-change: transform;
  animation: hero-diffusion-drift 18s ease-in-out infinite alternate;
}

.section-kicker,
.section-code,
.card-tag,
.status-pill,
.route-card__index {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero__slogan {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.7;
  letter-spacing: 0.12em;
  opacity: 0.86;
}

.hero:hover {
  transform: translateZ(0) scale(1.012);
  border-color: oklch(85% 0.024 233);
  box-shadow:
    0 24px 60px oklch(27% 0.018 252 / 0.09),
    0 0 0 1px oklch(95% 0.018 232 / 0.54);
  filter: brightness(1.025);
}

.hero:hover::before {
  filter: blur(30px) saturate(126%);
  opacity: 1;
  transform: scale(1.03);
}

.hero:hover::after {
  opacity: 1;
  filter: blur(32px);
  transform: translateY(-4px) scaleX(1.04);
}

.route-card {
  padding: 18px;
  border: 1px solid rgba(105, 126, 153, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.route-card__index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.route-card h2,
.section-title,
.feature-card h3,
.spotlight__title,
.community-card h3,
.deal-sheet h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.route-card h2 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.route-card p,
.feature-card p,
.spotlight__copy,
.community__lead,
.community-card p,
.bullet-list li,
.footer p,
.deal-item__meta {
  color: var(--ink-soft);
  line-height: 1.8;
}

.route-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.quick-nav {
  position: sticky;
  top: 14px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 14px auto 18px;
  padding: 8px;
  border: 1px solid rgba(105, 126, 153, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(250, 251, 252, 0.84);
  box-shadow:
    0 12px 32px oklch(27% 0.02 252 / 0.08),
    0 0 28px oklch(89% 0.044 228 / 0.12);
  animation-delay: 0.1s;
}

.quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.quick-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.story,
.community,
.spotlight,
.footer {
  margin-top: 18px;
  border-radius: var(--radius-xl);
}

.story,
.spotlight,
.community {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px oklch(100% 0 0 / 0.14),
    0 0 36px oklch(89% 0.04 228 / 0.08);
}

.story {
  background: oklch(99.1% 0.004 244 / 0.84);
  animation-delay: 0.18s;
}

.story--light {
  background:
    linear-gradient(180deg, oklch(99.1% 0.004 244 / 0.88) 0%, oklch(97.6% 0.008 241 / 0.74) 100%);
}

.story--agency {
  background:
    radial-gradient(circle at 100% 0%, oklch(92.6% 0.03 234 / 0.58), transparent 22%),
    linear-gradient(180deg, oklch(99.1% 0.004 244 / 0.86) 0%, oklch(97% 0.01 240 / 0.74) 100%);
  animation-delay: 0.36s;
}

.mini-flow span,
.status-pill,
.ghost-link,
.card-tag,
.quick-nav a {
  border-radius: var(--radius-pill);
}

.section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-kicker--dark {
  color: var(--accent-deep);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
}

.section-code {
  flex-shrink: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-code--dark {
  color: var(--community-muted);
}

.free-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-card,
.community-card,
.deal-sheet,
.deal-item {
  border-radius: var(--radius-lg);
}

.feature-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.feature-card--soft {
  background:
    radial-gradient(circle at 100% 0%, oklch(92.8% 0.026 235), transparent 24%),
    var(--accent-cloud);
}

.feature-card__top,
.deal-sheet__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.card-tag--dark {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(31, 114, 213, 0.08);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-card h3,
.community-card h3,
.deal-sheet h3,
.spotlight__title {
  margin-top: 18px;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-weight: 800;
}

.feature-card p {
  margin: 12px 0 0;
  font-size: 1rem;
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  background: rgba(250, 251, 252, 0.78);
  border: 1px solid rgba(105, 126, 153, 0.14);
  font-size: 0.95rem;
  font-weight: 700;
}

.spotlight {
  display: grid;
  gap: 20px;
  background:
    radial-gradient(circle at 100% 0%, oklch(92.8% 0.03 234 / 0.6), transparent 25%),
    linear-gradient(135deg, oklch(98.1% 0.008 242 / 0.86) 0%, oklch(94.9% 0.02 236 / 0.72) 100%);
  animation-delay: 0.28s;
}

.spotlight__copy {
  max-width: 34rem;
  margin: 14px 0 0;
  font-size: 1.02rem;
}

.spotlight__side {
  display: grid;
  gap: 12px;
  align-content: flex-start;
}

.spotlight__side .price-mark,
.spotlight__side .ghost-link {
  width: 100%;
}

.price-mark {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(250, 252, 255, 0.78);
  border: 1px solid rgba(105, 126, 153, 0.14);
  text-align: center;
}

.price-mark__label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-mark strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 0 18px;
  border: 1px solid rgba(31, 114, 213, 0.22);
  color: var(--accent-deep);
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.ghost-link:hover {
  transform: translateY(-1px);
  background: rgba(31, 114, 213, 0.08);
}

.community {
  border-color: var(--community-line);
  background:
    radial-gradient(circle at 0% 0%, oklch(92.5% 0.03 232 / 0.6), transparent 28%),
    radial-gradient(circle at 100% 0%, oklch(90.8% 0.03 224 / 0.58), transparent 24%),
    linear-gradient(160deg, oklch(95.9% 0.016 236 / 0.86) 0%, oklch(93.1% 0.023 236 / 0.76) 100%);
  color: var(--community-text);
  box-shadow:
    var(--shadow-strong),
    0 0 0 1px oklch(100% 0 0 / 0.12),
    0 0 44px oklch(88% 0.048 226 / 0.11);
  animation-delay: 0.34s;
}

.community__hero {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--community-line);
}

.community__lead {
  max-width: 38rem;
  margin: 0;
  color: var(--community-muted);
  font-size: 1.02rem;
}

.price-mark--community {
  width: 100%;
  background: rgba(250, 252, 255, 0.84);
}

.community__grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.community-card {
  padding: 20px;
  border: 1px solid var(--community-line);
  background: rgba(255, 255, 255, 0.62);
}

.community-card p {
  margin: 12px 0 0;
  color: var(--community-muted);
}

.community-card--gift {
  background:
    radial-gradient(circle at 100% 0%, oklch(91% 0.04 235), transparent 30%),
    rgba(255, 255, 255, 0.7);
}

.community-card--full {
  display: grid;
  align-content: center;
  min-height: 180px;
}

.ghost-link--dark {
  border-color: rgba(31, 114, 213, 0.22);
  color: var(--accent-deep);
}

.ghost-link--dark:hover {
  background: rgba(31, 114, 213, 0.08);
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.agency-layout {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  align-items: stretch;
}

.deal-sheet {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(250, 251, 252, 0.84);
  height: 100%;
}

.deal-sheet--featured {
  background:
    radial-gradient(circle at 100% 0%, oklch(92.6% 0.03 235), transparent 22%),
    rgba(250, 252, 255, 0.92);
}

.deal-sheet--agent {
  grid-template-rows: auto auto 1fr;
}

.deal-sheet h3 {
  margin-top: 0;
}

.deal-sheet__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.deal-metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 152px;
  padding: 18px 16px;
  border: 1px solid rgba(105, 126, 153, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.deal-metric-card__label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.deal-metric-card strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.deal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.deal-item {
  padding: 16px;
  border: 1px solid rgba(105, 126, 153, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.deal-item__title,
.deal-item__meta {
  margin: 0;
}

.deal-item__title {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.deal-item__meta {
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 4px 6px;
  animation-delay: 0.44s;
}

.footer p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.95rem;
}

.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(31, 114, 213, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(250, 252, 255, 0.82);
  color: var(--accent-deep);
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer a:hover {
  transform: translateY(-1px);
  background: rgba(31, 114, 213, 0.08);
  box-shadow: 0 10px 24px oklch(27% 0.02 252 / 0.08);
}

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

@keyframes page-field-one {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(-8deg);
  }

  50% {
    transform: translate3d(18vmax, 8vmax, 0) scale(1.12) rotate(7deg);
  }

  100% {
    transform: translate3d(8vmax, 18vmax, 0) scale(1.22) rotate(-5deg);
  }
}

@keyframes page-field-two {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(6deg);
  }

  50% {
    transform: translate3d(-20vmax, 10vmax, 0) scale(1.14) rotate(-7deg);
  }

  100% {
    transform: translate3d(-10vmax, 22vmax, 0) scale(1.24) rotate(5deg);
  }
}

@keyframes page-field-three {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(-4deg);
  }

  50% {
    transform: translate3d(-10vmax, -8vmax, 0) scale(1.16) rotate(6deg);
  }

  100% {
    transform: translate3d(8vmax, 12vmax, 0) scale(1.26) rotate(-8deg);
  }
}

@keyframes page-field-four {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16vmax, -8vmax, 0) scale(1.12);
  }

  100% {
    transform: translate3d(8vmax, 10vmax, 0) scale(1.2);
  }
}

@keyframes page-diffusion-float {
  0% {
    transform: translate3d(0, 8%, 0) scaleX(0.98);
  }

  50% {
    transform: translate3d(0, 1%, 0) scaleX(1.03);
  }

  100% {
    transform: translate3d(0, 10%, 0) scaleX(1.07);
  }
}

@keyframes hero-aurora-flow {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1) rotate(-2deg);
  }

  50% {
    transform: translate3d(2%, 2%, 0) scale(1.06) rotate(2deg);
  }

  100% {
    transform: translate3d(-1%, 4%, 0) scale(1.1) rotate(-3deg);
  }
}

@keyframes hero-diffusion-drift {
  0% {
    transform: translate3d(0, 10%, 0) scaleX(0.98);
  }

  50% {
    transform: translate3d(0, 2%, 0) scaleX(1.02);
  }

  100% {
    transform: translate3d(0, 8%, 0) scaleX(1.05);
  }
}

@media (min-width: 720px) {
  .page {
    width: min(1120px, calc(100vw - 40px));
    padding-top: 24px;
  }

  .free-grid,
  .community__grid,
  .agency-layout,
  .spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community__hero {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  }

  .spotlight__side {
    justify-self: end;
    width: min(100%, var(--pricing-card-width));
  }

  .price-mark--community {
    justify-self: end;
    max-width: var(--pricing-card-width);
  }

  .community-card--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .hero__route {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .agency-layout {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  }

  .story,
  .spotlight,
  .community {
    padding: 40px;
  }
}

@media (max-width: 719px) {
  .page {
    width: calc(100vw - 20px);
    padding-bottom: 42px;
  }

  .quick-nav {
    justify-content: center;
  }

  .quick-nav a {
    flex: 1 1 calc(50% - 8px);
    min-width: 132px;
  }

  .section-top {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero::before,
  .hero::after {
    animation: none;
    transition: none;
    transform: none;
  }

  .hero,
  .story,
  .spotlight,
  .community,
  .footer,
  .quick-nav,
  .quick-nav a,
  .ghost-link {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
