/* ============================================================
   AI速報 — Elon Musk AI News
   Design tokens + layout + motion
   ============================================================ */

:root {
  --bg: #04060c;
  --bg-2: #070a13;
  --bg-3: #0a0e1a;
  --panel: rgba(13, 17, 30, 0.72);
  --panel-solid: #0c1020;
  --line: rgba(148, 178, 228, 0.14);
  --line-strong: rgba(148, 178, 228, 0.26);
  --text: #eef2fa;
  --muted: #94a0b8;
  --faint: #5d6880;
  --accent: #5aa9ff;
  --accent-strong: #82c0ff;
  --accent-soft: rgba(90, 169, 255, 0.14);
  --red: #e5484d;
  --font-display: "Archivo", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --header-h: 64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --star-opacity: 1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(90, 169, 255, 0.35); }

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

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

.wrap {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

/* ---------- scroll progress ---------- */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #b48cff);
  z-index: 120;
  box-shadow: 0 0 12px rgba(90, 169, 255, 0.8);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(4, 6, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  flex: none;
}
.logo .logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.logo .logo-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--red);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.main-nav a {
  position: relative;
  white-space: nowrap;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); }
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.btn-signup {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-signup:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(90, 169, 255, 0.25);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(18, 40, 86, 0.4), transparent 65%),
    radial-gradient(700px 360px at 88% 6%, rgba(64, 30, 16, 0.32), transparent 65%),
    var(--bg);
}
@media (min-width: 900px) {
  .hero { min-height: min(86svh, 900px); }
}
.hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 640;
  container-type: inline-size;
  /* Elon が縦に伸びるので stage の上方クリップを解除。
     section の overflow:hidden が外周を担保。 */
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 9%);
}
.hero-elon {
  position: absolute;
  right: 18%;
  bottom: 0;
  height: 135%;
  width: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.55));
}
/* CSS 変数を keyframe で滑らかに補間させるため @property で型登録 */
@property --rocket-y     { syntax: "<length>";     inherits: false; initial-value:  0px;  }
@property --rocket-rot   { syntax: "<angle>";      inherits: false; initial-value: -8deg; }
@property --rocket-scale { syntax: "<number>";     inherits: false; initial-value:  1;    }
@property --flame-h      { syntax: "<percentage>"; inherits: false; initial-value:  0%;   }
@property --flame-op     { syntax: "<number>";     inherits: false; initial-value:  0;    }

.hero-rocket {
  position: absolute;
  left: 50%;
  bottom: 8%;
  height: 70%;
  width: auto;
  aspect-ratio: 480 / 720;
  z-index: 3;
  pointer-events: none;
  transform-origin: 50% 92%;
  will-change: transform, filter;
  filter: drop-shadow(0 8px 24px rgba(90, 169, 255, 0.42));
  /* JS フォールバックで使う CSS 変数 (scroll-timeline 対応ブラウザは @supports 側で上書き) */
  --rocket-y: 0px;
  --rocket-rot: -8deg;
  --rocket-scale: 1;
  --rocket-glow: 0.42;
  --flame-h: 0%;
  --flame-op: 0;
  transform: translateX(-50%) translateY(var(--rocket-y)) rotate(var(--rocket-rot)) scale(var(--rocket-scale));
  animation: rocket-idle 4.2s ease-in-out infinite alternate;
}
.hero-rocket img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  display: block;
}

/* 噴射炎 — rocket 下端から伸びる、加速とともに長く・明るく */
.hero-rocket-flame {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 26%;
  height: var(--flame-h);
  transform: translateX(-50%);
  opacity: var(--flame-op);
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%,
      rgba(255, 255, 230, 0.98) 0%,
      rgba(255, 210, 120, 0.92) 18%,
      rgba(255, 140, 60, 0.78) 42%,
      rgba(220, 70, 30, 0.5) 70%,
      rgba(120, 30, 10, 0.15) 90%,
      transparent 100%);
  border-radius: 50% 50% 50% 50% / 25% 25% 80% 80%;
  filter: blur(2.5px) saturate(1.25);
  pointer-events: none;
  z-index: 1;
  transform-origin: 50% 0%;
  animation: flame-flicker 80ms steps(2, end) infinite;
}

