/* ============================================================
   电影侠 · 多页面官网  克制编辑感深色版
   金黄主色 + 暖灰底色 + 细线与留白
   ============================================================ */

:root {
  --bg: #14140f;
  --bg-elev: #1a1a14;
  --bg-card: #1d1d16;
  --bg-line: rgba(255, 246, 214, .05);
  --border: rgba(255, 246, 214, .08);
  --border-2: rgba(255, 246, 214, .14);
  --text: #eceadf;
  --text-mute: #a6a294;
  --text-dim: #75715f;
  --accent: #FFD000;          /* 金黄 · 主色调 */
  --accent-2: #ffd733;
  --accent-strong: #e6bb00;
  --accent-soft: rgba(255, 208, 0, .10);
  --accent-line: rgba(255, 208, 0, .38);
  --accent-ink: #1a1605;      /* 金黄背景上的文字色 */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --t: cubic-bezier(.4, 0, .2, 1);
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 15px;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }
svg { vertical-align: middle; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ============ 极淡背景 ============ */
.bg-stage {
  position: fixed; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, #16140f 0%, #131210 30%, #11100e 100%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .9 0 0 0 0 .86 0 0 0 0 .78 0 0 0 .045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ============ 导航 ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19, 18, 16, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--text-mute);
  transition: color .2s var(--t); position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 1px; background: var(--accent);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-download {
  padding: 8px 16px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-weight: 600; font-size: 13.5px;
  transition: background .2s var(--t);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .02em;
}
.nav-download:hover { background: var(--accent-2); }
.nav-download svg { width: 14px; height: 14px; }
.menu-btn {
  display: none; padding: 8px; border-radius: 6px;
  border: 1px solid var(--border); color: var(--text);
}
.menu-btn svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-download { display: none; }
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(19, 18, 16, .98);
    border-bottom: 1px solid var(--border);
    padding: 8px 28px 14px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--accent-2); }
  .menu-btn { display: inline-flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 28px clamp(40px, 6vw, 80px);
}
.hero-split {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-left {
  flex: 1 1 46%;
  min-width: 0;
  padding: 8px 0;
}
.hero-right {
  flex: 1 1 54%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-dim);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.14;
  color: var(--text);
  max-width: 760px;
}
.hero h1 em {
  font-style: normal; color: var(--accent-2);
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 2px;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-mute);
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  transition: background .2s var(--t), border-color .2s var(--t), color .2s var(--t), transform .15s var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--text-mute); color: var(--text); }
.btn-link {
  padding: 12px 4px; color: var(--accent-2); font-weight: 500;
  border-radius: 0;
}
.btn-link:hover { color: var(--accent); }
.btn-link svg { transition: transform .2s var(--t); }
.btn-link:hover svg { transform: translateX(3px); }

/* 极简统计条 */
.hero-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num {
  font-family: var(--sans);
  font-size: 22px; font-weight: 700; color: var(--text);
}
.hero-meta-label { font-size: 12px; color: var(--text-dim); letter-spacing: .08em; }

/* ============ Section ============ */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 720px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .15em;
  color: var(--accent-2); text-transform: uppercase;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ""; width: 20px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--sans);
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 700;
  letter-spacing: -.015em; color: var(--text);
}
.section-title em { font-style: normal; color: var(--accent-2); }
.section-sub {
  margin-top: 14px;
  color: var(--text-mute); font-size: 15px;
  max-width: 540px; line-height: 1.7;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ 特色 · 编辑感两列 ============ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}
.feature {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 28px 1fr; gap: 20px;
  transition: background .2s var(--t);
}
.feature:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 28px; padding-left: 0; }
.feature:nth-child(even) { padding-left: 28px; }
.feature:hover { background: rgba(255, 248, 232, .015); }
.feature-num {
  font-family: var(--sans);
  font-size: 13px; color: var(--accent-2);
  letter-spacing: .05em;
  padding-top: 4px;
}
.feature-title {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .features { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(odd) {
    padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--border);
  }
}

