:root {
  color-scheme: light;
  --ink: #081115;
  --graphite: #101820;
  --muted: #5c6b73;
  --line: #d9e1e5;
  --paper: #ffffff;
  --wash: #f4f7f7;
  --teal: #16c7c2;
  --teal-dark: #087f7b;
  --amber: #d98200;
  --green: #188a42;
  --red: #bc3a36;
  --blue: #2563eb;
  --shadow: 0 22px 70px rgba(8, 17, 21, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-color: rgba(22, 199, 194, 0.55);
  text-underline-offset: 0.2em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 229, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

.brand span:last-child {
  color: var(--teal-dark);
  font-size: 0.86rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314047;
  font-size: 0.93rem;
}

.nav-cta,
.button,
button.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 760;
  font-size: 0.94rem;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.teal {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.hero {
  background: var(--graphite);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 21, 0.92) 0%, rgba(8, 17, 21, 0.72) 38%, rgba(8, 17, 21, 0.2) 72%),
    linear-gradient(180deg, rgba(8, 17, 21, 0.05), rgba(8, 17, 21, 0.45));
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 660px;
  padding: 92px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: 6rem;
  line-height: 0.94;
  max-width: 860px;
}

.article-hero h1 {
  font-size: 4.4rem;
  max-width: 900px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 650px;
}

.verdict {
  margin-top: 34px;
  border: 1px solid rgba(22, 199, 194, 0.8);
  background: rgba(8, 17, 21, 0.66);
  border-radius: 8px;
  padding: 26px;
  max-width: 590px;
}

.verdict strong {
  color: var(--teal);
  display: block;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-strip {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  margin-inline: auto;
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.status-item {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.status-item + .status-item {
  border-left: 1px solid var(--line);
}

.status-icon {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(22, 199, 194, 0.1);
  font-weight: 900;
  font-size: 1.25rem;
}

.status-icon svg {
  width: 24px;
  height: 24px;
}

.status-item:nth-child(2) .status-icon {
  color: var(--amber);
  background: rgba(217, 130, 0, 0.12);
}

.status-item strong {
  display: block;
  margin-bottom: 5px;
}

.status-item span {
  color: var(--muted);
  line-height: 1.45;
}

main {
  overflow: hidden;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section.tight {
  padding-top: 48px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-header p {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

h2 {
  font-size: 3rem;
  line-height: 1.05;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.22;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.decision-card,
.panel,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.decision-card {
  padding: 26px;
}

.decision-card .icon {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--teal-dark);
  background: rgba(22, 199, 194, 0.1);
  margin-bottom: 18px;
}

.decision-card:nth-child(2) .icon {
  color: var(--amber);
  background: rgba(217, 130, 0, 0.12);
}

.decision-card:nth-child(3) .icon {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

.decision-card ul,
.article-body ul {
  padding-left: 1.1rem;
  line-height: 1.75;
}

.quiz-panel {
  color: #fff;
  background: var(--graphite);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.quiz-panel h2 {
  font-size: 2rem;
}

.quiz-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-weight: 720;
  font-size: 0.95rem;
}

select,
input {
  min-height: 44px;
  border: 1px solid rgba(217, 225, 229, 0.35);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font: inherit;
}

select option {
  color: var(--ink);
}

.quiz-result {
  margin-top: 22px;
  border: 1px solid rgba(22, 199, 194, 0.55);
  border-radius: 8px;
  padding: 18px;
  background: rgba(22, 199, 194, 0.09);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

th,
td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--wash);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #41535d;
}

tr:last-child td {
  border-bottom: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
}

.tag.confirmed {
  color: #0d6b32;
  background: rgba(24, 138, 66, 0.13);
}

.tag.reported {
  color: #8b5200;
  background: rgba(217, 130, 0, 0.14);
}

.tag.unknown {
  color: #606a70;
  background: #eef2f3;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: min(420px, calc(100% - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(22, 199, 194, 0.62);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 17, 21, 0.7);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  align-items: start;
}

.article-body {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 86px;
  font-size: 1.05rem;
  line-height: 1.82;
}

.article-layout .article-body {
  width: auto;
  margin: 0;
  padding-top: 0;
}

.article-body > * + * {
  margin-top: 1.25rem;
}

.article-body h2 {
  margin-top: 3.2rem;
}

.article-body h3 {
  margin-top: 2.1rem;
}

.article-body p {
  margin-bottom: 0;
}

.article-body .note {
  border-left: 4px solid var(--teal);
  background: var(--wash);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
}

.sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.sidebar .panel,
.article-card {
  padding: 18px;
}

.toc a {
  display: block;
  padding: 8px 0;
  color: #40515a;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.source-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.source-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.timeline {
  border-left: 3px solid var(--teal);
  padding-left: 26px;
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 24px;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  background: var(--graphite);
  color: #fff;
  padding: 36px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 690px;
  line-height: 1.65;
}

.footer {
  background: var(--graphite);
  color: #fff;
  margin-top: 74px;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 920px) {
  h1 {
    font-size: 4.15rem;
  }

  .article-hero h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: end;
    gap: 12px 16px;
  }

  .hero-inner,
  .media-band,
  .article-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 620px;
  }

  .status-strip,
  .decision-grid,
  .quiz-form {
    grid-template-columns: 1fr;
  }

  .status-item + .status-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    display: grid;
  }

  .nav-links {
    justify-content: start;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-inner {
    min-height: 590px;
    padding-top: 54px;
    padding-bottom: 88px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.02;
    overflow-wrap: normal;
    max-width: 11.5ch;
  }

  .hero-copy,
  .hero p,
  .verdict {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero p,
  .verdict span {
    display: block;
    max-width: 29ch;
  }

  .hero p {
    line-height: 1.55;
  }

  .verdict {
    margin-top: 22px;
    padding: 18px;
  }

  .verdict strong {
    font-size: 1.55rem;
  }

  .article-hero h1,
  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .article-body {
    padding-top: 60px;
  }

  .cta-band {
    display: grid;
  }
}
