@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(110, 191, 230, 0.14), transparent 24%), radial-gradient(circle at bottom right, rgba(78, 166, 214, 0.1), transparent 22%), #edf8fe;
  color: #0f172a;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 1.5rem, 72rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container {
    width: min(100% - 3rem, 72rem);
  }
}

.site-shell {
  width: min(100% - 0.75rem, 96rem);
  margin: 0.75rem auto;
  background: #ffffff;
  border: 1px solid #d8e7ef;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(44, 84, 110, 0.1);
  overflow: hidden;
}
@media (min-width: 48rem) {
  .site-shell {
    width: min(100% - 2.5rem, 96rem);
    margin: 2rem auto;
    border-radius: 1.5rem;
  }
}

.site-header {
  background: #ffffff;
}
.site-header__top {
  display: flex;
  align-items: center;
  min-height: 4.75rem;
}
@media (min-width: 48rem) {
  .site-header__top {
    min-height: 6.2rem;
  }
}
.site-header__nav {
  border-top: 1px solid #d8e7ef;
  border-bottom: 1px solid #d8e7ef;
  background: rgba(255, 255, 255, 0.9);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.site-brand__icon {
  width: 2.65rem;
  height: 2.65rem;
}
@media (min-width: 48rem) {
  .site-brand__icon {
    width: 4rem;
    height: 4rem;
  }
}
.site-brand__wordmark {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #17385d;
}
@media (min-width: 48rem) {
  .site-brand__wordmark {
    font-size: 3.05rem;
  }
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  min-height: 3.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar {
  display: none;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3.1rem;
  padding-top: 0.1rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #202d3d;
  white-space: nowrap;
}
.site-nav a.is-active, .site-nav a:hover {
  color: #2f86b8;
}
.site-nav a.is-active::after, .site-nav a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 0.2rem;
  border-radius: 999px;
  background: #4ea6d6;
}
@media (min-width: 48rem) {
  .site-nav {
    gap: 2.4rem;
  }
  .site-nav a {
    font-size: 1rem;
  }
}

.site-main {
  min-height: 20rem;
}

.site-footer {
  border-top: 1px solid #d8e7ef;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1rem;
  font-size: 0.92rem;
  color: #334155;
}
@media (min-width: 48rem) {
  .site-footer__inner {
    min-height: 4.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}
.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 48rem) {
  .site-footer__left {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__links a {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.site-footer__right {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 48rem) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.home-hero {
  background: linear-gradient(180deg, #eef9ff 0%, #ebf8ff 100%);
  border-bottom: 1px solid #d8e7ef;
}
.home-hero__inner {
  padding: 2.2rem 0 2rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .home-hero__inner {
    padding: 3rem 0 2rem;
  }
}
.home-hero h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #071426;
}
@media (min-width: 48rem) {
  .home-hero h1 {
    font-size: 3rem;
  }
}
.home-hero p {
  margin: 0.9rem auto 0;
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #223247;
}
@media (min-width: 48rem) {
  .home-hero p {
    margin-top: 1rem;
  }
}

.search-form {
  margin-top: 1.35rem;
}
@media (min-width: 48rem) {
  .search-form {
    margin-top: 1.5rem;
    max-width: 54rem;
    margin-inline: auto;
  }
}
.search-form__panel {
  position: relative;
}
.search-form__controls {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.6rem;
  background: #fff;
  border: 2px solid rgba(47, 134, 184, 0.65);
  border-radius: 1.4rem;
  box-shadow: 0 12px 28px rgba(78, 166, 214, 0.14);
}
@media (min-width: 48rem) {
  .search-form__controls {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
    border-radius: 999px;
  }
}
.search-form input[type=text] {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.85rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #243548;
  outline: none;
}
.search-form input[type=text]::-moz-placeholder {
  color: #6d7f93;
  opacity: 1;
}
.search-form input[type=text]::placeholder {
  color: #6d7f93;
  opacity: 1;
}
@media (min-width: 48rem) {
  .search-form input[type=text] {
    padding-inline: 0.2rem;
    font-size: 1.08rem;
  }
}
.search-form button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #4ea6d6 0%, #2f86b8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.search-form button[type=submit]:hover {
  transform: translateY(-1px);
  filter: saturate(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 18px rgba(47, 134, 184, 0.22);
}
@media (min-width: 48rem) {
  .search-form button[type=submit] {
    min-width: 9.5rem;
    min-height: 3.25rem;
    padding-inline: 1.75rem;
    font-size: 1.08rem;
  }
}
.search-form__hint {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: #607488;
}
.search-form__dropdown {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  box-shadow: 0 16px 34px rgba(44, 84, 110, 0.14);
  overflow: hidden;
}
.search-form__suggestions {
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  max-height: 20rem;
  overflow-y: auto;
}
.search-form__suggestion-item {
  margin: 0;
}
.search-form__suggestion {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.search-form__suggestion:hover, .search-form__suggestion.is-active {
  background: #eef7fc;
}
.search-form__suggestion-title {
  font-size: 1rem;
  font-weight: 700;
  color: #142232;
}
.search-form__suggestion-meta {
  font-size: 0.88rem;
  color: #5f7388;
}
.search-form__empty {
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  color: #607488;
  text-align: left;
}

.home-features {
  padding: 1.5rem 0 1.75rem;
}
@media (min-width: 48rem) {
  .home-features {
    padding: 2.25rem 0 2rem;
  }
}

.feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 64rem) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.d-inline {
  display: inline;
  vertical-align: middle;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(44, 84, 110, 0.05);
  height: 100%;
  padding: 1.2rem;
}
@media (min-width: 48rem) {
  .feature-card {
    padding: 1.45rem 1.5rem;
  }
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 0.8rem;
  border-radius: 0.9rem;
  background: rgba(78, 166, 214, 0.1);
  color: #2f6f99;
}
.feature-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}
.feature-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #162334;
}
@media (min-width: 48rem) {
  .feature-card h2 {
    font-size: 1.35rem;
  }
}
.feature-card p {
  margin: 0.95rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #26374a;
}
@media (min-width: 48rem) {
  .feature-card p {
    font-size: 1.02rem;
  }
}

.results-page {
  padding-block: 1.25rem 1.5rem;
}
@media (min-width: 48rem) {
  .results-page {
    padding-block: 1.85rem 2rem;
  }
}
.results-page__header {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .results-page__header {
    margin-bottom: 1.4rem;
  }
}
.results-page__title {
  margin: 0 0 0.85rem;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #0c1527;
}
@media (min-width: 48rem) {
  .results-page__title {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}
.results-page__summary {
  display: grid;
  gap: 0.8rem;
}
.results-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.results-page__message {
  margin: 0;
  max-width: 52rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #2d3c4f;
}
@media (min-width: 48rem) {
  .results-page__message {
    font-size: 1.08rem;
  }
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}
.summary-badge--success {
  background: #edf9f0;
  color: #248743;
  border: 1px solid #cfead7;
}
.summary-badge--warning {
  background: #fff7e7;
  color: #9c7411;
  border: 1px solid #f1db95;
}
.summary-badge--danger {
  background: #fff0ee;
  color: #c53c35;
  border: 1px solid #f1c3be;
}
.summary-badge--outline {
  background: #fff;
  color: #203246;
  border: 1px solid #d8e7ef;
}

.results-meta {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .results-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.1rem;
  }
}

.meta-card {
  background: #ffffff;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(44, 84, 110, 0.05);
  padding: 0.9rem 1rem;
  box-shadow: none;
}
.meta-card__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 600;
  color: #758497;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.meta-card__value {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  color: #152334;
}
@media (min-width: 48rem) {
  .meta-card__value {
    font-size: 1.05rem;
  }
}

.results-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 64rem) {
  .results-layout {
    grid-template-columns: minmax(0, 1fr) 17rem;
    gap: 0.9rem;
    align-items: start;
  }
}

