:root {
  color-scheme: light;
  --ink: #1a1e2e;
  --muted: #657087;
  --line: #d9dde8;
  --paper: #f7f3ec;
  --panel: #ffffff;
  --panel-warm: #fffaf2;
  --mint: #e8f4ec;
  --teal: #08746f;
  --deep: #15172a;
  --amber: #d88922;
  --red: #c43e4d;
  --blue: #315c9b;
  --violet: #5b4ca0;
  --shadow: 0 18px 45px rgba(21, 23, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.92), rgba(238, 243, 240, 0.95)),
    repeating-linear-gradient(135deg, rgba(21, 23, 42, 0.035) 0 1px, transparent 1px 18px);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--deep);
  color: white;
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 1.1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--red), var(--amber), var(--teal), var(--violet), var(--red));
  box-shadow: 0 0 0 5px rgba(196, 62, 77, 0.12);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  text-decoration: none;
}

.ticker {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: white;
  background: linear-gradient(90deg, var(--deep), #243b61 48%, #0f5c58);
  padding: 0.42rem max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.ticker span {
  flex: 0 0 auto;
  color: #ffd994;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1180px;
  min-height: auto;
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.8rem) 1.25rem 1.4rem;
}

.hero,
section {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 1.25rem auto;
  height: 5px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal), var(--blue));
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0.8rem 0;
}

.hero-actions,
.metric-grid,
.hero-stat-grid,
.news-list,
.guidance-grid,
.automation-grid {
  display: grid;
  gap: 1rem;
}

.hero-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0.9rem 0;
}

.hero-stat-grid article {
  border: 1px solid rgba(21, 23, 42, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--panel-warm));
  padding: 0.75rem;
  box-shadow: 0 14px 34px rgba(11, 49, 47, 0.08);
}

.hero-stat-grid span,
.hero-stat-grid small {
  color: var(--muted);
}

.hero-stat-grid span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-stat-grid strong {
  display: block;
  margin: 0.35rem 0 0.2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.hero-stat-grid article:nth-child(1) strong {
  color: var(--blue);
}

.hero-stat-grid article:nth-child(2) strong {
  color: var(--teal);
}

.hero-stat-grid article:nth-child(3) strong {
  color: var(--red);
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin: 0.9rem 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(21, 23, 42, 0.18);
  border-radius: 6px;
  padding: 0.58rem 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--deep), var(--blue));
}

.button.secondary {
  background: transparent;
  color: var(--deep);
}

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

.verification div,
.metric-card,
.region-table,
.update-card,
.guidance-grid article,
.faq-item,
.automation-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(21, 23, 42, 0.055);
}

.verification div {
  padding: 0.65rem;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
}

dd {
  margin: 0.25rem 0 0;
  font-weight: 850;
}

.map-panel {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(11, 49, 47, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 23, 42, 0.72), rgba(196, 62, 77, 0.18), rgba(8, 116, 111, 0.28)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Equirectangular_projection_SW.jpg/1280px-Equirectangular_projection_SW.jpg") center / cover;
  box-shadow: var(--shadow);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.13) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 78px);
  opacity: 0.42;
}

.hotspot,
.route {
  position: absolute;
  z-index: 1;
}

.hotspot {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffdf7a;
  box-shadow: 0 0 0 10px rgba(255, 223, 122, 0.22), 0 0 32px rgba(255, 223, 122, 0.9);
}

.south-america {
  left: 36%;
  top: 65%;
}

.atlantic {
  left: 50%;
  top: 52%;
  background: #ff8b72;
  box-shadow: 0 0 0 10px rgba(255, 139, 114, 0.22), 0 0 32px rgba(255, 139, 114, 0.9);
}

.europe {
  left: 56%;
  top: 32%;
}

.route {
  left: 38%;
  top: 35%;
  width: 22%;
  height: 30%;
  border-top: 2px dashed rgba(255, 255, 255, 0.75);
  border-right: 2px dashed rgba(255, 255, 255, 0.75);
  transform: rotate(-14deg);
}

.map-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 27, 25, 0.74);
  padding: 0.75rem;
  backdrop-filter: blur(10px);
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