/* スパーク — 炎の周りで揺らぐ星状の光点 */
.hero-rocket-spark {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 200, 120, 0.9) 35%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  filter: blur(0.3px);
}
.hero-rocket-spark--a { animation: spark 0.9s ease-out infinite; }
.hero-rocket-spark--b { animation: spark 1.1s ease-out 0.3s infinite; }
.hero-rocket-spark--c { animation: spark 0.7s ease-out 0.55s infinite; }

@keyframes rocket-idle {
  0%   { transform: translateX(-50%) translateY(calc(var(--rocket-y) + 0px))  rotate(calc(var(--rocket-rot) + 0deg))  scale(var(--rocket-scale)); }
  100% { transform: translateX(-50%) translateY(calc(var(--rocket-y) - 6px)) rotate(calc(var(--rocket-rot) - 1.2deg)) scale(var(--rocket-scale)); }
}
@keyframes flame-flicker {
  0%, 100% { transform: translateX(-50%) scaleX(1)    scaleY(1); }
  50%      { transform: translateX(-50%) scaleX(0.92) scaleY(1.06); }
}
@keyframes spark {
  0%   { transform: translate(-50%, 0)     scale(0.6); opacity: 0; }
  20%  { opacity: 0.95; }
  100% { transform: translate(calc(-50% + var(--sx, 12px)), calc(var(--flame-h, 40px) + 24px)) scale(0.2); opacity: 0; }
}
.hero-rocket-spark--a { --sx: -18px; }
.hero-rocket-spark--b { --sx:  16px; }
.hero-rocket-spark--c { --sx:   2px; }

/* === Scroll-driven (modern browsers: Chrome 115+, Edge, Opera) === */
@supports (animation-timeline: scroll()) {
  .hero-rocket {
    animation:
      rocket-idle 4.2s ease-in-out infinite alternate,
      rocket-launch linear both;
    animation-timeline: auto, scroll(root);
    animation-range: auto, 0 100vh;
  }
  .hero-rocket-flame {
    animation:
      flame-flicker 80ms steps(2, end) infinite,
      flame-grow linear both;
    animation-timeline: auto, scroll(root);
    animation-range: auto, 0 80vh;
  }
  @keyframes rocket-launch {
    0% {
      --rocket-y: 0px;
      --rocket-rot: -8deg;
      --rocket-scale: 1;
      filter: drop-shadow(0 8px 24px rgba(90, 169, 255, 0.42));
    }
    18% {
      --rocket-y: -40px;
      --rocket-rot: -10deg;
      --rocket-scale: 1.04;
      filter: drop-shadow(0 12px 36px rgba(120, 200, 255, 0.65));
    }
    55% {
      --rocket-y: -620px;
      --rocket-rot: -22deg;
      --rocket-scale: 0.82;
      filter: drop-shadow(0 16px 48px rgba(160, 210, 255, 0.78)) blur(0.4px);
    }
    100% {
      --rocket-y: -1500px;
      --rocket-rot: -42deg;
      --rocket-scale: 0.42;
      filter: drop-shadow(0 22px 80px rgba(255, 200, 110, 0.9)) blur(2px);
      opacity: 0.45;
    }
  }
  @keyframes flame-grow {
    0%   { --flame-h:  0%; --flame-op: 0;   }
    10%  { --flame-h:  6%; --flame-op: 0.6; }
    40%  { --flame-h: 30%; --flame-op: 1;   }
    100% { --flame-h: 55%; --flame-op: 0.95;}
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rocket,
  .hero-rocket-flame,
  .hero-rocket-spark { animation: none !important; }
  .hero-rocket-flame { opacity: 0; }
}
#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  mix-blend-mode: screen;
  opacity: calc(var(--star-opacity) * 0.55);
  pointer-events: none;
}
.hero-status {
  font-family: var(--font-mono);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .45cqi;
  pointer-events: none;
}
.hero-status-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 11px 5px 9px;
  background: rgba(8, 12, 22, 0.55);
  border: 1px solid rgba(90, 169, 255, 0.28);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  width: max-content;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.6);
  animation: status-pulse 1.6s ease-out infinite;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}
.hero-status-label { color: #fff; font-weight: 700; letter-spacing: 0.24em; }
.hero-status-sep { color: rgba(255, 255, 255, 0.25); }
.hero-status-text { color: var(--accent-strong); }

.hero-status-grid {
  display: grid;
  grid-auto-flow: column;
  gap: 1.4cqi;
  padding-left: 4px;
  margin-top: .25cqi;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}
.hero-status-grid > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 9px;
}
.hero-status-k { color: var(--faint); font-size: 9px; letter-spacing: 0.22em; }
.hero-status-v { color: var(--text); font-weight: 500; }