.results-main-card,
.results-side-card {
  background: #ffffff;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(44, 84, 110, 0.05);
  box-shadow: none;
}

.results-main-card {
  padding: 0.875rem;
}
@media (min-width: 48rem) {
  .results-main-card {
    padding: 1rem;
  }
}

.results-side-card {
  padding: 0.75rem;
}

.score-gauge {
  position: relative;
  min-height: 15rem;
  margin-bottom: 0.9rem;
}
@media (min-width: 48rem) {
  .score-gauge {
    min-height: 18.5rem;
    margin-bottom: 1rem;
  }
}
.score-gauge__svg {
  display: block;
  width: min(100%, 34rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .score-gauge__svg {
    width: min(100%, 36rem);
  }
}
.score-gauge__content {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 13rem;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 48rem) {
  .score-gauge__content {
    top: 44%;
    width: 15rem;
  }
}
.score-gauge__heading {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 700;
  color: #1d2a3a;
}
@media (min-width: 48rem) {
  .score-gauge__heading {
    font-size: 1rem;
  }
}
.score-gauge__value {
  margin: 0.4rem 0 0;
  font-size: 1.12rem;
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
}
@media (min-width: 48rem) {
  .score-gauge__value {
    font-size: 1.4rem;
  }
}
.score-gauge__legend {
  position: absolute;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.02;
}
.score-gauge__legend strong {
  font-size: 0.96rem;
  font-weight: 700;
}
.score-gauge__legend span {
  font-size: 0.92rem;
}
.score-gauge__legend--left {
  left: 0;
  color: #ab4d2a;
  text-align: left;
}
.score-gauge__legend--right {
  right: 0;
  color: #2d8e46;
  text-align: right;
}
@media (min-width: 48rem) {
  .score-gauge__legend {
    bottom: 1.65rem;
  }
  .score-gauge__legend--left {
    left: 4.8rem;
    text-align: right;
  }
  .score-gauge__legend--right {
    right: 4.8rem;
    text-align: left;
  }
}

.indicator-list {
  overflow: hidden;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  background: #ffffff;
}

.indicator {
  display: grid;
  grid-template-columns: 2rem 2.7rem minmax(0, 1fr) 1.8rem;
  gap: 0.75rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.75rem;
  background: #fff;
  border-bottom: 1px solid #d8e7ef;
}
.indicator:last-child {
  border-bottom: 0;
}
@media (min-width: 48rem) {
  .indicator {
    grid-template-columns: 2.6rem 3.75rem minmax(0, 1fr) 2rem;
    gap: 0.85rem;
    min-height: 5.1rem;
    padding: 0.8rem 1rem;
  }
}
.indicator__index {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #1e2c3d;
}
@media (min-width: 48rem) {
  .indicator__index {
    font-size: 2rem;
  }
}
.indicator__icon {
  width: 2.4rem;
  height: 2.4rem;
  color: #355d7a;
}
@media (min-width: 48rem) {
  .indicator__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.indicator__content h2 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.15;
  font-weight: 800;
  color: #162334;
}
@media (min-width: 48rem) {
  .indicator__content h2 {
    font-size: 1.1rem;
  }
}
.indicator__content p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.28;
  color: #243142;
}
@media (min-width: 48rem) {
  .indicator__content p {
    font-size: 0.95rem;
  }
}
.indicator__label {
  margin: 0.15rem 0 0.2rem;
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 48rem) {
  .indicator__label {
    font-size: 0.98rem;
  }
}
.indicator__status {
  display: flex;
  justify-content: flex-end;
}
.indicator__status-badge {
  position: relative;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
}
@media (min-width: 48rem) {
  .indicator__status-badge {
    width: 1.55rem;
    height: 1.55rem;
  }
}
.indicator__status-badge::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.indicator--success .indicator__label {
  color: #2ca24c;
}
.indicator--success .indicator__status-badge {
  background: #27b145;
}
.indicator--success .indicator__status-badge::before {
  content: "✓";
  font-size: 0.82rem;
}
.indicator--warning .indicator__label {
  color: #a37b17;
}
.indicator--warning .indicator__status-badge {
  background: #efb724;
}
.indicator--warning .indicator__status-badge::before {
  content: "!";
  font-size: 0.9rem;
}
.indicator--danger .indicator__label {
  color: #d8453e;
}
.indicator--danger .indicator__status-badge {
  background: #db443c;
}
.indicator--danger .indicator__status-badge::before {
  content: "×";
  font-size: 0.95rem;
}
.indicator--neutral .indicator__label {
  color: #77879a;
}
.indicator--neutral .indicator__status-badge {
  background: #a5b2bf;
}
.indicator--neutral .indicator__status-badge::before {
  content: "•";
  font-size: 0.95rem;
}