/* ============ 下载 · 编辑感非均分 ============ */
.dl-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
}
.dl-card {
  padding: 28px 26px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .2s var(--t);
}
.dl-card:nth-child(3n) { border-right: 0; }
.dl-card:nth-last-child(-n+3) { border-bottom: 0; }
.dl-card:hover { background: rgba(255, 248, 232, .02); }
.dl-card.featured {
  background: linear-gradient(180deg, #1f1c17 0%, #1a1815 100%);
}
.dl-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.dl-platform {
  font-family: var(--sans);
  font-size: 19px; font-weight: 700; color: var(--text);
  letter-spacing: -.01em;
}
.dl-tag {
  margin-left: auto;
  font-size: 10.5px; letter-spacing: .12em;
  color: var(--accent-2);
  text-transform: uppercase;
}
.dl-tag::before { content: "— "; color: var(--accent); }
.dl-tag.alt { color: var(--text-dim); }
.dl-tag.alt::before { color: var(--text-dim); }
.dl-desc {
  font-size: 13.5px; color: var(--text-mute);
  margin-bottom: 22px; line-height: 1.6;
  min-height: 42px;
}
.dl-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.dl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 999px;
  font-weight: 500; font-size: 13.5px;
  background: var(--accent); color: var(--accent-ink); font-weight: 600;
  transition: background .2s var(--t), transform .15s var(--t);
}
.dl-btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.dl-btn.secondary {
  background: transparent; color: var(--text-mute);
  border: 1px solid var(--border-2);
}
.dl-btn.secondary:hover { border-color: var(--text-mute); color: var(--text); background: transparent; transform: none; }
.dl-btn svg { width: 14px; height: 14px; }
.dl-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 11.5px; color: var(--text-dim);
  letter-spacing: .03em;
}
.dl-meta span { display: inline-flex; align-items: center; gap: 5px; }
.dl-meta svg { width: 11px; height: 11px; color: var(--accent-2); }

@media (max-width: 900px) {
  .dl-grid { grid-template-columns: 1fr 1fr; }
  .dl-card { border-right: 1px solid var(--border); }
  .dl-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .dl-card:nth-child(2n) { border-right: 0; }
  .dl-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .dl-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-card { border-right: 0 !important; border-bottom: 1px solid var(--border) !important; }
  .dl-card:last-child { border-bottom: 0 !important; }
}

/* ============ 步骤 ============ */
.steps {
  display: grid;
  border-top: 1px solid var(--border);
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.step-num {
  font-family: var(--sans);
  font-size: 14px; color: var(--accent-2);
  letter-spacing: .05em;
}
.step-num::before { content: "0" counter(step); }
.step-body { }
.step-title {
  font-size: 15.5px; font-weight: 600; color: var(--text); margin-bottom: 3px;
}
.step-desc {
  font-size: 13.5px; color: var(--text-mute); line-height: 1.65;
}
.step-desc a { color: var(--accent-2); border-bottom: 1px solid var(--accent-line); }
.step-desc a:hover { color: var(--accent); }
.step-meta {
  font-size: 12px; color: var(--text-dim);
  letter-spacing: .04em;
}
@media (max-width: 600px) {
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-meta { grid-column: 2; padding-top: 6px; }
}

/* ============ FAQ · 极简线条 ============ */
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .2s var(--t);
}
.faq-item summary {
  padding: 20px 0; font-size: 15px; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-size: 18px; font-weight: 400;
  color: var(--accent-2); transition: transform .2s var(--t);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item:hover { background: rgba(255, 248, 232, .015); }
.faq-item[open] { background: rgba(255, 248, 232, .018); }
.faq-item p {
  padding: 0 0 22px; font-size: 14px; color: var(--text-mute);
  line-height: 1.75; max-width: 720px;
}
.faq-item p a { color: var(--accent-2); border-bottom: 1px solid var(--accent-line); }

/* ============ Prose (关于页) ============ */
.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--sans);
  font-size: 22px; font-weight: 700; color: var(--text);
  margin: 40px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 15px; color: var(--text-mute);
  line-height: 1.8; margin-bottom: 14px;
}
.prose ul { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; color: var(--text-mute); line-height: 1.7;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1px; background: var(--accent);
}