.hero-headline {
  position: absolute;
  left: 5.5%;
  top: 0;
  max-width: 44%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .65cqi;
}
.hero-headline .hero-status { margin-bottom: .35cqi; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.95cqi, 13px);
  letter-spacing: 0.28em;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
  opacity: 0.95;
}
.hero-title {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(40px, 7cqi, 112px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.65);
  background: linear-gradient(180deg, #ffffff 0%, #c8d8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: clamp(15px, 1.7cqi, 26px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}
.hero-lead {
  font-size: clamp(12px, 1cqi, 15px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 36cqi;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.hero .hero-ctas { margin-top: .4cqi; }
.hero .hero-ctas .btn { padding: 12px 22px; font-size: 13px; }
.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.8cqi;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  width: max-content;
}
.hero-scroll-hint svg { animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(4px); opacity: 1; }
}

@media (max-width: 900px) {
  /* hero をモバイル/タブレットで縦積みに再構成する。
     従来は aspect-ratio:1920/640 の低い stage に headline を absolute で乗せており、
     タイトル以下 (CTA / スクロール / live-overlay) が hero の overflow:hidden で
     切り取られて見えなくなっていた。stage の固定比をやめ、headline を通常フローに
     戻して全ブロックを表示する。bg/elon/rocket は absolute のまま背景装飾として残す。 */
  .hero-stage {
    aspect-ratio: auto;
    min-height: 66svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-headline {
    position: static;
    max-width: 100%;
    width: 100%;
    padding: 0 5.5% calc(env(safe-area-inset-bottom, 0px) + 26px);
    gap: 12px;
  }
  .hero-title { font-size: clamp(40px, 11vw, 80px); }
  .hero-lead { display: none; }
  .hero-status-grid { display: none; }
  /* aside.live-overlay で詳細度を上げる: 基底 .live-overlay(display:flex)が
     ソース上この media より後ろにあるため、同詳細度だと後勝ちで隠れない。 */
  aside.live-overlay { display: none; }         /* 下の X フィード節と重複・狭くて読めない */
  .hero-elon { height: 86%; right: -10%; bottom: 0; opacity: 0.4; }  /* 薄い背景装飾に */
  .hero-rocket { left: 20%; bottom: 16%; height: 44%; opacity: 0.7; }
}
@media (max-width: 760px) {
  .hero-elon { height: 76%; right: -16%; opacity: 0.32; }
  .hero-rocket { display: none; }               /* 狭い画面では装飾ロケットを省略 */
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease,
    background 0.25s ease, border-color 0.25s ease;
}
.btn .arr { transition: transform 0.25s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary {
  background: #fff;
  color: #0a0d16;
  box-shadow: 0 6px 30px rgba(120, 180, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(120, 180, 255, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn-ghost .heart { transition: transform 0.3s var(--ease-out), color 0.3s ease; }
.btn-ghost:hover .heart { transform: scale(1.25); color: var(--red); }

/* ---------- live card (overlay on hero image) ---------- */
.live-overlay {
  position: absolute;
  left: 80.4%;
  top: 18%;
  bottom: 7.5%;
  width: 16.2%;
  overflow: hidden;
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(16, 20, 33, 0.93);
  border: 1px solid var(--line);
  border-radius: 1.05cqi;
  padding: 1.1cqi 1.3cqi;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1.2cqi 4cqi rgba(0, 0, 0, 0.55);
}
.live-head {
  display: flex;
  align-items: center;
  gap: 0.65cqi;
  font-size: 0.78cqi;
  color: var(--muted);
  margin-bottom: 0.7cqi;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4cqi;
  background: rgba(229, 72, 77, 0.16);
  color: #ff8589;
  font-family: var(--font-mono);
  font-size: 0.62cqi;
  letter-spacing: 0.14em;
  padding: 0.26cqi 0.65cqi;
  border-radius: 99px;
}
.live-dot {
  width: 0.4cqi; height: 0.4cqi;
  border-radius: 50%;
  background: var(--red);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.7); }
  100% { box-shadow: 0 0 0 8px rgba(229, 72, 77, 0); }
}
.live-feed {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.live-feed li {
  padding: 0.5cqi 0;
  border-bottom: 1px solid var(--line);
  animation: feed-in 0.5s var(--ease-out);
}
.live-feed li:last-child { border-bottom: none; }
@keyframes feed-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.live-feed time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66cqi;
  color: var(--faint);
  margin-bottom: 0.1cqi;
}
.live-feed p {
  margin: 0;
  font-size: 0.78cqi;
  line-height: 1.45;
}
.live-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4cqi;
  margin-top: 0.7cqi;
  font-size: 0.8cqi;
  color: var(--muted);
  transition: color 0.25s ease;
}
.live-more:hover { color: var(--accent-strong); }

/* ---------- brand marquee ---------- */
.brands {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.brands:hover .marquee { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(238, 242, 250, 0.5);
  text-transform: uppercase;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.marquee span:hover {
  color: #fff;
  text-shadow: 0 0 22px rgba(90, 169, 255, 0.7);
}

/* ---------- sections ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-head {
  margin-bottom: 36px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
  line-height: 1.3;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.25s ease, gap 0.25s ease;
}
.see-all:hover { color: var(--accent-strong); gap: 12px; }

/* ---------- news (vertical list) ---------- */
.news { background: var(--bg-2); }
.news-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.news-head .desc { color: var(--muted); font-size: 14px; margin: 0; }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.news-row {
  position: relative;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.news-row:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 169, 255, 0.45);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(90, 169, 255, 0.2);
}
.news-row-link {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  color: inherit;
  text-decoration: none;
  align-items: stretch;
}
.news-row-thumb {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background:
    radial-gradient(220px 120px at 70% 20%, rgba(90, 169, 255, 0.18), transparent 70%),
    linear-gradient(160deg, #101728, #070a13);
}
.news-row-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.news-row-body {
  padding: 20px 24px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.news-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.news-row-title {
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  text-wrap: pretty;
  color: var(--text);
}
.news-row:hover .news-row-title { color: var(--accent); }
.news-row-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.badge-new {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  border-radius: 6px;
  animation: live-pulse 1.8s ease-out infinite;
}
.news-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .news-row-link { grid-template-columns: 1fr; gap: 0; }
  .news-row-thumb { min-height: 200px; }
  .news-row-body { padding: 18px 20px 22px; }
  .news-row-title { font-size: 16px; }
}

/* ---------- vision ---------- */
.vision {
  background:
    radial-gradient(900px 500px at 85% 100%, rgba(20, 48, 96, 0.35), transparent 65%),
    var(--bg);
}
.vision-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.vision-side { position: sticky; top: calc(var(--header-h) + 40px); }
.vision-side .desc { color: var(--muted); font-size: 13.5px; margin: 0 0 26px; }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.vision-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    radial-gradient(200px 140px at 80% -20%, var(--glow, rgba(90, 169, 255, 0.18)), transparent 70%),
    linear-gradient(170deg, #0d1222, #060912);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.vision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px 200px at 50% 120%, var(--glow, rgba(90, 169, 255, 0.22)), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.vision-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.vision-card:hover::before { opacity: 1; }
.vision-card .v-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.07);
}
.vision-card h3 {
  position: relative;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
}
.vision-card p {
  position: relative;
  color: var(--muted);
  font-size: 12.5px;
  margin: 0;
  text-wrap: pretty;
}
.v-org {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(238, 242, 250, 0.75);
  text-transform: uppercase;
}
.v-org::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--glow-line, var(--accent));
}

/* ---------- support CTA ---------- */
.support {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 50% 130%, rgba(90, 169, 255, 0.16), transparent 70%),
    var(--bg-2);
  text-align: center;
}
.support .section-title { margin-bottom: 16px; }
.support .desc {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.support .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 12.5px; color: var(--muted); transition: color 0.25s ease; }
.footer-nav a:hover { color: var(--text); }
.footer-note {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--faint);
}

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce), (scripting: none) {
  [data-reveal] { opacity: 1; transform: none; }
  .marquee, .planet, .hero-title { animation: none; }
}
body.no-motion [data-reveal] { opacity: 1; transform: none; transition: none; }
body.no-motion .marquee,
body.no-motion .planet,
body.no-motion .hero-title,
body.no-motion .scroll-cue .stem::after,
body.no-motion .live-dot,
body.no-motion .badge-new { animation: none; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .main-nav a { padding: 8px 9px; }
  .lang { display: none; }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-inner { justify-content: space-between; }
}
@media (max-width: 900px) {
  .header-inner { justify-content: space-between; }
  .news-layout, .vision-layout { grid-template-columns: 1fr; }
  .news-side, .vision-side { position: static; }
  .wrap { width: calc(100% - 40px); }
}

