*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #111827;
  --muted: #6b7280;
  --line: #eef1f6;
  --blue: #2563eb;
  --indigo: #4f46e5;
  --violet: #8b5cf6;
  --pink: #ec4899;
}

html {
  min-width: 320px;
  background: #fff;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 41, 59, 0.5);
  color: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.light-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
}

.header-inner {
  display: flex;
  width: min(1280px, calc(100% - 32px));
  height: 64px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
}

.light-header .brand {
  color: #111827;
}

.brand-identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 26% 50%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 74% 50%, #fff 0 10%, transparent 11%),
    linear-gradient(135deg, #38bdf8 0%, #4f46e5 52%, #ec4899 100%);
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 44% 25%;
  border-radius: 999px;
  background: #fff;
}

.brand-wordmark {
  color: currentColor;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand:hover .brand-mark {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(96, 165, 250, 0.28);
}

.brand:hover .brand-wordmark {
  color: #fff;
}

.light-header .brand:hover .brand-wordmark {
  color: #4f46e5;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 40px);
  font-size: 16px;
  font-weight: 700;
}

.nav-link {
  color: rgba(226, 232, 240, 0.9);
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.light-header .nav-link {
  color: #6b7280;
}

.light-header .nav-link:hover,
.light-header .nav-link.active {
  color: #4f46e5;
}

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

.login-btn,
.register-btn,
.icon-button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.login-btn:hover,
.register-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.light-header .login-btn {
  border-color: #e5e7eb;
  background: transparent;
  color: #4b5563;
}

.light-header .login-btn:hover {
  background: #f9fafb;
  color: #111827;
}

.register-btn.solid {
  border-color: #4f46e5;
  background: #4f46e5;
  color: #fff;
}

.register-btn.solid:hover {
  border-color: #4338ca;
  background: #4338ca;
}

.icon-button {
  min-width: 40px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: #030712;
}

.icon-button svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 27% 37%, rgba(59, 130, 246, 0.15) 0, transparent 50%),
    radial-gradient(circle at 97% 21%, rgba(34, 197, 94, 0.12) 0, transparent 45%),
    radial-gradient(circle at 52% 99%, rgba(236, 72, 153, 0.16) 0, transparent 48%),
    radial-gradient(circle at 10% 29%, rgba(139, 92, 246, 0.14) 0, transparent 48%),
    linear-gradient(135deg, #111827 0%, #1e3a8a 52%, #0f172a 100%);
  color: #fff;
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.home-hero {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - 64px);
  flex-direction: column;
  align-items: center;
  padding: clamp(110px, 13vh, 150px) 24px 72px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #60a5fa;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.hero-badge::before {
  content: "✦";
  margin-right: 8px;
  color: #60a5fa;
}

.hero-title {
  min-height: 1.2em;
  margin: 42px 0 0;
  color: #fff;
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.caret {
  display: inline-block;
  width: 3px;
  height: 0.86em;
  margin-left: 5px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(0.09em);
  animation: blink 1.1s steps(2, start) infinite;
}

.gradient-title {
  margin: 12px 0 28px;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa 0%, #c084fc 48%, #f472b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-subtitle {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #9ca3af;
  font-size: 20px;
  line-height: 1.6;
}

.hero-subtitle span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero-subtitle span:first-child::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #f472b6);
  vertical-align: 0.15em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 72px;
}

.btn {
  display: inline-flex;
  min-width: 150px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  width: min(672px, 100%);
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 64px;
  margin-top: 76px;
}

.stat strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #c084fc, #f472b6);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 40px;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.orbit-field {
  position: absolute;
  inset: 64px 0 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.star,
.pulse-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.8);
  animation: twinkle 3.2s ease-in-out infinite;
}