section {
  padding: clamp(1.7rem, 3.6vw, 3rem) max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.1rem;
}

.section-heading p:not(.eyebrow),
.split-section p,
.guidance-grid p,
.automation-grid p,
.update-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.93rem;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-card {
  padding: 0.8rem;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.metric-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--red), var(--amber));
}

.metric-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--violet), var(--blue));
}

.metric-card strong {
  display: block;
  margin: 0.35rem 0 0.15rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.metric-card span,
.source-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}

.source-note {
  border-left: 4px solid var(--teal);
  background: #eaf5f0;
  padding: 0.65rem 0.8rem;
}

.region-table {
  padding: 0.8rem;
}

.region-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}

.region-row:first-of-type {
  border-top: 0;
}

.pill {
  align-self: start;
  border-radius: 999px;
  background: #f4e6d4;
  color: var(--deep);
  padding: 0.25rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.update-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.update-card,
.news-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 0.45rem;
  padding: 0.8rem;
  min-width: 0;
  overflow: hidden;
}

.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(21, 23, 42, 0.055);
}

.update-card h3,
.news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.update-card p,
.news-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
}

.automation-grid p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.update-card h3 a,
.news-card h3 a {
  color: var(--deep);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.read-more {
  justify-self: start;
  align-self: end;
  border-radius: 999px;
  background: #f4e6d4;
  color: var(--deep);
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.read-more:hover,
.read-more:focus-visible {
  background: var(--deep);
  color: white;
}

.meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: none;
  padding: 0.2rem 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), var(--amber), var(--teal), var(--blue));
  transform: translateX(-50%);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 0.7rem;
  width: calc(50% - 1.35rem);
  margin: 0.15rem 0 0.15rem auto;
  border: 1px solid rgba(21, 23, 42, 0.08);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.72rem;
  box-shadow: var(--shadow);
}

.timeline li:nth-child(even) {
  margin-left: 0;
  margin-right: auto;
  border-top-color: var(--blue);
}

.timeline li:nth-child(1),
.timeline li:nth-child(2) {
  border-top-color: var(--red);
}

.timeline li:nth-child(3),
.timeline li:nth-child(4) {
  border-top-color: var(--amber);
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -1.75rem;
  width: 13px;
  aspect-ratio: 1;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 116, 111, 0.2);
}

.timeline li:nth-child(even)::before {
  right: -1.75rem;
  left: auto;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 92, 155, 0.2);
}

.timeline li:nth-child(1)::before,
.timeline li:nth-child(2)::before {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 62, 77, 0.2);
}

.timeline li:nth-child(3)::before,
.timeline li:nth-child(4)::before {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(216, 137, 34, 0.2);
}

.timeline time {
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.guidance-grid,
.automation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.guidance-grid article,
.automation-grid article,
.faq-item {
  padding: 0.75rem;
}

.automation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 900px;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  color: white;
  background: linear-gradient(135deg, var(--deep), #243b61);
}

.site-footer a {
  color: #a8e8cd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legal-page {
  padding: clamp(1.5rem, 4vw, 3rem) 1.25rem;
}

.legal-document {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: none;
}

.legal-document h2 {
  margin-top: 1.4rem;
  font-size: 1.25rem;
}

.legal-document p {
  color: var(--muted);
  line-height: 1.55;
}

.sitemap-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 1.2rem;
  padding-left: 1.2rem;
}

.sitemap-list a {
  color: var(--deep);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .metric-grid,
  .update-list,
  .news-list,
  .guidance-grid,
  .automation-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 0.45rem;
  }

  .timeline li,
  .timeline li:nth-child(even) {
    width: auto;
    margin: 0.2rem 0 0.2rem 1.7rem;
  }

  .timeline li::before,
  .timeline li:nth-child(even)::before {
    left: -1.75rem;
    right: auto;
  }

  .map-panel {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  nav,
  .site-footer,
  .ticker,
  .verification,
  .hero-stat-grid,
  .hero-actions,
  .timeline li {
    grid-template-columns: 1fr;
  }

  nav,
  .site-footer,
  .ticker {
    display: grid;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}
