:root {
  --ink: #111827;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e9f2;
  --surface: #f8fafc;
  --brand: #4f6bff;
  --brand-2: #7b5cff;
  --cyan: #22d3ee;
  --lime: #d4f96b;
  --mint: #7cf5c4;
  --green: #10b981;
  --white: #ffffff;
  --bg: #ffffff;
  --card: #ffffff;
  --text-2: #4b5563;
  --line-2: #d8dee9;
  --header-bg: rgba(255, 255, 255, 0.86);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --hero-bg: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
  --cta-bg: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 24px 64px rgba(15, 23, 42, 0.12);
  --font: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --ink: #f1f5f9;
    --muted: #a5b4c9;
    --faint: #8b9bb5;
    --line: #243049;
    --surface: #0f172a;
    --white: #ffffff;
    --bg: #0b1120;
    --card: #111a2e;
    --text-2: #cbd5e1;
    --line-2: #2f3c58;
    --header-bg: rgba(11, 17, 32, 0.86);
    --glass-bg: rgba(17, 26, 46, 0.8);
    --hero-bg: linear-gradient(180deg, #101a33 0%, #0b1120 100%);
    --cta-bg: linear-gradient(180deg, #16203a 0%, #0b1120 100%);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.32);
    --shadow-float: 0 24px 64px rgba(0, 0, 0, 0.48);
  }
}

html.dark {
  --ink: #f1f5f9;
  --muted: #a5b4c9;
  --faint: #8b9bb5;
  --line: #243049;
  --surface: #0f172a;
  --white: #ffffff;
  --bg: #0b1120;
  --card: #111a2e;
  --text-2: #cbd5e1;
  --line-2: #2f3c58;
  --header-bg: rgba(11, 17, 32, 0.86);
  --glass-bg: rgba(17, 26, 46, 0.8);
  --hero-bg: linear-gradient(180deg, #101a33 0%, #0b1120 100%);
  --cta-bg: linear-gradient(180deg, #16203a 0%, #0b1120 100%);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.32);
  --shadow-float: 0 24px 64px rgba(0, 0, 0, 0.48);
}

html.light {
  --ink: #111827;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e9f2;
  --surface: #f8fafc;
  --white: #ffffff;
  --bg: #ffffff;
  --card: #ffffff;
  --text-2: #4b5563;
  --line-2: #d8dee9;
  --header-bg: rgba(255, 255, 255, 0.86);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --hero-bg: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
  --cta-bg: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.admin-shell[data-theme="light"],
.admin-login-page[data-theme="light"],
html.admin-theme-light .admin-shell,
html.admin-theme-light .admin-login-page {
  --ink: #111827;
  --muted: #4b5563;
  --faint: #6b7280;
  --line: #e5e9f2;
  --surface: #f8fafc;
  --white: #ffffff;
  --bg: #ffffff;
  --card: #ffffff;
  --text-2: #374151;
  --line-2: #d8dee9;
  --header-bg: rgba(255, 255, 255, 0.86);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --hero-bg: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
  --cta-bg: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.admin-shell[data-theme="dark"],
html.admin-theme-dark .admin-shell,
.admin-login-page[data-theme="dark"],
html.admin-theme-dark .admin-login-page {
  --ink: #f1f5f9;
  --muted: #a5b4c9;
  --faint: #8b9bb5;
  --line: #243049;
  --surface: #0f172a;
  --white: #ffffff;
  --bg: #0b1120;
  --card: #111a2e;
  --text-2: #cbd5e1;
  --line-2: #2f3c58;
  --header-bg: rgba(11, 17, 32, 0.86);
  --glass-bg: rgba(17, 26, 46, 0.8);
  --hero-bg: linear-gradient(180deg, #101a33 0%, #0b1120 100%);
  --cta-bg: linear-gradient(180deg, #16203a 0%, #0b1120 100%);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.32);
  --shadow-float: 0 24px 64px rgba(0, 0, 0, 0.48);
}

html.admin-theme-light body {
  background-color: #ffffff !important;
  color: #111827 !important;
}

html.admin-theme-dark body {
  background-color: #0b1120 !important;
  color: #f1f5f9 !important;
}

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

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

section[id],
footer[id] {
  scroll-margin-top: 80px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1200;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: 100%;
  max-width: calc(1440px + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f6bff 0%, #7b5cff 100%);
  box-shadow: 0 8px 20px rgba(79, 107, 255, 0.3);
}

.brand-core,
.brand-tail {
  position: absolute;
  border-radius: 999px;
}

.brand-core {
  top: 14px;
  left: 15px;
  width: 10px;
  height: 10px;
  background: var(--lime);
  box-shadow: 0 0 10px 3px rgba(212, 249, 107, 0.95);
  animation: pulse-dot 2.6s ease-in-out infinite;
}

.brand-tail {
  top: 21px;
  left: 23px;
  width: 5px;
  height: 5px;
  background: #a8ff60;
  opacity: 0.85;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 22px;
  font-weight: 800;
}

.brand-text small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 40px;
}

.desktop-nav a {
  padding: 10px 2px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--brand);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle-track {
  position: relative;
  width: 56px;
  height: 24px;
  border-radius: 999px;
  background: var(--line-2);
  transition: background 0.25s ease;
}

.theme-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
  z-index: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.theme-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 13px;
  height: 13px;
  pointer-events: none;
  transition: color 0.25s ease;
}

.theme-icon-sun {
  left: 5px;
  color: #f59e0b;
}

.theme-icon-moon {
  right: 5px;
  color: #94a3b8;
}

.theme-toggle[aria-checked="true"] .theme-toggle-track,
.admin-theme-toggle[aria-checked="true"] .theme-toggle-track {
  background: var(--brand);
}

.theme-toggle[aria-checked="true"] .theme-toggle-knob,
.admin-theme-toggle[aria-checked="true"] .theme-toggle-knob {
  transform: translateX(32px);
}

.theme-toggle[aria-checked="true"] .theme-icon-moon,
.admin-theme-toggle[aria-checked="true"] .theme-icon-moon {
  color: #e0e7ff;
}

.theme-toggle[aria-checked="true"] .theme-icon-sun,
.admin-theme-toggle[aria-checked="true"] .theme-icon-sun {
  color: #ffffff;
}

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--card);
  border-bottom: 1px solid transparent;
  transition: max-height 0.35s ease, border-color 0.3s ease;
}

.mobile-nav.is-open {
  max-height: 320px;
  border-color: var(--line);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 15px 24px;
  border-bottom: 1px solid var(--surface);
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid rgba(79, 107, 255, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(109deg, #4f6bff 0%, #7b5cff 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(79, 107, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(79, 107, 255, 0.4);
}

.btn-secondary {
  background: var(--card);
  border-color: var(--line-2);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
  border-color: #c8d1e2;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
}

.btn-sm {
  height: 44px;
  padding-inline: 24px;
  font-size: 15px;
}

.btn-lg {
  height: 52px;
  padding-inline: 28px;
  font-size: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 88px;
  background: var(--hero-bg);
}

.hero-firefly-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-firefly-layer canvas {
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 420px at 16% 12%, rgba(212, 249, 107, 0.2), transparent 62%),
    radial-gradient(920px 520px at 84% 6%, rgba(79, 107, 255, 0.12), transparent 62%);
}

.hero-fireflies {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: 4%;
  pointer-events: none;
}

.firefly-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px 4px rgba(212, 249, 107, 0.8);
  animation: float-dot 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.firefly-dot:nth-child(2n) {
  background: var(--mint);
  box-shadow: 0 0 10px 3px rgba(124, 245, 196, 0.8);
}

.firefly-dot:nth-child(3n) {
  width: 6px;
  height: 6px;
  background: #a8ff60;
}

.firefly-dot:nth-child(5) {
  width: 10px;
  height: 10px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  text-align: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pill {
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.18;
}

.text-gradient {
  background: linear-gradient(90deg, #4f6bff 0%, #7b5cff 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-wrap {
  width: min(1280px, 100%);
  max-width: 1280px;
}

.preview-frame {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-float);
}

.preview-topbar {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.preview-dots {
  display: flex;
  gap: 8px;
}

.preview-dots i {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #ff5f57;
}

.preview-dots i:nth-child(2) {
  background: #febc2e;
}

.preview-dots i:nth-child(3) {
  background: #28c840;
}

.preview-url {
  color: var(--faint);
  font-size: 13px;
}

.preview-body {
  display: flex;
  min-height: 420px;
  text-align: left;
}

.preview-sidebar {
  width: 220px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.preview-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
}

.preview-menu-item:hover {
  background: rgba(255, 255, 255, 0.75);
}

.preview-menu-item.is-active {
  background: linear-gradient(109deg, #4f6bff 0%, #7b5cff 100%);
  color: var(--white);
}

.preview-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-title-group strong {
  font-size: 18px;
  font-weight: 700;
}

.preview-title-group span {
  color: var(--faint);
  font-size: 12px;
}

.preview-score {
  width: 120px;
  height: 64px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.preview-score strong {
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
}

.preview-score span {
  color: var(--faint);
  font-size: 11px;
}

.preview-chart {
  position: relative;
  height: 210px;
  overflow: hidden;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.chart-grid {
  position: absolute;
  top: 30px;
  bottom: 34px;
  left: 62px;
  right: 24px;
  border-bottom: 1.5px solid var(--line);
}

.chart-y {
  position: absolute;
  left: 10px;
  width: 36px;
  color: var(--faint);
  font-size: 11px;
  text-align: right;
  line-height: 16px;
}

.chart-y-0 {
  top: 83%;
}

.chart-y-24 {
  top: 66%;
}

.chart-y-48 {
  top: 49%;
}

.chart-y-71 {
  top: 32%;
}

.chart-y-95 {
  top: 15%;
}

.chart-area,
.chart-line,
.chart-dots {
  position: absolute;
  left: 9%;
  width: 86%;
  height: auto;
}

.chart-area {
  top: 14%;
  opacity: 0.85;
  animation: fade-in 1.1s ease 0.55s both;
}

.chart-line {
  top: 14%;
  filter: drop-shadow(0 10px 18px rgba(79, 107, 255, 0.28));
  animation: draw-reveal 1.4s ease 0.4s both;
}

.chart-dots {
  top: 12%;
  animation: float-soft 3.4s ease-in-out infinite, fade-in 1s ease 0.8s both;
}

.chart-x {
  position: absolute;
  bottom: 13px;
  color: var(--faint);
  font-size: 11px;
  line-height: 16px;
  transform: translateX(-50%);
}

.preview-stats {
  display: flex;
  gap: 16px;
}

.preview-stat {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.preview-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-stat-text strong {
  font-size: 16px;
  font-weight: 700;
}

.preview-stat-text small {
  color: var(--faint);
  font-size: 11px;
  white-space: nowrap;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.24;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-tag {
  padding: 6px 16px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.engine-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.engine-card:hover {
  transform: translateY(-4px);
  border-color: #d4dbeb;
  box-shadow: var(--shadow-card);
}

.engine-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(0.35);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.engine-card:hover img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.engine-card span {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #d6def1;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 107, 255, 0.13), rgba(123, 92, 255, 0.13));
}

.card-icon-sm {
  width: 38px;
  height: 38px;
}

.feature-card h3 {
  font-size: 20px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-card-vertical {
  min-height: 300px;
}

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

.feature-tags i {
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 12px;
  font-style: normal;
}

.capability-card {
  min-height: 240px;
  padding: 24px;
}

.capability-card h3 {
  font-size: 17px;
}

.industry-card {
  min-height: 280px;
}

.industry-stat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.industry-stat strong {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}

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

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

.case-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: #d6def1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.case-card article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}

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

.case-card:hover .case-cover img {
  transform: scale(1.04);
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-meta h3 {
  font-size: 19px;
}

.case-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79, 107, 255, 0.08);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.case-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.case-stats {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.case-stats div {
  flex: 1;
}

.case-stats dt {
  font-size: 20px;
  font-weight: 800;
}

.case-stats dd {
  color: var(--faint);
  font-size: 12px;
}

.faq-section {
  background: var(--surface);
}

.faq-inner {
  max-width: 1080px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}

.faq-item button img {
  flex: none;
  transition: transform 0.3s ease;
}

.faq-item.is-open button img {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  min-height: 0;
  overflow: hidden;
  padding: 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  transition: padding 0.35s ease;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 24px;
}

.cta-section {
  padding: 120px 0;
}

.cta-panel {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  padding: 64px 32px;
  text-align: center;
  background: var(--cta-bg);
  border: 1px solid var(--line-2);
  border-radius: 32px;
}

.cta-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-fireflies i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px 4px rgba(212, 249, 107, 0.8);
  animation: float-dot 4.6s ease-in-out infinite;
}

.cta-fireflies i:nth-child(1) {
  left: 10%;
  top: 24%;
}

.cta-fireflies i:nth-child(2) {
  left: 20%;
  top: 64%;
  animation-delay: 0.7s;
  background: var(--mint);
}

.cta-fireflies i:nth-child(3) {
  left: 76%;
  top: 26%;
  animation-delay: 1.2s;
}

.cta-fireflies i:nth-child(4) {
  left: 86%;
  top: 58%;
  animation-delay: 1.8s;
  background: var(--mint);
}

.cta-fireflies i:nth-child(5) {
  left: 48%;
  top: 16%;
  animation-delay: 2.4s;
}

.cta-badge {
  background: var(--surface);
}

.cta-panel h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.cta-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand .brand strong {
  font-size: 22px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: #cdd6e8;
  box-shadow: var(--shadow-card);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-contact a {
  word-break: break-all;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-legal a:hover {
  color: var(--brand);
}

html.dark .hero-bg {
  background:
    radial-gradient(720px 420px at 16% 12%, rgba(212, 249, 107, 0.08), transparent 62%),
    radial-gradient(920px 520px at 84% 6%, rgba(79, 107, 255, 0.18), transparent 62%);
}

html.dark .preview-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

html.dark .engine-card:hover,
html.dark .feature-card:hover,
html.dark .case-card:hover {
  border-color: #33405f;
}

html.dark .btn-secondary:hover,
html.dark .footer-social a:hover {
  border-color: #33405f;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) .hero-bg {
    background:
      radial-gradient(720px 420px at 16% 12%, rgba(212, 249, 107, 0.08), transparent 62%),
      radial-gradient(920px 520px at 84% 6%, rgba(79, 107, 255, 0.18), transparent 62%);
  }

  :root:not(.light) .preview-menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  :root:not(.light) .engine-card:hover,
  :root:not(.light) .feature-card:hover,
  :root:not(.light) .case-card:hover {
    border-color: #33405f;
  }

  :root:not(.light) .btn-secondary:hover,
  :root:not(.light) .footer-social a:hover {
    border-color: #33405f;
  }
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--brand);
  border-color: var(--brand);
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
  background: var(--hero-bg);
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.news-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  text-align: center;
}

.news-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
}

.news-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.news-search {
  width: min(480px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 13px 18px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(79, 107, 255, 0.12);
}

.news-search img {
  flex: none;
}

.news-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.news-search input::placeholder {
  color: var(--faint);
}

.news-section {
  padding: 56px 0 24px;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.news-filter-chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-filter-chip:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
  color: var(--brand);
}

.news-filter-chip.is-active {
  background: linear-gradient(109deg, #4f6bff 0%, #7b5cff 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(79, 107, 255, 0.28);
}

.news-featured {
  margin-bottom: 40px;
}

.news-featured-link {
  display: grid;
  grid-template-columns: 520px 1fr;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-featured-link:hover {
  transform: translateY(-4px);
  border-color: #cbd5e8;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.news-featured-cover {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-featured-cover-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  animation: float-soft 4s ease-in-out infinite;
}

.news-featured-cover-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 48px;
  pointer-events: none;
}

.news-featured-cover-lines i {
  width: 56%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.news-featured-cover-lines i:nth-child(2) {
  width: 72%;
  opacity: 0.7;
}

.news-featured-cover-lines i:nth-child(3) {
  width: 42%;
  opacity: 0.5;
}

.news-featured-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 48px;
}

.news-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.news-featured-body strong {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
}

.news-featured-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.news-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e8;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-cover {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.08));
}

.news-card-cover-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-cover-icon {
  transform: scale(1.08) rotate(-3deg);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
}

.news-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-card-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.news-card-cat.is-featured {
  background: linear-gradient(109deg, #4f6bff 0%, #7b5cff 100%);
  border-color: transparent;
  color: var(--white);
}

.news-card-meta time {
  color: var(--faint);
  font-size: 12px;
}

.news-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 52px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
}

.news-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.news-card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.news-card-link-text {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.news-empty {
  padding: 80px 20px;
  border: 1px dashed var(--line-2);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.news-pagination-section {
  padding: 48px 0 88px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-page-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-page-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
}

.news-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.news-page-number.is-active {
  background: linear-gradient(135deg, #4f6bff 0%, #7b5cff 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(79, 107, 255, 0.25);
}

.news-page-ellipsis {
  color: var(--faint);
}

.news-page-count {
  margin-left: 6px;
  color: var(--faint);
  font-size: 13px;
}

.news-breadcrumb {
  padding: 18px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.news-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.news-breadcrumb a:hover {
  color: var(--brand);
}

.news-breadcrumb span {
  color: var(--faint);
}

.article-header-section {
  padding: 64px 0 56px;
  background: var(--hero-bg);
}

.article-header-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.article-header-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.article-header-copy h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
}

.article-subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-author img {
  border-radius: 50%;
}

.article-author span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-author strong {
  font-size: 14px;
}

.article-author small {
  color: var(--faint);
  font-size: 12px;
}

.article-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 13px;
}

.article-cover {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-float);
}

.article-cover img {
  animation: float-soft 4s ease-in-out infinite;
}

.article-body-section {
  padding: 72px 0;
}

.article-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}

.article-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.article-paragraph {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.article-heading {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 26px;
  line-height: 1.4;
}

.article-quote {
  margin: 12px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--brand);
  border-radius: 0 16px 16px 0;
  background: var(--surface);
}

.article-quote p {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.article-quote footer {
  margin-top: 10px;
  color: var(--faint);
  font-size: 13px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.article-list img {
  flex: none;
  margin-top: 5px;
}

.article-figure {
  margin: 12px 0;
}

.article-figure img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.sidebar-card h2 {
  font-size: 17px;
}

.sidebar-card > a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.sidebar-card > a:hover {
  color: var(--brand);
}

.hot-article-item {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hot-article-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hot-article-item span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hot-article-item strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.hot-article-item time {
  color: var(--faint);
  font-size: 12px;
}

.sidebar-cta {
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(79, 107, 255, 0.08), transparent);
}

.sidebar-cta p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.article-footer-nav-section {
  padding: 0 0 72px;
}

.article-footer-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.article-nav-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.article-nav-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
}

.article-nav-card.is-next {
  text-align: right;
}

.article-nav-card.is-empty {
  opacity: 0.55;
}

.article-nav-card span {
  color: var(--faint);
  font-size: 12px;
}

.article-nav-card strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.related-section {
  padding: 0 0 96px;
}

.related-section .section-heading {
  margin-bottom: 40px;
}

html.dark .news-card-cover,
html.dark .news-featured-cover,
html.dark .article-cover {
  filter: brightness(0.8) saturate(0.82);
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) .news-card-cover,
  :root:not(.light) .news-featured-cover,
  :root:not(.light) .article-cover {
    filter: brightness(0.8) saturate(0.82);
  }
}

@media (max-width: 1024px) {
  .news-featured-link {
    grid-template-columns: 1fr;
  }

  .news-featured-cover {
    min-height: 260px;
  }

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

  .article-header-inner,
  .article-body-inner {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 52px 0 48px;
  }

  .news-section {
    padding-top: 40px;
  }

  .news-featured-body {
    padding: 28px 22px;
  }

  .news-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .news-card-cover {
    height: 190px;
  }

  .article-header-section {
    padding: 44px 0 40px;
  }

  .article-cover {
    height: 220px;
  }

  .article-body-section {
    padding: 48px 0;
  }

  .article-body-inner {
    gap: 40px;
  }

  .article-footer-nav-inner {
    grid-template-columns: 1fr;
  }

  .article-nav-card.is-next {
    text-align: left;
  }

  .related-section {
    padding-bottom: 64px;
  }

  .news-pagination {
    flex-wrap: wrap;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.error-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.error-code {
  color: var(--brand);
  font-size: 64px;
  font-weight: 800;
}

.error-page h1 {
  font-size: 28px;
}

.error-page p {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-anim .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-enter-active,
.page-leave-active {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes float-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.85;
  }
}

@keyframes draw-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1200px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
  }

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

  .value-grid,
  .feature-grid,
  .capability-grid,
  .industry-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }

  .header-inner {
    height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .mobile-nav {
    top: 68px;
  }

  .hero {
    padding: 44px 0 64px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-cta,
  .cta-actions {
    width: 100%;
  }

  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .preview-body {
    min-height: auto;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-content {
    padding: 18px;
  }

  .preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-score {
    width: 100%;
    height: 56px;
  }

  .preview-chart {
    height: 190px;
  }

  .preview-stats {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .value-grid,
  .feature-grid,
  .capability-grid,
  .industry-grid,
  .service-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .case-card article {
    flex-direction: column;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-panel {
    min-height: auto;
    padding: 48px 24px;
    border-radius: 24px;
  }

  .footer-inner {
    gap: 40px;
    padding-top: 56px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-sm {
    height: 40px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .btn-sm img {
    display: none;
  }

  .theme-toggle {
    width: 54px;
    height: 28px;
  }

  .theme-toggle-track {
    width: 46px;
  }

  .theme-toggle[aria-checked="true"] .theme-toggle-knob {
    transform: translateX(24px);
  }

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

  .engine-card {
    min-height: 128px;
    padding: 20px 12px;
  }

  .feature-card,
  .capability-card,
  .industry-card {
    padding: 22px;
  }

  .faq-item button {
    padding: 20px;
    font-size: 15px;
  }

  .faq-panel p {
    padding-inline: 20px;
  }

  .faq-item.is-open .faq-panel p {
    padding-bottom: 20px;
  }

  .case-body {
    padding: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.admin-sidebar {
  width: 248px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 18px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
}

.admin-brand > span:last-child,
.admin-login-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-brand strong,
.admin-login-brand strong {
  font-size: 19px;
}

.admin-brand small,
.admin-login-brand small {
  color: var(--faint);
  font-size: 11px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.admin-nav-link:hover {
  color: var(--ink);
  background: var(--card);
}

.admin-nav-link.is-active {
  color: var(--white);
  background: linear-gradient(109deg, #4f6bff 0%, #7b5cff 100%);
  box-shadow: 0 8px 20px rgba(79, 107, 255, 0.25);
}

.admin-nav-link.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.admin-user img {
  border-radius: 50%;
}

.admin-user span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-user strong {
  font-size: 14px;
}

.admin-user small {
  color: var(--faint);
  font-size: 12px;
}

.admin-logout-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.admin-logout-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}

.admin-back-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.admin-back-link:hover {
  color: var(--brand);
  background: var(--card);
}

.admin-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.admin-theme-toggle:hover {
  border-color: var(--brand);
  color: var(--ink);
}

.admin-theme-toggle .theme-toggle-track {
  flex: none;
}

.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.admin-topbar-title h1 {
  font-size: 22px;
}

.admin-topbar-title p {
  margin-top: 3px;
  color: var(--faint);
  font-size: 13px;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-content {
  flex: 1;
  padding: 28px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.admin-stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.admin-stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.admin-stat-card strong {
  font-size: 26px;
  font-weight: 800;
}

.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-filter-bar select,
.admin-filter-bar input,
.admin-editor input,
.admin-editor textarea,
.admin-editor select,
.admin-login-panel input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-filter-bar select,
.admin-filter-bar input {
  width: auto;
  min-width: 150px;
}

.admin-filter-bar select:focus,
.admin-filter-bar input:focus,
.admin-editor input:focus,
.admin-editor textarea:focus,
.admin-editor select:focus,
.admin-login-panel input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 107, 255, 0.12);
}

.admin-table-card {
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: var(--surface);
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr:hover td {
  background: rgba(79, 107, 255, 0.035);
}

.admin-article-cell,
.admin-user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}

.admin-article-cell img,
.admin-user-cell img {
  flex: none;
  border-radius: 10px;
}

.admin-article-cell div,
.admin-user-cell span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.admin-article-cell strong,
.admin-user-cell strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.admin-article-cell small,
.admin-user-cell small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--faint);
  font-size: 12px;
}

.admin-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.admin-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--faint);
}

.admin-status.published {
  color: #10b981;
}

.admin-status.published i {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.admin-status.draft {
  color: var(--faint);
}

.admin-row-actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.admin-row-actions a,
.admin-row-actions button {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  padding: 0;
}

.admin-row-actions button {
  color: #ef4444;
}

.admin-loading,
.admin-empty {
  padding: 40px;
  color: var(--faint);
  text-align: center;
}

.admin-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.admin-editor-main,
.admin-editor-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.admin-editor-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.admin-editor-card h2 {
  font-size: 16px;
}

.admin-editor label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-editor label > span,
.admin-login-panel label > span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.admin-editor label > small {
  color: var(--faint);
  font-size: 12px;
}

.admin-editor textarea {
  resize: vertical;
  line-height: 1.7;
}

.admin-editor-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-editor-label-row > span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.admin-editor-label-row small {
  color: var(--faint);
  font-size: 12px;
}

.admin-switch-row {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between;
}

.admin-switch-row span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-switch-row strong {
  font-size: 14px;
}

.admin-switch-row small {
  color: var(--faint);
  font-size: 12px;
}

.admin-switch-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.admin-form-error,
.admin-login-error {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 13px;
}

.admin-editor-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 40px 20px;
  background: var(--hero-bg);
  color: var(--ink);
}

.admin-login-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-float);
}

.admin-login-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(79, 107, 255, 0.1), rgba(123, 92, 255, 0.05));
}

.admin-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.admin-login-intro h1 {
  font-size: 30px;
}

.admin-login-intro p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.admin-login-intro ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.admin-login-intro li {
  padding-left: 18px;
  color: var(--text-2);
  font-size: 14px;
  position: relative;
}

.admin-login-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(212, 249, 107, 0.8);
}

.admin-login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 44px;
}

.admin-login-panel h2 {
  font-size: 24px;
}

.admin-login-panel > p {
  color: var(--muted);
  font-size: 14px;
}

.admin-login-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-panel form .btn {
  width: 100%;
}

.admin-login-hint {
  color: var(--faint);
  font-size: 12px;
  text-align: center;
}

.admin-login-page > footer {
  color: var(--faint);
  font-size: 12px;
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.45);
}

.admin-modal {
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-modal-header h2 {
  font-size: 18px;
}

.admin-modal-header button {
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.admin-modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.admin-modal-body label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-modal-body label > span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.admin-modal-body input,
.admin-modal-body select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.admin-modal-body input:focus,
.admin-modal-body select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 107, 255, 0.12);
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.admin-super-text {
  color: var(--faint);
  font-size: 12px;
  white-space: nowrap;
}

.avatar-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avatar-picker-current {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-picker-current img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.avatar-picker-current button {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.avatar-picker-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.avatar-picker-presets button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.avatar-picker-presets button:hover {
  transform: scale(1.06);
}

.avatar-picker-presets button.is-active {
  border-color: var(--brand);
}

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

.image-uploader {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-uploader-drop {
  width: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px dashed var(--line-2);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.image-uploader-drop:hover {
  border-color: var(--brand);
  background: rgba(79, 107, 255, 0.05);
}

.image-uploader-drop strong {
  color: var(--text-2);
  font-size: 14px;
}

.image-uploader-drop small {
  color: var(--faint);
  font-size: 12px;
}

.image-uploader-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.image-uploader-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.image-uploader-preview button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 12px;
}

.news-card-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 1024px) {
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-editor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-sidebar {
    display: none;
  }

  .admin-topbar {
    padding: 14px 16px;
  }

  .admin-content {
    padding: 16px;
  }

  .admin-login-shell {
    grid-template-columns: 1fr;
  }

  .admin-login-intro,
  .admin-login-panel {
    padding: 28px 22px;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
