:root {
  --bg: #0f1015;
  --bg-soft: #151822;
  --bg-card: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f7f2ea;
  --muted: #b5b9c4;
  --ember: #e53935;
  --flame: #ff6a00;
  --gold: #ffb347;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.16), transparent 22%),
    radial-gradient(circle at 70% 15%, rgba(229, 57, 53, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.1), transparent 26%),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar,
.section,
.contact-panel,
.legacy-panel {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(15, 16, 21, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 30px rgba(229, 57, 53, 0.14);
}

.brand-name {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.toolbar,
.cta-row,
.microproof,
.coverage-layout,
.trust-grid,
.steps,
.faq-list {
  display: flex;
  gap: 12px;
}

.toolbar {
  align-items: center;
  flex-wrap: wrap;
}

.chip,
.button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 16px;
  font: inherit;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.chip {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.chip:hover,
.button:hover {
  transform: translateY(-1px);
}

.chip-active {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.18), rgba(255, 106, 0, 0.18));
  border-color: rgba(255, 179, 71, 0.36);
}

.icon-link {
  display: inline-flex;
  align-items: center;
}

.icon-link {
  width: 44px;
  height: 44px;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-link i {
  font-size: 1rem;
  line-height: 1;
  flex: none;
}

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

.icon-link:focus-visible {
  outline: 2px solid rgba(255, 179, 71, 0.5);
  outline-offset: 2px;
}

.lang-toggle {
  padding: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  border-color: transparent;
  color: #140d0a;
  background: linear-gradient(135deg, var(--gold), var(--flame));
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.section {
  padding: 30px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
  padding-top: 22px;
}

.hero-copy h1,
.section-heading h2,
.contact-panel h2,
.legacy-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.section-heading h2,
.contact-panel h2,
.legacy-panel h2,
.coverage-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.lede,
.coverage-copy p,
.legacy-copy p,
.glass-card p,
.step p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.lede {
  max-width: 60ch;
  margin: 18px 0 0;
}

.cta-row {
  flex-wrap: wrap;
  margin-top: 26px;
}

.microproof {
  flex-wrap: wrap;
  margin-top: 18px;
}

.microproof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8dbe2;
  font-size: 0.9rem;
}

.hero-art {
  position: relative;
  min-height: 620px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 179, 71, 0.2), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-soft);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-logo-wrap {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -46%);
  width: min(74%, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.24), rgba(229, 57, 53, 0.02) 62%, transparent 72%);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

.hero-logo {
  width: 84%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 179, 71, 0.18));
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-1 {
  width: 220px;
  height: 220px;
  left: -40px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.16), transparent 70%);
}

.trust-grid {
  flex-wrap: wrap;
}

.glass-card {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.glass-card h3,
.step h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.steps {
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.step-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.legacy-panel,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.12), rgba(255, 106, 0, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.legacy-copy {
  max-width: 56ch;
}

.demo-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 179, 71, 0.18), transparent 26%),
    radial-gradient(circle at 55% 52%, rgba(229, 57, 53, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #12141a;
}

.video-link {
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(0.9) brightness(0.72);
}

.video-glow {
  position: absolute;
  inset: auto auto -10% 50%;
  width: 340px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 68%);
  filter: blur(14px);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 11, 15, 0.24), rgba(10, 11, 15, 0.7));
}

.video-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 16, 21, 0.72);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--flame));
  color: #140d0a;
  font-size: 1.2rem;
  box-shadow: 0 18px 48px rgba(255, 106, 0, 0.28);
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
}

