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

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

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: rgba(0, 229, 255, 0.25);
  color: var(--white);
}

/* ===== Design Tokens ===== */
:root {
  --bg-deep: #0a0e14;
  --bg-panel: #1a2028;
  --bg-raise: #232a33;
  --cyan: #00e5ff;
  --purple: #9d4edd;
  --white: #f2f4f8;
  --gray: #a0aab5;
  --red: #ff3d68;
  --green: #2dd4a0;
  --border: rgba(242, 244, 248, 0.08);
  --border-strong: rgba(0, 229, 255, 0.35);
  --header-h: 72px;
  --container: 1280px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-title: "Russo One", "Rajdhani", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow-panel: 0 12px 32px rgba(0, 0, 0, 0.35);
  --header-scroll-bar: 0px;
}

/* ===== Container ===== */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.7em 1.4em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00b8d4);
  color: #041018;
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0, 229, 255, 0.32);
  background: linear-gradient(135deg, #35ecff, #00cde0);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--cyan);
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg-deep) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.15) 30%, rgba(157, 78, 221, 0.2) 70%, transparent 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  background: var(--bg-deep);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  z-index: 1001;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

/* Brand */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-brand:hover .brand-text {
  color: var(--cyan);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(157, 78, 221, 0.18));
  border: 1px solid rgba(0, 229, 255, 0.35);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  color: var(--cyan);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-brand:hover .brand-mark {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.28), rgba(157, 78, 221, 0.3));
}

.brand-mark svg {
  fill: currentColor;
  width: 17px;
  height: 17px;
}

.brand-text {
  display: inline-flex;
  gap: 0.1em;
}

.brand-text span {
  color: var(--cyan);
}

/* Navigation */
.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 13px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(0, 229, 255, 0.05);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--cyan);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Ticker */
.header-ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 34px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.ticker-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 61, 104, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

.ticker-viewport {
  width: 240px;
  height: 24px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-list {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerLoop 28s linear infinite;
}

.ticker-list:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 28px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray);
  position: relative;
}

.ticker-item::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--purple);
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: top left;
}

/* Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--cyan);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--cyan);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--bg-panel);
  color: var(--gray);
  border-top: 2px solid rgba(157, 78, 221, 0.45);
  margin-top: auto;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.7) 0 6px, transparent 6px 18px);
  opacity: 0.5;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -15%;
  top: -40%;
  width: 60%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(157, 78, 221, 0.1), transparent);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.footer-brand .site-brand {
  margin-bottom: 18px;
}

.footer-desc {
  max-width: 320px;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 18px;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(45, 212, 160, 0.08);
  border: 1px solid rgba(45, 212, 160, 0.2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--white);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(45, 212, 160, 0.7);
  flex-shrink: 0;
}

.footer-title {
  position: relative;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--cyan);
}

.footer-link-list li + li,
.footer-contact-list li + li {
  margin-top: 10px;
}

.footer-link-list a {
  color: var(--gray);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--purple);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-link-list a:hover::before {
  background: var(--cyan);
  transform: rotate(135deg);
}

.footer-contact-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-contact-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.85rem;
}

.footer-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #7c8692;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.footer-copy,
.footer-icp {
  color: #7c8692;
}

.footer-icp {
  letter-spacing: 0.04em;
}

.footer-icp::before {
  content: "◈";
  margin-right: 8px;
  color: var(--purple);
}

/* ===== Shared Sections ===== */
.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--purple);
  letter-spacing: 0.15em;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--purple);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.01em;
}

.section-desc {
  max-width: 480px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent);
  pointer-events: none;
}

.page-hero-title {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
  transform: skewX(-4deg);
}

.page-hero-title span {
  color: var(--cyan);
}

.page-hero-subtitle {
  position: relative;
  max-width: 600px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  color: var(--purple);
}

.breadcrumb-link {
  color: var(--gray);
}

.breadcrumb-link:hover {
  color: var(--cyan);
}

.breadcrumb-current {
  color: var(--cyan);
}

/* ===== Cards ===== */
.clip-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.clip-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.75;
}

.clip-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: var(--shadow-panel);
}

.data-card {
  background: linear-gradient(145deg, var(--bg-panel), #141b22);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.data-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--purple));
  opacity: 0.6;
}

.data-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* ===== Tag ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--purple);
  border: 1px solid rgba(157, 78, 221, 0.5);
  border-radius: 2px;
  background: rgba(157, 78, 221, 0.08);
  text-transform: uppercase;
}

/* ===== Ticket ===== */
.ticket {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0, 229, 255, 0.04);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  font-size: 0.92rem;
}

/* ===== Glow Line ===== */
.glow-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), rgba(157, 78, 221, 0.5), transparent);
  margin: 0 auto;
}

/* ===== Visual Frame ===== */
.visual-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(157, 78, 221, 0.1)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    var(--bg-panel);
  border: 1px solid var(--border);
  min-height: 180px;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.visual-frame::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(157, 78, 221, 0.18), transparent);
  pointer-events: none;
}

/* ===== Prose ===== */
.prose {
  max-width: 820px;
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.85;
}

.prose p {
  margin-bottom: 1.2em;
}

.prose h2,
.prose h3 {
  color: var(--white);
  font-family: var(--font-title);
  margin-bottom: 0.6em;
}

.prose h2 {
  font-size: 1.6rem;
  margin-top: 2.2em;
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 1.8em;
  color: var(--cyan);
}

.prose ul,
.prose ol {
  margin-bottom: 1.2em;
  padding-left: 1.2em;
}

.prose ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 0.55em;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--purple);
  transform: rotate(45deg);
}

.prose a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

.prose a:hover {
  border-bottom-color: var(--cyan);
}

/* ===== Motion ===== */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.7);
    opacity: 0.6;
  }
}

@keyframes tickerLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .header-ticker {
    display: none;
  }

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

  .footer-legal {
    grid-column: span 3;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 20, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
    display: none;
    margin-left: 0;
  }

  .site-nav[data-open] {
    display: block;
    animation: navDrop 0.28s var(--ease);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link[aria-current="page"] {
    color: var(--cyan);
    border-left-color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
  }

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

  .header-inner {
    gap: 12px;
    min-height: 64px;
  }

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

@media (max-width: 640px) {
  .header-ticker {
    display: flex;
    order: 3;
    flex-basis: 100%;
    height: 30px;
    margin: 0;
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 4px;
  }

  .ticker-viewport {
    width: 100%;
  }

  .ticker-label {
    padding-right: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 32px;
  }

  .footer-legal {
    grid-column: auto;
  }

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 56px 0 40px;
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .ticker-list {
    animation: none;
  }
}
