@font-face {
  font-family: 'MOS Serif';
  src: url('fonts/mos-serif.woff2') format('woff2');
  font-display: swap;
}

:root {
  --paper: #faf6ef;
  --paper-deep: #f2eadc;
  --ink: #1c1811;
  --muted: #756d60;
  --line: rgba(28, 24, 17, 0.13);
  --yellow: #f6c445;
  --orange: #e9852a;
  --white: #fffdf9;

  /* 徽章材质色，与 App 的 constants/achievements.ts 一致。
     墨色在墨底上看不见，提亮成暖灰。 */
  --t-stone: #a9a091;
  --t-bronze: #b5793c;
  --t-silver: #7c8a99;
  --t-gold: #d8a63c;
  --t-ink: #c8b9a4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-nav {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 66px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 14px 40px rgba(80,58,23,.09);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 10px; width: max-content; }
.brand img:first-child { width: 34px; height: 34px; object-fit: contain; }
.brand img:last-child { width: 116px; height: 28px; object-fit: contain; }
.nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 650; }
.nav-links a { opacity: .68; transition: opacity .2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  justify-self: end;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  padding: 172px max(28px, calc((100vw - 1180px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  background:
    radial-gradient(circle at 73% 46%, rgba(246,196,69,.23), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 100%);
}
.hero-copy { position: relative; z-index: 2; padding-bottom: 75px; }
.eyebrow, .section-kicker {
  margin: 0 0 28px;
  color: #8b6917;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .16em;
}
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: 'MOS Serif', 'Songti SC', serif;
  font-size: clamp(68px, 7.5vw, 116px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.065em;
}
.hero-lede {
  max-width: 600px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button {
  display: inline-flex;
  align-items: center;
  min-height: 55px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(225,159,0,.22);
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(225,159,0,.3); }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); padding: 10px 0; }

.hero-visual { position: relative; min-height: 720px; display: grid; place-items: center; }
.phone {
  position: relative;
  z-index: 3;
  width: min(370px, 72vw);
  padding: 11px;
  border: 3px solid #24211c;
  border-radius: 62px;
  background: #24211c;
  box-shadow: 0 44px 90px rgba(68,48,16,.24), inset 0 0 0 1px rgba(255,255,255,.22);
}
.phone::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 31%;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #24211c;
}
.phone-screen { overflow: hidden; border-radius: 49px; background: #faf7f1; }
.phone-screen img { display: block; width: 100%; height: auto; }
.orbit { position: absolute; border: 1px solid rgba(28,24,17,.13); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; }
.orbit-two { width: 790px; height: 790px; }
.sun-dot { position: absolute; border-radius: 50%; background: var(--yellow); }
.sun-dot-one { width: 84px; height: 84px; top: 12%; right: 2%; }
.sun-dot-two { width: 25px; height: 25px; bottom: 11%; left: 5%; background: var(--orange); }
.stat-note {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
  padding: 17px 20px;
  border: 1px solid rgba(28,24,17,.1);
  border-radius: 20px;
  background: rgba(255,253,249,.9);
  box-shadow: 0 18px 35px rgba(80,58,23,.12);
  backdrop-filter: blur(10px);
}
.stat-note strong { font-family: 'MOS Serif', serif; font-size: 39px; line-height: 1; font-weight: 600; }
.stat-note span { color: var(--muted); font-size: 13px; }
.note-left { left: 0; top: 27%; transform: rotate(-4deg); }
.note-right { right: -2%; bottom: 24%; transform: rotate(3deg); }

.manifesto {
  padding: 150px max(28px, calc((100vw - 1040px) / 2));
  text-align: center;
  background: var(--ink);
  color: var(--white);
}
.manifesto .section-kicker { color: var(--yellow); }
.manifesto h2 {
  margin: 0;
  font-family: 'MOS Serif', 'Songti SC', serif;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -.045em;
}
.manifesto h2 span { color: #a9a197; }

.value-ribbon { overflow: hidden; padding: 22px 0; background: var(--yellow); border-block: 1px solid rgba(28,24,17,.12); }
.ribbon-track { display: flex; width: max-content; animation: ribbon 22s linear infinite; }
.ribbon-track span { display: flex; align-items: center; gap: 28px; padding-right: 28px; font-family: 'MOS Serif', serif; font-size: 27px; white-space: nowrap; }
.ribbon-track i { font-family: serif; font-size: 15px; font-style: normal; }
@keyframes ribbon { to { transform: translateX(-50%); } }

.feature-story {
  min-height: 920px;
  padding: 110px max(28px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}
.story-copy { max-width: 500px; }
.story-number { margin: 0 0 25px; font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .55; }
.story-copy h2 {
  margin: 0;
  font-family: 'MOS Serif', 'Songti SC', serif;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.08;
  font-weight: 550;
  letter-spacing: -.05em;
}
.story-copy > p:not(.story-number) { margin: 32px 0 0; color: var(--muted); font-size: 18px; line-height: 1.85; }
.feature-list { list-style: none; padding: 0; margin: 42px 0 0; border-top: 1px solid currentColor; }
.feature-list li { position: relative; padding: 17px 0 17px 28px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }
.feature-list li::before { content: '✦'; position: absolute; left: 2px; color: var(--orange); }
.story-visual { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; }
.story-visual .phone { width: min(340px, 72vw); }
.reading-story { background: var(--paper); }
.reading-visual { border-radius: 48% 48% 44% 44% / 42% 42% 55% 55%; background: #efe6d6; }
.book-quote { position: absolute; z-index: 4; top: 13%; left: 2%; max-width: 190px; padding: 18px; background: var(--white); box-shadow: 0 18px 45px rgba(57,42,18,.12); transform: rotate(-6deg); font-family: 'MOS Serif', serif; font-size: 18px; line-height: 1.5; }

.family-story { background: var(--yellow); }
.family-story .story-copy > p:not(.story-number) { color: rgba(28,24,17,.7); }
.family-visual { min-height: 780px; overflow: visible; }
.family-visual .phone { transform: rotate(-2deg); }
.family-orbit { position: absolute; width: 650px; height: 650px; border: 1px solid rgba(28,24,17,.18); border-radius: 50%; animation: orbit-spin 38s linear infinite; }
.family-orbit::before { content: ''; position: absolute; inset: 74px; border: 1px dashed rgba(28,24,17,.18); border-radius: 50%; }
.family-orbit span { position: absolute; display: grid; place-items: center; width: 82px; height: 82px; border-radius: 50%; background: var(--white); box-shadow: 0 12px 26px rgba(88,61,7,.14); font-size: 13px; font-weight: 700; }
.family-orbit span:nth-child(1) { left: -20px; top: 44%; }
.family-orbit span:nth-child(2) { right: 8%; top: 1%; }
.family-orbit span:nth-child(3) { right: -30px; bottom: 18%; }
.family-orbit span:nth-child(4) { left: 17%; bottom: -26px; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.stats-story { background: #f18a2d; color: var(--ink); }
.stats-story .story-copy > p:not(.story-number) { color: rgba(28,24,17,.72); }
.stats-visual { min-height: 780px; }
.stats-visual .phone { transform: rotate(2deg); }
.heat-grid { position: absolute; width: 640px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 13px; transform: rotate(-8deg); opacity: .72; }
.heat-grid span { aspect-ratio: 1; border: 1px solid rgba(28,24,17,.16); border-radius: 13px; background: rgba(255,253,249,.25); }
.heat-grid .heat-1 { background: #f7d260; }
.heat-grid .heat-2 { background: #f2a82f; }
.heat-grid .heat-3 { background: #d96116; }
.heat-grid .heat-4 { background: #8d2f08; }

.proof {
  padding: 140px max(28px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}
.proof-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.proof-heading .section-kicker { color: var(--yellow); }
.proof-heading h2 { margin: 0; font-family: 'MOS Serif', serif; font-size: clamp(48px, 5.5vw, 80px); line-height: 1.12; font-weight: 500; letter-spacing: -.05em; text-align: right; }
.proof-stats { display: grid; grid-template-columns: 1.35fr 1fr 1fr; margin-top: 95px; border-top: 1px solid rgba(255,255,255,.25); }
.proof-stats > div { min-height: 250px; padding: 55px 25px 25px 0; border-right: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; justify-content: space-between; }
.proof-stats > div:not(:first-child) { padding-left: 40px; }
.proof-stats > div:last-child { border-right: 0; }
.proof-stats strong { font-family: 'MOS Serif', serif; font-size: clamp(54px, 7vw, 100px); line-height: 1; font-weight: 500; color: var(--yellow); }
.proof-stats small { font-size: .25em; color: var(--white); margin: 0 8px; }
.proof-stats span { color: #b7b0a8; font-size: 14px; }
.proof-note { margin: 26px 0 0; color: #777067; font-size: 12px; }

.closing {
  position: relative;
  overflow: hidden;
  padding: 165px 28px;
  text-align: center;
  background: var(--paper);
}
.closing-mark { position: absolute; inset: 0; display: grid; place-items: center; opacity: .055; transform: scale(4.6) rotate(-9deg); }
.closing > *:not(.closing-mark) { position: relative; z-index: 1; }
.closing h2 { margin: 0; font-family: 'MOS Serif', serif; font-size: clamp(64px, 8vw, 112px); line-height: 1.02; font-weight: 550; letter-spacing: -.065em; }
.closing > p:not(.section-kicker) { margin: 34px 0; color: var(--muted); font-size: 18px; }
.store-pill { display: inline-flex; min-height: 58px; align-items: center; padding: 0 27px; border-radius: 999px; background: var(--ink); color: white; font-size: 15px; font-weight: 750; }

.faq { padding: 100px max(28px, calc((100vw - 960px) / 2)); background: var(--white); }
.faq h2 { margin: 0 0 55px; font-family: 'MOS Serif', serif; font-size: clamp(38px, 4vw, 56px); font-weight: 550; text-align: center; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 28px 48px 28px 0; font-size: 18px; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 23px; font-size: 30px; font-weight: 300; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: -4px 0 28px; max-width: 680px; color: var(--muted); line-height: 1.75; }

footer {
  min-height: 120px;
  padding: 25px max(28px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
footer p { margin: 0; }
footer p:last-child { justify-self: end; }
.footer-brand img:first-child { width: 30px; height: 30px; }
.footer-brand img:last-child { width: 112px; height: 26px; }

@media (prefers-reduced-motion: no-preference) {
  .story-copy, .story-visual, .proof-heading, .proof-stats, .hall-head, .family-legend {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 36%;
  }
  @keyframes reveal { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 900px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: 140px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-bottom: 0; }
  .hero h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 700px; margin-top: 10px; }
  .feature-story { min-height: auto; padding-top: 90px; padding-bottom: 90px; grid-template-columns: 1fr; }
  .story-copy { max-width: 680px; margin: 0 auto; text-align: center; }
  .feature-list { text-align: left; }
  .family-story .story-visual { order: 2; }
  .story-visual { min-height: 720px; width: 100%; max-width: 720px; margin: 0 auto; }
  .proof-heading { align-items: flex-start; flex-direction: column; }
  .proof-heading h2 { text-align: left; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stats > div, .proof-stats > div:not(:first-child) { min-height: 180px; padding: 36px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:nth-child(2) { display: none; }
  .hall { padding: 100px 0 90px; }
  .hall-head { margin-bottom: 60px; }
  .family-legend { grid-template-columns: repeat(3, 1fr); gap: 0 0; }
  .family-legend li:nth-child(3) { border-right: 0; }
  .family-legend li:nth-child(4) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.25); margin-top: 26px; }
  .family-legend li:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.25); margin-top: 26px; }
}

@media (max-width: 580px) {
  .site-nav { top: 10px; width: calc(100% - 20px); height: 58px; padding-left: 14px; }
  .brand img:last-child { display: none; }
  .nav-cta { padding: 11px 14px; font-size: 12px; }
  .hero { padding: 120px 18px 60px; }
  .hero h1 { font-size: 58px; }
  .hero-lede { font-size: 16px; line-height: 1.75; }
  .hero-lede br { display: none; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-visual { min-height: 610px; }
  .orbit-one { width: 460px; height: 460px; }
  .orbit-two { width: 590px; height: 590px; }
  .stat-note { min-width: 118px; padding: 13px 15px; }
  .stat-note strong { font-size: 30px; }
  .note-left { left: -2%; }
  .note-right { right: -4%; }
  .manifesto { padding: 105px 22px; }
  .manifesto h2 { font-size: 38px; }
  .feature-story { padding: 78px 20px; gap: 52px; }
  .story-copy h2 { font-size: 49px; }
  .story-copy > p:not(.story-number) { font-size: 16px; }
  .story-visual { min-height: 620px; overflow: visible; }
  .reading-visual { overflow: hidden; }
  .book-quote { left: -4px; top: 8%; font-size: 15px; max-width: 155px; }
  .family-orbit { width: 490px; height: 490px; }
  .family-orbit span { width: 65px; height: 65px; font-size: 11px; }
  .heat-grid { width: 480px; gap: 8px; }
  .heat-grid span { border-radius: 8px; }
  .proof { padding: 100px 22px; }
  .proof-stats { margin-top: 55px; }
  .closing { padding: 115px 20px; }
  .closing h2 { font-size: 58px; }
  .faq { padding: 80px 22px; }
  footer { padding: 24px 20px; }
  .hall { padding: 84px 0 76px; }
  .hall-head { padding: 0 22px; }
  .gem { width: 158px; height: 202px; border-radius: 24px; }
  .gem-art { height: 108px; }
  .gem-art img { max-height: 108px; }
  .family-legend { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
  .family-legend b { font-size: 32px; }
  .family-legend li:nth-child(even) { border-right: 0; }
  .family-legend li:nth-child(odd) { padding-left: 0; }
  .footer-end { justify-self: end; }
  .footer-links { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track, .family-orbit, .marquee { animation: none; }
  .gem-art img { opacity: 1; }
  .gem-art img.halo { opacity: .45; }
}


/* ═══════════ 成就 ═══════════
   徽章是奶白纸雕 + 金属线，压在墨底上才发得出光；铺在纸底上会奶白压奶白，
   整片糊掉。所以这一节沿用本站已有的 --ink 满铺（跟 manifesto / proof 同一
   套语汇），夹在黄色的家庭和橙色的统计之间。
   跑马灯结构学 opalapp.com 的 Focus Gems：两行反向、无限、悬停暂停。
   ⚠️ 但不学它的彩虹欧泊光 —— 那会把纸雕质感冲没。辉光按材质色染。 */
.hall {
  padding: 150px 0 120px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hall-head {
  max-width: 860px;
  margin: 0 auto 85px;
  padding: 0 28px;
  text-align: center;
}
.hall .section-kicker { color: var(--yellow); }
.hall h2 {
  margin: 0;
  font-family: 'MOS Serif', 'Songti SC', serif;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.05em;
}
.hall-lede {
  max-width: 720px;
  margin: 34px auto 0;
  color: #b7b0a8;
  font-size: 18px;
  line-height: 1.85;
}

.marquee-wrap {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee { display: flex; gap: 20px; width: max-content; will-change: transform; }
.marquee-a { animation: run 78s linear infinite; }
.marquee-b { animation: run 78s linear infinite reverse; }
/* 轨道 = 两轮 + 轮间的一个 gap，所以要多走半个 gap 才严丝合缝 */
@keyframes run { to { transform: translateX(calc(-50% - 10px)); } }
.marquee-wrap:hover .marquee,
.marquee-wrap:focus-within .marquee,
.marquee.paused { animation-play-state: paused; }

.gem {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 250px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  transition: transform .45s ease, background .45s ease, border-color .45s ease;
}
.gem-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 260px; height: 260px;
  transform: translate(-50%, -58%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gem-tint) 0%, transparent 65%);
  opacity: .5;
  filter: blur(24px);
  transition: opacity .45s ease, transform .55s ease;
}
.gem-art {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 138px;
  transform: translate(-50%, -60%);
  display: grid;
  place-items: center;
}
/* 两张同图：底下那张模糊放大当自发光，上面那张是本体。
   浏览器对同一 URL 只发一次请求，不额外花带宽。 */
.gem-art img {
  position: absolute;
  max-width: 76%;
  max-height: 138px;
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease, transform .5s ease;
}
.gem-art img.ready { opacity: 1; }
.gem-art img.halo { filter: blur(10px) saturate(1.35); }
.gem-art img.halo.ready { opacity: .45; }
.gem-name {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  padding: 0 14px;
  text-align: center;
  color: rgba(255,253,249,.72);
  font-size: 13px;
  font-weight: 700;
  transition: color .35s ease;
}
.gem-desc {
  position: absolute;
  left: 0; right: 0; bottom: 9px;
  padding: 0 14px;
  text-align: center;
  color: #8d867d;
  font-size: 11px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}
.gem:hover {
  transform: translateY(-9px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}
.gem:hover .gem-glow { opacity: .95; transform: translate(-50%, -58%) scale(1.1); }
.gem:hover .gem-art img { transform: translateY(-10px); }
.gem:hover .gem-name { color: var(--white); }
.gem:hover .gem-desc { opacity: 1; transform: none; }

/* 家族图例：借 .feature-list 的上下细线语汇，横过来排 */
.family-legend {
  max-width: 1180px;
  margin: 80px auto 0;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
}
.family-legend li {
  padding: 26px 18px 0 0;
  border-right: 1px solid rgba(255,255,255,.25);
}
.family-legend li:last-child { border-right: 0; }
.family-legend li:not(:first-child) { padding-left: 24px; }
.family-legend b {
  display: block;
  font-family: 'MOS Serif', 'Songti SC', serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--yellow);
}
.family-legend em { display: block; margin-top: 12px; color: #b7b0a8; font-size: 13px; font-style: normal; }

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

/* 页脚：主体英文名 + 法务链接 */
.footer-end { justify-self: end; text-align: right; }
.footer-links { display: flex; gap: 18px; justify-content: flex-end; margin-bottom: 6px; }
.footer-links a { font-weight: 700; }
.footer-links a:hover { color: var(--ink); }