.pdf-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 4.6rem;
  padding: 0.9rem 1rem 0.9rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #72c1e8 0%, #4b9dce 100%);
  color: #fff;
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.pdf-button span:first-child {
  max-width: 9.5rem;
}
.pdf-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 0.95rem;
}
.pdf-button.is-disabled {
  opacity: 0.82;
  cursor: default;
}

.map-card {
  overflow: hidden;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  background: #fff;
}
.map-card--empty {
  padding: 0.95rem;
}
.map-card__header {
  padding: 0.9rem 0.95rem 0.8rem;
  border-bottom: 1px solid #d8e7ef;
}
.map-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d7f93;
}
.map-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 800;
  color: #152334;
}
.map-card__meta {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #5f7388;
}
.map-card__frame {
  aspect-ratio: 1/1;
  background: #eef4f8;
}
.map-card__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-card__actions {
  padding: 0.85rem 0.95rem 0.95rem;
  border-top: 1px solid #d8e7ef;
}
.map-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  width: 100%;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #eef7fc;
  color: #1b5f8a;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.map-card__link:hover {
  background: #dfeff9;
  color: #124c72;
  transform: translateY(-1px);
}

.results-official-note {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  background: #f8fbfd;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  color: #253345;
  font-size: 0.94rem;
  line-height: 1.45;
}
.results-official-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #162334;
}

