:root {
  color-scheme: dark;
  --bg: #0b1020;
  --panel: rgba(20, 29, 47, 0.88);
  --panel-strong: #151d30;
  --text: #f5f7fb;
  --muted: #a8b2c7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #8bb7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(111, 137, 255, 0.22), transparent 32%),
    radial-gradient(circle at top left, rgba(67, 192, 255, 0.14), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue",
    sans-serif;
}

.app-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
}

.hero {
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: 30px;
}

.hero-copy {
  color: var(--muted);
  margin-bottom: 0;
}

.card,
.brief-row,
.detail-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.latest-card {
  border-radius: 24px;
  padding: 18px;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.latest-card h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.summary {
  color: var(--muted);
  line-height: 1.6;
}

.meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.section {
  margin-top: 24px;
}

.section-heading h2 {
  font-size: 18px;
}

.brief-list {
  display: grid;
  gap: 10px;
}

.brief-row {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  color: inherit;
  text-align: left;
}

.brief-time {
  display: grid;
  align-content: start;
  gap: 4px;
}

.brief-time strong {
  font-size: 16px;
}

.brief-time span {
  color: var(--muted);
  font-size: 12px;
}

.brief-copy h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.brief-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-panel {
  margin-top: 20px;
  padding: 18px;
  border-radius: 24px;
}

.hidden {
  display: none;
}

.detail-section + .detail-section {
  margin-top: 18px;
}

.detail-section h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.actor-card {
  padding: 12px;
  border-radius: 16px;
  background: var(--panel-strong);
}

.actor-card + .actor-card {
  margin-top: 10px;
}

.actor-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.actor-heading span:last-child {
  color: var(--muted);
}

button {
  cursor: pointer;
}

