:root {
  color-scheme: light;
  --navy-950: #102a43;
  --navy-900: #173f68;
  --navy-800: #1f527f;
  --blue-700: #1f67a3;
  --blue-100: #eaf4fc;
  --ink: #172033;
  --muted: #52657a;
  --line: #d5e0ea;
  --surface: #ffffff;
  --page: #f3f7fb;
  --amber-800: #8a4b08;
  --amber-100: #fff6df;
  --green-800: #19633b;
  --green-100: #eaf8ef;
  --red-800: #982c2c;
  --red-100: #fff0f0;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-950);
}

a:focus-visible {
  outline: 3px solid #79b8e8;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: 0.65rem 1rem;
  background: var(--surface);
  color: var(--navy-950);
  border-radius: 0.4rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--navy-950);
  color: #ffffff;
}

.header-inner {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.section-label {
  color: #b9dcf4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(121, 184, 232, 0.19), transparent 32rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
  color: #ffffff;
  padding: 5.5rem 0 6.5rem;
}

.hero-inner,
.article {
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #b9dcf4;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  letter-spacing: -0.035em;
}

.dek {
  max-width: 790px;
  margin: 1.5rem 0 0;
  color: #e6f1f8;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.3rem;
  margin-top: 2rem;
  color: #cbddeb;
  font-size: 0.88rem;
}

.article {
  position: relative;
  margin-top: -3.2rem;
  margin-bottom: 5rem;
  padding: clamp(2rem, 5vw, 4.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.article > * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.finding {
  max-width: 820px;
  margin-bottom: 3.5rem;
  padding: 1.65rem 1.8rem;
  background: var(--blue-100);
  border-left: 5px solid var(--blue-700);
  border-radius: 0 0.7rem 0.7rem 0;
}

.finding h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.finding p:last-child,
.incident p:last-child,
.contrast p:last-child,
.bottom-line p:last-child {
  margin-bottom: 0;
}

h2 {
  margin-top: 3.6rem;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
}

h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

p {
  margin: 0 0 1.15rem;
}

.incident-list {
  max-width: 820px;
  display: grid;
  gap: 1.2rem;
}

.incident {
  padding: 1.65rem 1.75rem;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.incident p {
  font-size: 0.98rem;
}

.assessment {
  display: inline-block;
  margin-right: 0.22rem;
  padding: 0.08rem 0.48rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.assessment.unknown {
  background: var(--amber-100);
  color: var(--amber-800);
}

.assessment.operational {
  background: var(--green-100);
  color: var(--green-800);
}

.source-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
}

.contrast {
  max-width: 820px;
  margin-top: 3.5rem;
  padding: 1.8rem;
  background: var(--red-100);
  border: 1px solid #f1b4b4;
  border-radius: 0.8rem;
}

.contrast h2 {
  margin-top: 0;
  color: var(--red-800);
  font-size: 1.7rem;
}

ul,
ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.68rem;
  padding-left: 0.2rem;
}

.bottom-line {
  max-width: 820px;
  margin-top: 3.5rem;
  padding: 1.7rem 1.8rem;
  background: var(--navy-950);
  color: #ffffff;
  border-radius: 0.8rem;
}

.bottom-line h2 {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.55rem;
}

.site-footer {
  padding: 2rem 1.25rem 3.5rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    width: min(100% - 1.5rem, 1160px);
    min-height: 62px;
  }

  .section-label {
    display: none;
  }

  .hero {
    padding: 3.7rem 0 5.2rem;
  }

  .hero-inner,
  .article {
    width: min(100% - 1.25rem, 980px);
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .article {
    margin-top: -2.2rem;
    margin-bottom: 2.5rem;
    padding: 1.45rem 1.05rem 2rem;
    border-radius: 0.8rem;
  }

  .finding,
  .incident,
  .contrast,
  .bottom-line {
    padding: 1.3rem 1.15rem;
  }

  h2 {
    margin-top: 3rem;
  }
}