.results-source {
  margin: 0.95rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid #d8e7ef;
  font-size: 0.92rem;
  color: #334155;
}

.score-gauge__needle {
  will-change: transform;
  transition: transform 2s;
}

.map-page {
  padding-block: 1.25rem 1.5rem;
}
@media (min-width: 48rem) {
  .map-page {
    padding-block: 1.85rem 2rem;
  }
}
.map-page__header {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .map-page__header {
    margin-bottom: 1.4rem;
  }
}
.map-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid #cfe3ef;
  border-radius: 999px;
  background: #f4fbff;
  color: #1f5f89;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.map-page__title {
  margin: 0.9rem 0 0;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #0c1527;
}
@media (min-width: 48rem) {
  .map-page__title {
    font-size: 3.4rem;
  }
}
.map-page__lead {
  margin: 0.85rem 0 0;
  max-width: 52rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #2d3c4f;
}
@media (min-width: 48rem) {
  .map-page__lead {
    font-size: 1.08rem;
  }
}
.map-page__stats {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .map-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.15rem;
  }
}

.map-stat-card,
.france-map-card {
  background: #ffffff;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(44, 84, 110, 0.05);
  box-shadow: none;
}

.map-stat-card {
  padding: 0.95rem 1rem;
}
.map-stat-card__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #758497;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.map-stat-card__value {
  display: block;
  color: #152334;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.france-map-card {
  padding: 0.85rem;
}
@media (min-width: 48rem) {
  .france-map-card {
    padding: 1rem;
  }
}
.france-map-card__topbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}
@media (min-width: 64rem) {
  .france-map-card__topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}