/* ============================================================
   Subpage adapter — index(paginated), tag, article, static, 404
   Uses the same dark tokens as homepage chrome.
   ============================================================ */
.page-inner {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 0 80px;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}
.page-title-404 { font-size: clamp(32px, 5vw, 56px); }
.page-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 32px;
}

/* breadcrumb */
.bc {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 18px;
}
.bc a { color: var(--muted); }
.bc a:hover { color: var(--accent); }
.bc-cur { color: var(--text); }

/* article card (paginated index, tag pages) */
.ar {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.ar:last-of-type { border-bottom: 0; }
.ar .header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 6px;
}
.ar h2 a { color: var(--text); }
.ar h2 a:hover { color: var(--accent); }
.ar .time time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.ar-card { display: block; margin: 14px 0 6px; }
.ar-card figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
}
.ar-card figure img { width: 100%; height: auto; display: block; }
.ar-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.ar-summary {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  margin: 12px 0 0;
}
.headline-band {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

/* tag pill */
.tag, .tag-line .tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text);
  background: var(--accent-soft);
}
.tag:hover { background: var(--accent); color: #04060c; }
.tag-line { margin: 12px 0 0; }

/* article detail */
.article-body { margin: 0 0 48px; }
.article-body .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 28px;
}
.article-body .hero-fig {
  margin: 0 0 32px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
}
.article-body .hero-fig img { width: 100%; height: auto; display: block; }
.article-body .summary {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 32px;
}
.article-body .summary p { margin: 0 0 12px; }

