:root {
    --navy: #1e3a5f;
    --navy-dark: #152a45;
    --green: #2d8f4e;
    --green-dark: #247a41;
    --green-light: #e8f5ec;
    --bg: #eef3f8;
    --surface: #ffffff;
    --text: #1a2b3c;
    --muted: #5a6b7d;
    --border: #d0dae6;
    --shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    --shadow-sm: 0 4px 16px rgba(30, 58, 95, 0.06);
    --status-none: #94a3b8;
    --status-planned: #eab308;
    --status-active: #2d8f4e;
    --status-completed: #2563eb;
    --radius: 14px;
    --header-h: 76px;
    --font-serif: "Lora", "Georgia", "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 143, 78, 0.08), transparent),
        linear-gradient(180deg, #f4f8fb 0%, var(--bg) 40%, #e8eef5 100%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

main {
    overflow-x: clip;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.15s;
}

a:hover {
    color: var(--green);
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    height: var(--header-h);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
    min-width: 0;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
    min-width: 0;
    flex: 1 1 auto;
}

.site-brand:hover {
    text-decoration: none;
    color: var(--navy);
}

.site-brand__icon,
.site-brand__logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 2px solid #fff;
}

.site-brand__icon {
    border-radius: 10px;
}

.site-brand__logo {
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.site-brand__title {
    font-weight: 700;
    font-size: 0.98rem;
}

.site-brand__sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    text-decoration: none;
}

.site-nav a:hover {
    background: var(--green-light);
    color: var(--green-dark);
    text-decoration: none;
}

.site-nav__cta {
    background: var(--green) !important;
    color: #fff !important;
    margin-left: 4px;
    box-shadow: 0 4px 14px rgba(45, 143, 78, 0.35);
}

.site-nav__cta:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    padding: 20px 0 0;
}

.hero__frame {
    position: relative;
}

.hero__banner {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: visible;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    line-height: 0;
}

.hero__banner-img {
    display: block;
    width: 100%;
    object-fit: cover;
    max-height: min(42vw, 380px);
    border-radius: calc(var(--radius) + 4px);
}

.hero__overlay {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-top: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.hero__quote {
    margin: 0;
    flex: 1 1 280px;
    min-width: 0;
    padding: 0 0 0 18px;
    border-left: 4px solid var(--green);
    font-style: italic;
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: var(--navy);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
    white-space: normal;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.hero__cta:hover {
    background: var(--navy-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
    text-decoration: none;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

@media (min-width: 901px) {
    .hero__cta {
        white-space: nowrap;
    }
}

.hero__cta--secondary {
    background: transparent;
    color: var(--navy) !important;
    border: 2px solid var(--navy);
    box-shadow: none;
}

.hero__cta--secondary:hover {
    background: var(--navy);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.2);
}

/* Section headings */
.section-head {
    margin-bottom: 24px;
}

.section-head--center {
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
}

.section-eyebrow--live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(45, 143, 78, 0.5);
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 143, 78, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(45, 143, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 143, 78, 0); }
}

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

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

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--navy);
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-lead {
    color: var(--muted);
    margin: 0;
    max-width: 56ch;
    font-size: 1.02rem;
    line-height: 1.6;
}

.section-lead--center {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Stats section */
.stats-section {
    position: relative;
    padding: 8px 0 16px;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(45, 143, 78, 0.07), transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(30, 58, 95, 0.06), transparent 45%);
    pointer-events: none;
}

.stats-section > .container {
    position: relative;
    z-index: 1;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.kpi-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px 22px 22px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy);
}