.star-1 { left: 23%; top: 16%; }
.star-2 { left: 95%; top: 11%; animation-delay: 0.4s; }
.star-3 { left: 35%; top: 56%; animation-delay: 0.9s; }
.star-4 { left: 22%; top: 76%; animation-delay: 1.2s; }
.star-5 { left: 74%; top: 76%; animation-delay: 1.6s; }
.star-6 { left: 92%; top: 78%; animation-delay: 2s; }
.star-7 { left: 24%; top: 86%; animation-delay: 1.1s; }
.star-8 { left: 59%; top: 70%; background: #22d3ee; }
.star-9 { left: 72%; top: 44%; background: #a78bfa; }
.star-10 { left: 50%; top: 80%; }
.star-11 { left: 33%; top: 48%; background: #ec4899; }
.star-12 { left: 86%; top: 22%; animation-delay: 0.6s; }

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 { width: 400px; }
.orbit-2 { width: 600px; }
.orbit-3 { width: 800px; }
.orbit-4 { width: 1000px; }
.orbit-5 { width: 1200px; }

.pulse-dot {
  width: 8px;
  height: 8px;
}

.dot-a { left: 50%; top: 34%; }
.dot-b { left: 70%; top: 34%; background: #a78bfa; box-shadow: 0 0 20px rgba(167, 139, 250, 0.8); }

.home-section {
  position: relative;
  z-index: 2;
  padding: 112px 24px;
}

.section-heading {
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  color: transparent;
  background: linear-gradient(90deg, #2563eb, #9333ea, #db2777);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
}

.section-heading p {
  margin: 0;
  color: #9ca3af;
  font-size: 20px;
}

.feature-grid {
  display: grid;
  width: min(1280px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.feature-card {
  min-height: 230px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.26);
}

.feature-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 8px;
}

.icon-2 { background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 14px 30px rgba(168, 85, 247, 0.26); }
.icon-3 { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 14px 30px rgba(236, 72, 153, 0.26); }
.icon-4 { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22); }
.icon-5 { background: linear-gradient(135deg, #f59e0b, #ea580c); box-shadow: 0 14px 30px rgba(245, 158, 11, 0.22); }
.icon-6 { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 14px 30px rgba(99, 102, 241, 0.24); }

.feature-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
}

.feature-card p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.65;
}

.cta-section {
  padding-top: 64px;
}

.cta-panel {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 15%, rgba(59, 130, 246, 0.22), transparent 18%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.2));
  text-align: center;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
}

.cta-panel h2 {
  margin: 28px 0 24px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
}

.cta-panel h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #c084fc, #f472b6);
  background-clip: text;
  -webkit-background-clip: text;
}

.cta-panel p {
  margin: 0;
  color: #d1d5db;
  font-size: 22px;
  line-height: 1.55;
}

.compact-actions {
  margin-top: 48px;
}

.about-section {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 96px 0;
  color: #111827;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background: #fff;
}

.about-brand-panel {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 260px;
  padding: 48px 32px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 18%, rgba(56, 189, 248, 0.14), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(236, 72, 153, 0.12), transparent 28%),
    #fff;
  color: #111827;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.brand-identity-large {
  flex-direction: column;
  gap: 18px;
}

.brand-identity-large .brand-mark {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  border-radius: 22px;
}

.brand-identity-large .brand-wordmark {
  font-size: clamp(32px, 4vw, 44px);
}

.brand-domain {
  color: #6b7280;
  font-size: 15px;
  font-weight: 800;
}

.about-section h2 {
  margin: 0 0 32px;
  text-align: center;
  font-size: 40px;
}

.about-section h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.about-section p {
  color: #374151;
  font-size: 16px;
  line-height: 1.75;
}

.home-footer {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  text-align: center;
}

.footer-brand {
  justify-content: center;
  color: #111827;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-radius: 9px;
}

.footer-brand .brand-wordmark {
  font-size: 20px;
}

.models-page {
  min-height: 100vh;
  background: #fff;
}

.models-shell {
  display: grid;
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: minmax(230px, 25%) minmax(0, 1fr);
  gap: 40px;
  margin: 0 auto;
  padding: 32px 0;
}

.filters-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 128px);
  padding-right: 16px;
  overflow: auto;
  border-right: 1px solid #f3f4f6;
}

.filters-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.filters-title h2 {
  margin: 0;
  color: #2d3436;
  font-size: 20px;
  line-height: 1.2;
}

