:root {
  --bg: #05080f;
  --bg-soft: #0a1120;
  --panel: rgba(10, 18, 32, 0.62);
  --panel-border: rgba(147, 199, 255, 0.24);
  --text-main: #ecf7ff;
  --text-soft: #a8bfd7;
  --accent-a: #77d0ff;
  --accent-b: #3fffba;
  --accent-c: #89a8ff;
  --shadow: 0 24px 80px rgba(0, 14, 44, 0.58);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 18% 0%, #101f3c 0%, transparent 30%),
    radial-gradient(circle at 85% 14%, #10293b 0%, transparent 24%),
    linear-gradient(170deg, #04070d 0%, #070c17 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  z-index: -2;
  filter: blur(72px);
  opacity: 0.45;
  border-radius: 999px;
  pointer-events: none;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: -110px;
  top: 120px;
  background: #53a8ff;
}

.orb-b {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: 80px;
  background: #3cffcf;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.25) 0.6px, transparent 0.6px);
  background-size: 2px 2px;
}

.site-header {
  width: min(1180px, 92vw);
  margin: 1.4rem auto 0;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(5, 10, 19, 0.72);
  border: 1px solid rgba(142, 180, 223, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0.9rem;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text-main);
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(160deg, #82d0ff, #45ffc0);
  color: #031127;
  box-shadow: 0 8px 28px rgba(45, 163, 255, 0.35);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.25px;
}

.nav-links {
  display: inline-flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.22s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.header-cta {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #031127;
  background: linear-gradient(140deg, var(--accent-a), var(--accent-b));
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

main {
  width: min(1180px, 92vw);
  margin: 2.4rem auto 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent-a);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  letter-spacing: -0.4px;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
}

h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.lead {
  margin-top: 1rem;
  color: var(--text-soft);
  max-width: 56ch;
  font-size: 1.05rem;
}

.ceo-line {
  margin-top: 1rem;
  font-size: 0.97rem;
  color: #cde5f7;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #031127;
  background: linear-gradient(145deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 10px 28px rgba(66, 219, 255, 0.3);
}

.btn-ghost {
  color: #d8efff;
  background: transparent;
  border: 1px solid rgba(126, 180, 236, 0.32);
}

.metrics-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  padding: 0.8rem 0.95rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.metric-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.metric-value {
  display: block;
  margin-top: 0.34rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(120, 181, 241, 0.35);
  box-shadow: 0 26px 90px rgba(7, 23, 51, 0.7);
}

.section {
  margin-top: 5.2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.content p {
  color: var(--text-soft);
  margin-top: 0.85rem;
  max-width: 62ch;
}

.image-wrap img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(138, 187, 238, 0.28);
}

.section-heading {
  max-width: 72ch;
}

.cards-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(12, 22, 37, 0.82), rgba(8, 14, 26, 0.76));
  border: 1px solid rgba(145, 194, 246, 0.22);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.chart-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.chart-card {
  background: rgba(6, 12, 25, 0.85);
  border: 1px solid rgba(138, 193, 245, 0.22);
  border-radius: 14px;
  padding: 1rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(127, 172, 223, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 172, 223, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
}

.chart-svg {
  width: 100%;
  height: 180px;
  position: relative;
  z-index: 1;
}

.chart-svg polyline {
  fill: none;
  stroke: url(#lineGlow);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(78, 235, 255, 0.55));
  animation: draw 2.8s ease-out forwards;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-section {
  background: linear-gradient(170deg, rgba(13, 23, 41, 0.87), rgba(9, 16, 29, 0.9));
  border: 1px solid rgba(143, 192, 242, 0.25);
  border-radius: 14px;
  padding: 1.6rem;
}

.contact-text {
  color: var(--text-soft);
  margin: 0.75rem 0 1.2rem;
}

.contact-text a {
  color: #d4f2ff;
}

.footer-nav {
  width: 100%;
  flex-basis: 100%;
  margin-bottom: 0.2rem;
}

.footer-nav a {
  color: var(--accent-a);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.site-footer {
  width: min(1180px, 92vw);
  margin: 2.4rem auto 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(144, 189, 235, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.disclaimer {
  max-width: 58ch;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 {
  transition-delay: 0.11s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 980px) {
  .site-header {
    width: min(1180px, 95vw);
    top: 0.45rem;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .two-col,
  .chart-section {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .image-wrap img {
    min-height: 280px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer {
    text-align: left;
  }
}

/* --- Data coverage dashboard --- */
.dc-page main.dc-main {
  margin-top: 1.6rem;
  padding-bottom: 3rem;
}

.dc-header.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 20;
}

.dc-hero {
  max-width: 72ch;
}

.dc-lead {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.dc-meta {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: #9eb6cc;
}

.dc-meta-sep {
  margin: 0 0.4rem;
  opacity: 0.6;
}

.dc-code {
  font-size: 0.82em;
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
  background: rgba(8, 16, 30, 0.9);
  border: 1px solid rgba(120, 170, 220, 0.22);
  color: #d4e9fb;
  word-break: break-all;
}

.dc-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(180, 40, 50, 0.18);
  border: 1px solid rgba(255, 120, 130, 0.35);
  color: #ffc9cd;
  font-size: 0.92rem;
}

.dc-summary {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.dc-stat {
  padding: 1rem 1rem 1.05rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.dc-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 600;
}

.dc-stat-value {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dc-stat-value--sm {
  font-size: 1.15rem;
  font-weight: 700;
}

.dc-panel {
  margin-top: 1.25rem;
  background: rgba(6, 12, 24, 0.55);
  border: 1px solid rgba(130, 180, 235, 0.2);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.dc-filters {
  position: sticky;
  top: 5.5rem;
  z-index: 15;
  backdrop-filter: blur(10px);
}

.dc-filters-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: flex-end;
}

.dc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 8rem;
}

.dc-field--grow {
  flex: 1 1 12rem;
  min-width: 10rem;
}

.dc-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.dc-input {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(120, 175, 230, 0.28);
  background: rgba(4, 10, 22, 0.85);
  color: var(--text-main);
}

.dc-input:focus {
  outline: none;
  border-color: rgba(119, 208, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(119, 208, 255, 0.25);
}

.dc-filters-hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #7a93ab;
}

.dc-table-wrap {
  padding: 0;
  overflow: hidden;
}

.dc-table-scroll {
  overflow-x: auto;
  max-width: 100%;
}

.dc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.dc-table thead th {
  text-align: left;
  padding: 0.75rem 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 700;
  border-bottom: 1px solid rgba(120, 170, 220, 0.22);
  background: rgba(5, 12, 24, 0.95);
  white-space: nowrap;
}

.dc-th-num {
  text-align: right;
}

.dc-th-narrow {
  width: 1.5rem;
}

.dc-table tbody td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(80, 110, 150, 0.18);
  vertical-align: middle;
}

.dc-table tbody tr:hover td {
  background: rgba(20, 36, 58, 0.35);
}

.dc-mono {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.86em;
}

.dc-symbol {
  font-weight: 700;
  color: #e8f4ff;
}

.dc-muted {
  color: #8aa4bd;
  font-size: 0.86rem;
}

.dc-range {
  white-space: nowrap;
  color: #c5dce8;
  font-size: 0.86rem;
}

.dc-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.dc-val-summary {
  font-size: 0.82rem;
  color: #b8cfe0;
  max-width: 12rem;
}

.dc-td-health {
  width: 1.25rem;
  padding-left: 0.6rem !important;
  padding-right: 0.3rem !important;
}

.dc-health {
  display: inline-block;
  width: 0.55rem;
  height: 1.65rem;
  border-radius: 4px;
  background: rgba(100, 120, 140, 0.5);
}

.dc-health--good {
  background: linear-gradient(180deg, #3fffba, #2aa87a);
  box-shadow: 0 0 12px rgba(63, 255, 186, 0.35);
}

.dc-health--warn {
  background: linear-gradient(180deg, #ffd077, #c98a2a);
  box-shadow: 0 0 10px rgba(255, 200, 100, 0.25);
}

.dc-health--bad {
  background: linear-gradient(180deg, #ff8a8a, #c43c3c);
  box-shadow: 0 0 12px rgba(255, 100, 100, 0.35);
}

.dc-health--neutral {
  background: linear-gradient(180deg, #8ab4ff, #4a6aaf);
}

.dc-badge {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dc-badge--ok {
  background: rgba(63, 255, 186, 0.12);
  color: #9fffdb;
  border: 1px solid rgba(63, 255, 186, 0.35);
}

.dc-badge--gap {
  background: rgba(255, 200, 100, 0.12);
  color: #ffd699;
  border: 1px solid rgba(255, 200, 100, 0.35);
}

.dc-badge--bad {
  background: rgba(255, 100, 110, 0.14);
  color: #ffb8bc;
  border: 1px solid rgba(255, 100, 110, 0.4);
}

.dc-badge--info {
  background: rgba(120, 170, 255, 0.12);
  color: #b8d4ff;
  border: 1px solid rgba(120, 170, 255, 0.35);
}

.dc-badge--stale {
  background: rgba(180, 140, 255, 0.12);
  color: #dcc8ff;
  border: 1px solid rgba(180, 140, 255, 0.35);
}

.dc-badge--warn {
  background: rgba(255, 170, 90, 0.12);
  color: #ffd0a8;
  border: 1px solid rgba(255, 170, 90, 0.38);
}

.dc-badge--neutral {
  background: rgba(140, 160, 180, 0.15);
  color: #c8d8e8;
  border: 1px solid rgba(140, 160, 180, 0.3);
}

.dc-expand {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(120, 180, 235, 0.35);
  background: rgba(8, 18, 36, 0.9);
  color: var(--accent-a);
  cursor: pointer;
}

.dc-expand:hover {
  border-color: rgba(150, 210, 255, 0.55);
  color: #fff;
}

.dc-expand-cell {
  text-align: right;
  white-space: nowrap;
}

.dc-empty {
  text-align: center;
  padding: 2rem !important;
  color: var(--text-soft);
}

.dc-detail-cell {
  padding: 0 !important;
  border-bottom: 1px solid rgba(100, 140, 190, 0.2) !important;
  background: rgba(4, 10, 20, 0.65);
}

.dc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1.25rem;
  padding: 1.15rem 1.2rem 1.35rem;
}

.dc-detail-h {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #e4f0fa;
}

.dc-detail-p {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin: 0.25rem 0;
  line-height: 1.45;
}

.dc-notes,
.dc-issues {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  color: #b5cad8;
  font-size: 0.84rem;
}

.dc-issues li {
  margin: 0.25rem 0;
}

.dc-issue-type {
  color: #ffcc9e;
  font-weight: 600;
}

.dc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.dc-chip {
  font-size: 0.78rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(30, 50, 80, 0.6);
  border: 1px solid rgba(100, 140, 190, 0.25);
  font-family: ui-monospace, monospace;
}

@media (max-width: 1100px) {
  .dc-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dc-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .dc-filters {
    position: static;
  }

  .dc-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
