/* ========== RESET & BASE ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-black: #0a0a0a;
  --bg-dark: #141414;
  --bg-light: #fafafa;
  --bg-cream: #f4f1ea;
  --text-light: #f5f5f5;
  --text-dim: #a8a8a8;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --red: #d81e1e;
  --red-bright: #ff2a2a;
  --red-dark: #9c0000;
  --yellow: #ffd84d;
  --border-light: #e5e5e5;
  --border-dark: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans TC', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }


/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: flex;
  gap: 1px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--red);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.lang-switcher a {
  display: inline-block;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background-color 0.15s, color 0.15s;
  font-family: 'Noto Sans TC', sans-serif;
}

.lang-switcher a:hover {
  background: rgba(216, 30, 30, 0.4);
}

.lang-switcher a.lang-current {
  background: var(--red);
  color: #fff;
  cursor: default;
}

@media (max-width: 520px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
  }
  .lang-switcher a {
    padding: 6px 10px;
    font-size: 12px;
  }
}


/* ========== HERO ========== */
.hero {
  background: var(--bg-black);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(216, 30, 30, 0.025) 80px,
    rgba(216, 30, 30, 0.025) 82px
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red-bright);
  border: 1px solid var(--red);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Noto Serif TC', 'Noto Sans TC', serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.big-number {
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: var(--red-bright);
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(255, 42, 42, 0.3);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.big-number small {
  font-size: 0.5em;
  margin-left: 0.1em;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-light);
}

.hero-statement {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 720px;
}

.hero-statement strong {
  color: var(--yellow);
  font-weight: 700;
}

.three-voices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .three-voices {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.voice {
  border: 1px solid var(--border-dark);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-left-width: 4px;
}

.voice-fact {
  border-left-color: #6ad26a;
}

.voice-lie {
  border-left-color: var(--red-bright);
  background: rgba(216, 30, 30, 0.08);
}

.voice-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.voice-fact .voice-label {
  color: #6ad26a;
}

.voice-lie .voice-label {
  color: var(--red-bright);
}

.voice-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.hero-hook {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  padding: 22px 24px;
  background: var(--red-dark);
  border-left: 4px solid var(--yellow);
  margin-bottom: 48px;
  color: #fff;
}

.hero-hook strong {
  color: var(--yellow);
  font-weight: 700;
}

.scroll-cue {
  display: inline-block;
  font-size: 15px;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dim);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.scroll-cue:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
}


/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-action {
  background: var(--bg-black);
  color: var(--text-light);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.section-title {
  font-family: 'Noto Serif TC', 'Noto Sans TC', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-light .section-title {
  border-left: 6px solid var(--red);
  padding-left: 16px;
}

.section-dark .section-title::before,
.section-action .section-title::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red-bright);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 720px;
  color: inherit;
  opacity: 0.85;
}


/* ========== STAKES ========== */
.stakes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .stakes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stake {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  padding: 28px;
  position: relative;
}

.stake-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.stake h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.stake p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-dim);
}

.stake strong {
  color: var(--text-light);
  font-weight: 700;
}


/* ========== COMPARE (LIES VS FACTS) ========== */
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
  background: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-side {
  padding: 28px 28px 32px;
}

.compare-side.lie {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.compare-side.fact {
  background: #fdf5f5;
}

@media (min-width: 768px) {
  .compare-side.lie {
    border-bottom: none;
    border-right: 1px solid var(--border-light);
  }
}

.compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.compare-side.lie .compare-label {
  color: var(--text-gray);
}

.compare-side.fact .compare-label {
  color: var(--red);
}

.compare blockquote {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  border-left: 3px solid #bbb;
  padding-left: 16px;
  margin-bottom: 16px;
  font-style: italic;
}

.compare-side.fact p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.compare-side.fact p strong {
  color: var(--red-dark);
  background: rgba(216, 30, 30, 0.08);
  padding: 0 2px;
  font-weight: 700;
}

.compare-sub {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 12px;
  font-style: italic;
}


/* ========== SOURCE LINK ========== */
.source-link {
  display: inline-block;
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  margin-top: 8px;
  margin-right: 12px;
  border-bottom: 1px dotted var(--red);
  padding-bottom: 1px;
}

.source-link:hover {
  background: var(--red);
  color: #fff;
  border-bottom-color: transparent;
}

.section-dark .source-link,
.section-action .source-link {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.section-dark .source-link:hover,
.section-action .source-link:hover {
  background: var(--yellow);
  color: var(--bg-black);
}


/* ========== TIMELINE ========== */
.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-dark);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 140px;
  }
}

.t-item {
  position: relative;
  padding: 0 0 36px 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 768px) {
  .t-item {
    grid-template-columns: 140px 1fr;
    padding-left: 0;
    gap: 32px;
  }
}

.t-item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--text-dim);
  z-index: 1;
}