.filters-title button {
  background: transparent;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-section {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
}

.filter-section h3 {
  margin: 0 0 16px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.filter-row {
  display: grid;
  width: 100%;
  min-height: 40px;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  color: #4b5563;
  background: transparent;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.filter-row:hover {
  background: rgba(238, 242, 255, 0.5);
}

.filter-row.selected {
  color: #4338ca;
  background: #eef2ff;
  font-weight: 800;
}

.filter-control {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.filter-control.radio {
  border-radius: 999px;
}

.filter-row.selected .filter-control {
  border-color: #4f46e5;
  background: #4f46e5;
}

.filter-row.selected .filter-control.radio {
  color: transparent;
  background: #fff;
  box-shadow: inset 0 0 0 4px #4f46e5;
}

.count-pill {
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #6b7280;
  background: #f3f4f6;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.models-main {
  min-width: 0;
}

.search-bar {
  position: relative;
  display: block;
  width: 100%;
}

.search-bar span {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 24px;
  height: 24px;
  border: 3px solid #9ca3af;
  border-radius: 50%;
  transform: translateY(-58%);
}

.search-bar span::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -6px;
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: #9ca3af;
  transform: rotate(45deg);
}

.search-bar input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px 0 64px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  outline: 0;
  color: #111827;
  background: #fff;
  font-size: 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-bar input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.models-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 24px 0 32px;
  color: #6b7280;
  font-size: 14px;
}

.models-toolbar p {
  margin: 0;
  font-weight: 600;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.model-card {
  display: flex;
  min-height: 314px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: #6366f1;
  box-shadow: 0 24px 40px rgba(79, 70, 229, 0.06);
}

.model-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.provider-icon {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  color: #9ca3af;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
}

.provider-icon.lobe-icon {
  background: #fff;
}

.provider-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.star-logo::before,
.star-logo::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid #6258e8;
  transform: rotate(45deg);
}

.star-logo::after {
  transform: rotate(105deg);
}

.doubao::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(#2ef3c4, #3478ff, #8a5cff, #2ef3c4);
}

.plain {
  border-radius: 999px;
}

.model-title-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.model-title-line h3 {
  overflow: hidden;
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-card:hover h3 {
  color: #4f46e5;
}

.model-head p {
  overflow: hidden;
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-badge {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #ea580c;
  background: #fff7ed;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-desc {
  display: -webkit-box;
  height: 40px;
  margin: 0 0 24px;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.model-metrics {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  background: #f9fafb;
}

.metric {
  display: grid;
  place-items: center;
  padding: 12px 8px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(229, 231, 235, 0.7);
}

.metric span {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.metric strong {
  color: #4f46e5;
  font-size: 14px;
}

.model-tags {
  display: flex;
  min-height: 40px;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  margin: 0 0 18px;
}

.model-tag {
  padding: 3px 8px;
  border-radius: 4px;
  color: #4f46e5;
  background: #eef2ff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% -10%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: #1e293b;
}

.docs-hero {
  display: flex;
  width: min(1280px, calc(100% - 32px));
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  padding: 48px 0 28px;
}

.docs-hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.docs-kicker {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.docs-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.docs-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.docs-search {
  position: relative;
  display: block;
  width: min(720px, 100%);
  margin-top: 24px;
}

.docs-search span {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  transform: translateY(-56%);
}

.docs-search span::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #94a3b8;
  transform: rotate(45deg);
}

.docs-search input {
  width: 100%;
  min-height: 56px;
  padding: 0 20px 0 56px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  font-size: 15px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.docs-search input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 18px 48px rgba(15, 23, 42, 0.08);
}

.docs-stats {
  display: grid;
  flex: 0 0 340px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.docs-stats span {
  display: grid;
  min-height: 94px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.docs-stats strong {
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.docs-shell {
  display: grid;
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  margin: 0 auto;
  padding: 0 0 64px;
}

.docs-aside {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 16px;
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.docs-aside-card,
.docs-main,
.operation-card {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.docs-aside-card {
  padding: 18px;
}

.docs-aside-title {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-aside-title:not(:first-child) {
  margin-top: 22px;
}

.docs-aside code,
.operation-title code {
  display: block;
  overflow-wrap: anywhere;
  color: #334155;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
}

.docs-aside p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.docs-nav {
  display: grid;
  gap: 16px;
}

.docs-nav-group h3 {
  margin: 0 0 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.docs-nav-link {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: transparent;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.docs-nav-link:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.docs-nav-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-nav-link code {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
}

.docs-empty-hint,
.docs-muted {
  color: #94a3b8;
  font-size: 13px;
}

.docs-main {
  min-width: 0;
  padding: 24px;
}

.docs-main-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.docs-main-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
}

.docs-main-heading > span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
}

.operation-group {
  display: grid;
  gap: 12px;
}

.operation-group + .operation-group {
  margin-top: 28px;
}

.operation-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
}

.operation-group-title span {
  color: #334155;
  font-size: 15px;
  font-weight: 900;
}

.operation-group-title small {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.operation-card {
  overflow: hidden;
}

.operation-card summary {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.operation-card summary::-webkit-details-marker {
  display: none;
}

.operation-card[open] summary {
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.72), rgba(255, 255, 255, 0.72));
}

.operation-title {
  min-width: 0;
}

.operation-title strong {
  display: block;
  margin-bottom: 5px;
  color: #0f172a;
  font-size: 16px;
}

.operation-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.operation-card[open] .operation-caret {
  transform: rotate(225deg);
}

.operation-body {
  padding: 18px;
}

.operation-description {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.operation-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.operation-meta-grid section {
  min-width: 0;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.operation-meta-grid h4 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.docs-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.http-method {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.http-method.get {
  background: #2563eb;
}

.http-method.post {
  background: #16a34a;
}

.http-method.put,
.http-method.patch {
  background: #ca8a04;
}

.http-method.delete {
  background: #dc2626;
}

.docs-empty-state {
  padding: 48px 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  text-align: center;
}

.docs-empty-state h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
}

.docs-empty-state p {
  margin: 10px 0 0;
  color: #64748b;
}

.docs-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 324px minmax(0, 1fr);
  background:
    radial-gradient(circle at 74% -10%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 100% 40%, rgba(34, 197, 94, 0.06), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #fff 42%);
  color: #334155;
}

.docs-page .docs-aside {
  position: sticky;
  top: 0;
  display: block;
  height: 100vh;
  max-height: none;
  padding: 24px 20px;
  overflow: auto;
  border-right: 1px solid #e5eaf2;
  background: rgba(248, 250, 252, 0.88);
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.docs-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: #172033;
}

.docs-brand-link {
  min-width: 0;
  color: #172033;
}

.docs-switch-link {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  color: #475569;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.docs-switch-link:hover {
  border-color: #b9dfff;
  color: #0b84ff;
  background: #f6fbff;
}

.docs-brand-row .brand-mark {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  border-radius: 9px;
}

.docs-brand-row .brand-wordmark {
  font-size: 18px;
}

.docs-page .docs-search {
  width: 100%;
  margin: 0 0 26px;
}

.docs-page .docs-search input {
  min-height: 46px;
  padding-right: 54px;
  border-color: #dce3ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.docs-search kbd {
  position: absolute;
  top: 50%;
  right: 14px;
  color: #64748b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}

.docs-page .docs-aside-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.docs-page .docs-aside-card + .docs-aside-card {
  margin-top: 24px;
}

.docs-page .docs-aside-title {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
}

.docs-page .docs-nav {
  gap: 18px;
}

.docs-page .docs-nav-group h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
  color: #334155;
  font-size: 14px;
}

.docs-page .docs-nav-group h3 small {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #e8eef6;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.docs-page .docs-nav-link {
  min-height: 34px;
  padding: 8px 10px 8px 16px;
  border-radius: 9px;
  color: #475569;
  font-size: 14px;
}

.docs-page .docs-nav-link.active,
.docs-page .docs-nav-link:hover {
  background: #eaf6ff;
  color: #0b84ff;
}

.docs-page .docs-nav-link .http-method,
.docs-page .docs-nav-link code {
  min-height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 10px;
}

.docs-content {
  min-width: 0;
  padding: 38px min(5vw, 64px) 72px;
}

.docs-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.docs-topline h2 {
  margin: 0;
  color: #334155;
  font-size: 24px;
}

.docs-description {
  max-width: 760px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.docs-page .docs-stats {
  flex: 0 0 auto;
  min-width: 320px;
}

.docs-reference-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 16px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.docs-reference-bar code,
.docs-reference-bar p {
  margin: 0;
  color: #475569;
  font-size: 13px;
}

.docs-secret-value {
  font-weight: 800;
}

.docs-detail {
  max-width: 1120px;
}

.docs-detail-kicker {
  margin: 0 0 14px;
  color: #475569;
  font-size: 14px;
}

.docs-detail h1 {
  margin: 0 0 20px;
  color: #334155;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}

.endpoint-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 54px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  background: #fff;
}

.endpoint-bar code {
  overflow-wrap: anywhere;
  color: #334155;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
}

.docs-section {
  margin-top: 34px;
}

.docs-section h2 {
  margin: 0 0 16px;
  color: #334155;
  font-size: 20px;
}

.parameter-card {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  background: #fff;
}

.parameter-card > h3,
.parameter-card > p {
  margin-right: 20px;
  margin-left: 20px;
}

.parameter-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 16px;
}

.parameter-card h3 span {
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
}

.parameter-card p {
  color: #64748b;
  line-height: 1.7;
}

.schema-rows {
  display: grid;
}

.schema-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 16px 20px;
  border-top: 1px solid #eef2f7;
}

.schema-row:first-child {
  border-top: 0;
}

.schema-row-main {
  min-width: 0;
}

.schema-row-head {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.schema-caret {
  width: 14px;
  flex: 0 0 14px;
  color: #64748b;
  font-size: 13px;
}

.schema-field-name {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 3px 10px;
  border-radius: 8px;
  background: #eff6ff;
  color: #0b84ff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.schema-field-name:hover {
  background: #dbeafe;
  box-shadow: 0 0 0 3px rgba(14, 132, 255, 0.1);
}

.schema-field-name[data-copy-state="copied"]::after {
  content: "已复制";
  margin-left: 8px;
  color: #16a34a;
  font-size: 12px;
}

.schema-type {
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
}

.schema-constraint {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.schema-presence {
  min-width: 42px;
  justify-self: end;
  padding-top: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.schema-presence.required {
  color: #dc2626;
}

.schema-presence.optional {
  color: #64748b;
}

.schema-row p {
  margin: 10px 0 0 26px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.schema-example {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0 26px;
  color: #64748b;
  font-size: 14px;
}

.schema-example > span {
  flex: 0 0 auto;
}

.schema-example code,
.schema-example pre {
  margin: 0;
  padding: 4px 10px;
  border-radius: 8px;
  background: #f6f7f9;
  color: #64748b;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.schema-child-rows {
  display: grid;
  margin: 14px 0 0 12px;
  padding-left: 22px;
  border-left: 2px solid #e5eaf2;
}

.schema-child-rows .schema-row {
  padding-right: 0;
  padding-left: 0;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
}

.split-card > div {
  min-width: 0;
  padding: 20px;
}

.split-card > div > h3 {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}

.split-card > aside {
  min-width: 0;
  padding: 20px;
  border-left: 1px solid #e5eaf2;
}

.split-card > aside h3 {
  margin-top: 0;
}

.docs-code-block {
  max-height: 420px;
  margin: 0;
  padding: 20px;
  overflow: auto;
  border-radius: 12px;
  background: #0f172a;
  color: #bfdbfe;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
}

.schema-detail-card {
  margin-top: 18px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1200px) {
  .models-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

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

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

@media (max-width: 860px) {
  .header-inner {
    width: min(100% - 32px, 680px);
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    font-size: 15px;
  }

  .header-actions {
    margin-left: auto;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-header .brand-wordmark {
    font-size: 20px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 74px;
    overflow: hidden;
  }

  .home-hero > * {
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .feature-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .models-shell {
    display: block;
    width: min(100% - 32px, 680px);
  }

  .filters-panel {
    position: static;
    max-height: none;
    padding: 0 0 24px;
    border-right: 0;
  }

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

  .models-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .docs-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .docs-stats {
    width: 100%;
  }

  .docs-shell {
    display: block;
    width: min(100% - 32px, 680px);
  }

  .docs-aside {
    position: static;
    max-height: none;
    margin-bottom: 16px;
  }

  .operation-meta-grid {
    grid-template-columns: 1fr;
  }

  .docs-page {
    display: block;
  }

  .docs-page .docs-aside {
    position: static;
    height: auto;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid #e5eaf2;
  }

  .docs-content {
    padding: 24px 16px 48px;
  }

  .docs-topline {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .docs-page .docs-stats {
    min-width: 0;
  }

  .docs-reference-bar,
  .split-card {
    grid-template-columns: 1fr;
  }

  .split-card > aside {
    border-top: 1px solid #e5eaf2;
    border-left: 0;
  }

  .schema-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .schema-presence {
    justify-self: start;
    padding-top: 0;
    padding-left: 26px;
  }

  .schema-child-rows {
    margin-left: 6px;
    padding-left: 16px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    align-items: center;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    gap: 20px;
    padding-bottom: 2px;
  }

  .login-btn,
  .register-btn,
  .icon-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-title,
  .gradient-title {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    font-size: 25px;
  }

  .hero-subtitle {
    max-width: min(100%, 280px);
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .hero-stats {
    width: 100%;
  }

  .btn {
    width: min(100%, 260px);
  }

  .search-bar input {
    min-height: 56px;
    font-size: 16px;
  }

  .model-card {
    min-height: 300px;
  }

  .docs-stats {
    grid-template-columns: 1fr;
  }

  .docs-hero {
    padding-top: 32px;
  }

  .docs-main {
    padding: 16px;
  }

  .docs-main-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .operation-card summary {
    grid-template-columns: 1fr 24px;
  }

  .operation-method-wrap {
    grid-column: 1 / -1;
  }

  .operation-title strong {
    font-size: 15px;
  }

  .docs-detail h1 {
    font-size: 30px;
  }

  .endpoint-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .docs-code-block {
    font-size: 12px;
  }
}

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