.toc {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  background: var(--panel);
  margin: 0 0 32px;
}
.toc-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.toc ol { margin: 0; padding-left: 22px; color: var(--text); }
.toc a { color: var(--text); }
.toc a:hover { color: var(--accent); }

.long-content { font-size: 15.5px; line-height: 1.9; color: var(--text); }
.long-content .long-section { margin: 36px 0; }
.long-content .long-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--text);
}
.long-content p { margin: 0 0 14px; }
.long-intro { color: var(--muted); }

.orig-toggle {
  margin: 32px 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
}
.orig-toggle summary {
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-mono);
  list-style: none;
}
.orig-toggle summary::before { content: "▸ "; color: var(--accent); }
.orig-toggle[open] summary::before { content: "▾ "; }
.orig {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  background: transparent;
}
.orig p { margin: 0 0 8px; line-height: 1.7; }
.orig-note { font-size: 12px; color: var(--faint); }
.orig footer a { color: var(--accent); }

.src { margin: 32px 0; font-family: var(--font-mono); font-size: 13px; }
.src a { color: var(--accent); }

/* HN comments */
.hn-comments {
  margin: 48px 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hn-comments-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text);
}
.hn-comments-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 20px;
}
.hn-comments-note a { color: var(--accent); }
.hn-c {
  list-style: none;
  margin: 0 0 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.025);
  border-left: 2px solid var(--line-strong);
  border-radius: 8px;
  font-size: 14px;
}
.hn-c-d1 { margin-left: 18px; }
.hn-c-d2 { margin-left: 36px; }
.hn-c-d3 { margin-left: 54px; }
.hn-c-d4 { margin-left: 72px; }
.hn-c-d5 { margin-left: 90px; }
.hn-c-head {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.hn-c-by { color: var(--text); }
.hn-c-time { color: var(--muted); }
.hn-c-time:hover { color: var(--accent); }
.hn-c p { margin: 0 0 6px; line-height: 1.7; color: var(--text); }

/* pagination */
.pagination {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.pagination a {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
}
.pagination a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.pagination > span { display: inline-block; min-width: 1px; }

.pg-info {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 60px;
}

.back { margin: 36px 0; font-family: var(--font-mono); font-size: 13px; }
.back a { color: var(--accent); }

/* static page body */
.static-content { color: var(--text); line-height: 1.85; }
.static-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 28px 0 12px;
}
.static-content p { margin: 0 0 14px; }
.static-content a { color: var(--accent); }
.static-content ul, .static-content ol { margin: 0 0 14px 22px; }

/* lang switcher in header */
.lang-switch { display: inline-flex; gap: 4px; font-family: var(--font-mono); font-size: 11px; }
.lang-switch a {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.lang-switch a[aria-current="page"] {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}

.tag-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text);
  background: var(--accent-soft);
  border-radius: 999px;
}
.news-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}
.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* live-feed item link */
.live-feed a { color: inherit; }
.live-feed a:hover { color: var(--accent); }

