:root {
  --watch-bg: #081120;
  --watch-panel: rgba(10, 19, 37, 0.74);
  --watch-panel-strong: rgba(13, 24, 47, 0.92);
  --watch-line: rgba(148, 163, 255, 0.18);
  --watch-text: #eef1ff;
  --watch-muted: #a9b4d6;
  --watch-faint: #6c779d;
  --watch-cyan: #6ee7d1;
  --watch-violet: #a78bfa;
  --watch-peach: #f4a896;
  --watch-blue: #94a3ff;
  --watch-radius: 18px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

body.watch-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(110, 231, 209, 0.14), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(167, 139, 250, 0.16), transparent 34%),
    linear-gradient(180deg, #0d1830 0%, var(--watch-bg) 58%, #050913 100%);
  color: var(--watch-text);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.8;
}

.watch-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.watch-top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 32, 0.76);
  border-bottom: 1px solid var(--watch-line);
}

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

.watch-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--watch-text);
  text-decoration: none;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 19px;
}

.watch-brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.watch-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
}

.watch-nav a {
  flex: none;
  color: var(--watch-muted);
  text-decoration: none;
  font-size: 13px;
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 999px;
}

.watch-nav a.active,
.watch-nav a:hover {
  color: var(--watch-text);
  border-color: var(--watch-line);
  background: rgba(148, 163, 255, 0.08);
}

.watch-hero {
  padding: 76px 0 42px;
}

.watch-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.watch-eyebrow {
  color: var(--watch-cyan);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.28em;
  font-size: 11px;
  margin-bottom: 18px;
}

.watch-hero h1 {
  margin: 0 0 18px;
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.12;
  letter-spacing: 0;
}

.watch-lead {
  max-width: 700px;
  color: var(--watch-muted);
  font-size: 16px;
  margin: 0 0 24px;
}

.watch-hero-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.watch-note {
  border: 1px solid var(--watch-line);
  background: rgba(148, 163, 255, 0.06);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--watch-muted);
  font-size: 13px;
}

.watch-note b {
  display: block;
  color: var(--watch-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.watch-thumb {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--watch-line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.watch-section {
  padding: 38px 0;
}

.watch-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--watch-line);
  padding-bottom: 16px;
}

.watch-section h2 {
  margin: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
}

.watch-status {
  color: var(--watch-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-align: right;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 20px;
}

.watch-card {
  border: 1px solid var(--watch-line);
  background: var(--watch-panel);
  border-radius: var(--watch-radius);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.watch-summary {
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: 18px;
  color: var(--watch-text);
}

.watch-impact {
  color: var(--watch-muted);
  margin-top: 14px;
}

.watch-updates {
  display: grid;
  gap: 12px;
}

.watch-update {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--watch-line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 15px;
  padding: 16px 17px;
}

.watch-update:hover {
  border-color: rgba(110, 231, 209, 0.46);
  background: rgba(110, 231, 209, 0.06);
}

.watch-update-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--watch-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.watch-update h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.55;
}

.watch-update p {
  margin: 0;
  color: var(--watch-muted);
  font-size: 13px;
}

.watch-source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.watch-source {
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--watch-line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 16px;
  padding: 16px;
}

.watch-source img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
}

.watch-source strong {
  display: block;
  margin-bottom: 6px;
}

.watch-source span {
  color: var(--watch-muted);
  font-size: 12px;
  word-break: break-all;
}

.watch-media {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.watch-media a {
  color: var(--watch-text);
  text-decoration: none;
  border: 1px solid var(--watch-line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(148, 163, 255, 0.06);
}

.watch-diagram {
  overflow: hidden;
}

.watch-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.watch-footer {
  border-top: 1px solid var(--watch-line);
  padding: 34px 0 52px;
  color: var(--watch-faint);
  font-size: 13px;
}

.watch-footer a { color: var(--watch-cyan); }

@media (max-width: 860px) {
  .watch-top-inner,
  .watch-section-head {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
  }
  .watch-top-inner { padding: 14px 0; }
  .watch-hero-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }
  .watch-hero-note {
    grid-template-columns: 1fr;
  }
  .watch-status {
    text-align: left;
  }
}