/* ============ Hero APP 截图（右侧扇形，左右向中间靠拢）============ */
.hero-shots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 16px 0;
}
.hero-shots img {
  flex-shrink: 0;
  width: auto;
  max-width: clamp(170px, 18vw, 260px);
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  transition: transform .35s var(--t), border-color .2s var(--t), margin .35s var(--t);
}
.hero-shots img:nth-child(1) {
  margin-right: clamp(-64px, -4.5vw, -28px);
  transform: rotate(-4deg) translateY(12px);
}
.hero-shots img:nth-child(2) {
  transform: scale(1.06) translateY(-8px);
  z-index: 2;
  border-color: var(--accent-line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}
.hero-shots img:nth-child(3) {
  margin-left: clamp(-64px, -4.5vw, -28px);
  transform: rotate(4deg) translateY(12px);
}
.hero-shots img:hover {
  transform: translateY(-12px) scale(1.03) rotate(0deg);
  border-color: var(--accent-line);
}
@media (max-width: 900px) {
  .hero-split { flex-direction: column; gap: 28px; }
  .hero-left { flex: 1 1 auto; text-align: left; }
  .hero-right { flex: 1 1 auto; width: 100%; }
  .hero-shots { justify-content: center; }
  .hero-shots img { max-width: clamp(120px, 23vw, 185px); }
  .hero-shots img:nth-child(1) { margin-right: clamp(-44px, -6vw, -20px); }
  .hero-shots img:nth-child(3) { margin-left: clamp(-44px, -6vw, -20px); }
}
@media (max-width: 640px) {
  /* Hero 整体紧凑化 */
  .hero { padding: 24px 20px 32px; }
  .hero-split { gap: 18px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero-eyebrow::before { width: 18px; }
  .hero h1 { font-size: clamp(26px, 7.5vw, 34px); line-height: 1.2; }
  .hero-sub { margin-top: 12px; font-size: 14px; line-height: 1.65; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .btn { padding: 11px 18px; font-size: 13.5px; }
  .hero-meta { margin-top: 28px; padding-top: 18px; gap: 22px; }
  .hero-meta-num { font-size: 18px; }
  .hero-meta-label { font-size: 11px; }

  /* 截图横幅紧凑 */
  .hero-shots { padding: 4px 0; }
  .hero-shots img { border-radius: 10px; max-width: clamp(86px, 23vw, 108px); box-shadow: 0 14px 36px rgba(0, 0, 0, .45); }
  .hero-shots img:nth-child(2) { transform: scale(1.05) translateY(-4px); }
  .hero-shots img:nth-child(1) { margin-right: clamp(-24px, -7vw, -14px); transform: rotate(-2deg) translateY(4px); }
  .hero-shots img:nth-child(3) { margin-left: clamp(-24px, -7vw, -14px); transform: rotate(2deg) translateY(4px); }
}
@media (max-width: 380px) {
  .hero-meta { gap: 14px; }
  .hero-actions .btn { padding: 10px 14px; font-size: 13px; }
  .hero h1 { font-size: 24px; }
}

/* ============ CTA · 极简编辑感 ============ */
.cta-block {
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.cta-block.center { text-align: center; align-items: center; }
.cta-block h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  letter-spacing: -.015em; color: var(--text);
  max-width: 600px;
}
.cta-block p { color: var(--text-mute); font-size: 15px; max-width: 520px; line-height: 1.7; }
.cta-block .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ============ 联系卡（about 用）============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
}
.contact-cell {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.contact-cell:last-child { border-right: 0; }
.contact-label {
  font-size: 11.5px; letter-spacing: .14em;
  color: var(--text-dim); text-transform: uppercase;
}
.contact-title { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-desc { font-size: 13.5px; color: var(--text-mute); line-height: 1.6; }
.contact-cell .dl-btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cell { border-right: 0; border-bottom: 1px solid var(--border); }
  .contact-cell:last-child { border-bottom: 0; }
}

/* ============ Footer ============ */
.footer {
  margin-top: 56px;
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand .footer-logo img { height: 28px; width: auto; }
.footer-brand p {
  font-size: 13.5px; color: var(--text-mute);
  max-width: 300px; line-height: 1.7;
}
.footer-col h5 {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .14em; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 13.5px; color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--t);
}
.footer-col a:hover { color: var(--text); }

/* 友情链接 */
.footer-links {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links-title {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .14em; color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 4px;
  flex-shrink: 0;
}
.footer-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  flex: 1;
  min-width: 0;
}
.footer-links-list a {
  font-size: 13px; color: var(--text-mute);
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--t), border-color .2s var(--t);
}
.footer-links-list a:hover {
  color: var(--accent-2);
  border-color: var(--accent-line);
}
@media (max-width: 480px) {
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-links-list { gap: 4px 14px; }
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: var(--text-dim);
  letter-spacing: .02em;
}
.footer-bottom .links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--text-mute); }

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}