/* ---------- X live feed (hero 下の横スクロール) ---------- */
.x-feed {
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(20, 48, 96, 0.28), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.x-feed-head {
  margin-bottom: 24px;
}
.x-feed-head--sub {
  margin-top: 48px;
  margin-bottom: 18px;
}
.section-title--sm { font-size: 22px; line-height: 1.25; }
.x-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 22px;
  margin: -6px -6px 0;
  scrollbar-width: none;
}
.x-track::-webkit-scrollbar { display: none; }
.x-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 14px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  min-height: 180px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.x-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 169, 255, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(90, 169, 255, 0.18);
}
.x-card-head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
}
.x-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  object-fit: cover;
}
.x-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.x-meta strong {
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-handle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--faint);
  white-space: nowrap;
}
.x-text {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.x-stats {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.x-card--partner {
  border-color: rgba(90, 169, 255, 0.2);
}

/* ============ 火星への道のり (Mars hub + reports) ============ */
/* hub ページだけ mars 背景を敷く。可読性のため暗いグラデーションを重ねる。 */
.page-mars-hub {
  background:
    linear-gradient(180deg, rgba(4, 6, 12, 0.78) 0%, rgba(4, 6, 12, 0.9) 55%, rgba(4, 6, 12, 0.97) 100%),
    url("/assets/mars-bg.webp") center top / cover no-repeat fixed,
    var(--bg);
}
@media (max-width: 640px) {
  /* モバイルでは background-attachment: fixed が不安定なため固定しない */
  .page-mars-hub {
    background:
      linear-gradient(180deg, rgba(4, 6, 12, 0.78) 0%, rgba(4, 6, 12, 0.92) 60%, rgba(4, 6, 12, 0.98) 100%),
      url("/assets/mars-bg.webp") center top / cover no-repeat,
      var(--bg);
  }
  /* brand marquee はリンクの無い装飾帯。スマホではさらに小さく主張を抑える */
  .brands { padding: 7px 0; }
  .marquee span { font-size: 10px; letter-spacing: 0.18em; padding: 0 15px; }
}
.mars-h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 18px;
  letter-spacing: 0.01em;
}
.mars-roadmap .mars-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.mars-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line-strong);
}
.mars-stage {
  position: relative;
  padding: 0 0 22px 32px;
}
.mars-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--panel-solid);
  border: 2px solid var(--faint);
}
.mars-stage--done::before { border-color: var(--accent); background: var(--accent); }
.mars-stage--in-progress::before { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.mars-stage-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.mars-stage-status {
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--faint);
}
.mars-stage--in-progress .mars-stage-status { color: var(--accent); border-color: var(--accent); }
.mars-stage--done .mars-stage-status { color: var(--accent-strong); }
.mars-stage-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.mars-stage-summary { color: var(--text); font-size: 14px; line-height: 1.7; margin: 0; }
.mars-stage-detail { color: var(--muted); font-size: 13.5px; line-height: 1.8; margin: 8px 0 0; }
.mars-stage-sources {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--faint);
}
.mars-stage-sources-label { color: var(--faint); margin-right: 4px; }
.mars-stage-sources a { color: var(--accent); word-break: break-word; }
.mars-stage-sources a:hover { color: var(--accent-strong); }
.mars-stage-sources-sep { color: var(--line-strong); }
.mars-stage-count { font-size: 12px; color: var(--accent); margin: 8px 0 0; }

.mars-report-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mars-report-card a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.mars-report-card a:hover { border-color: var(--accent); transform: translateY(-2px); }
.mars-report-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.mars-report-tag {
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.mars-report-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.mars-report-headline { color: var(--muted); font-size: 13.5px; margin: 6px 0 0; }

.mars-sources { margin: 36px 0; }
.mars-sources-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 16px 0 6px;
}
.mars-sources-list { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13.5px; line-height: 1.8; }
.mars-sources-list a { color: var(--accent); word-break: break-all; }
.mars-disclaimer {
  margin: 28px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--line-strong);
  background: var(--panel);
  color: var(--faint);
  font-size: 12.5px;
  line-height: 1.7;
}