.france-map-card__title {
  margin: 0;
  color: #152334;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}
@media (min-width: 48rem) {
  .france-map-card__title {
    font-size: 1.3rem;
  }
}
.france-map-card__text {
  margin: 0.45rem 0 0;
  color: #52667a;
  font-size: 0.95rem;
  line-height: 1.4;
}
.france-map-card__canvas {
  overflow: hidden;
  border: 1px solid #d8e7ef;
  border-radius: 1rem;
  background: #eef4f8;
}
.france-map-card__notice {
  margin: 0.85rem 0 0;
  color: #5f7388;
  font-size: 0.92rem;
}

.france-map {
  min-height: 32rem;
}
@media (min-width: 48rem) {
  .france-map {
    min-height: 42rem;
  }
}

.france-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.france-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #32485d;
  font-size: 0.9rem;
  font-weight: 600;
}
.france-map-legend__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.04);
}
.france-map-legend__dot--success {
  background: #1fa45b;
}
.france-map-legend__dot--warning {
  background: #f2a51a;
}
.france-map-legend__dot--danger {
  background: #d94a44;
}

.france-map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: transparent;
}
.france-map-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}
.france-map-marker--success span {
  background: #1fa45b;
}
.france-map-marker--warning span {
  background: #f2a51a;
}
.france-map-marker--danger span {
  background: #d94a44;
}

.france-map-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 124, 181, 0.18);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}
.france-map-cluster span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, #37a7de 0%, #127cb5 100%);
  color: #fff;
  font-weight: 800;
}
.france-map-cluster--sm span {
  font-size: 0.9rem;
}
.france-map-cluster--md span {
  font-size: 1rem;
}
.france-map-cluster--lg span {
  font-size: 1.05rem;
}

.france-map-popup {
  min-width: 12rem;
}
.france-map-popup__title {
  display: block;
  margin-bottom: 0.25rem;
  color: #152334;
  font-size: 1rem;
}
.france-map-popup__meta {
  margin: 0 0 0.45rem;
  color: #607488;
  font-size: 0.86rem;
}
.france-map-popup__score {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
}
.france-map-popup__score--success {
  color: #20824d;
}
.france-map-popup__score--warning {
  color: #a06f00;
}
.france-map-popup__score--danger {
  color: #b8352f;
}
.france-map-popup__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #eef7fc;
  color: #1b5f8a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.content-page {
  position: relative;
  padding-block: 1.5rem 2.25rem;
  background: radial-gradient(circle at top left, rgba(116, 222, 228, 0.16), transparent 26rem), radial-gradient(circle at top right, rgba(14, 124, 181, 0.1), transparent 28rem);
}
@media (min-width: 48rem) {
  .content-page {
    padding-block: 2rem 2.75rem;
  }
}
.content-page__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
  padding: 1.35rem 1.2rem 1.3rem;
  border: 1px solid rgba(196, 220, 234, 0.9);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.95) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(25, 56, 84, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
@media (min-width: 48rem) {
  .content-page__hero {
    margin-bottom: 1.9rem;
    padding: 2rem 2rem 1.85rem;
    border-radius: 1.75rem;
  }
}
.content-page__hero::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 222, 228, 0.26), transparent 70%);
  pointer-events: none;
}
.content-page__hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, #74dee4 0%, #0e7cb5 100%);
  opacity: 0.95;
}
.content-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(159, 204, 227, 0.95);
  border-radius: 999px;
  background: rgba(237, 249, 255, 0.95);
  color: #24658d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(37, 96, 132, 0.08);
}
.content-page__title {
  margin: 0.85rem 0 0;
  max-width: 48rem;
  color: #09162a;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}
@media (min-width: 48rem) {
  .content-page__title {
    font-size: 3rem;
  }
}
.content-page__lead {
  margin: 0.95rem 0 0;
  max-width: 52rem;
  color: #31465b;
  font-size: 1rem;
  line-height: 1.65;
}
@media (min-width: 48rem) {
  .content-page__lead {
    font-size: 1.1rem;
  }
}

.content-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 64rem) {
  .content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.content-section {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.15rem;
  border: 1px solid rgba(214, 227, 236, 0.95);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 14px 28px rgba(25, 56, 84, 0.04);
}
@media (min-width: 48rem) {
  .content-section {
    margin-top: 1.85rem;
    padding: 1.5rem;
    border-radius: 1.55rem;
  }
}
.content-section h2 {
  margin: 0 0 0.95rem;
  color: #12233a;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}
@media (min-width: 48rem) {
  .content-section h2 {
    font-size: 1.8rem;
  }
}
.content-section p {
  margin: 0;
  color: #395066;
  line-height: 1.7;
}

.content-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(214, 227, 236, 0.95);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 26px rgba(25, 56, 84, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 48rem) {
  .content-card {
    padding: 1.3rem 1.3rem 1.35rem;
    border-radius: 1.35rem;
  }
}
.content-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.28rem;
  background: linear-gradient(90deg, #74dee4 0%, #0e7cb5 100%);
  opacity: 0.92;
}
.content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(163, 205, 227, 0.95);
  box-shadow: 0 20px 34px rgba(25, 56, 84, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.98);
}
.content-card h2,
.content-card h3 {
  margin: 0;
  color: #12233a;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.content-card h2 {
  font-size: 1.28rem;
}
.content-card h3 {
  font-size: 1.08rem;
}
.content-card p {
  margin: 0.8rem 0 0;
  color: #43596e;
  line-height: 1.7;
}
.content-card strong {
  color: #12233a;
}

.content-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #395066;
}
.content-list li {
  line-height: 1.8;
}
.content-list li + li {
  margin-top: 0.35rem;
}
.content-list::marker,
.content-list li::marker {
  color: #1f7fb2;
}