.video-caption {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  align-self: flex-start;
  max-width: 34ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.demo-copy {
  padding: 10px 8px 10px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-copy h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.demo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.demo-copy .cta-row {
  margin-top: 22px;
}

.coverage-layout {
  align-items: stretch;
}

.coverage-copy {
  flex: 1.05;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.coverage-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.coverage-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.coverage-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 170, 51, 0.12);
  border: 1px solid rgba(255, 170, 51, 0.18);
  font-family: "Space Grotesk", sans-serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.coverage-step span {
  color: var(--muted);
  line-height: 1.5;
}

.coverage-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coverage-pill,
.coverage-map {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.coverage-pill {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}

.coverage-pill span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coverage-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
}

.available strong {
  color: #9cf3ba;
}

.limited strong {
  color: var(--gold);
}

.soon strong {
  color: #ffd1a8;
}

.coverage-map {
  grid-column: 1 / -1;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.coverage-map-live {
  background: rgba(255, 255, 255, 0.03);
}

.leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.coverage-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.map-glow {
  position: absolute;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.16), transparent 68%);
  filter: blur(6px);
}

.coverage-radar {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.radar-ring,
.coverage-dot {
  position: absolute;
  border-radius: 999px;
}

.radar-ring {
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.radar-ring-1 {
  width: 88px;
  height: 88px;
}

.radar-ring-2 {
  width: 150px;
  height: 150px;
}

.radar-ring-3 {
  width: 220px;
  height: 220px;
}

.coverage-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--gold), var(--flame));
  box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.1);
}

.dot-br {
  left: 32%;
  bottom: 24%;
}

.dot-latam {
  right: 24%;
  top: 28%;
}

.dot-global {
  left: 58%;
  top: 54%;
}

.coverage-lens {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: end;
  height: 100%;
  padding: 18px;
}

.coverage-lens p {
  position: relative;
  margin: 0;
  font-size: 0.98rem;
}

.coverage-lens ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.coverage-lens li + li {
  margin-top: 6px;
}

.coverage-popup-shell .leaflet-popup-content-wrapper,
.coverage-popup-shell .leaflet-popup-tip {
  background: #11131a;
  color: var(--text);
}

.coverage-popup {
  color: var(--text);
  font-size: 0.95rem;
}

.coverage-popup strong {
  display: inline-block;
  margin-bottom: 4px;
}

.coverage-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.coverage-hero {
  display: grid;
  gap: 18px;
}

.coverage-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.coverage-search-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.coverage-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 16, 21, 0.7);
}

.coverage-tip {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.search-icon {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.coverage-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #cdd2dc;
  font: inherit;
}

.coverage-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.coverage-map-large {
  min-height: 420px;
}

.coverage-map-large .coverage-lens {
  justify-content: space-between;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coverage-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.coverage-card span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coverage-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.coverage-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.coverage-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.location-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.location-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8dbe2;
  font-size: 0.84rem;
  font-weight: 600;
}

.location-children {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.location-child {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.location-child:hover,
.location-child:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 177, 71, 0.35);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.location-child strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.location-child span {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.coverage-cta-block .contact-panel {
  align-items: center;
}

.faq-list {
  flex-direction: column;
}

.faq-item {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 2px;
}

.contact-panel {
  flex-wrap: wrap;
}

.section-heading {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero,
  .coverage-layout,
  .demo-panel,
  .legacy-panel,
  .contact-panel,
  .coverage-dashboard {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-art {
    min-height: 520px;
  }

  .legacy-copy {
    max-width: none;
  }

  .demo-copy {
    padding: 0;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-art {
    min-height: 420px;
  }

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

  .coverage-summary {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-stats {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 300px;
  }

  .leaflet-map {
    border-radius: 18px;
  }

  .video-frame {
    min-height: 300px;
  }

  .video-overlay {
    padding: 18px;
  }

  .video-caption {
    max-width: 28ch;
    font-size: 0.92rem;
  }

  .button,
  .chip {
    width: 100%;
  }

  .cta-row,
  .toolbar {
    width: 100%;
  }

  .toolbar {
    justify-content: stretch;
  }

  .coverage-lens {
    padding: 14px;
  }

  .coverage-radar {
    inset: 12px;
  }

  .coverage-summary {
    grid-template-columns: 1fr;
  }
}