@media (min-width: 768px) {
  .t-item::before {
    left: 134px;
  }
}

.t-item-highlight::before {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(255, 42, 42, 0.2);
}

.t-item-alert::before {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.2);
}

.t-date {
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  padding-top: 2px;
}

@media (min-width: 768px) {
  .t-date {
    text-align: right;
    padding-right: 36px;
    padding-top: 4px;
  }
}

.t-item-highlight .t-date {
  color: var(--red-bright);
}

.t-item-alert .t-date {
  color: var(--yellow);
}

.t-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.45;
}

.t-item-alert .t-body h3 {
  color: var(--yellow);
}

.t-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.t-body p strong {
  color: var(--text-light);
}

.t-note {
  background: rgba(216, 30, 30, 0.12);
  border-left: 3px solid var(--red-bright);
  padding: 10px 14px;
  font-size: 14px !important;
  margin-top: 10px !important;
  color: var(--text-light) !important;
}

.t-note strong {
  color: var(--yellow) !important;
}

.judgment-quote {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--red-bright);
  padding: 16px 20px;
  margin: 14px 0;
  font-style: italic;
}


/* ========== LAW ========== */
.law-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .law-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.law-card {
  background: #fff;
  padding: 26px 28px;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--text-dark);
}

.law-card-verdict {
  border-top-color: var(--red);
  background: #fdf5f5;
  grid-column: 1 / -1;
}

.law-header {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.law-card-verdict .law-header {
  color: var(--red);
  font-size: 18px;
}

.law-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-gray);
}

.law-body strong {
  color: var(--text-dark);
  font-weight: 700;
  background: rgba(255, 216, 77, 0.4);
  padding: 0 2px;
}

.law-card-verdict .law-body strong {
  color: var(--red-dark);
  background: rgba(216, 30, 30, 0.12);
}


/* ========== EVIDENCE (DETAILS) ========== */
.evidence-detail {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  margin-bottom: 14px;
}

.evidence-detail summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-light);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.evidence-detail summary::-webkit-details-marker {
  display: none;
}

.evidence-detail summary::before {
  content: '+';
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--red-bright);
  color: var(--red-bright);
  text-align: center;
  line-height: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.evidence-detail[open] summary::before {
  content: '−';
  transform: rotate(180deg);
}

.evidence-detail[open] summary {
  border-bottom: 1px solid var(--border-dark);
  color: var(--red-bright);
}

.evidence-body {
  padding: 24px 28px 28px;
}

.evidence-body p,
.evidence-body li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.evidence-body p strong {
  color: var(--text-light);
}

.evidence-body ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.evidence-body code {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  padding: 2px 6px;
  border-radius: 2px;
}

.channel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.channel-table th,
.channel-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--border-dark);
  font-size: 14px;
  line-height: 1.6;
}

.channel-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-weight: 700;
}

.channel-table td {
  color: var(--text-dim);
}

.channel-table td:first-child {
  color: var(--text-light);
  font-weight: 700;
  width: 32%;
}


/* ========== ACTIONS ========== */
.actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .actions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.action-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  padding: 28px 28px 30px;
  position: relative;
}

/* ========== WHY CHANGE ID (light section) ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

.why-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--red);
  padding: 26px 28px 28px;
  position: relative;
}

.why-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.45;
}

.why-card p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.why-card p:last-child {
  margin-bottom: 0;
}

.why-card p strong {
  color: var(--red-dark);
  background: rgba(216, 30, 30, 0.08);
  padding: 0 2px;
  font-weight: 700;
}

.action-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}

.action-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.action-card p,
.action-card li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.action-card p strong {
  color: var(--yellow);
  font-weight: 700;
}

.action-card ul {
  padding-left: 20px;
}

.action-card ul li {
  margin-bottom: 8px;
}

.action-card a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.action-card a:hover {
  background: var(--yellow);
  color: var(--bg-black);
  text-decoration: none;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.share-btn {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s;
}

.share-btn:hover {
  background: var(--yellow);
  color: var(--bg-black);
}


/* ========== SOURCES ========== */
.sources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .sources-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.source-group h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
}

.source-group ul {
  list-style: none;
  padding: 0;
}

.source-group li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.source-group li::before {
  content: '↗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.source-group a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px dotted var(--text-gray);
}

.source-group a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}


/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-black);
  color: var(--text-dim);
  padding: 50px 0 60px;
  border-top: 1px solid var(--border-dark);
}

.site-footer p {
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 12px;
}

.footer-update {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
}


/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ========== RESPONSIVE POLISH ========== */
@media (max-width: 520px) {
  .hero { padding: 60px 20px 40px; min-height: auto; }
  .section { padding: 60px 0; }
  .hero-hook { padding: 18px 20px; }
  .stake, .compare-side, .law-card, .action-card { padding: 22px 20px; }
  .evidence-body { padding: 20px 20px 24px; }
}