.pwa-toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1200;
  display: grid;
  gap: 0.75rem;
  pointer-events: none;
}

.pwa-toast {
  width: min(24rem, 100vw - 2rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 65, 98, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: #123047;
  box-shadow: 0 16px 40px rgba(18, 48, 71, 0.12);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.pwa-toast[hidden] {
  display: none !important;
}

.pwa-toast__dot {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 0.7rem;
  border-radius: 999px;
  background: currentColor;
}

.pwa-toast__text {
  flex: 1 1 auto;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

.pwa-toast--network.is-offline {
  background: rgba(255, 248, 229, 0.98);
  color: #8a6116;
  border-color: rgba(138, 97, 22, 0.14);
}

.pwa-toast--network.is-online {
  background: rgba(236, 253, 243, 0.98);
  color: #18794e;
  border-color: rgba(24, 121, 78, 0.14);
}

.pwa-toast--update {
  background: linear-gradient(135deg, #0e7cb5 0%, #1697d2 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.pwa-toast__button {
  flex: 0 0 auto;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #0e7cb5;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.site-install-button {
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(14, 124, 181, 0.16);
  border-radius: 999px;
  background: rgba(14, 124, 181, 0.08);
  color: #0e7cb5;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-install-button:hover {
  background: rgba(14, 124, 181, 0.12);
  border-color: rgba(14, 124, 181, 0.28);
  transform: translateY(-1px);
}

.site-install-button[hidden] {
  display: none !important;
}

@media (max-width: 767.98px) {
  .pwa-toast-stack {
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
  }
  .pwa-toast {
    width: auto;
  }
  .site-header__top {
    gap: 0.75rem;
  }
  .site-brand__wordmark {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }
  .site-install-button {
    min-height: 2.35rem;
    padding: 0 0.8rem;
    font-size: 0.84rem;
  }
}/*# sourceMappingURL=styles.css.map */