.kpi-card--signatures::before { background: linear-gradient(90deg, var(--green), #3cb371); }
.kpi-card--active::before { background: linear-gradient(90deg, var(--navy), #3d5a80); }
.kpi-card--villages::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }

.kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.kpi-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green-dark);
}

.kpi-card__icon svg {
    width: 22px;
    height: 22px;
}

.kpi-card--active .kpi-card__icon {
    background: #e8eef5;
    color: var(--navy);
}

.kpi-card--villages .kpi-card__icon {
    background: #dbeafe;
    color: #2563eb;
}

.kpi-card--volunteers::before {
    background: linear-gradient(90deg, #c27803, #eab308);
}

.kpi-card--volunteers .kpi-card__icon {
    background: #fef3c7;
    color: #b45309;
}

.community-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.community-strip__item {
    padding: 16px 18px;
    background: linear-gradient(160deg, #fff 0%, #faf8f5 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.community-strip__title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.community-strip__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}

.kpi-card__label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin: 0;
}

.kpi-card__value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    margin: 6px 0 0;
    letter-spacing: -0.03em;
    line-height: 1;
}

.kpi-card__value--green {
    color: var(--green);
}

.progress-block {
    background: linear-gradient(145deg, #fff, #f8fbf9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}

.progress-block__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.progress-block__title {
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.progress-block__subtitle {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.progress-block__pct {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.progress-block__pct--done {
    color: var(--navy);
    font-size: 1.5rem;
}

.phase2-banner {
    margin-bottom: 20px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef6f1 100%);
    border: 1px solid rgba(45, 143, 78, 0.35);
    border-left: 5px solid var(--green);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.phase2-banner__eyebrow {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-dark);
}

.phase2-banner__title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

.phase2-banner__text {
    margin: 0 0 12px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 62ch;
}

.phase2-banner__link {
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.phase2-banner__link:hover {
    color: var(--green);
    text-decoration: underline;
}

.progress-block--stretch {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.progress-block__header--compact {
    margin-bottom: 12px;
}

.progress-block__phase-label {
    margin: 0 0 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.progress-rail--stretch {
    background: #e8eef5;
}

.progress-fill--stretch {
    background: linear-gradient(90deg, var(--navy), #3d5a80);
}

.admin-settings-note {
    padding: 12px 14px;
    background: var(--green-light);
    border-radius: 10px;
    border: 1px solid rgba(45, 143, 78, 0.25);
}

.progress-rail {
    position: relative;
    height: 14px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: visible;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #4ade80);
    border-radius: 999px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(45, 143, 78, 0.35);
}

.progress-milestone {
    display: none;
}

.progress-meta {
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--muted);
}

.stats-update-note {
    margin: 14px 0 0;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text);
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 10px;
}

/* Map section */
.map-section {
    padding: 40px 0 48px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 8%, rgba(255, 255, 255, 0.85) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.map-section .section-head {
    margin-bottom: 28px;
}

.map-updated {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.map-sidebar__header {
    padding: 14px 16px 0;
}

.map-sidebar__title {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.map-sidebar__toolbar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #faf8f5, #fff);
}

.btn-find-village {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(45, 143, 78, 0.45);
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.btn-find-village svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-find-village:hover:not(:disabled) {
    background: #dff3e6;
    border-color: var(--green);
}

.btn-find-village:disabled {
    opacity: 0.65;
    cursor: wait;
}

.map-find-status {
    margin: 0;
    min-height: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--navy);
}

.map-find-status:not(:empty) {
    padding: 8px 10px;
    background: #f0f7ff;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
}

.map-search {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.map-search:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 143, 78, 0.15);
}

.filter-btn {
    padding: 7px 12px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.is-active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.map-filter {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.location-item:hover {
    background: #f4f9f6;
}

.location-item {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s, padding-left 0.15s;
}

.location-item.is-selected {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding-left: 13px;
}

.location-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.map-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 16px;
    align-items: stretch;
    --map-block-h: min(680px, calc(100dvh - var(--header-h) - 24px));
    min-height: var(--map-block-h);
}

.map-panel {
    height: var(--map-block-h);
    min-height: 520px;
}

.map-sidebar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: var(--map-block-h);
    min-height: 520px;
}

.location-item__name {
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-item__label {
    flex: 1;
    min-width: 0;
}

.location-item__count {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 2px 8px;
    border-radius: 999px;
}

.location-item__count--zero {
    color: var(--muted);
    background: #eef2f6;
}

.location-item__meta {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.location-item__parent {
    color: var(--muted);
}

.status-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-pill--none { background: #f1f5f9; color: var(--status-none); }
.status-pill--planned { background: #fef9c3; color: #a16207; }
.status-pill--active { background: var(--green-light); color: var(--green-dark); }
.status-pill--completed { background: #dbeafe; color: var(--status-completed); }

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot--none { background: var(--status-none); }
.status-dot--planned { background: var(--status-planned); }
.status-dot--active { background: var(--status-active); }
.status-dot--completed { background: var(--status-completed); }

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.map-marker-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.map-marker-dot {
    display: block;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.map-marker-compact--sub .map-marker-dot {
    border-width: 1px;
}

.map-marker-badge {
    display: block;
    min-width: 16px;
    padding: 1px 5px;
    margin-bottom: 2px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: var(--green);
    border: 1px solid #fff;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.map-marker-badge--zero {
    background: var(--status-none);
}

.map-tooltip {
    padding: 6px 10px !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow) !important;
    font: inherit !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
    color: var(--text) !important;
}

.map-tooltip::before {
    border-top-color: var(--border) !important;
}

.map-legend-hint {
    margin: 8px 0 0;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.3;
}

.map-legend-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.map-legend-toggle {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    box-shadow: var(--shadow);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
}

.map-legend-toggle:hover,
.map-legend-toggle.is-active {
    background: var(--green-light);
    border-color: var(--green);
    color: var(--green);
}

.map-legend-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text);
    min-width: 220px;
}

.map-legend-panel strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.map-legend-swatch {
    width: 28px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.map-legend-swatch--boundary {
    background: rgba(45, 143, 78, 0.25);
    border: 2px solid var(--navy);
}

.map-legend-swatch--outside {
    background: rgba(21, 42, 69, 0.55);
    border: 1px solid rgba(21, 42, 69, 0.75);
}

.map-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.map-legend-dot--main {
    background: var(--status-none);
    width: 16px;
    height: 16px;
}

.map-legend-dot--sub {
    background: var(--status-none);
    width: 10px;
    height: 10px;
}

.location-item--child {
    padding-left: 28px;
    background: #fafbfc;
}

.location-item--child .location-item__name {
    font-weight: 600;
    font-size: 0.95rem;
}

#campaignMap {
    height: 100%;
    min-height: 520px;
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 1;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 12px 14px;
    font-family: inherit;
    line-height: 1.45;
}

.popup-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0 0 8px;
}

.popup-row {
    margin: 4px 0;
    font-size: 0.9rem;
}

.popup-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.popup-status--none { background: #f1f5f9; color: var(--status-none); }
.popup-status--planned { background: #fef9c3; color: #a16207; }
.popup-status--active { background: var(--green-light); color: var(--green); }
.popup-status--completed { background: #dbeafe; color: var(--status-completed); }

/* Why section */
.why-section {
    padding: 48px 0 56px;
}

.why-section .section-head {
    margin-bottom: 20px;
}

.why-section .section-title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    margin-bottom: 0;
}

.why-section .section-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
}

.why-intro {
    max-width: 44rem;
    margin: 0 auto 36px;
    padding: 1.35rem 1.5rem 1.35rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 5px solid var(--green);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.why-intro__text {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
}

.why-intro__you {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(45, 143, 78, 0.35);
}

.why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
}

.why-card__icon svg {
    width: 24px;
    height: 24px;
}

.why-card__icon--doc {
    background: #e8eef5;
    color: var(--navy);
}

.why-card__icon--voice {
    background: var(--green-light);
    color: var(--green-dark);
}

.why-card__icon--law {
    background: #fef9c3;
    color: #a16207;
}

.why-card__icon--unity {
    background: #dbeafe;
    color: #2563eb;
}

.why-card__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--navy);
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.why-card a {
    color: var(--green);
    font-weight: 600;
}

/* How section */
.how-section {
    padding: 48px 0 56px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-inline: auto;
}

.how-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    background: linear-gradient(135deg, #f8fbf9, #fff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.how-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
}

.how-step__title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--navy);
}

.how-step p {
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}

.how-step a {
    color: var(--green);
    font-weight: 600;
}

.map-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--muted);
}

.map-status-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* FAQ */
.faq-section {
    padding: 48px 0 56px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    padding: 16px 20px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
}

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

.faq-item__question::before {
    content: "+ ";
    color: var(--green);
    font-weight: 700;
}

.faq-item[open] .faq-item__question::before {
    content: "− ";
}

.faq-item__answer {
    margin: 0;
    padding: 0 20px 18px;
    line-height: 1.65;
    color: var(--text);
}

/* Join section */
.join-section {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, 0.92);
}

.join-section__inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: center;
}

.join-section .section-title,
.join-section .section-eyebrow {
    color: #fff;
}

.join-section .section-eyebrow {
    opacity: 0.85;
}

.join-section__lead {
    margin: 0 0 16px;
    line-height: 1.65;
    max-width: 52ch;
}

.join-list {
    margin: 0 0 24px;
    padding-left: 1.2rem;
    line-height: 1.7;
}

.join-list li {
    margin-bottom: 6px;
}

.join-section__aside {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 28px 20px;
}

.join-section__stat-label {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.join-section__stat-value {
    margin: 8px 0;
    font-size: 3rem;
    font-weight: 700;
    color: #86efac;
    line-height: 1;
}

.join-section__stat-hint {
    margin: 0 0 20px;
    font-size: 0.88rem;
    opacity: 0.75;
}

.join-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 100%;
}

.join-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Resolution */
.resolution-page {
    padding: 32px 0 64px;
}

.resolution-page__back {
    margin: 0 0 24px;
    font-weight: 600;
}

.resolution-page__back a {
    color: var(--green);
}

.resolution-page__actions {
    margin: 32px 0 0;
}

.resolution-section {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #f4f8fb 0%, var(--bg) 100%);
}

.resolution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.resolution-card__summary {
    padding: 28px 32px;
}

.resolution-card__heading {
    margin: 0 0 12px;
    font-size: 1.1rem;
    color: var(--navy);
}

.resolution-card__summary p {
    margin: 0 0 14px;
    line-height: 1.65;
    max-width: 75ch;
}

.resolution-card__summary p:last-child {
    margin-bottom: 0;
}

.resolution-card__note {
    font-size: 0.92rem;
    color: var(--muted);
    padding: 12px 14px;
    background: #f8fafc;
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
}

.resolution-details {
    border-top: 1px solid var(--border);
}

.resolution-details__toggle {
    padding: 16px 32px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    background: linear-gradient(135deg, #eef4ff, #f8fbf9);
}

.resolution-details__toggle::-webkit-details-marker {
    display: none;
}

.resolution-details__toggle::before {
    content: "▸ ";
    display: inline-block;
    transition: transform 0.2s;
}

.resolution-details[open] .resolution-details__toggle::before {
    transform: rotate(90deg);
}

.resolution-text {
    padding: 28px 32px 32px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 78ch;
}

.resolution-text--full {
    border-top: none;
    max-width: none;
}

.resolution-text--full .resolution-text__header,
.resolution-text--full > p,
.resolution-text--full .resolution-text__clause {
    max-width: 78ch;
    margin-left: auto;
    margin-right: auto;
}

.resolution-text__header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.resolution-text__label {
    margin: 0 0 4px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.resolution-text__title {
    margin: 16px 0 0;
    font-weight: 700;
    text-align: center;
    line-height: 1.55;
}

.resolution-text__clause {
    margin-top: 20px;
}

.resolution-text__clause h3,
.resolution-text__clause h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--navy);
}

.resolution-text__clause ol {
    margin: 0;
    padding-left: 1.35rem;
}

.resolution-text__clause li {
    margin-bottom: 12px;
}

.resolution-text__clause li:last-child {
    margin-bottom: 0;
}

.resolution-section a,
.info-section a,
.resolution-page a {
    color: var(--green);
    font-weight: 600;
}

.resolution-section a:hover,
.info-section a:hover,
.resolution-page a:hover {
    color: var(--navy);
}

.map-section .section-lead a {
    color: var(--green);
    font-weight: 600;
}

.map-section .section-lead a:hover {
    color: var(--navy);
}

/* Info section */
.info-section {
    padding: 48px 0 56px;
}

.info-section__inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.info-section__lead {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0 0 28px;
    max-width: 65ch;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.info-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fbf9, #fff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    line-height: 1.5;
}

.info-list__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
}

/* Facebook */
.facebook-section {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--surface) 0%, #eef4ff 100%);
    border-top: 1px solid var(--border);
}

.facebook-section__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.facebook-section__lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 52ch;
}

.facebook-section__qr {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.facebook-section__qr img {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 8px;
}

.facebook-section__qr-hint {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 16rem;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877f2;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-facebook:hover {
    background: #166fe5;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.btn-facebook__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.site-footer__social {
    margin-top: 12px;
}

.site-footer__brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.site-footer__logo {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 48px 0 32px;
    margin-top: 0;
}

.site-footer__wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(21, 42, 69, 0.15));
    pointer-events: none;
}

.site-footer a {
    color: #86efac;
    font-weight: 600;
}

.site-footer a:hover {
    color: #bbf7d0;
    text-decoration: none;
}

.site-footer__admin {
    margin-top: 12px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.site-footer__title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 10px;
}

.site-footer__small {
    font-size: 0.85rem;
    opacity: 0.65;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__visits {
    font-size: 0.82rem;
    opacity: 0.55;
    margin: 0;
    padding: 10px 0 0;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s, transform 0.1s;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: #268042;
}

.btn-secondary {
    background: var(--navy);
    color: #fff;
}

.btn-secondary:hover:not(:disabled) {
    background: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--navy);
}

/* Admin */
.admin-page {
    padding: 24px 0 48px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.admin-tab {
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
}

.admin-tab.is-active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.admin-panel {
    display: none;
}

.admin-panel.is-active {
    display: block;
}

.admin-login {
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-status {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 12px;
}

.admin-map-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 16px;
    min-height: 480px;
}

#adminMap {
    height: 480px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.admin-edit-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.admin-edit-panel h3 {
    margin: 0 0 16px;
    color: var(--navy);
}

.admin-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.admin-table th,
.admin-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: var(--bg);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    font-size: 1.02rem;
}

.admin-table tr:hover td {
    background: var(--green-light);
}

.admin-table__row--child td:first-child {
    padding-left: 1.75rem;
}

.admin-table__child {
    font-weight: 600;
}

.admin-table small {
    font-size: 0.92rem;
}

.admin-table input,
.admin-table select {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
    font-size: 1rem;
    width: 100%;
    min-width: 80px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.admin-collectors {
    display: grid;
    gap: 24px;
}

.admin-collectors__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.admin-collectors__fields {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-table__actions {
    white-space: nowrap;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-articles {
    display: grid;
    gap: 24px;
}

.admin-articles__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.admin-articles__form-head {
    margin-bottom: 16px;
}

.admin-articles__fields {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-articles__field-wide {
    grid-column: 1 / -1;
}

.admin-articles__workspace-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.admin-articles__workspace-head label {
    margin: 0;
    font-weight: 600;
    color: var(--navy);
}

.admin-articles__view-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-articles__view-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.admin-articles__view-btn.is-active {
    border-color: var(--green);
    background: rgba(45, 143, 78, 0.1);
    color: var(--green-dark);
}

.admin-articles__workspace {
    display: grid;
    gap: 16px;
    min-height: 560px;
}

.admin-articles__workspace--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.admin-articles__workspace--editor {
    grid-template-columns: 1fr;
}

.admin-articles__workspace--preview {
    grid-template-columns: 1fr;
}

.admin-articles__workspace--editor .admin-articles__preview-pane {
    display: none;
}

.admin-articles__workspace--preview .admin-articles__editor-pane {
    display: none;
}

.admin-articles__editor-pane {
    min-width: 0;
}

.admin-articles__block-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px dashed rgba(30, 58, 95, 0.18);
    border-radius: 12px;
    background: #fafbfc;
}

.admin-articles__block-toolbar-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-right: 4px;
}

.admin-articles__block-add {
    border: 1px solid rgba(30, 58, 95, 0.14);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.admin-articles__block-add:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(45, 143, 78, 0.06);
}

.admin-articles__blocks {
    display: grid;
    gap: 12px;
}

.admin-articles__blocks-empty {
    margin: 0;
    padding: 16px;
    text-align: center;
    color: var(--muted);
    font-style: italic;
    border: 1px dashed var(--border);
    border-radius: 12px;
}

.article-block-card {
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
}

.article-block-card__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
}

.article-block-card__type {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(45, 143, 78, 0.12);
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-block-card__index {
    margin-left: 8px;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

.article-block-card__desc {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.article-block-card__actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.article-block-card__body {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.article-block-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.article-block-card__input,
.article-block-card__textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.article-block-card__textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.55;
}

.article-block-card__static {
    margin: 0;
    color: var(--muted);
    font-style: italic;
}

.article-block-card__list {
    display: grid;
    gap: 8px;
}

.article-block-card__list-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.admin-articles__preview-pane {
    min-width: 0;
    background: #f3efe8;
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    padding: 12px;
    overflow: auto;
    max-height: 720px;
}

.admin-articles__preview-label {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.admin-articles__preview-sheet {
    background: #fffdf8;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    overflow: hidden;
}

.admin-articles__preview-masthead {
    padding: 1.25rem 1rem 1rem;
}

.admin-articles__preview-masthead .article-headline {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.admin-articles__preview-masthead .article-dek {
    font-size: 0.98rem;
    margin-bottom: 0;
}

.admin-articles__preview-prose {
    padding: 1rem 1rem 1.25rem;
    font-size: 0.98rem;
}

.admin-articles__preview-empty {
    color: var(--muted);
    font-style: italic;
}

.admin-articles__body {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.88rem;
    line-height: 1.55;
    min-height: 280px;
}

.admin-articles__checkbox {
    align-self: end;
}

.admin-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
}

.admin-articles__cover-preview {
    width: min(100%, 220px);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #eef1f5;
}

.admin-articles__cover-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.admin-articles__status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-articles__status-badge--published {
    background: rgba(45, 143, 78, 0.12);
    color: var(--green-dark);
}

.admin-articles__status-badge--draft {
    background: #fef3c7;
    color: #92400e;
}

@media (max-width: 900px) {
    .admin-articles__fields {
        grid-template-columns: 1fr;
    }

    .admin-articles__workspace--split {
        grid-template-columns: 1fr;
    }

    .admin-articles__preview-pane {
        max-height: none;
    }
}

.settings-grid {
    display: grid;
    gap: 16px;
    max-width: 640px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-brand__title {
        font-size: clamp(0.82rem, 3.6vw, 0.95rem);
        line-height: 1.25;
    }

    .site-brand__sub {
        font-size: 0.68rem;
    }

    .nav-toggle {
        flex-shrink: 0;
    }

    .hero__banner {
        overflow: hidden;
    }

    .hero__overlay {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    .hero__quote {
        flex: none;
        width: 100%;
        min-width: 0;
        text-align: left;
        padding-left: 14px;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero__cta {
        white-space: normal;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        z-index: 999;
    }

    body.nav-open .site-nav {
        transform: translateX(0);
    }

    .site-nav a {
        padding: 14px 16px;
        border-radius: 10px;
    }

    .site-nav__cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

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

    .join-section__inner {
        grid-template-columns: 1fr;
    }

    .community-strip {
        grid-template-columns: 1fr;
    }

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

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

    .map-layout {
        grid-template-columns: 1fr;
        --map-block-h: auto;
        min-height: 0;
    }

    .map-panel {
        height: 400px;
        min-height: 400px;
        overflow: hidden;
    }

    .map-sidebar {
        height: auto;
        max-height: 320px;
        min-height: 0;
        max-width: 100%;
    }

    #campaignMap {
        min-height: 400px;
        width: 100%;
        touch-action: pan-x pan-y;
    }

    .admin-map-layout {
        grid-template-columns: 1fr;
    }

    #adminMap {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .facebook-section__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .facebook-section__qr {
        max-width: 240px;
        margin: 0 auto;
    }

    .resolution-card__summary,
    .resolution-text,
    .resolution-details__toggle {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__cta-group {
        width: 100%;
    }

    .hero__cta-group .hero__cta {
        flex: none;
        width: 100%;
    }

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

    .why-intro {
        padding: 1.15rem 1.15rem 1.15rem 1rem;
    }

    .community-strip {
        grid-template-columns: 1fr;
    }

    .info-section__inner {
        padding: 24px 20px;
    }

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

/* Articles / aktualności — editorial */
.articles-section {
    padding: 56px 0 32px;
    background: linear-gradient(180deg, var(--bg) 0%, #f6f3ed 100%);
}

.articles-section__more {
    margin: 32px 0 0;
    text-align: center;
}

.articles-admin-note {
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(194, 120, 3, 0.35);
    background: #fffbeb;
    color: #92400e;
    font-size: 0.92rem;
    font-weight: 600;
}

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

.articles-grid--list {
    max-width: 52rem;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 24px;
}

.articles-grid--home {
    max-width: 54rem;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 24px;
}

.articles-grid--home .article-card--featured .article-card__cover {
    flex-basis: clamp(160px, 38%, 300px);
}

.articles-grid--compact {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px;
    background: #fffdf8;
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 2px;
    box-shadow: 0 2px 16px rgba(30, 58, 95, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
    box-shadow: 0 8px 28px rgba(30, 58, 95, 0.1);
    transform: translateY(-2px);
}

.article-card--featured {
    padding: 28px 32px;
    border-left: 4px solid var(--green);
    background: linear-gradient(135deg, #fff 0%, #fffdf8 55%, #f8f5ef 100%);
}

.article-card--featured .article-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.article-card--featured .article-card__excerpt {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #4a5568;
}

.article-card--has-cover {
    padding: 0;
    overflow: hidden;
}

.article-card--has-cover .article-card__badge {
    margin: 16px 0 0 16px;
}

.article-card__inner {
    display: flex;
    align-items: stretch;
    min-height: 0;
    min-width: 0;
}

.article-card__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px;
}

.article-card--featured.article-card--has-cover .article-card__content {
    padding: 28px 32px;
}

.article-card__cover {
    flex: 0 0 clamp(118px, 30%, 240px);
    display: block;
    align-self: stretch;
    border-left: 1px solid rgba(30, 58, 95, 0.08);
    background: #e8edf3;
    overflow: hidden;
    position: relative;
    min-width: 0;
    min-height: 0;
}

.article-card--featured .article-card__cover {
    flex-basis: clamp(150px, 36%, 280px);
}

.article-card__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.article-card:hover .article-card__cover-img {
    transform: scale(1.03);
}

.article-card--draft {
    border-style: dashed;
    border-color: rgba(194, 120, 3, 0.45);
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.article-card__badge {
    margin: 0;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

.article-card__meta-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    min-width: 0;
}

.article-card__meta-main .article-card__date::after {
    content: "·";
    margin-left: 14px;
    color: rgba(30, 58, 95, 0.25);
}

.article-card__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 143, 78, 0.14) 0%, rgba(45, 143, 78, 0.08) 100%);
    border: 1px solid rgba(45, 143, 78, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1;
    flex-shrink: 0;
}

.article-card__views-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.article-card__views-num {
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
}

.article-card__views-text {
    font-size: 0.76rem;
    font-weight: 600;
    opacity: 0.92;
}

.article-card--featured .article-card__views {
    padding: 7px 14px;
    font-size: 0.86rem;
}

.article-card--featured .article-card__views-num {
    font-size: 1rem;
}

.article-card__read-time {
    color: var(--muted);
}

.article-card__date {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

.article-card__title {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
}

.article-card__title a {
    color: var(--navy);
    text-decoration: none;
}

.article-card__title a:hover {
    color: var(--green-dark);
}

.article-card__excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
    flex: 1 1 auto;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    color: var(--green-dark);
    text-decoration: none;
}

.article-card__link span:last-child {
    transition: transform 0.2s ease;
}

.article-card__link:hover {
    color: var(--navy);
}

.article-card__link:hover span:last-child {
    transform: translateX(4px);
}

.articles-empty {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-style: italic;
}

.articles-page {
    padding: 28px 0 64px;
    background: linear-gradient(180deg, var(--bg) 0%, #f3efe8 100%);
}

.articles-page--read {
    padding-bottom: 72px;
}

.articles-page__back {
    margin: 0 0 24px;
}

.articles-page__back a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    text-decoration: none;
}

.articles-page__back a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.articles-list-head {
    max-width: 40rem;
    margin: 0 auto 36px;
    text-align: center;
}

.articles-list-head .section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.articles-list-head .section-lead {
    font-size: 1.05rem;
    line-height: 1.65;
}

.page-article {
    background: #f3efe8;
}

.article-sheet {
    max-width: 48rem;
    margin: 0 auto;
    background: #fffdf8;
    border-radius: 2px;
    box-shadow:
        0 1px 0 rgba(30, 58, 95, 0.04),
        0 8px 40px rgba(30, 58, 95, 0.08);
    overflow: hidden;
}

.article-masthead {
    padding: 1.75rem 1.75rem 1.35rem;
    text-align: center;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
}

.article-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.article-headline {
    margin: 0 0 0.85rem;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.article-dek {
    margin: 0 auto 0.85rem;
    max-width: 36rem;
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    font-style: italic;
    line-height: 1.65;
    color: #4a5568;
}

.article-byline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.article-byline__sep {
    color: rgba(30, 58, 95, 0.25);
}

.article-byline__views {
    color: rgba(30, 58, 95, 0.55);
}

.article-prose {
    padding: 1.5rem 2rem 2rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.75;
    color: #1f2937;
}

.article-prose p {
    margin: 0 0 1rem;
}

.article-prose p:last-child {
    margin-bottom: 0;
}

.article-prose .article-lead {
    margin: 0 0 1.25rem;
    padding: 0.85rem 0 0.85rem 1rem;
    border-left: 3px solid var(--green);
    background: linear-gradient(90deg, rgba(45, 143, 78, 0.07), transparent 85%);
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1.7;
    color: var(--navy);
}

.article-prose .article-lead strong {
    font-weight: 700;
}

.article-prose h2 {
    margin: 2rem 0 0.85rem;
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.article-prose h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.45rem;
    background: var(--green);
}

.article-prose hr {
    margin: 1.25rem auto;
    max-width: 4rem;
    border: none;
    text-align: center;
}

.article-prose hr::before {
    content: "◆ ◆ ◆";
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: rgba(30, 58, 95, 0.22);
}

.article-prose p.article-bridge {
    margin-top: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.article-prose .article-block {
    margin: 0.25rem 0 1.15rem;
    padding: 0.9rem 1.1rem 0.15rem;
    border-left: 3px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.03);
}

.article-prose .article-block > :last-child {
    margin-bottom: 0.85rem;
}

.article-prose strong {
    font-weight: 700;
    color: var(--navy);
}

.article-prose a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-prose a:hover {
    color: var(--navy);
}

.article-prose p.article-punch {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--navy);
}

.article-prose ul.article-list {
    margin: 0.5rem 0 1.1rem;
    padding: 0;
    list-style: none;
}

.article-prose ul.article-list li {
    position: relative;
    display: block;
    margin: 0 0 0.6rem;
    padding: 0 0 0 1.1rem;
    line-height: 1.65;
}

.article-prose ul.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--green);
}

.article-prose ul.article-list--staccato {
    margin: 0.65rem 0 1rem;
    padding: 0.85rem 1rem 0.85rem 1.15rem;
    border-left: 3px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.03);
}

.article-prose ul.article-list--staccato li {
    display: block;
    margin: 0 0 0.2rem;
    padding-left: 0;
    font-weight: 600;
    color: var(--navy);
}

.article-prose ul.article-list--staccato li::before {
    content: none;
}

.article-prose ul.article-list--questions li {
    font-style: italic;
    color: #374151;
}

.article-prose ul.article-list--facts li {
    font-size: 1.05rem;
}

.article-prose ul.article-list--facts li strong {
    display: inline-block;
    min-width: 11rem;
}

.article-prose p.article-highlight {
    margin: 0.75rem 0 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid #c53030;
    background: linear-gradient(90deg, rgba(197, 48, 48, 0.08), transparent 88%);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--navy);
}

.article-prose p.article-highlight strong {
    font-weight: inherit;
    color: inherit;
}

.article-prose p.article-dropcap {
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.article-prose p.article-dropcap + ul.article-list {
    margin-top: 0.35rem;
}

.article-prose p.article-dropcap::first-letter {
    float: left;
    margin: 0.12em 0.14em 0 0;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.78;
    color: var(--navy);
}

.article-hero {
    margin: 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    background: #111827;
}

.article-hero__img {
    display: block;
    width: 100%;
    max-height: min(58vh, 460px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
}

.article-end {
    padding: 1.35rem 1.75rem 1.65rem;
    border-top: 1px solid rgba(30, 58, 95, 0.08);
    background: #faf8f4;
    text-align: center;
}

.article-end__note {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.article-end__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}

.article-end__actions a {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 95, 0.15);
    background: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.article-end__actions a:hover {
    border-color: var(--green);
    background: rgba(45, 143, 78, 0.06);
    color: var(--green-dark);
}

.article-end__actions a:first-child {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.article-end__actions a:first-child:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

@media (min-width: 640px) {
    .article-masthead {
        padding: 2rem 2.75rem 1.5rem;
    }

    .article-prose {
        padding: 1.65rem 2.75rem 2rem;
    }

    .article-end {
        padding: 1.5rem 2.75rem 1.85rem;
    }
}

@media (max-width: 900px) {
    .articles-grid--compact {
        grid-template-columns: 1fr;
    }

    .article-card__inner {
        flex-direction: column;
    }

    .article-card__cover {
        flex: none;
        order: -1;
        width: 100%;
        aspect-ratio: 5 / 4;
        height: auto;
        max-height: 280px;
        align-self: auto;
        border-left: none;
        border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    }

    .article-card--featured .article-card__cover {
        aspect-ratio: 4 / 5;
        max-height: 320px;
    }
}

.article-single {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.article-single__date {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
    .live-dot {
        animation: none;
    }

    .article-card {
        transition: none;
    }

    .article-card:hover {
        transform: none;
    }

    .article-card:hover .article-card__cover-img {
        transform: none;
    }

    .article-card__link span:last-child {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .progress-fill {
        transition: none;
    }
}
