/* =============================================================
   Public Pulse — shared stylesheet
   This file is loaded by every page via <link rel="stylesheet" href="style.css">.
   Edit here to update the look across the entire site.
   ============================================================= */

/* =============================================================
   index.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * {
        box-sizing: border-box;
      }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body {
        line-height: 1.6;
      }

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

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

      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo {
        width: 44px;
        height: 44px;
        object-fit: contain;
      }

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
        gap: 4px;
      }

      .brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .brand-tagline {
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.02em;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after {
        transform: scaleX(1);
      }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before {
        opacity: 1;
        transform: translateY(-12px) scale(1);
      }

      .action-buttons {
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      .hero {
        position: relative;
        display: grid;
        grid-template-columns: minmax(380px, 1fr) minmax(480px, 1.05fr);
        gap: 56px;
        align-items: center;
        padding: 64px 56px 72px;
        overflow: hidden;
        border-radius: 32px;
        background:
          linear-gradient(160deg, #ffffff 0%, #f5f8fd 55%, #eef3fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
        margin-top: 16px;
        isolation: isolate;
      }

      .hero::before {
        content: none;
      }

      .hero > * {
        position: relative;
        z-index: 1;
      }

      .hero-title::after {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 8px;
        margin-bottom: 4px;
        border-radius: 50%;
        background: #1f8f4a;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.78rem;
      }

      .eyebrow::before {
        content: none;
      }

      .hero-title {
        margin: 0;
        font-size: clamp(3rem, 4.6vw, 5.4rem);
        line-height: 0.96;
        letter-spacing: -0.035em;
        max-width: 540px;
        color: #0f172a;
      }

      .hero-copy {
        margin: 22px 0 32px;
        max-width: 460px;
        color: #475569;
        font-size: 1.02rem;
        line-height: 1.6;
      }

      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      .feature-row {
        display: flex;
        flex-wrap: wrap;
        gap: 24px 32px;
        margin-top: 40px;
      }

      .feature-pill {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #475569;
        font-weight: 600;
        font-size: 0.92rem;
        line-height: 1.35;
        box-shadow: none;
      }

      .feature-pill-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(30, 63, 138, 0.06);
        color: #1e3f8a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .feature-pill-icon svg {
        width: 18px;
        height: 18px;
      }

      .hero-visual {
        position: relative;
        z-index: 1;
        display: grid;
        gap: 20px;
        justify-self: end;
        max-width: 600px;
        width: 100%;
      }

      .hero-visual img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        display: block;
        box-shadow: 0 30px 70px rgba(16, 24, 40, 0.12), 0 8px 20px rgba(16, 24, 40, 0.05);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .dashboard-card {
        min-height: 468px;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(16, 24, 40, 0.08);
        border-radius: 36px;
        padding: 28px;
        box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
      }

      .dashboard-card header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      .dashboard-card h2 {
        margin: 0;
        font-size: 1rem;
        color: var(--text);
      }

      .badge {
        padding: 8px 12px;
        background: var(--brand-soft);
        color: var(--brand);
        border-radius: 999px;
        font-size: 0.82rem;
        font-weight: 700;
      }

      .dashboard-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }

      .dashboard-panel {
        background: white;
        border: 1px solid rgba(16, 24, 40, 0.06);
        border-radius: 24px;
        padding: 18px;
      }

      .dashboard-panel h3 {
        margin: 0 0 10px;
        font-size: 0.95rem;
        color: var(--text);
      }

      .dashboard-panel p {
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
      }

      .dashboard-panel ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 10px;
      }

      .dashboard-panel li {
        display: flex;
        gap: 10px;
        align-items: center;
        color: var(--muted);
        font-size: 0.92rem;
      }

      .dashboard-panel li::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #dbe6f5;
      }

      .map-card {
        background: white;
        border: 1px solid rgba(16, 24, 40, 0.06);
        border-radius: 32px;
        padding: 20px;
      }

      .map-card h3 {
        margin: 0 0 16px;
        font-size: 1rem;
      }

      .map-frame {
        border-radius: 24px;
        min-height: 320px;
        background: linear-gradient(180deg, #eef3fb 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(35, 105, 217, 0.12);
      }

      .map-pin {
        position: absolute;
        left: 58%;
        top: 42%;
        width: 60px;
        height: 60px;
        background: #ffffff;
        border: 4px solid #2369d9;
        border-radius: 50%;
        display: grid;
        place-items: center;
        box-shadow: 0 18px 36px rgba(35, 105, 217, 0.14);
      }

      .map-pin::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -10px;
        width: 12px;
        height: 12px;
        background: #2369d9;
        transform: translateX(-50%) rotate(45deg);
      }

      .map-overlay {
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(circle at 18% 20%, rgba(35, 105, 217, 0.16) 0%, transparent 22%),
          radial-gradient(circle at 78% 32%, rgba(35, 105, 217, 0.08) 0%, transparent 20%),
          linear-gradient(135deg, transparent 30%, rgba(35, 105, 217, 0.03) 31%, rgba(35, 105, 217, 0.03) 34%, transparent 35%);
      }

      .card-legend {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .card-badge {
        background: #eff4ff;
        color: #1b4a90;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .section {
        padding: 60px 0 10px;
      }

      .section-heading {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 42px;
      }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3vw, 3rem);
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 600px;
        color: var(--muted);
        font-size: 1rem;
      }

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

      .how-card {
        background: transparent;
        border: none;
        border-radius: 28px;
        padding: 24px 28px;
        min-height: 200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .how-card-icon {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(30, 63, 138, 0.06);
        color: #1e3f8a;
        margin-bottom: 22px;
      }

      .how-card-icon svg {
        width: 32px;
        height: 32px;
      }

      .how-card h3 {
        margin: 0 0 12px;
        font-size: 1.1rem;
        font-weight: 700;
        color: #0f172a;
      }

      .how-card p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 280px;
      }

      .trust-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 48px;
        align-items: center;
      }

      .trust-panel {
        position: relative;
        background: transparent;
        border: none;
        padding: 8px 0;
        overflow: visible;
      }

      .section-label {
        display: inline-flex;
        color: #1f8f4a;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        margin-bottom: 18px;
      }

      .trust-panel h2 {
        margin: 0;
        font-size: clamp(2.2rem, 3.4vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.02em;
        max-width: 360px;
        color: #0f172a;
        position: relative;
        z-index: 1;
      }

      .trust-intro {
        margin: 22px 0 0;
        max-width: 360px;
        color: #475569;
        font-size: 0.98rem;
        line-height: 1.7;
        position: relative;
        z-index: 1;
      }

      .trust-panel-illustration {
        position: relative;
        margin-top: 44px;
        min-height: 320px;
        border-radius: 28px;
        background: rgba(236, 242, 255, 0.8);
        border: 1px solid rgba(15, 23, 42, 0.05);
        overflow: hidden;
        padding: 28px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
      }

      .trust-panel-illustration::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 14% 20%, rgba(35, 105, 217, 0.18), transparent 18%),
          radial-gradient(circle at 72% 28%, rgba(35, 105, 217, 0.08), transparent 16%),
          linear-gradient(135deg, rgba(255,255,255,0.55), transparent 50%);
      }

      .trust-card {
        position: relative;
        z-index: 1;
        width: min(100%, 380px);
        background: white;
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 36px 75px rgba(15, 23, 42, 0.12);
        padding: 26px;
        align-self: flex-end;
      }

      .trust-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 18px;
      }

      .trust-card-header strong {
        font-size: 1rem;
        color: #0f172a;
      }

      .trust-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(236, 253, 245, 1);
        color: #1f8f4a;
        font-size: 0.82rem;
        font-weight: 700;
      }

      .trust-card-text {
        margin: 0;
        color: #475569;
        line-height: 1.75;
        font-size: 0.98rem;
      }

      .trust-card-meta {
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
      }

      .support-value {
        color: #0f172a;
        font-weight: 700;
      }

      .button--secondary {
        background: #1f8f4a;
        color: white;
        border: none;
        box-shadow: 0 16px 36px rgba(31, 143, 74, 0.18);
      }

      .trust-feature-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px 18px;
      }

      .trust-feature-card {
        display: flex;
        gap: 12px;
        padding: 4px 0;
        border-radius: 0;
        border: none;
        background: transparent;
        transition: transform 180ms ease;
        align-items: flex-start;
      }

      .trust-feature-card:hover {
        transform: translateY(-1px);
      }

      .trust-feature-icon {
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
        flex-shrink: 0;
      }

      .trust-feature-icon svg {
        width: 18px;
        height: 18px;
      }

      .trust-feature-card h4 {
        margin: 0;
        font-size: 0.88rem;
        font-weight: 600;
        color: #475569;
        line-height: 1.45;
      }

      .trust-feature-card p {
        margin: 6px 0 0;
        color: #64748b;
        font-size: 0.92rem;
      }

      .communities-grid {
        display: grid;
        grid-template-columns: 1.05fr 1.15fr;
        gap: 48px;
        align-items: center;
        margin-top: 56px;
      }

      .communities-map {
        position: relative;
      }

      .communities-map-frame {
        position: relative;
        border-radius: 28px;
        min-height: 360px;
        background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
        overflow: hidden;
        padding: 28px;
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .communities-map-pattern {
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.4px);
        background-size: 10px 10px;
        opacity: 0.55;
        -webkit-mask-image: radial-gradient(ellipse at 45% 50%, black 30%, transparent 70%);
        mask-image: radial-gradient(ellipse at 45% 50%, black 30%, transparent 70%);
      }

      .map-dot {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #1e3f8a;
        box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.18);
      }

      .map-dot--vancouver { left: 12%; top: 38%; }
      .map-dot--calgary { left: 30%; top: 44%; }
      .map-dot--toronto { left: 55%; top: 64%; background: #f04555; box-shadow: 0 0 0 4px rgba(240, 69, 85, 0.2); }
      .map-dot--halifax { left: 82%; top: 56%; }

      .vancouver-card {
        position: absolute;
        left: 18%;
        top: 14%;
        width: min(260px, 60%);
        background: white;
        border-radius: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
        padding: 18px 20px;
      }

      .vancouver-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
      }

      .vancouver-card-header strong {
        font-size: 0.95rem;
        color: #0f172a;
      }

      .vancouver-badge {
        padding: 4px 10px;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        border-radius: 999px;
        font-size: 0.7rem;
        font-weight: 700;
      }

      .vancouver-card-text {
        margin: 0 0 12px;
        color: #475569;
        font-size: 0.88rem;
        line-height: 1.55;
      }

      .vancouver-support {
        margin: 0 0 14px;
        font-size: 0.88rem;
        color: #475569;
      }

      .vancouver-support span {
        color: #1f8f4a;
        font-weight: 800;
        font-size: 1rem;
        margin-right: 4px;
      }

      .vancouver-button {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.88rem;
      }

      .communities-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .communities-label {
        color: #1f8f4a;
        margin: 0;
      }

      .communities-heading {
        margin: 0;
        font-size: clamp(2.2rem, 3.4vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: #0f172a;
        max-width: 520px;
      }

      .communities-intro {
        margin: 0;
        max-width: 480px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .communities-topics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 8px;
      }

      .community-topic {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        font-size: 0.92rem;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.35;
        transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
      }

      .community-topic:hover {
        transform: translateY(-2px);
        border-color: rgba(30, 63, 138, 0.16);
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
      }

      .community-topic-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(30, 63, 138, 0.08);
        color: #1e3f8a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .community-topic-icon svg {
        width: 20px;
        height: 20px;
      }

      .results-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 24px;
      }

      .results-summary {
        background: white;
        border-radius: 32px;
        padding: 32px;
        border: 1px solid rgba(16, 24, 40, 0.06);
      }

      .results-summary h3 {
        margin-top: 0;
      }

      .result-items {
        display: grid;
        gap: 14px;
        margin-top: 22px;
      }

      .result-item {
        background: #f8fbff;
        border-radius: 22px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .result-item span {
        color: var(--text);
        font-weight: 600;
      }

      .graph-card {
        background: white;
        border-radius: 32px;
        padding: 30px;
        border: 1px solid rgba(16, 24, 40, 0.06);
      }

      .graph-title {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 14px;
      }

      .graph-title small {
        color: var(--muted);
        font-size: 0.9rem;
      }

      .bar-chart {
        margin-top: 24px;
        display: grid;
        gap: 18px;
      }

      .bar-row {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        gap: 18px;
      }

      .bar-row span {
        color: var(--muted);
        font-size: 0.95rem;
        font-weight: 600;
      }

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

      .bar-values p {
        margin: 0;
        font-size: 0.84rem;
        color: var(--muted);
        text-align: center;
      }

      .bar-track {
        position: relative;
        height: 12px;
        background: #eef3fb;
        border-radius: 999px;
        overflow: hidden;
      }

      .bar-fill {
        height: 100%;
        border-radius: 999px;
      }

      .bar-fill.support { width: 60%; background: #2369d9; }
      .bar-fill.neutral { width: 25%; background: #94a3b8; }
      .bar-fill.oppose { width: 15%; background: #f74b5a; }

      .chart-key {
        display: flex;
        gap: 18px;
        margin-top: 22px;
        font-size: 0.92rem;
        color: var(--muted);
      }

      .chart-key span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .chart-key .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
      }

      .dot.support { background: #2369d9; }
      .dot.neutral { background: #94a3b8; }
      .dot.oppose { background: #f74b5a; }

      .insights-section {
        position: relative;
      }

      .insights-section::before {
        content: "";
        position: absolute;
        inset: -32px -40px;
        background-image:
          radial-gradient(circle at 8% 12%, rgba(31, 143, 74, 0.06) 0%, transparent 28%),
          radial-gradient(circle at 92% 80%, rgba(30, 63, 138, 0.05) 0%, transparent 30%);
        z-index: -1;
        pointer-events: none;
        border-radius: 48px;
      }

      .insights-grid {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.95fr) minmax(360px, 1.25fr);
        gap: 28px;
        align-items: stretch;
      }

      .insights-intro {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 8px 0;
        align-self: center;
      }

      .insights-intro .eyebrow {
        color: #1f8f4a;
        letter-spacing: 0.26em;
        text-transform: uppercase;
        font-size: 0.74rem;
        font-weight: 800;
        margin: 0;
      }

      .insights-intro h2 {
        margin: 0;
        font-size: clamp(2.4rem, 3.6vw, 3.4rem);
        line-height: 1.04;
        letter-spacing: -0.025em;
        color: #0f172a;
        max-width: 460px;
      }

      .insights-intro p {
        margin: 0;
        max-width: 440px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
      }

      .insights-intro .button {
        align-self: flex-start;
        margin-top: 4px;
      }

      .insights-card {
        background: white;
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.03);
        padding: 26px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        transition: transform 220ms ease, box-shadow 220ms ease;
      }

      .insights-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 32px 68px rgba(15, 23, 42, 0.09), 0 4px 12px rgba(15, 23, 42, 0.04);
      }

      .topics-card .card-header,
      .analytics-card .card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 18px;
        padding-bottom: 4px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        padding-bottom: 16px;
      }

      .card-heading {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.005em;
      }

      .card-meta-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 10px;
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
      }

      .card-meta-pill::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.2);
      }

      .topics-card .topic-list {
        display: grid;
        gap: 8px;
      }

      .topic-item {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 14px 16px;
        border-radius: 16px;
        text-decoration: none;
        color: #0f172a;
        border: 1px solid transparent;
        transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
      }

      .topic-item:hover {
        background: #f8fbff;
        border-color: rgba(35, 105, 217, 0.1);
      }

      .topic-item.active {
        background: rgba(31, 143, 74, 0.1);
        border-color: rgba(31, 143, 74, 0.18);
      }

      .topic-item.active .topic-icon {
        background: rgba(31, 143, 74, 0.18);
        color: #1a7a3f;
      }

      .topic-item.active .topic-chevron {
        color: #1f8f4a;
        opacity: 1;
      }

      .topic-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(30, 63, 138, 0.06);
        color: #1e3f8a;
        transition: background 180ms ease, color 180ms ease;
      }

      .topic-item:hover .topic-icon {
        background: rgba(30, 63, 138, 0.1);
      }

      .topic-label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #0f172a;
      }

      .topic-chevron {
        color: #cbd5e1;
        opacity: 0;
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .topic-item:hover .topic-chevron {
        opacity: 1;
        transform: translateX(2px);
      }

      .topics-card .topics-link,
      .analytics-card .analytics-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--brand);
        text-decoration: none;
        margin-top: auto;
        padding-top: 8px;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        transition: color 180ms ease, gap 180ms ease;
      }

      .topics-card .topics-link {
        justify-content: space-between;
      }

      .topics-card .topics-link::after,
      .analytics-card .analytics-link::after {
        content: "→";
        transition: transform 180ms ease;
      }

      .topics-card .topics-link:hover,
      .analytics-card .analytics-link:hover {
        color: #174eab;
      }

      .topics-card .topics-link:hover::after,
      .analytics-card .analytics-link:hover::after {
        transform: translateX(3px);
      }

      .analytics-card .analytics-link {
        align-self: flex-end;
        border-top: none;
        padding-top: 0;
        margin-top: 4px;
      }

      .analytics-card .card-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .analytics-card .card-title-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        width: 100%;
        flex-wrap: wrap;
      }

      .analytics-card .subtitle {
        margin: 6px 0 0;
        color: #64748b;
        font-size: 0.88rem;
        line-height: 1.55;
      }

      .chart-summary {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 4px;
      }

      .chart-summary span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.78rem;
        font-weight: 700;
        color: #475569;
      }

      .chart-summary .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
      }

      .chart-summary .dot.support { background: #1f8f4a; }
      .chart-summary .dot.neutral { background: #94a3b8; }
      .chart-summary .dot.oppose { background: #f04555; }

      .analytics-chart {
        position: relative;
        margin-top: 4px;
      }

      .chart-canvas {
        position: relative;
        height: 220px;
        padding: 4px 0 0 36px;
      }

      .chart-grid {
        position: absolute;
        inset: 0 0 0 36px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .chart-grid-line {
        position: relative;
        width: 100%;
        height: 1px;
        background: rgba(15, 23, 42, 0.06);
      }

      .chart-grid-line:first-child {
        background: rgba(15, 23, 42, 0.08);
      }

      .chart-grid-line:last-child {
        background: rgba(15, 23, 42, 0.1);
      }

      .chart-grid-label {
        position: absolute;
        right: calc(100% + 8px);
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        font-weight: 600;
        color: #94a3b8;
        white-space: nowrap;
      }

      .chart-bars {
        position: relative;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        align-items: end;
        z-index: 1;
      }

      .bar-group {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 4px;
        height: 100%;
        position: relative;
      }

      .bar-group:hover .bar-vertical {
        opacity: 0.55;
      }

      .bar-group:hover .bar-vertical.is-hover {
        opacity: 1;
        filter: brightness(1.05);
      }

      .bar-vertical {
        flex: 1;
        max-width: 14px;
        border-radius: 6px 6px 2px 2px;
        min-height: 4px;
        position: relative;
        transition: opacity 200ms ease, filter 200ms ease, transform 200ms ease;
        cursor: pointer;
      }

      .bar-vertical.support {
        background: linear-gradient(180deg, #2faa5f 0%, #1f8f4a 100%);
      }

      .bar-vertical.neutral {
        background: linear-gradient(180deg, #b8c1cc 0%, #94a3b8 100%);
      }

      .bar-vertical.oppose {
        background: linear-gradient(180deg, #ff6d7a 0%, #f04555 100%);
      }

      .bar-vertical::after {
        content: attr(data-value);
        position: absolute;
        bottom: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%) translateY(4px);
        padding: 4px 8px;
        border-radius: 8px;
        background: #0f172a;
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        opacity: 0;
        pointer-events: none;
        white-space: nowrap;
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .bar-vertical:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .chart-x-axis {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        padding: 12px 0 0 36px;
        border-top: 0;
      }

      .chart-x-axis span {
        text-align: center;
        font-size: 0.74rem;
        font-weight: 600;
        color: #94a3b8;
        letter-spacing: 0.02em;
      }

      .analytics-card .chart-key {
        gap: 18px;
        margin-top: 4px;
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .analytics-card .chart-key span {
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
      }

      .analytics-card .chart-key .dot {
        width: 10px;
        height: 10px;
        border-radius: 3px;
      }

      .analytics-card .dot.support { background: #1f8f4a; }
      .analytics-card .dot.neutral { background: #94a3b8; }
      .analytics-card .dot.oppose { background: #f04555; }

      .cta-panel {
        background: radial-gradient(circle at top, rgba(35, 105, 217, 0.1), transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 36px 40px;
        margin-top: 46px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 32px;
      }

      .cta-icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: rgba(30, 63, 138, 0.08);
        color: #1e3f8a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .cta-icon svg {
        width: 36px;
        height: 36px;
      }

      .cta-panel h3 {
        margin: 0;
        font-size: 1.65rem;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .cta-panel h3 .cta-highlight {
        color: #1f8f4a;
      }

      .cta-panel p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 0.96rem;
        line-height: 1.55;
      }

      .cta-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
      }

      .cta-note {
        margin: 0;
        font-size: 0.82rem;
        color: #94a3b8;
        font-weight: 500;
      }

      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: 360px;
      }

      .footer-brand-header {
        display: inline-flex;
        align-items: center;
        gap: 12px;
      }

      .footer-brand-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
        flex-shrink: 0;
      }

      .footer-brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .footer-brand-text {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.7;
        color: #64748b;
        max-width: 320px;
      }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
      }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before {
        width: 6px;
        opacity: 1;
      }

      .footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg {
        width: 16px;
        height: 16px;
      }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta {
        margin: 0;
        font-size: 0.84rem;
        color: #94a3b8;
      }

      .footer-copyright {
        margin: 0;
        font-size: 0.84rem;
        color: #94a3b8;
        text-align: right;
      }

      @media (max-width: 1040px) {
        .hero,
        .results-grid,
        .trust-grid,
        .insights-grid,
        .communities-grid {
          grid-template-columns: 1fr;
        }

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

        .insights-intro h2 {
          max-width: 100%;
        }

        .communities-map-frame {
          min-height: 320px;
        }

        .section {
          padding-top: 42px;
        }

        .page {
          width: min(100%, calc(100% - 24px));
        }
      }

      @media (max-width: 560px) {
        .chart-canvas {
          height: 180px;
          padding-left: 30px;
        }

        .chart-grid {
          inset: 0 0 0 30px;
        }

        .chart-x-axis {
          padding-left: 30px;
        }

        .chart-x-axis span {
          font-size: 0.68rem;
        }

        .bar-vertical {
          max-width: 10px;
        }
      }

      @media (max-width: 920px) {
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button {
          display: inline-flex;
        }

        .brand-logo {
          width: 38px;
          height: 38px;
        }

        .brand-name {
          font-size: 1rem;
        }

        .brand-tagline {
          display: none;
        }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before {
          display: none;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
          background: #f4f7fb;
          color: var(--brand);
        }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .feature-row {
          flex-direction: column;
          display: flex;
        }

        .hero-title {
          font-size: 2.9rem;
        }

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

        .hero {
          gap: 28px;
          padding: 36px 24px 40px;
          border-radius: 24px;
        }

        .feature-pill,
        .trust-feature-grid {
          width: 100%;
        }

        .trust-feature-grid,
        .communities-topics {
          grid-template-columns: 1fr;
        }

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

        .cta-panel {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 32px 24px;
        }

        .cta-icon {
          justify-self: center;
        }

        .cta-actions {
          align-items: center;
        }

        .footer {
          padding: 44px 0 24px;
        }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta {
          text-align: center;
        }

        .button,
        .button--ghost {
          width: 100%;
        }
      }
    

/* =============================================================
   about.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * { box-sizing: border-box; }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body { line-height: 1.6; }
      img { max-width: 100%; display: block; }

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

      /* ============ HEADER ============ */
      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo { width: 44px; height: 44px; object-fit: contain; }

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
        gap: 4px;
      }

      .brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .brand-tagline {
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.02em;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a.active { color: var(--brand); }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a.active::after { transform: scaleX(1); }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after { transform: scaleX(1); }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before {
        opacity: 1;
        transform: translateY(-12px) scale(1);
      }

      .action-buttons {
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      /* ============ SHARED ============ */
      .section { padding: 72px 0; }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 18px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.76rem;
      }

      .section-heading {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 48px;
      }

      .section-heading .eyebrow {
        justify-content: center;
      }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 580px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      /* ============ ABOUT HERO ============ */
      .about-hero {
        position: relative;
        margin-top: 16px;
        padding: 72px 56px 80px;
        border-radius: 32px;
        overflow: hidden;
        background:
          radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.14) 0%, transparent 38%),
          radial-gradient(circle at 18% 85%, rgba(31, 143, 74, 0.1) 0%, transparent 36%),
          linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.07) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.55;
        -webkit-mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 65%);
        mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 65%);
        pointer-events: none;
      }

      .about-hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 56px;
        align-items: center;
      }

      .about-hero-content {
        position: relative;
        max-width: 560px;
      }

      /* ---- hero visual cluster ---- */
      .hero-visual-stack {
        position: relative;
        height: 380px;
      }

      .hero-card {
        position: absolute;
        background: white;
        border-radius: 20px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.04);
        padding: 18px 20px;
      }

      .hero-card--sentiment {
        top: 0;
        left: 0;
        width: 78%;
        animation: float-a 7s ease-in-out infinite;
      }

      .hero-card--verified {
        top: 28%;
        right: 0;
        width: 60%;
        animation: float-b 8s ease-in-out infinite;
      }

      .hero-card--region {
        bottom: 0;
        left: 12%;
        width: 70%;
        animation: float-c 9s ease-in-out infinite;
      }

      @keyframes float-a {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
      }
      @keyframes float-b {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(7px); }
      }
      @keyframes float-c {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero-card--sentiment,
        .hero-card--verified,
        .hero-card--region { animation: none; }
      }

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

      .hero-card-head strong {
        font-size: 0.85rem;
        font-weight: 700;
        color: #0f172a;
      }

      .hero-card-pill {
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 3px 8px;
        border-radius: 999px;
        text-transform: uppercase;
      }

      .pill-green {
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
      }

      .pill-navy {
        background: rgba(30, 63, 138, 0.1);
        color: var(--brand);
      }

      .hero-sentiment-bar {
        display: flex;
        height: 8px;
        border-radius: 999px;
        overflow: hidden;
        margin: 4px 0 10px;
      }

      .hero-sentiment-bar span {
        height: 100%;
      }

      .hero-sentiment-bar .bar-s { background: #1f8f4a; }
      .hero-sentiment-bar .bar-n { background: #94a3b8; }
      .hero-sentiment-bar .bar-o { background: #f04555; }

      .hero-sentiment-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.7rem;
        color: #64748b;
        font-weight: 600;
      }

      .hero-sentiment-labels span:nth-child(1) { color: #1f8f4a; }
      .hero-sentiment-labels span:nth-child(3) { color: #f04555; }

      .hero-verified-body {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .hero-verified-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .hero-verified-icon svg { width: 20px; height: 20px; }

      .hero-verified-body p {
        margin: 0;
        font-size: 0.78rem;
        color: #64748b;
        line-height: 1.4;
      }

      .hero-verified-body p strong {
        display: block;
        color: #0f172a;
        font-size: 0.92rem;
        margin-bottom: 2px;
      }

      .hero-region-list {
        display: grid;
        gap: 8px;
      }

      .hero-region-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 0.78rem;
      }

      .hero-region-row span:first-child {
        color: #475569;
        font-weight: 600;
      }

      .hero-region-row span:last-child {
        color: var(--brand);
        font-weight: 700;
      }

      .hero-region-bar {
        height: 4px;
        border-radius: 999px;
        background: #eef3fb;
        margin-top: 2px;
        position: relative;
        overflow: hidden;
      }

      .hero-region-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        width: var(--w, 50%);
        background: linear-gradient(90deg, #1e3f8a, #2369d9);
        border-radius: inherit;
      }

      .about-hero h1 {
        margin: 0;
        font-size: clamp(2.6rem, 4.4vw, 4.4rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
        color: #0f172a;
      }

      .about-hero h1 .accent-dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 6px;
        margin-right: -20px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        vertical-align: baseline;
      }

      .about-hero p.lead {
        margin: 24px 0 36px;
        max-width: 620px;
        color: #475569;
        font-size: 1.08rem;
        line-height: 1.7;
      }

      .about-hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      .about-hero-stats {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
        margin-top: 56px;
        padding-top: 32px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        max-width: 720px;
      }

      .stat-item h3 {
        margin: 0 0 6px;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--brand);
        letter-spacing: -0.02em;
      }

      .stat-item p {
        margin: 0;
        font-size: 0.88rem;
        color: #64748b;
        font-weight: 500;
      }

      /* ============ WHY BUILT ============ */
      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }

      .why-content h2 {
        margin: 0 0 22px;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
        max-width: 460px;
      }

      .why-content p {
        margin: 0 0 18px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
        max-width: 500px;
      }

      .why-illustration {
        position: relative;
        padding: 32px;
        background: white;
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
      }

      .timeline {
        display: grid;
        gap: 18px;
      }

      .timeline-item {
        position: relative;
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        align-items: flex-start;
      }

      .timeline-marker {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 0.95rem;
        position: relative;
        z-index: 1;
        border: 2px solid white;
        box-shadow: 0 0 0 1px rgba(30, 63, 138, 0.12);
      }

      .timeline-item:not(:last-child) .timeline-marker::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        width: 2px;
        height: 22px;
        background: rgba(30, 63, 138, 0.14);
        transform: translateX(-50%);
      }

      .timeline-body strong {
        display: block;
        font-size: 0.98rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 4px;
      }

      .timeline-body span {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.55;
      }

      /* ============ APPROACH ============ */
      .approach-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .approach-card {
        position: relative;
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 32px 28px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
        transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
      }

      .approach-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.08);
        border-color: rgba(30, 63, 138, 0.18);
      }

      .approach-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        margin-bottom: 22px;
      }

      .approach-icon svg { width: 26px; height: 26px; }

      .approach-card:hover .approach-icon {
        background: var(--brand);
        color: white;
      }

      .approach-card h3 {
        margin: 0 0 10px;
        font-size: 1.15rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
      }

      .approach-card p {
        margin: 0;
        color: #64748b;
        font-size: 0.94rem;
        line-height: 1.65;
      }

      /* ============ NOT SECTION ============ */
      .not-section { background: transparent; }

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

      .not-card {
        background: rgba(255, 255, 255, 0.7);
        border: 1px dashed rgba(15, 23, 42, 0.18);
        border-radius: 18px;
        padding: 22px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
      }

      .not-card:hover {
        background: white;
        border-color: rgba(15, 23, 42, 0.28);
        transform: translateY(-2px);
      }

      .not-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.05);
        color: #64748b;
        display: grid;
        place-items: center;
      }

      .not-icon svg { width: 20px; height: 20px; }

      .not-card span {
        font-size: 0.88rem;
        font-weight: 600;
        color: #475569;
        line-height: 1.4;
      }

      /* ============ VALUES ============ */
      .values-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .value-card {
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 28px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .value-card:hover {
        transform: translateY(-3px);
        border-color: rgba(31, 143, 74, 0.18);
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.07);
      }

      .value-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .value-icon svg { width: 22px; height: 22px; }

      .value-body h3 {
        margin: 0 0 6px;
        font-size: 1.02rem;
        font-weight: 700;
        color: #0f172a;
      }

      .value-body p {
        margin: 0;
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.6;
      }

      /* ============ FINAL CTA ============ */
      .final-cta {
        position: relative;
        background: radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 12% 80%, rgba(31, 143, 74, 0.12) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 64px 56px;
        text-align: center;
        overflow: hidden;
      }

      .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.5;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        pointer-events: none;
      }

      .final-cta > * { position: relative; z-index: 1; }

      .final-cta h2 {
        margin: 0 auto 16px;
        max-width: 640px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .final-cta h2 .cta-highlight { color: #1f8f4a; }

      .final-cta p {
        margin: 0 auto 32px;
        max-width: 540px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .final-cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ============ FOOTER ============ */
      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: 360px;
      }

      .footer-brand-header {
        display: inline-flex;
        align-items: center;
        gap: 12px;
      }

      .footer-brand-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
        flex-shrink: 0;
      }

      .footer-brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .footer-brand-text {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.7;
        color: #64748b;
        max-width: 320px;
      }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
      }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before {
        width: 6px;
        opacity: 1;
      }

      .footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg { width: 16px; height: 16px; }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta {
        margin: 0;
        font-size: 0.84rem;
        color: #94a3b8;
      }

      .footer-copyright {
        margin: 0;
        font-size: 0.84rem;
        color: #94a3b8;
        text-align: right;
      }

      /* ============ SCROLL ANIMATION ============ */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
      }

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

      @media (prefers-reduced-motion: reduce) {
        .reveal { opacity: 1; transform: none; transition: none; }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1040px) {
        .why-grid,
        .approach-grid,
        .values-grid,
        .not-grid {
          grid-template-columns: 1fr;
        }

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

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

        .about-hero-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .hero-visual-stack {
          height: 340px;
          max-width: 460px;
          margin: 0 auto;
        }

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button { display: inline-flex; }

        .brand-logo { width: 38px; height: 38px; }
        .brand-name { font-size: 1rem; }
        .brand-tagline { display: none; }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before { display: none; }

        .nav-links a:hover,
        .nav-links a:focus-visible {
          background: #f4f7fb;
          color: var(--brand);
        }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .section { padding: 56px 0; }

        .about-hero {
          padding: 48px 22px 56px;
          border-radius: 24px;
        }

        .about-hero-stats {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .hero-visual-stack {
          height: 320px;
          max-width: 100%;
        }

        .hero-card--sentiment { width: 80%; }
        .hero-card--verified { width: 64%; }
        .hero-card--region { width: 74%; }

        .approach-grid,
        .values-grid,
        .not-grid {
          grid-template-columns: 1fr;
        }

        .final-cta { padding: 48px 24px; }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta { text-align: center; }
      }
    

/* =============================================================
   how-it-works.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * { box-sizing: border-box; }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body { line-height: 1.6; }
      img { max-width: 100%; display: block; }

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

      /* ============ HEADER ============ */
      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo { width: 44px; height: 44px; object-fit: contain; }

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
        gap: 4px;
      }

      .brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .brand-tagline {
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.02em;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a.active { color: var(--brand); }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a.active::after { transform: scaleX(1); }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after { transform: scaleX(1); }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before {
        opacity: 1;
        transform: translateY(-12px) scale(1);
      }

      .action-buttons {
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      /* ============ SHARED ============ */
      .section { padding: 72px 0; }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 18px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.76rem;
      }

      .section-heading {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 48px;
      }

      .section-heading .eyebrow {
        justify-content: center;
      }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 580px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      /* ============ HERO ============ */
      .how-hero {
        position: relative;
        margin-top: 16px;
        padding: 72px 56px 80px;
        border-radius: 32px;
        overflow: hidden;
        background:
          radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.14) 0%, transparent 40%),
          radial-gradient(circle at 18% 85%, rgba(31, 143, 74, 0.1) 0%, transparent 38%),
          linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .how-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.7;
        -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        pointer-events: none;
      }

      .how-hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 56px;
        align-items: center;
      }

      .how-hero-content { max-width: 560px; }

      .how-hero h1 {
        margin: 0;
        font-size: clamp(2.6rem, 4.4vw, 4.4rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
        color: #0f172a;
      }

      .how-hero h1 .accent-dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 6px;
        margin-right: -20px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        vertical-align: baseline;
      }

      .how-hero p.lead {
        margin: 24px 0 36px;
        max-width: 540px;
        color: #475569;
        font-size: 1.08rem;
        line-height: 1.7;
      }

      .how-hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      /* Hero visual: step flow */
      .hero-flow {
        position: relative;
        padding: 28px 26px;
        background: white;
        border-radius: 26px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 32px 72px rgba(15, 23, 42, 0.1);
      }

      .hero-flow-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 22px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .hero-flow-header strong {
        font-size: 0.92rem;
        font-weight: 700;
        color: #0f172a;
      }

      .hero-flow-pill {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 4px 9px;
        border-radius: 999px;
        text-transform: uppercase;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .hero-flow-pill::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #1f8f4a;
      }

      .hero-flow-list {
        position: relative;
        display: grid;
        gap: 18px;
      }

      .hero-flow-list::before {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 19px;
        width: 2px;
        background: linear-gradient(180deg, rgba(30, 63, 138, 0.3), rgba(31, 143, 74, 0.3));
        border-radius: 999px;
      }

      .hero-flow-step {
        position: relative;
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 14px;
        align-items: center;
      }

      .hero-flow-step .num {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 2px solid rgba(30, 63, 138, 0.18);
        color: var(--brand);
        font-weight: 800;
        font-size: 0.9rem;
        display: grid;
        place-items: center;
        position: relative;
        z-index: 1;
        box-shadow: 0 0 0 4px white;
      }

      .hero-flow-step.is-current .num {
        background: var(--brand);
        color: white;
        border-color: var(--brand);
        box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(30, 63, 138, 0.15);
      }

      .hero-flow-step span {
        font-size: 0.92rem;
        color: #0f172a;
        font-weight: 600;
      }

      /* ============ STEPS ============ */
      .steps-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .steps-grid::before {
        content: "";
        position: absolute;
        top: 78px;
        left: 9%;
        right: 9%;
        height: 2px;
        background: repeating-linear-gradient(90deg, rgba(30, 63, 138, 0.25) 0 8px, transparent 8px 16px);
        z-index: 0;
      }

      .step-card {
        position: relative;
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 28px 24px;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
        transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
      }

      .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.09);
        border-color: rgba(30, 63, 138, 0.18);
      }

      .step-number {
        position: relative;
        z-index: 1;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--brand);
        color: var(--brand);
        font-weight: 800;
        font-size: 1.05rem;
        display: grid;
        place-items: center;
        margin: 0 auto 22px;
        box-shadow: 0 0 0 6px white, 0 0 0 7px rgba(30, 63, 138, 0.12);
        transition: background 240ms ease, color 240ms ease;
      }

      .step-card:hover .step-number {
        background: var(--brand);
        color: white;
      }

      .step-icon {
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
        margin: 0 auto 16px;
      }

      .step-icon svg { width: 24px; height: 24px; }

      .step-card h3 {
        margin: 0 0 10px;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0f172a;
        text-align: center;
        letter-spacing: -0.01em;
      }

      .step-card p {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.65;
        color: #64748b;
        text-align: center;
      }

      /* ============ DASHBOARD PREVIEW ============ */
      .dashboard-mock {
        position: relative;
        padding: 32px;
        background: white;
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 32px 72px rgba(15, 23, 42, 0.07);
      }

      .dashboard-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 22px;
      }

      .dash-card {
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 20px;
        padding: 22px;
      }

      .dash-card-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
      }

      .dash-card-head strong {
        font-size: 0.96rem;
        font-weight: 700;
        color: #0f172a;
      }

      .dash-card-head small {
        font-size: 0.78rem;
        color: #64748b;
        font-weight: 600;
      }

      .dash-chart {
        height: 200px;
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 10px;
      }

      .dash-y {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 0.7rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: right;
        padding-bottom: 18px;
      }

      .dash-plot {
        position: relative;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      }

      .dash-grid-line {
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(15, 23, 42, 0.05);
      }

      .dash-bars {
        position: absolute;
        inset: 0 0 18px 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        align-items: end;
        gap: 14px;
      }

      .dash-bar-group {
        display: flex;
        align-items: end;
        justify-content: center;
        gap: 3px;
        height: 100%;
      }

      .dash-bar {
        flex: 1;
        max-width: 9px;
        border-radius: 4px 4px 2px 2px;
        min-height: 4px;
      }

      .dash-bar.s { background: linear-gradient(180deg, #2faa5f, #1f8f4a); }
      .dash-bar.n { background: linear-gradient(180deg, #b8c1cc, #94a3b8); }
      .dash-bar.o { background: linear-gradient(180deg, #ff6d7a, #f04555); }

      .dash-x {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
        font-size: 0.68rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: center;
      }

      .dash-legend {
        margin-top: 14px;
        display: flex;
        gap: 16px;
        font-size: 0.78rem;
        font-weight: 600;
        color: #475569;
      }

      .dash-legend span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .dash-legend i {
        width: 9px;
        height: 9px;
        border-radius: 3px;
        display: inline-block;
      }

      .dash-legend .s { background: #1f8f4a; }
      .dash-legend .n { background: #94a3b8; }
      .dash-legend .o { background: #f04555; }

      .dash-side {
        display: grid;
        gap: 18px;
      }

      .dash-region-list {
        display: grid;
        gap: 14px;
      }

      .dash-region {
        display: grid;
        gap: 6px;
      }

      .dash-region-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.82rem;
      }

      .dash-region-row span:first-child {
        color: #475569;
        font-weight: 600;
      }

      .dash-region-row span:last-child {
        color: var(--brand);
        font-weight: 700;
      }

      .dash-region-bar {
        height: 5px;
        background: #eef3fb;
        border-radius: 999px;
        overflow: hidden;
        position: relative;
      }

      .dash-region-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        width: var(--w, 50%);
        background: linear-gradient(90deg, #1e3f8a, #2369d9);
        border-radius: inherit;
      }

      .dash-topic-list {
        display: grid;
        gap: 10px;
      }

      .dash-topic {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 14px;
        font-size: 0.86rem;
        font-weight: 600;
        color: #0f172a;
      }

      .dash-topic .ico {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .dash-topic .ico svg { width: 14px; height: 14px; }

      .dash-topic .pct {
        margin-left: auto;
        font-size: 0.78rem;
        font-weight: 700;
        color: #1f8f4a;
      }

      /* ============ WHY MATTERS ============ */
      .why-matters-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .why-matters-content h2 {
        margin: 0 0 20px;
        font-size: clamp(2rem, 3.2vw, 2.6rem);
        line-height: 1.12;
        letter-spacing: -0.02em;
        color: #0f172a;
        max-width: 460px;
      }

      .why-matters-content p {
        margin: 0 0 20px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
        max-width: 500px;
      }

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

      .comparison-block {
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 18px;
        padding: 20px;
        display: grid;
        gap: 10px;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .comparison-block:hover {
        transform: translateY(-2px);
        border-color: rgba(31, 143, 74, 0.18);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
      }

      .comparison-check {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
      }

      .comparison-check svg { width: 18px; height: 18px; }

      .comparison-block strong {
        font-size: 0.98rem;
        color: #0f172a;
        font-weight: 700;
      }

      .comparison-block span {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.55;
      }

      /* ============ BENEFITS ============ */
      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .benefit-card {
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 28px;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
        transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
      }

      .benefit-card:hover {
        transform: translateY(-4px);
        border-color: rgba(30, 63, 138, 0.18);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
      }

      .benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        transition: background 240ms ease, color 240ms ease;
      }

      .benefit-card:hover .benefit-icon {
        background: var(--brand);
        color: white;
      }

      .benefit-icon svg { width: 22px; height: 22px; }

      .benefit-card h3 {
        margin: 0 0 8px;
        font-size: 1.04rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
      }

      .benefit-card p {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.65;
        color: #64748b;
      }

      /* ============ FINAL CTA ============ */
      .final-cta {
        position: relative;
        background: radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 12% 80%, rgba(31, 143, 74, 0.12) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 64px 56px;
        text-align: center;
        overflow: hidden;
      }

      .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.5;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        pointer-events: none;
      }

      .final-cta > * { position: relative; z-index: 1; }

      .final-cta h2 {
        margin: 0 auto 16px;
        max-width: 640px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .final-cta h2 .cta-highlight { color: #1f8f4a; }

      .final-cta p {
        margin: 0 auto 32px;
        max-width: 540px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .final-cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ============ FOOTER ============ */
      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: 360px;
      }

      .footer-brand-header {
        display: inline-flex;
        align-items: center;
        gap: 12px;
      }

      .footer-brand-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

      .footer-brand-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .footer-brand-text {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.7;
        color: #64748b;
        max-width: 320px;
      }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
      }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before {
        width: 6px;
        opacity: 1;
      }

      .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg { width: 16px; height: 16px; }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta,
      .footer-copyright {
        margin: 0;
        font-size: 0.84rem;
        color: #94a3b8;
      }

      .footer-copyright { text-align: right; }

      /* ============ REVEAL ============ */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
      }

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

      @media (prefers-reduced-motion: reduce) {
        .reveal { opacity: 1; transform: none; transition: none; }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1040px) {
        .how-hero-grid,
        .why-matters-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

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

        .steps-grid::before { display: none; }

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

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

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button { display: inline-flex; }

        .brand-logo { width: 38px; height: 38px; }
        .brand-name { font-size: 1rem; }
        .brand-tagline { display: none; }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before { display: none; }

        .nav-links a:hover,
        .nav-links a:focus-visible {
          background: #f4f7fb;
          color: var(--brand);
        }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .section { padding: 56px 0; }

        .how-hero {
          padding: 48px 22px 56px;
          border-radius: 24px;
        }

        .steps-grid,
        .benefits-grid,
        .comparison-grid {
          grid-template-columns: 1fr;
        }

        .dashboard-mock { padding: 22px; }
        .dash-card { padding: 18px; }
        .final-cta { padding: 48px 24px; }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta { text-align: center; }
      }
    

/* =============================================================
   methodology.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * { box-sizing: border-box; }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body { line-height: 1.6; }
      img { max-width: 100%; display: block; }

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

      /* ============ HEADER ============ */
      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo { width: 44px; height: 44px; object-fit: contain; }

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
        gap: 4px;
      }

      .brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .brand-tagline { font-size: 0.7rem; font-weight: 600; color: #64748b; letter-spacing: 0.02em; }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a.active { color: var(--brand); }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a.active::after { transform: scaleX(1); }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after { transform: scaleX(1); }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before { opacity: 1; transform: translateY(-12px) scale(1); }

      .action-buttons { display: flex; gap: 12px; align-items: center; }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      /* ============ SHARED ============ */
      .section { padding: 72px 0; }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 18px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.76rem;
      }

      .section-heading {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 48px;
      }

      .section-heading .eyebrow { justify-content: center; }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 580px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      /* shared split layout */
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .split.split--reverse > :first-child { order: 2; }

      .split-content h2 {
        margin: 0 0 18px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.15;
        letter-spacing: -0.018em;
        color: #0f172a;
        max-width: 480px;
      }

      .split-content p {
        margin: 0 0 16px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
        max-width: 520px;
      }

      .visual-card {
        position: relative;
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.08);
        padding: 28px;
      }

      .visual-card-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 18px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .visual-card-head strong {
        font-size: 0.94rem;
        color: #0f172a;
        font-weight: 700;
      }

      .pill {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 4px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .pill-green { background: rgba(31, 143, 74, 0.12); color: #1f8f4a; }
      .pill-navy { background: rgba(30, 63, 138, 0.1); color: var(--brand); }
      .pill-muted { background: rgba(15, 23, 42, 0.06); color: #64748b; }

      .pill-green::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #1f8f4a;
      }

      /* ============ HERO ============ */
      .method-hero {
        position: relative;
        margin-top: 16px;
        padding: 72px 56px 80px;
        border-radius: 32px;
        overflow: hidden;
        background:
          radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.14) 0%, transparent 40%),
          radial-gradient(circle at 18% 85%, rgba(31, 143, 74, 0.1) 0%, transparent 38%),
          linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .method-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.65;
        -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        pointer-events: none;
      }

      .method-hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 56px;
        align-items: center;
      }

      .method-hero-content { max-width: 560px; }

      .method-hero h1 {
        margin: 0;
        font-size: clamp(2.4rem, 4vw, 4rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
        color: #0f172a;
      }

      .method-hero h1 .accent-dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 6px;
        margin-right: -20px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        vertical-align: baseline;
      }

      .method-hero p.lead {
        margin: 22px 0 32px;
        max-width: 520px;
        color: #475569;
        font-size: 1.05rem;
        line-height: 1.7;
      }

      .method-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

      .hero-trust-card {
        position: relative;
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
        padding: 26px;
      }

      .trust-row {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .trust-row:last-child { border-bottom: none; }

      .trust-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
      }

      .trust-icon.is-success {
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
      }

      .trust-icon svg { width: 20px; height: 20px; }

      .trust-text strong {
        display: block;
        font-size: 0.94rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 2px;
      }

      .trust-text span {
        font-size: 0.82rem;
        color: #64748b;
      }

      /* ============ VERIFICATION VISUAL ============ */
      .verify-flow {
        position: relative;
        display: grid;
        gap: 14px;
      }

      .verify-step {
        display: grid;
        grid-template-columns: 36px 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 14px 16px;
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 14px;
      }

      .verify-step.is-done {
        background: rgba(31, 143, 74, 0.06);
        border-color: rgba(31, 143, 74, 0.18);
      }

      .verify-step-num {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--brand);
        color: var(--brand);
        font-weight: 800;
        font-size: 0.82rem;
        display: grid;
        place-items: center;
      }

      .verify-step.is-done .verify-step-num {
        background: #1f8f4a;
        border-color: #1f8f4a;
        color: white;
      }

      .verify-step-body strong {
        display: block;
        font-size: 0.92rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 2px;
      }

      .verify-step-body span {
        font-size: 0.8rem;
        color: #64748b;
      }

      .verify-status {
        font-size: 0.74rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #94a3b8;
      }

      .verify-step.is-done .verify-status { color: #1f8f4a; }

      /* ============ STRUCTURED PARTICIPATION ============ */
      .mock-question {
        display: grid;
        gap: 14px;
      }

      .mock-question-label {
        font-size: 0.74rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #1f8f4a;
      }

      .mock-question-text {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.4;
      }

      .mock-options { display: grid; gap: 10px; }

      .mock-option {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 14px;
        cursor: pointer;
        background: white;
        transition: background 200ms ease, border-color 200ms ease;
      }

      .mock-option:hover { border-color: rgba(30, 63, 138, 0.18); background: #f8fbff; }

      .mock-option.is-selected {
        background: rgba(31, 143, 74, 0.08);
        border-color: rgba(31, 143, 74, 0.3);
      }

      .mock-radio {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid rgba(15, 23, 42, 0.18);
        position: relative;
        flex-shrink: 0;
      }

      .mock-option.is-selected .mock-radio {
        border-color: #1f8f4a;
      }

      .mock-option.is-selected .mock-radio::after {
        content: "";
        position: absolute;
        inset: 3px;
        background: #1f8f4a;
        border-radius: 50%;
      }

      .mock-option-text {
        font-size: 0.94rem;
        font-weight: 600;
        color: #0f172a;
      }

      .mock-footer {
        margin-top: 4px;
        font-size: 0.78rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .mock-footer svg { width: 14px; height: 14px; }

      /* ============ PUBLIC SENTIMENT DATA ============ */
      .data-card {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.07);
        padding: 28px;
      }

      .data-card-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 18px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .data-card-head strong {
        font-size: 1rem;
        color: #0f172a;
        font-weight: 700;
      }

      .data-card-head small {
        margin-top: 4px;
        font-size: 0.82rem;
        color: #64748b;
        font-weight: 500;
      }

      .data-chart {
        height: 200px;
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 10px;
      }

      .data-y {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 0.7rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: right;
        padding-bottom: 18px;
      }

      .data-plot {
        position: relative;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      }

      .data-grid-line {
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(15, 23, 42, 0.05);
      }

      .data-bars {
        position: absolute;
        inset: 0 0 18px 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: end;
        gap: 14px;
      }

      .data-bar-group {
        display: flex;
        align-items: end;
        justify-content: center;
        gap: 3px;
        height: 100%;
      }

      .data-bar {
        flex: 1;
        max-width: 10px;
        border-radius: 5px 5px 2px 2px;
        min-height: 4px;
      }

      .data-bar.s { background: linear-gradient(180deg, #2faa5f, #1f8f4a); }
      .data-bar.n { background: linear-gradient(180deg, #b8c1cc, #94a3b8); }
      .data-bar.o { background: linear-gradient(180deg, #ff6d7a, #f04555); }

      .data-x {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        font-size: 0.7rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: center;
      }

      .data-note {
        margin-top: 20px;
        padding: 14px 16px;
        background: rgba(30, 63, 138, 0.05);
        border: 1px solid rgba(30, 63, 138, 0.15);
        border-radius: 14px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }

      .data-note svg {
        width: 18px;
        height: 18px;
        color: var(--brand);
        flex-shrink: 0;
        margin-top: 2px;
      }

      .data-note p {
        margin: 0;
        font-size: 0.86rem;
        color: #475569;
        line-height: 1.55;
      }

      /* ============ MODERATION ============ */
      .moderation-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .mod-card {
        background: white;
        border-radius: 20px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 26px 22px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .mod-card:hover {
        transform: translateY(-4px);
        border-color: rgba(30, 63, 138, 0.18);
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.07);
      }

      .mod-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
      }

      .mod-icon.neg {
        background: rgba(240, 69, 85, 0.08);
        color: #d63d4d;
      }

      .mod-icon.pos {
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
      }

      .mod-icon svg { width: 22px; height: 22px; }

      .mod-card h3 {
        margin: 0;
        font-size: 0.98rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
      }

      .mod-card p {
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.6;
        color: #64748b;
      }

      /* ============ PRIVACY VISUAL ============ */
      .privacy-card {
        position: relative;
        background:
          linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
          radial-gradient(circle at 85% 10%, rgba(35, 105, 217, 0.15), transparent 50%),
          radial-gradient(circle at 10% 85%, rgba(31, 143, 74, 0.12), transparent 50%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 24px;
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.08);
        padding: 32px;
      }

      .privacy-shield {
        width: 76px;
        height: 76px;
        border-radius: 24px;
        background: white;
        color: var(--brand);
        display: grid;
        place-items: center;
        margin-bottom: 22px;
        box-shadow: 0 18px 36px rgba(30, 63, 138, 0.14);
      }

      .privacy-shield svg { width: 36px; height: 36px; }

      .privacy-rows { display: grid; gap: 12px; }

      .privacy-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 12px;
        font-size: 0.88rem;
        color: #0f172a;
        font-weight: 600;
      }

      .privacy-row .check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .privacy-row .check svg { width: 12px; height: 12px; }

      /* ============ PRINCIPLES ============ */
      .principles-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .principle-card {
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 28px;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .principle-card:hover {
        transform: translateY(-4px);
        border-color: rgba(31, 143, 74, 0.18);
        box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
      }

      .principle-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(31, 143, 74, 0.1);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        transition: background 220ms ease, color 220ms ease;
      }

      .principle-card:hover .principle-icon {
        background: #1f8f4a;
        color: white;
      }

      .principle-icon svg { width: 22px; height: 22px; }

      .principle-card h3 {
        margin: 0 0 8px;
        font-size: 1.02rem;
        font-weight: 700;
        color: #0f172a;
      }

      .principle-card p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
        color: #64748b;
      }

      /* ============ FINAL CTA ============ */
      .final-cta {
        position: relative;
        background: radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 12% 80%, rgba(31, 143, 74, 0.12) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 64px 56px;
        text-align: center;
        overflow: hidden;
      }

      .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.5;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        pointer-events: none;
      }

      .final-cta > * { position: relative; z-index: 1; }

      .final-cta h2 {
        margin: 0 auto 16px;
        max-width: 640px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .final-cta h2 .cta-highlight { color: #1f8f4a; }

      .final-cta p {
        margin: 0 auto 32px;
        max-width: 540px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .final-cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ============ FOOTER ============ */
      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
      .footer-brand-header { display: inline-flex; align-items: center; gap: 12px; }
      .footer-brand-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
      .footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .footer-brand-text { margin: 0; font-size: 0.92rem; line-height: 1.7; color: #64748b; max-width: 320px; }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before { width: 6px; opacity: 1; }

      .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg { width: 16px; height: 16px; }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta,
      .footer-copyright { margin: 0; font-size: 0.84rem; color: #94a3b8; }
      .footer-copyright { text-align: right; }

      /* ============ REVEAL ============ */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
      }

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

      @media (prefers-reduced-motion: reduce) {
        .reveal { opacity: 1; transform: none; transition: none; }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1040px) {
        .method-hero-grid,
        .split {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .split.split--reverse > :first-child { order: 0; }

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

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

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button { display: inline-flex; }

        .brand-logo { width: 38px; height: 38px; }
        .brand-name { font-size: 1rem; }
        .brand-tagline { display: none; }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before { display: none; }

        .nav-links a:hover,
        .nav-links a:focus-visible { background: #f4f7fb; color: var(--brand); }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .section { padding: 56px 0; }

        .method-hero {
          padding: 48px 22px 56px;
          border-radius: 24px;
        }

        .moderation-grid,
        .principles-grid {
          grid-template-columns: 1fr;
        }

        .final-cta { padding: 48px 24px; }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta { text-align: center; }
      }
    

/* =============================================================
   topics.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * { box-sizing: border-box; }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body { line-height: 1.6; }
      img { max-width: 100%; display: block; }

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

      /* ============ HEADER ============ */
      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo { width: 44px; height: 44px; object-fit: contain; }
      .brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
      .brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .brand-tagline { font-size: 0.7rem; font-weight: 600; color: #64748b; letter-spacing: 0.02em; }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a.active { color: var(--brand); }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a.active::after { transform: scaleX(1); }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after { transform: scaleX(1); }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before { opacity: 1; transform: translateY(-12px) scale(1); }

      .action-buttons { display: flex; gap: 12px; align-items: center; }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      /* ============ SHARED ============ */
      .section { padding: 72px 0; }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 18px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.76rem;
      }

      .section-heading { text-align: center; max-width: 720px; margin: 0 auto 48px; }
      .section-heading .eyebrow { justify-content: center; }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 580px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .pill {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 4px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .pill-green { background: rgba(31, 143, 74, 0.12); color: #1f8f4a; }
      .pill-navy { background: rgba(30, 63, 138, 0.1); color: var(--brand); }
      .pill-muted { background: rgba(15, 23, 42, 0.06); color: #64748b; }
      .pill-green::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #1f8f4a; }

      /* ============ HERO ============ */
      .topics-hero {
        position: relative;
        margin-top: 16px;
        padding: 72px 56px 80px;
        border-radius: 32px;
        overflow: hidden;
        background:
          radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.14) 0%, transparent 40%),
          radial-gradient(circle at 18% 85%, rgba(31, 143, 74, 0.1) 0%, transparent 38%),
          linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .topics-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.65;
        -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        pointer-events: none;
      }

      .topics-hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 56px;
        align-items: center;
      }

      .topics-hero-content { max-width: 560px; }

      .topics-hero h1 {
        margin: 0;
        font-size: clamp(2.6rem, 4.4vw, 4.4rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
        color: #0f172a;
      }

      .topics-hero h1 .accent-dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 6px;
        margin-right: -20px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        vertical-align: baseline;
      }

      .topics-hero p.lead {
        margin: 24px 0 36px;
        max-width: 540px;
        color: #475569;
        font-size: 1.08rem;
        line-height: 1.7;
      }

      .topics-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

      .topics-hero-stats {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
        margin-top: 48px;
        padding-top: 28px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        max-width: 600px;
      }

      .hero-stat h3 {
        margin: 0 0 4px;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--brand);
        letter-spacing: -0.02em;
      }

      .hero-stat p { margin: 0; font-size: 0.84rem; color: #64748b; font-weight: 500; }

      /* hero visual */
      .hero-spotlight {
        position: relative;
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
        padding: 26px;
      }

      .spotlight-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 16px;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .spotlight-head strong {
        font-size: 0.94rem;
        font-weight: 700;
        color: #0f172a;
      }

      .spotlight-list { display: grid; gap: 12px; }

      .spotlight-row {
        display: grid;
        grid-template-columns: 36px 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 12px 14px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 14px;
        background: #f8fbff;
      }

      .spotlight-row.is-trending {
        background: rgba(31, 143, 74, 0.06);
        border-color: rgba(31, 143, 74, 0.18);
      }

      .spotlight-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
      }

      .spotlight-icon svg { width: 18px; height: 18px; }

      .spotlight-row.is-trending .spotlight-icon {
        background: rgba(31, 143, 74, 0.14);
        color: #1f8f4a;
      }

      .spotlight-body strong {
        display: block;
        font-size: 0.9rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 2px;
      }

      .spotlight-body span {
        font-size: 0.78rem;
        color: #64748b;
      }

      .spotlight-trend {
        font-size: 0.82rem;
        font-weight: 700;
      }

      .spotlight-trend.up { color: #1f8f4a; }
      .spotlight-trend.flat { color: #64748b; }
      .spotlight-trend.down { color: #d63d4d; }

      /* ============ FILTERS ============ */
      .filter-section { padding: 24px 0 12px; }

      .filter-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
      }

      .filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }

      .filter-pill {
        font-family: inherit;
        font-size: 0.85rem;
        font-weight: 600;
        color: #475569;
        padding: 8px 14px;
        border-radius: 999px;
        background: #f4f7fb;
        border: 1px solid transparent;
        cursor: pointer;
        transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .filter-pill:hover {
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
      }

      .filter-pill.is-active {
        background: var(--brand);
        color: white;
        border-color: var(--brand);
      }

      .filter-pill .count {
        font-size: 0.72rem;
        opacity: 0.7;
        font-weight: 700;
      }

      .filter-pill.is-active .count { opacity: 0.85; }

      .filter-controls { display: flex; gap: 10px; align-items: center; }

      .filter-search {
        position: relative;
      }

      .filter-search input {
        font-family: inherit;
        font-size: 0.88rem;
        color: #0f172a;
        padding: 10px 14px 10px 38px;
        border-radius: 999px;
        background: #f4f7fb;
        border: 1px solid transparent;
        outline: none;
        min-width: 220px;
        transition: background 180ms ease, border-color 180ms ease;
      }

      .filter-search input::placeholder { color: #94a3b8; }

      .filter-search input:focus {
        background: white;
        border-color: rgba(30, 63, 138, 0.22);
      }

      .filter-search svg {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        color: #94a3b8;
      }

      .filter-sort {
        font-family: inherit;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0f172a;
        padding: 9px 14px;
        border-radius: 999px;
        background: #f4f7fb;
        border: 1px solid transparent;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .filter-sort svg { width: 14px; height: 14px; color: #64748b; }

      /* ============ TOPIC CARDS ============ */
      .topics-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .topic-card {
        position: relative;
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 26px;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
        display: flex;
        flex-direction: column;
        gap: 18px;
        transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
      }

      .topic-card:hover {
        transform: translateY(-4px);
        border-color: rgba(30, 63, 138, 0.18);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
      }

      .topic-card-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
      }

      .topic-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        transition: background 240ms ease, color 240ms ease;
      }

      .topic-card:hover .topic-icon {
        background: var(--brand);
        color: white;
      }

      .topic-icon svg { width: 22px; height: 22px; }

      .topic-trend {
        font-size: 0.78rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 5px 10px;
        border-radius: 999px;
      }

      .topic-trend.up { background: rgba(31, 143, 74, 0.12); color: #1f8f4a; }
      .topic-trend.flat { background: rgba(15, 23, 42, 0.06); color: #64748b; }
      .topic-trend.down { background: rgba(240, 69, 85, 0.1); color: #d63d4d; }

      .topic-trend svg { width: 12px; height: 12px; }

      .topic-card h3 {
        margin: 0;
        font-size: 1.08rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
      }

      .topic-card p {
        margin: 0;
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.6;
      }

      .topic-sentiment {
        display: flex;
        height: 8px;
        border-radius: 999px;
        overflow: hidden;
      }

      .topic-sentiment span { height: 100%; }
      .topic-sentiment .s { background: #1f8f4a; }
      .topic-sentiment .n { background: #94a3b8; }
      .topic-sentiment .o { background: #f04555; }

      .topic-sentiment-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.72rem;
        font-weight: 600;
        color: #64748b;
      }

      .topic-sentiment-labels .s { color: #1f8f4a; }
      .topic-sentiment-labels .o { color: #d63d4d; }

      .topic-card-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .topic-participants {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
      }

      .topic-participants svg { width: 14px; height: 14px; color: #94a3b8; }

      .topic-view {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap 200ms ease;
      }

      .topic-view::after { content: "→"; transition: transform 200ms ease; }
      .topic-card:hover .topic-view::after { transform: translateX(3px); }

      /* ============ TREND DASHBOARD ============ */
      .dashboard-card {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.07);
        padding: 28px;
      }

      .dashboard-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 22px;
      }

      .dash-panel {
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 18px;
        padding: 22px;
      }

      .dash-panel-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
      }

      .dash-panel-head strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
      }

      .dash-panel-head small {
        font-size: 0.78rem;
        color: #64748b;
        font-weight: 600;
      }

      /* big chart */
      .big-chart {
        height: 220px;
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 10px;
      }

      .big-y {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 0.7rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: right;
        padding-bottom: 18px;
      }

      .big-plot {
        position: relative;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      }

      .grid-line {
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(15, 23, 42, 0.05);
      }

      .big-bars {
        position: absolute;
        inset: 0 0 18px 0;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        align-items: end;
        gap: 12px;
      }

      .big-bar-group {
        display: flex;
        align-items: end;
        justify-content: center;
        gap: 3px;
        height: 100%;
      }

      .big-bar {
        flex: 1;
        max-width: 9px;
        border-radius: 4px 4px 2px 2px;
        min-height: 4px;
      }

      .big-bar.s { background: linear-gradient(180deg, #2faa5f, #1f8f4a); }
      .big-bar.n { background: linear-gradient(180deg, #b8c1cc, #94a3b8); }
      .big-bar.o { background: linear-gradient(180deg, #ff6d7a, #f04555); }

      .big-x {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 12px;
        font-size: 0.68rem;
        color: #94a3b8;
        font-weight: 600;
        text-align: center;
      }

      .chart-legend {
        margin-top: 14px;
        display: flex;
        gap: 16px;
        font-size: 0.78rem;
        font-weight: 600;
        color: #475569;
      }

      .chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
      .chart-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
      .chart-legend .s { background: #1f8f4a; }
      .chart-legend .n { background: #94a3b8; }
      .chart-legend .o { background: #f04555; }

      /* stats */
      .stat-row {
        display: grid;
        gap: 14px;
      }

      .stat-card {
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 14px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .stat-icon svg { width: 18px; height: 18px; }
      .stat-icon.green { background: rgba(31, 143, 74, 0.12); color: #1f8f4a; }

      .stat-body strong {
        display: block;
        font-size: 1.2rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .stat-body span {
        font-size: 0.78rem;
        color: #64748b;
        font-weight: 500;
      }

      /* mover list */
      .mover-list { display: grid; gap: 10px; }

      .mover {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 12px;
      }

      .mover-rank {
        width: 24px;
        height: 24px;
        border-radius: 8px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        font-size: 0.74rem;
        font-weight: 800;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .mover-name {
        flex: 1;
        font-size: 0.88rem;
        font-weight: 600;
        color: #0f172a;
      }

      .mover-delta {
        font-size: 0.82rem;
        font-weight: 700;
        color: #1f8f4a;
      }

      .mover-delta.down { color: #d63d4d; }

      /* ============ MAP SECTION ============ */
      .map-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 28px;
        align-items: stretch;
      }

      .map-card {
        position: relative;
        background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.06);
        padding: 32px;
        min-height: 420px;
        overflow: hidden;
      }

      .map-canvas {
        position: relative;
        height: 100%;
        min-height: 340px;
        border-radius: 18px;
        background:
          radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.65), transparent 70%);
      }

      .map-canvas::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.3px);
        background-size: 12px 12px;
        opacity: 0.6;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
      }

      .map-pin {
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--brand);
        box-shadow: 0 0 0 5px rgba(30, 63, 138, 0.18);
        animation: pulse 2.4s ease-in-out infinite;
      }

      .map-pin.green {
        background: #1f8f4a;
        box-shadow: 0 0 0 5px rgba(31, 143, 74, 0.18);
      }

      .map-pin.red {
        background: #f04555;
        box-shadow: 0 0 0 5px rgba(240, 69, 85, 0.18);
      }

      @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.18); }
      }

      .map-pin-1 { left: 12%; top: 36%; animation-delay: 0s; }
      .map-pin-2 { left: 26%; top: 44%; animation-delay: 0.3s; }
      .map-pin-3 { left: 38%; top: 56%; animation-delay: 0.6s; }
      .map-pin-4 { left: 56%; top: 62%; animation-delay: 0.9s; }
      .map-pin-5 { left: 72%; top: 52%; animation-delay: 1.2s; }
      .map-pin-6 { left: 86%; top: 60%; animation-delay: 1.5s; }

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

      .map-floating-card {
        position: absolute;
        left: 16%;
        top: 16%;
        max-width: 220px;
        background: white;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
        padding: 14px 16px;
      }

      .map-floating-card strong {
        display: block;
        font-size: 0.85rem;
        color: #0f172a;
        margin-bottom: 4px;
      }

      .map-floating-card p {
        margin: 0;
        font-size: 0.78rem;
        color: #64748b;
        line-height: 1.5;
      }

      .map-floating-card .pct {
        margin-top: 8px;
        font-size: 0.8rem;
        font-weight: 700;
        color: #1f8f4a;
      }

      /* regional side panel */
      .regional-panel {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.06);
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .regional-head strong {
        display: block;
        font-size: 1rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 4px;
      }

      .regional-head span {
        font-size: 0.84rem;
        color: #64748b;
      }

      .regional-list { display: grid; gap: 14px; }

      .regional-row {
        display: grid;
        gap: 6px;
      }

      .regional-row-head {
        display: flex;
        justify-content: space-between;
        font-size: 0.86rem;
      }

      .regional-row-head span:first-child {
        color: #475569;
        font-weight: 600;
      }

      .regional-row-head span:last-child {
        color: var(--brand);
        font-weight: 700;
      }

      .regional-bar {
        height: 6px;
        border-radius: 999px;
        background: #eef3fb;
        position: relative;
        overflow: hidden;
      }

      .regional-bar::after {
        content: "";
        position: absolute;
        inset: 0;
        width: var(--w, 50%);
        background: linear-gradient(90deg, #1e3f8a, #2369d9);
        border-radius: inherit;
      }

      /* ============ WHY MATTERS (split) ============ */
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .split-content h2 {
        margin: 0 0 18px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.15;
        letter-spacing: -0.018em;
        color: #0f172a;
        max-width: 460px;
      }

      .split-content p {
        margin: 0 0 16px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
        max-width: 520px;
      }

      .why-points {
        display: grid;
        gap: 14px;
        margin-top: 18px;
      }

      .why-point {
        display: flex;
        gap: 14px;
        padding: 18px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 18px;
        transition: transform 220ms ease, border-color 220ms ease;
      }

      .why-point:hover {
        transform: translateY(-2px);
        border-color: rgba(31, 143, 74, 0.18);
      }

      .why-point-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .why-point-icon svg { width: 18px; height: 18px; }

      .why-point strong {
        display: block;
        font-size: 0.96rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 4px;
      }

      .why-point span {
        font-size: 0.88rem;
        color: #64748b;
        line-height: 1.55;
      }

      /* ============ FINAL CTA ============ */
      .final-cta {
        position: relative;
        background: radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 12% 80%, rgba(31, 143, 74, 0.12) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 64px 56px;
        text-align: center;
        overflow: hidden;
      }

      .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.5;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        pointer-events: none;
      }

      .final-cta > * { position: relative; z-index: 1; }

      .final-cta h2 {
        margin: 0 auto 16px;
        max-width: 640px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .final-cta h2 .cta-highlight { color: #1f8f4a; }

      .final-cta p {
        margin: 0 auto 32px;
        max-width: 540px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .final-cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ============ FOOTER ============ */
      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
      .footer-brand-header { display: inline-flex; align-items: center; gap: 12px; }
      .footer-brand-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
      .footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .footer-brand-text { margin: 0; font-size: 0.92rem; line-height: 1.7; color: #64748b; max-width: 320px; }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before { width: 6px; opacity: 1; }

      .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg { width: 16px; height: 16px; }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta,
      .footer-copyright { margin: 0; font-size: 0.84rem; color: #94a3b8; }
      .footer-copyright { text-align: right; }

      /* ============ REVEAL ============ */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
      }

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

      @media (prefers-reduced-motion: reduce) {
        .reveal { opacity: 1; transform: none; transition: none; }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1040px) {
        .topics-hero-grid,
        .dashboard-grid,
        .map-grid,
        .split {
          grid-template-columns: 1fr;
          gap: 32px;
        }

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

        .filter-bar { flex-direction: column; align-items: stretch; }
        .filter-controls { justify-content: space-between; }

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button { display: inline-flex; }

        .brand-logo { width: 38px; height: 38px; }
        .brand-name { font-size: 1rem; }
        .brand-tagline { display: none; }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before { display: none; }

        .nav-links a:hover,
        .nav-links a:focus-visible { background: #f4f7fb; color: var(--brand); }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .section { padding: 48px 0; }

        .topics-hero {
          padding: 48px 22px 56px;
          border-radius: 24px;
        }

        .topics-hero-stats {
          grid-template-columns: 1fr;
          gap: 18px;
        }

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

        .filter-search input { min-width: 0; width: 100%; }

        .map-card { padding: 22px; min-height: 360px; }
        .map-floating-card { left: 8%; max-width: 200px; }

        .final-cta { padding: 48px 24px; }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta { text-align: center; }
      }
    

/* =============================================================
   contact.html
   ============================================================= */
    
      :root {
        color-scheme: light;
        --bg: #f4f7fb;
        --surface: #ffffff;
        --surface-soft: #f0f4fa;
        --text: #14212f;
        --muted: #667085;
        --brand: #1e3f8a;
        --brand-soft: #e7edfd;
        --accent: #2369d9;
        --success: #1f8f4a;
        --border: rgba(16, 24, 40, 0.08);
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * { box-sizing: border-box; }

      html, body {
        margin: 0;
        min-height: 100%;
        background: radial-gradient(circle at top left, rgba(35, 105, 217, 0.12), transparent 30%),
          linear-gradient(180deg, #f9fbff 0%, #f4f7fb 100%);
        color: var(--text);
        overflow-x: clip;
      }

      body { line-height: 1.6; }
      img { max-width: 100%; display: block; }

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

      /* ============ HEADER ============ */
      .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .header-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
      }

      .menu-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
      }

      .menu-button {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 200ms ease, border-color 200ms ease;
        flex-shrink: 0;
        z-index: 20;
      }

      .menu-button:hover,
      .menu-toggle:focus-visible + .menu-button {
        background: #f8fbff;
        border-color: rgba(30, 63, 138, 0.2);
      }

      .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f172a;
        border-radius: 2px;
        transition: transform 280ms ease, opacity 200ms ease;
      }

      .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
      .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .brand-logo { width: 44px; height: 44px; object-fit: contain; }
      .brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
      .brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .brand-tagline { font-size: 0.7rem; font-weight: 600; color: #64748b; letter-spacing: 0.02em; }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        align-items: center;
        justify-content: center;
        perspective: 800px;
      }

      .nav-links a {
        position: relative;
        display: inline-block;
        padding: 6px 4px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transform-style: preserve-3d;
        transform-origin: center bottom;
        transition: color 260ms ease, transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 260ms ease;
      }

      .nav-links a.active { color: var(--brand); }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .nav-links a.active::after { transform: scaleX(1); }

      .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background: #1f8f4a;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-8px) scale(0.6);
        transition: opacity 260ms ease, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
      }

      .nav-links a:hover,
      .nav-links a:focus-visible {
        color: var(--brand);
        transform: translateY(-4px) translateZ(12px) rotateX(-14deg);
        text-shadow: 0 6px 14px rgba(30, 63, 138, 0.18);
        outline: none;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after { transform: scaleX(1); }

      .nav-links a:hover::before,
      .nav-links a:focus-visible::before { opacity: 1; transform: translateY(-12px) scale(1); }

      .action-buttons { display: flex; gap: 12px; align-items: center; }

      .button,
      .button--ghost {
        border: none;
        border-radius: 999px;
        padding: 12px 22px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .button {
        background: var(--brand);
        color: white;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.16);
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.2);
      }

      .button--ghost {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text);
        border: 1px solid rgba(16, 24, 40, 0.1);
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .button--ghost:hover {
        background: white;
        border-color: rgba(35, 105, 217, 0.18);
        color: var(--brand);
      }

      /* ============ SHARED ============ */
      .section { padding: 72px 0; }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 18px;
        color: #1f8f4a;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.76rem;
      }

      .section-heading { text-align: center; max-width: 720px; margin: 0 auto 48px; }
      .section-heading .eyebrow { justify-content: center; }

      .section-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #0f172a;
      }

      .section-heading p {
        margin: 18px auto 0;
        max-width: 580px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .pill {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        padding: 4px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .pill-green { background: rgba(31, 143, 74, 0.12); color: #1f8f4a; }
      .pill-green::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #1f8f4a; }

      /* ============ HERO ============ */
      .contact-hero {
        position: relative;
        margin-top: 16px;
        padding: 72px 56px 80px;
        border-radius: 32px;
        overflow: hidden;
        background:
          radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.14) 0%, transparent 40%),
          radial-gradient(circle at 18% 85%, rgba(31, 143, 74, 0.1) 0%, transparent 38%),
          linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
      }

      .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.65;
        -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
        pointer-events: none;
      }

      .contact-hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 56px;
        align-items: center;
      }

      .contact-hero-content { max-width: 560px; }

      .contact-hero h1 {
        margin: 0;
        font-size: clamp(2.4rem, 4vw, 4rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
        color: #0f172a;
      }

      .contact-hero h1 .accent-dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 6px;
        margin-right: -20px;
        margin-bottom: 6px;
        border-radius: 50%;
        background: #1f8f4a;
        vertical-align: baseline;
      }

      .contact-hero p.lead {
        margin: 22px 0 32px;
        max-width: 520px;
        color: #475569;
        font-size: 1.05rem;
        line-height: 1.7;
      }

      .contact-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

      /* hero visual */
      .hero-inbox {
        position: relative;
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
        padding: 26px;
      }

      .hero-inbox-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 16px;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .hero-inbox-head strong {
        font-size: 0.94rem;
        font-weight: 700;
        color: #0f172a;
      }

      .inbox-list { display: grid; gap: 12px; }

      .inbox-row {
        display: grid;
        grid-template-columns: 38px 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 14px;
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 14px;
      }

      .inbox-row.is-success {
        background: rgba(31, 143, 74, 0.06);
        border-color: rgba(31, 143, 74, 0.18);
      }

      .inbox-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
      }

      .inbox-icon.green {
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
      }

      .inbox-icon svg { width: 18px; height: 18px; }

      .inbox-body strong {
        display: block;
        font-size: 0.9rem;
        color: #0f172a;
        font-weight: 700;
        margin-bottom: 2px;
      }

      .inbox-body span {
        font-size: 0.78rem;
        color: #64748b;
      }

      .inbox-time {
        font-size: 0.74rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #94a3b8;
      }

      .inbox-row.is-success .inbox-time { color: #1f8f4a; }

      /* ============ CONTACT FORM ============ */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
      }

      .contact-info {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.06);
        padding: 32px;
      }

      .contact-info h2 {
        margin: 0 0 12px;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .contact-info p {
        margin: 0 0 24px;
        font-size: 0.94rem;
        color: #64748b;
        line-height: 1.7;
      }

      .contact-detail-list { display: grid; gap: 16px; }

      .contact-detail {
        display: flex;
        gap: 14px;
        align-items: flex-start;
      }

      .contact-detail-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .contact-detail-icon svg { width: 18px; height: 18px; }

      .contact-detail strong {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 2px;
      }

      .contact-detail span,
      .contact-detail a {
        font-size: 0.9rem;
        color: #475569;
        text-decoration: none;
      }

      .contact-detail a:hover { color: var(--brand); }

      .contact-form-card {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.08);
        padding: 36px;
      }

      .contact-form-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        padding-bottom: 22px;
        margin-bottom: 26px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .contact-form-header h2 {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.015em;
      }

      .contact-form-header p {
        margin: 0;
        font-size: 0.9rem;
        color: #64748b;
      }

      .contact-form {
        display: grid;
        gap: 18px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }

      .field {
        position: relative;
      }

      .field label {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 8px;
        letter-spacing: -0.005em;
      }

      .field label .req { color: #1f8f4a; margin-left: 2px; }

      .field input,
      .field select,
      .field textarea {
        width: 100%;
        font-family: inherit;
        font-size: 0.95rem;
        color: #0f172a;
        padding: 14px 16px;
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.1);
        border-radius: 14px;
        outline: none;
        transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
        font-weight: 500;
      }

      .field textarea {
        resize: vertical;
        min-height: 140px;
        line-height: 1.6;
      }

      .field input::placeholder,
      .field textarea::placeholder { color: #94a3b8; }

      .field input:hover,
      .field select:hover,
      .field textarea:hover {
        background: white;
        border-color: rgba(30, 63, 138, 0.16);
      }

      .field input:focus,
      .field select:focus,
      .field textarea:focus {
        background: white;
        border-color: var(--brand);
        box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.12);
      }

      .field select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 44px;
      }

      .form-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 6px;
      }

      .form-note {
        font-size: 0.82rem;
        color: #94a3b8;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .form-note svg { width: 14px; height: 14px; color: #1f8f4a; }

      .submit-btn {
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 700;
        color: white;
        background: var(--brand);
        padding: 14px 26px;
        border: none;
        border-radius: 999px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 18px 40px rgba(35, 105, 217, 0.18);
        transition: transform 180ms ease, box-shadow 180ms ease;
      }

      .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 48px rgba(35, 105, 217, 0.22);
      }

      .submit-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 200ms ease;
      }

      .submit-btn:hover svg { transform: translateX(3px); }

      /* success state */
      .form-success {
        display: none;
        text-align: center;
        padding: 20px 0 12px;
      }

      .form-success .success-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        margin: 0 auto 18px;
      }

      .form-success .success-icon svg { width: 32px; height: 32px; }

      .form-success h3 {
        margin: 0 0 8px;
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
      }

      .form-success p {
        margin: 0;
        font-size: 0.95rem;
        color: #64748b;
      }

      .contact-form-card.is-sent .contact-form { display: none; }
      .contact-form-card.is-sent .form-success { display: block; }

      /* ============ CONTACT TYPES ============ */
      .types-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .type-card {
        background: white;
        border-radius: 22px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        padding: 30px 26px;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
      }

      .type-card:hover {
        transform: translateY(-4px);
        border-color: rgba(30, 63, 138, 0.18);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
      }

      .type-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: rgba(30, 63, 138, 0.08);
        color: var(--brand);
        display: grid;
        place-items: center;
        transition: background 240ms ease, color 240ms ease;
      }

      .type-card:hover .type-icon {
        background: var(--brand);
        color: white;
      }

      .type-icon svg { width: 24px; height: 24px; }

      .type-card h3 {
        margin: 0;
        font-size: 1.08rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
      }

      .type-card p {
        margin: 0;
        font-size: 0.92rem;
        color: #64748b;
        line-height: 1.6;
      }

      .type-link {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.86rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
      }

      .type-link::after { content: "→"; transition: transform 200ms ease; }
      .type-card:hover .type-link::after { transform: translateX(3px); }

      /* ============ COMMUNITY CONNECTION ============ */
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .split-content h2 {
        margin: 0 0 18px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.15;
        letter-spacing: -0.018em;
        color: #0f172a;
        max-width: 460px;
      }

      .split-content p {
        margin: 0 0 16px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.75;
        max-width: 520px;
      }

      .community-card {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.07);
        padding: 30px;
      }

      .community-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 22px;
      }

      .community-stat {
        background: #f8fbff;
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: 16px;
        padding: 18px 20px;
      }

      .community-stat strong {
        display: block;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--brand);
        letter-spacing: -0.02em;
        margin-bottom: 4px;
      }

      .community-stat span {
        font-size: 0.82rem;
        color: #64748b;
        font-weight: 600;
      }

      .community-rows { display: grid; gap: 10px; }

      .community-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 12px;
      }

      .community-row .ico {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: rgba(31, 143, 74, 0.12);
        color: #1f8f4a;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .community-row .ico svg { width: 16px; height: 16px; }

      .community-row span {
        font-size: 0.92rem;
        font-weight: 600;
        color: #0f172a;
      }

      /* ============ FAQ ============ */
      .faq-list {
        display: grid;
        gap: 14px;
        max-width: 780px;
        margin: 0 auto;
      }

      .faq-item {
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 18px;
        overflow: hidden;
        transition: border-color 220ms ease, box-shadow 220ms ease;
      }

      .faq-item[open] {
        border-color: rgba(30, 63, 138, 0.18);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
      }

      .faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 22px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.01em;
        transition: color 200ms ease;
      }

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

      .faq-item summary:hover { color: var(--brand); }

      .faq-toggle {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: #f4f7fb;
        color: var(--brand);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        transition: background 220ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .faq-item[open] .faq-toggle {
        background: var(--brand);
        color: white;
        transform: rotate(45deg);
      }

      .faq-toggle svg { width: 14px; height: 14px; }

      .faq-body {
        padding: 0 24px 22px;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.7;
      }

      .faq-body p { margin: 0; }

      /* ============ FINAL CTA ============ */
      .final-cta {
        position: relative;
        background: radial-gradient(circle at 85% 20%, rgba(35, 105, 217, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 12% 80%, rgba(31, 143, 74, 0.12) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
        border: 1px solid rgba(35, 105, 217, 0.16);
        border-radius: 32px;
        padding: 64px 56px;
        text-align: center;
        overflow: hidden;
      }

      .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1.3px);
        background-size: 18px 18px;
        opacity: 0.5;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
        pointer-events: none;
      }

      .final-cta > * { position: relative; z-index: 1; }

      .final-cta h2 {
        margin: 0 auto 16px;
        max-width: 640px;
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.015em;
        color: #0f172a;
      }

      .final-cta h2 .cta-highlight { color: #1f8f4a; }

      .final-cta p {
        margin: 0 auto 32px;
        max-width: 540px;
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
      }

      .final-cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ============ FOOTER ============ */
      .footer {
        position: relative;
        margin-top: 48px;
        padding: 48px 0 24px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 32px;
      }

      .footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
      .footer-brand-header { display: inline-flex; align-items: center; gap: 12px; }
      .footer-brand-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
      .footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.015em; }
      .footer-brand-text { margin: 0; font-size: 0.92rem; line-height: 1.7; color: #64748b; max-width: 320px; }

      .footer-locale {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #475569;
        margin-top: 4px;
      }

      .footer-locale::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1f8f4a;
        box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.16);
      }

      .footer-col h4 {
        margin: 0 0 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0f172a;
      }

      .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }

      .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 0.94rem;
        font-weight: 500;
        text-decoration: none;
        padding-left: 0;
        transition: color 180ms ease, padding-left 200ms ease;
      }

      .footer-links a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand);
        transform: translateY(-50%);
        opacity: 0;
        transition: width 200ms ease, opacity 200ms ease;
      }

      .footer-links a:hover,
      .footer-links a:focus-visible {
        color: var(--brand);
        padding-left: 12px;
        outline: none;
      }

      .footer-links a:hover::before,
      .footer-links a:focus-visible::before { width: 6px; opacity: 1; }

      .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: #64748b;
        text-decoration: none;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }

      .social-icon svg { width: 16px; height: 16px; }

      .social-icon:hover,
      .social-icon:focus-visible {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(30, 63, 138, 0.2);
        outline: none;
      }

      .footer-bottom {
        border-top: 1px solid rgba(15, 23, 42, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-bottom-meta,
      .footer-copyright { margin: 0; font-size: 0.84rem; color: #94a3b8; }
      .footer-copyright { text-align: right; }

      /* ============ REVEAL ============ */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
      }

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

      @media (prefers-reduced-motion: reduce) {
        .reveal { opacity: 1; transform: none; transition: none; }
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 1040px) {
        .contact-hero-grid,
        .contact-grid,
        .split {
          grid-template-columns: 1fr;
          gap: 32px;
        }

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

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px 32px;
        }

        .footer-brand {
          grid-column: 1 / -1;
          max-width: 100%;
        }
      }

      @media (max-width: 760px) {
        .site-header {
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          padding: 12px 0;
        }

        .menu-button { display: inline-flex; }

        .brand-logo { width: 38px; height: 38px; }
        .brand-name { font-size: 1rem; }
        .brand-tagline { display: none; }

        .header-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 6px;
          padding: 18px;
          background: white;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 20px;
          box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
          opacity: 0;
          transform: translateY(-12px) scale(0.98);
          pointer-events: none;
          visibility: hidden;
          transform-origin: top right;
          transition: opacity 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), visibility 240ms ease;
          z-index: 15;
        }

        .menu-toggle:checked ~ .header-menu {
          opacity: 1;
          transform: translateY(0) scale(1);
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          flex-direction: column;
          align-items: stretch;
          gap: 2px;
          perspective: none;
          padding: 4px 0;
          border-bottom: 1px solid rgba(15, 23, 42, 0.06);
          margin-bottom: 12px;
        }

        .nav-links a {
          display: block;
          padding: 12px 14px;
          border-radius: 12px;
          font-size: 0.98rem;
          transform: none !important;
          text-shadow: none !important;
          transition: background 180ms ease, color 180ms ease;
        }

        .nav-links a::after,
        .nav-links a::before { display: none; }

        .nav-links a:hover,
        .nav-links a:focus-visible { background: #f4f7fb; color: var(--brand); }

        .action-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          width: 100%;
        }

        .action-buttons .button,
        .action-buttons .button--ghost {
          width: 100%;
          padding: 12px 18px;
        }

        .section { padding: 48px 0; }

        .contact-hero {
          padding: 48px 22px 56px;
          border-radius: 24px;
        }

        .contact-form-card { padding: 24px; }
        .contact-info { padding: 24px; }

        .form-row { grid-template-columns: 1fr; }

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

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

        .final-cta { padding: 48px 24px; }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 36px;
          padding-bottom: 36px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }

        .footer-copyright,
        .footer-bottom-meta { text-align: center; }
      }
    


/* =============================================================
   Community Pulse engagement section + Report Issue modal
   ============================================================= */

.community-pulse {
  position: relative;
  margin: 36px 0 16px;
  padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(35, 105, 217, 0.10), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(31, 143, 74, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.community-pulse-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.community-pulse-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.community-pulse-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 14px 6px 12px;
  background: rgba(31, 143, 74, 0.10);
  border-radius: 999px;
  color: #1f8f4a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  width: max-content;
}

.community-pulse-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f8f4a;
  box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18);
  animation: community-pulse-live 1.8s ease-in-out infinite;
}

@keyframes community-pulse-live {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(31, 143, 74, 0.05); }
}

.community-pulse-heading {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0f172a;
  max-width: 460px;
}

.community-pulse-copy {
  margin: 0;
  max-width: 460px;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.community-pulse-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.community-report-trigger {
  gap: 10px;
}

.community-browse-link {
  gap: 8px;
}

.community-pulse-stats {
  list-style: none;
  padding: 22px 0 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.community-pulse-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.community-pulse-stats strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.community-pulse-stats span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
}

.community-pulse-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.community-pulse-map-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(140deg, #eef3fb 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.community-pulse-map-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(30, 63, 138, 0.18) 1px, transparent 1.4px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 35%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 55%, black 35%, transparent 78%);
  opacity: 0.55;
}

.community-pulse-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 25%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 55%, black 25%, transparent 75%);
}

.issue-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.issue-pin:focus-visible {
  outline: none;
}

.issue-pin:focus-visible .issue-pin-dot {
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.25), 0 0 0 8px rgba(30, 63, 138, 0.12);
}

.issue-pin-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1e3f8a;
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.18);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  z-index: 1;
}

.issue-pin:hover .issue-pin-dot {
  transform: scale(1.15);
}

.issue-pin-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(30, 63, 138, 0.35);
  animation: issue-pin-ripple 2.2s ease-out infinite;
}

.issue-pin--active .issue-pin-dot {
  background: #1f8f4a;
  box-shadow: 0 0 0 4px rgba(31, 143, 74, 0.22), 0 6px 14px rgba(31, 143, 74, 0.35);
  transform: scale(1.2);
}

.issue-pin--active .issue-pin-pulse {
  background: rgba(31, 143, 74, 0.35);
}

@keyframes issue-pin-ripple {
  0% { transform: scale(0.8); opacity: 0.6; }
  80% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.issue-popover {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(300px, calc(100% - 40px));
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  padding: 18px 20px;
  z-index: 3;
  animation: issue-popover-in 220ms ease;
}

@keyframes issue-popover-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.issue-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.issue-popover-header strong {
  font-size: 0.92rem;
  color: #0f172a;
}

.issue-popover-badge {
  padding: 4px 10px;
  background: rgba(30, 63, 138, 0.10);
  color: #1e3f8a;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.issue-popover-title {
  margin: 0 0 12px;
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.issue-popover-support {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.issue-popover-support-bar {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.issue-popover-support-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #1f8f4a, #2ab86a);
  border-radius: inherit;
  transition: width 320ms ease;
}

.issue-popover-support-label {
  font-size: 0.82rem;
  color: #475569;
  white-space: nowrap;
}

.issue-popover-support-label strong {
  color: #1f8f4a;
  font-weight: 800;
  font-size: 0.95rem;
  margin-right: 4px;
}

.issue-popover-cta {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.community-pulse-map-legend {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0 4px;
  color: #64748b;
  font-size: 0.82rem;
}

.community-pulse-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-dot--live {
  background: #1f8f4a;
  box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.20);
}

.legend-dot--idle {
  background: #1e3f8a;
  box-shadow: 0 0 0 3px rgba(30, 63, 138, 0.18);
}

/* ----- Report Issue modal ----- */

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.report-modal[hidden] { display: none; }

.report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: report-fade-in 200ms ease;
}

@keyframes report-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.report-modal-panel {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.28);
  padding: 32px 32px 28px;
  animation: report-modal-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes report-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.report-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #475569;
  transition: background 180ms ease, color 180ms ease;
}

.report-modal-close:hover {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.report-modal-header {
  margin-bottom: 22px;
}

.report-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(30, 63, 138, 0.08);
  color: #1e3f8a;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.report-modal-header h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.report-modal-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.report-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.report-field-optional {
  font-weight: 500;
  color: #94a3b8;
  margin-left: 4px;
}

.report-field input,
.report-field select,
.report-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.report-field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.report-field input:focus,
.report-field select:focus,
.report-field textarea:focus {
  outline: none;
  background: white;
  border-color: rgba(30, 63, 138, 0.40);
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.10);
}

.report-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.report-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.report-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.report-consent a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.report-consent a:hover {
  text-decoration: underline;
}
.report-consent--quick {
  margin: 12px 0 2px;
  font-size: 0.8rem;
}

.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.report-form-note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}

.report-success {
  text-align: center;
  padding: 18px 8px 4px;
}

.report-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(31, 143, 74, 0.12);
  color: #1f8f4a;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.report-success h4 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: #0f172a;
}

.report-success p {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.report-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .community-pulse {
    padding: 28px;
    margin: 58px 0 12px;
  }

  .community-pulse-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .community-pulse-heading {
    font-size: clamp(1.8rem, 5.4vw, 2.4rem);
  }

  .community-pulse-map-frame {
    min-height: 280px;
  }

  .community-pulse-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .community-pulse {
    padding: 22px;
    border-radius: 22px;
  }

  .community-pulse-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .community-pulse-actions .button,
  .community-pulse-actions .button--ghost {
    width: 100%;
    justify-content: center;
  }

  .community-pulse-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
  }

  .community-pulse-stats strong {
    font-size: 1.2rem;
  }

  .community-pulse-map-frame {
    min-height: 240px;
    border-radius: 18px;
  }

  .issue-popover {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: none;
    width: auto;
  }

  .report-modal { padding: 0; align-items: flex-end; }

  .report-modal-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    padding: 26px 22px 24px;
  }

  .report-field-row {
    grid-template-columns: 1fr;
  }

  .report-actions {
    flex-direction: column-reverse;
  }

  .report-actions .button,
  .report-actions .button--ghost {
    width: 100%;
  }
}

/* =============================================================
   Modern hero (.hero--modern)
   ============================================================= */

.hero--modern .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero--modern .hero-visual {
  position: relative;
  z-index: 2;
}

/* --- ambient orbs --- */

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: hero-orb-drift 14s ease-in-out infinite;
}

.hero-orb--a {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(35, 105, 217, 0.45), transparent 70%);
}

.hero-orb--b {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(31, 143, 74, 0.32), transparent 70%);
  animation-delay: -5s;
}

.hero-orb--c {
  width: 260px;
  height: 260px;
  top: 30%;
  left: 45%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 70%);
  opacity: 0.45;
  animation-delay: -9s;
}

@keyframes hero-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.06); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* --- live pill --- */

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  color: #334155;
  width: max-content;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero-live strong {
  color: #0f172a;
  font-weight: 700;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
  animation: hero-live-pulse 1.6s ease-in-out infinite;
}

@keyframes hero-live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.04); }
}

.hero-live-label {
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-live-divider {
  width: 1px;
  height: 12px;
  background: rgba(15, 23, 42, 0.15);
}

/* --- typography refinements --- */

.hero--modern .hero-eyebrow {
  color: #475569;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  margin: 0 0 14px;
  opacity: 0.85;
}

.hero--modern .hero-title {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 0.95;
}

.hero-title-accent {
  background: linear-gradient(120deg, #1e3f8a 0%, #2369d9 45%, #1f8f4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--modern .hero-title::after {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  margin-bottom: 6px;
  box-shadow: 0 0 0 5px rgba(31, 143, 74, 0.18);
  animation: hero-title-dot 2s ease-in-out infinite;
}

@keyframes hero-title-dot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(31, 143, 74, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(31, 143, 74, 0.04); }
}

.hero--modern .hero-copy {
  margin: 22px 0 36px;
  font-size: 1.08rem;
  color: #475569;
}

/* --- CTAs --- */

.hero--modern .hero-cta {
  padding: 14px 26px;
  gap: 8px;
}

.hero--modern .hero-cta.button {
  background: linear-gradient(135deg, #1e3f8a 0%, #2369d9 100%);
  box-shadow: 0 20px 44px rgba(35, 105, 217, 0.30);
}

.hero--modern .hero-cta.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(35, 105, 217, 0.36);
}

/* --- trust strip --- */

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  margin-left: -10px;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-trust-text strong {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-trust-text span {
  color: #64748b;
  font-size: 0.85rem;
}

/* --- hero visual --- */

.hero--modern .hero-visual {
  display: block;
  max-width: 620px;
  justify-self: end;
  width: 100%;
}

.hero-visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(35, 105, 217, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero-visual-frame {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.16),
    0 12px 30px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 8px;
  animation: hero-visual-float 7s ease-in-out infinite;
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
}

@keyframes hero-visual-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(15, 23, 42, 0.78);
  color: white;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.hero-visual-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.28);
  animation: hero-live-pulse 1.6s ease-in-out infinite;
}

/* --- floaters --- */

.hero-floater {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  animation: hero-floater-float 6s ease-in-out infinite;
}

.hero-floater--trending {
  top: -22px;
  right: -16px;
  animation-delay: -1.2s;
}

.hero-floater--responses {
  bottom: -22px;
  left: -16px;
  animation-delay: -3.4s;
}

@keyframes hero-floater-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floater-spark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 32px;
  color: #1f8f4a;
  flex-shrink: 0;
}

.hero-floater-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(35, 105, 217, 0.10);
  color: #1e3f8a;
  flex-shrink: 0;
}

.hero-floater-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-floater-text strong {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.hero-floater-text span {
  color: #64748b;
  font-size: 0.78rem;
}

.hero-floater-text em {
  font-style: normal;
  font-weight: 700;
  color: #1f8f4a;
}

/* --- responsive --- */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 32px 56px;
    gap: 40px;
    margin-top: 12px;
  }

  .hero--modern .hero-visual {
    justify-self: center;
    max-width: 540px;
  }

  .hero-orb--c { display: none; }
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 22px 84px;
    border-radius: 24px;
  }

  .hero-live {
    font-size: 0.76rem;
    padding: 5px 12px 5px 8px;
  }

  .hero--modern .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero--modern .hero-actions { flex-direction: column; align-items: stretch; }
  .hero--modern .hero-actions .button,
  .hero--modern .hero-actions .button--ghost { width: 100%; justify-content: center; }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-floater {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .hero-floater--trending {
    top: -12px;
    right: -8px;
  }

  .hero-floater--responses {
    bottom: -12px;
    left: -8px;
  }

  .hero-floater-spark { width: 48px; height: 24px; }
  .hero-floater-icon { width: 30px; height: 30px; }
  .hero-floater-text strong { font-size: 0.78rem; }
  .hero-floater-text span { font-size: 0.7rem; }
}

/* =============================================================
   Modern footer (.footer--modern)
   ============================================================= */

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

.footer.footer--modern {
  position: relative;
  margin-top: 64px;
  padding: 0 0 28px;
  border-top: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(35, 105, 217, 0.10), transparent 55%),
    radial-gradient(circle at 90% 110%, rgba(31, 143, 74, 0.09), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(245, 248, 253, 0.85) 100%);
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(35, 105, 217, 0.45) 20%, rgba(31, 143, 74, 0.45) 50%, rgba(35, 105, 217, 0.45) 80%, transparent 100%);
  z-index: 1;
}

/* ----- Newsletter banner ----- */

.footer-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 36px 40px;
  margin: 28px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.footer-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(30, 63, 138, 0.08);
  color: #1e3f8a;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.footer-banner-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: #0f172a;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.footer-banner-copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 380px;
}

.footer-subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.footer-subscribe-field {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-subscribe-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.footer-subscribe-field input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.footer-subscribe-field input:focus {
  outline: none;
  border-color: rgba(30, 63, 138, 0.40);
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.10);
}

.footer-subscribe-button {
  padding: 14px 22px;
  font-size: 0.92rem;
  gap: 6px;
  background: linear-gradient(135deg, #1e3f8a 0%, #2369d9 100%);
  box-shadow: 0 18px 40px rgba(35, 105, 217, 0.28);
}

.footer-subscribe-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(35, 105, 217, 0.34);
}

.footer-subscribe-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.footer-subscribe-note--success {
  color: #1f8f4a;
  font-weight: 600;
}

/* ----- Top column grid refinements ----- */

.footer--modern .footer-top {
  padding: 8px 40px 36px;
  position: relative;
  z-index: 1;
}

.footer--modern .footer-top::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.10), transparent);
}

.footer--modern .footer-brand-text {
  font-size: 0.94rem;
}

.footer--modern .footer-locale {
  padding: 6px 12px 6px 10px;
  background: rgba(31, 143, 74, 0.08);
  border-radius: 999px;
  width: max-content;
  font-size: 0.78rem;
}

.footer--modern .footer-locale::before {
  animation: footer-status-pulse 2s ease-in-out infinite;
}

.footer-col--connect {
  display: flex;
  flex-direction: column;
}

.footer-col-sub {
  margin: -10px 0 14px;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
}

.footer--modern .social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.footer--modern .social-icon:hover,
.footer--modern .social-icon:focus-visible {
  background: linear-gradient(135deg, #1e3f8a 0%, #2369d9 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(30, 63, 138, 0.28);
}

/* ----- Bottom row ----- */

.footer--modern .footer-bottom {
  padding: 24px 40px 0;
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 9px;
  background: rgba(31, 143, 74, 0.10);
  color: #1f8f4a;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f8f4a;
  box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.20);
  animation: footer-status-pulse 2s ease-in-out infinite;
}

@keyframes footer-status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31, 143, 74, 0.20); }
  50% { box-shadow: 0 0 0 6px rgba(31, 143, 74, 0.04); }
}

.footer--modern .footer-bottom-meta,
.footer--modern .footer-copyright {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-back-top:hover,
.footer-back-top:focus-visible {
  color: #1e3f8a;
  border-color: rgba(30, 63, 138, 0.25);
  background: rgba(30, 63, 138, 0.04);
  transform: translateY(-1px);
  outline: none;
}

/* ----- Responsive ----- */

@media (max-width: 980px) {
  .footer-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 28px;
    margin: 22px 22px;
  }

  .footer--modern .footer-top {
    padding: 4px 28px 32px;
  }

  .footer--modern .footer-top::after {
    left: 28px;
    right: 28px;
  }

  .footer--modern .footer-bottom {
    padding: 22px 28px 0;
  }
}

@media (max-width: 720px) {
  .footer.footer--modern {
    margin-top: 48px;
    border-radius: 24px;
  }

  .footer-banner {
    padding: 24px 22px;
    margin: 20px 18px;
  }

  .footer-banner-copy h3 {
    font-size: 1.3rem;
  }

  .footer-subscribe {
    grid-template-columns: 1fr;
  }

  .footer-subscribe-button {
    justify-content: center;
  }

  .footer--modern .footer-top {
    padding: 4px 22px 28px;
    gap: 32px;
  }

  .footer--modern .footer-top::after {
    left: 22px;
    right: 22px;
  }

  .footer--modern .footer-bottom {
    padding: 20px 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* =============================================================
   Topic card anchor landing (scroll-margin + :target highlight)
   ============================================================= */

.topic-card[id] {
  scroll-margin-top: 96px;
  transition: box-shadow 320ms ease, transform 320ms ease, border-color 320ms ease;
}

.topic-card[id]:target {
  border-color: rgba(30, 63, 138, 0.45);
  box-shadow:
    0 0 0 4px rgba(30, 63, 138, 0.10),
    0 30px 60px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  animation: topic-target-pulse 1.4s ease-out 1;
}

@keyframes topic-target-pulse {
  0% { box-shadow: 0 0 0 0 rgba(30, 63, 138, 0.30), 0 30px 60px rgba(15, 23, 42, 0.10); }
  60% { box-shadow: 0 0 0 12px rgba(30, 63, 138, 0), 0 30px 60px rgba(15, 23, 42, 0.12); }
  100% { box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.10), 0 30px 60px rgba(15, 23, 42, 0.12); }
}

/* =============================================================
   Quick report — inline expandable form inside Community Pulse
   ============================================================= */

.quick-report {
  margin-top: 14px;
}

.quick-report-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(30, 63, 138, 0.22);
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  color: #1f2937;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.quick-report-trigger:hover,
.quick-report-trigger:focus-visible {
  background: white;
  border-color: rgba(30, 63, 138, 0.36);
  border-style: solid;
  outline: none;
}

.quick-report-trigger:focus-visible {
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.10);
}

.quick-report-trigger-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(30, 63, 138, 0.10);
  color: #1e3f8a;
  flex-shrink: 0;
}

.quick-report-trigger-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.quick-report-trigger-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.quick-report-trigger-text span {
  font-size: 0.78rem;
  color: #64748b;
}

.quick-report-trigger-chevron {
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 280ms ease, color 180ms ease;
}

.quick-report.is-open .quick-report-trigger {
  border-style: solid;
  border-color: rgba(30, 63, 138, 0.36);
  background: white;
}

.quick-report.is-open .quick-report-trigger-chevron {
  transform: rotate(180deg);
  color: #1e3f8a;
}

/* --- expanding panel using the grid-rows trick --- */

.quick-report-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quick-report-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.quick-report.is-open .quick-report-panel {
  grid-template-rows: 1fr;
  margin-top: 10px;
}

.quick-report-form,
.quick-report-success {
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity 280ms ease 80ms, transform 280ms ease 80ms;
}

.quick-report.is-open .quick-report-form,
.quick-report.is-open .quick-report-success:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
}

.quick-report-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.quick-report-field {
  position: relative;
  display: flex;
  align-items: center;
}

.quick-report-field-icon {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  pointer-events: none;
}

.quick-report-field input {
  width: 100%;
  padding: 11px 12px 11px 36px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 10px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-report-field input:focus {
  outline: none;
  background: white;
  border-color: rgba(30, 63, 138, 0.40);
  box-shadow: 0 0 0 4px rgba(30, 63, 138, 0.10);
}

.quick-report-field input:focus + .quick-report-field-icon,
.quick-report-field:focus-within .quick-report-field-icon {
  color: #1e3f8a;
}

.quick-report-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-report-submit {
  padding: 9px 18px;
  font-size: 0.86rem;
  gap: 6px;
  background: linear-gradient(135deg, #1e3f8a 0%, #2369d9 100%);
  box-shadow: 0 14px 30px rgba(35, 105, 217, 0.22);
}

.quick-report-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(35, 105, 217, 0.28);
}

.quick-report-upgrade {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  margin: 0;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e3f8a;
  cursor: pointer;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.quick-report-upgrade:hover,
.quick-report-upgrade:focus-visible {
  background: rgba(30, 63, 138, 0.06);
  color: #112a5e;
  outline: none;
}

/* --- success state --- */

.quick-report-success {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quick-report-success-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 143, 74, 0.12);
  color: #1f8f4a;
  flex-shrink: 0;
}

.quick-report-success-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.quick-report-success-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.quick-report-success-text span {
  font-size: 0.82rem;
  color: #64748b;
}

.quick-report-reset {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e3f8a;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  flex-shrink: 0;
}

.quick-report-reset:hover,
.quick-report-reset:focus-visible {
  background: rgba(30, 63, 138, 0.06);
  border-color: rgba(30, 63, 138, 0.25);
  outline: none;
}

@media (max-width: 600px) {
  .quick-report-fields {
    grid-template-columns: 1fr;
  }

  .quick-report-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-report-submit {
    justify-content: center;
  }

  .quick-report-upgrade {
    justify-content: center;
  }

  .quick-report-success {
    flex-wrap: wrap;
  }
}

/* =============================================================
   Live vote ticker (between hero and Community Pulse)
   ============================================================= */

.live-ticker {
  display: flex;
  align-items: stretch;
  margin: 28px 0 8px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  height: 52px;
}

.live-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: linear-gradient(135deg, #1e3f8a 0%, #2369d9 100%);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.live-ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.30);
  animation: live-ticker-pulse 1.4s ease-in-out infinite;
}

@keyframes live-ticker-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.30); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.05); }
}

.live-ticker-track {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
}

.live-ticker-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
  flex-shrink: 0;
  white-space: nowrap;
  animation: live-ticker-scroll 60s linear infinite;
}

.live-ticker:hover .live-ticker-content {
  animation-play-state: paused;
}

@keyframes live-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.live-vote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #475569;
}

.live-vote strong {
  color: #0f172a;
  font-weight: 700;
}

.live-vote em {
  font-style: normal;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.live-vote em.yes {
  color: #1f8f4a;
  background: rgba(31, 143, 74, 0.12);
}

.live-vote em.no {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.10);
}

.live-vote em.mixed {
  color: #d97706;
  background: rgba(217, 119, 6, 0.10);
}

.live-vote time {
  color: #94a3b8;
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
}

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

/* =============================================================
   Civic-tech positioning + typography polish
   ============================================================= */

.hero--modern .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero--modern .hero-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.hero-civic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  margin-left: 8px;
  background: rgba(30, 63, 138, 0.08);
  border-radius: 999px;
  color: #1e3f8a;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.hero--modern .hero-trust-text strong {
  letter-spacing: -0.005em;
}

/* =============================================================
   Mobile UX sweep — narrow-width refinements for new sections
   ============================================================= */

@media (max-width: 980px) {
  .live-ticker {
    height: 48px;
    margin: 22px 0 4px;
  }

  .live-ticker-label {
    padding: 0 14px;
    font-size: 0.66rem;
  }
}

@media (max-width: 600px) {
  .live-ticker {
    height: 44px;
    border-radius: 14px;
    margin: 18px 0 0;
  }

  .live-ticker-label {
    padding: 0 12px;
    font-size: 0.62rem;
    letter-spacing: 0.10em;
  }

  .live-vote {
    font-size: 0.78rem;
    gap: 6px;
  }

  .live-vote em {
    font-size: 0.66rem;
    padding: 2px 8px;
  }

  .live-vote time {
    font-size: 0.7rem;
  }

  .live-ticker-content {
    gap: 22px;
    padding-left: 22px;
  }
}

/* --- Hero floaters: hide on very narrow to avoid overflow --- */

@media (max-width: 480px) {
  .hero-floater--trending {
    top: -10px;
    right: 6px;
    padding: 8px 12px;
  }

  .hero-floater--responses {
    bottom: -69px;
    left: 6px;
  }

  .hero-floater-spark { display: none; }

  .hero-visual-badge {
    top: 12px;
    left: 12px;
    font-size: 0.66rem;
    padding: 4px 10px 4px 8px;
  }
}

@media (max-width: 360px) {
  .hero-floater {
    transform: scale(0.92);
    transform-origin: top left;
  }

  .hero-floater--responses {
    transform-origin: bottom left;
  }
}

/* --- Footer banner: tighter at narrow widths --- */

@media (max-width: 480px) {
  .footer-banner {
    padding: 22px 18px;
    margin: 18px 14px;
    border-radius: 18px;
  }

  .footer-banner-copy h3 {
    font-size: 1.2rem;
  }

  .footer-banner-eyebrow {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
}

/* --- Community Pulse map: keep popover usable at narrow widths --- */

@media (max-width: 480px) {
  .community-pulse-map-frame {
    min-height: 220px;
  }

  .issue-pin {
    width: 24px;
    height: 24px;
  }

  .issue-popover {
    padding: 14px 16px;
  }

  .issue-popover-title {
    font-size: 0.9rem;
  }
}

/* --- Modal: prevent overscroll bounce on iOS --- */

.report-modal-panel {
  overscroll-behavior: contain;
}

/* --- Quick-report at very narrow widths --- */

@media (max-width: 380px) {
  .quick-report-trigger {
    padding: 10px 12px;
    gap: 10px;
  }

  .quick-report-trigger-text strong { font-size: 0.86rem; }
  .quick-report-trigger-text span { font-size: 0.72rem; }
}

/* =============================================================
   Hero title color override — pure black
   ============================================================= */

.hero--modern .hero-title,
.hero--modern .hero-title-accent {
  color: #000;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

/* =============================================================
   Hero "Report local issues" blinking CTA (right side of banner)
   ============================================================= */

.hero-report-blink {
  position: absolute;
  top: -72px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #2369d9 0%, #1f8f4a 100%);
  color: white;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(31, 143, 74, 0.30);
  white-space: nowrap;
  z-index: 5;
  animation: hero-report-blink 1.2s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-report-blink:hover,
.hero-report-blink:focus-visible {
  animation-play-state: paused;
  opacity: 1;
  transform: scale(1.04);
  box-shadow: 0 24px 50px rgba(35, 105, 217, 0.40);
  outline: none;
}

/* Hide the "Today's top vote" floater since the report blink now occupies the top-right corner */
.hero-floater--trending {
  display: none;
}

.hero-report-blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

@keyframes hero-report-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-report-blink { animation: none; }
}

@media (max-width: 980px) {
  .hero-report-blink {
    position: static;
    transform: none;
    margin: 16px auto 0;
    width: max-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .hero-report-blink:hover,
  .hero-report-blink:focus-visible {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .hero-report-blink {
    font-size: 0.78rem;
    padding: 10px 14px;
  }
}

/* =============================================================
   Community Pulse — Google Map iframe background
   ============================================================= */

.community-pulse-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.85) brightness(1.02);
}

/* Soft white veil so pins and the popover stay readable */
.community-pulse-map-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.32) 70%, rgba(255, 255, 255, 0.5) 100%);
}

/* Hide the legacy fake map pattern and grid — the real map replaces them */
.community-pulse-map-pattern,
.community-pulse-map-grid {
  display: none;
}

/* =============================================================
   Hide "From local communities" + "See what Canada thinks" sections
   ============================================================= */

.communities-grid,
#topics.insights-section {
  display: none;
}

/* ============ LEGAL / POLICY PAGES ============ */
.legal-hero {
  padding: 48px 0 4px;
}
.legal-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-hero .lead {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}
.legal {
  max-width: 820px;
  margin: 0;
  padding: 8px 0 56px;
}
.legal-intro p {
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 16px;
}
.legal section {
  padding: 0;
  margin: 34px 0 0;
}
.legal h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.legal h3 {
  font-size: 1.02rem;
  color: var(--text);
  margin: 22px 0 8px;
}
.legal p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}
.legal li {
  margin: 5px 0;
}
.legal a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.legal a:hover {
  text-decoration: underline;
}
.legal-contact {
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
}
.legal-contact p {
  margin: 0 0 4px;
}
.legal-contact strong {
  color: var(--text);
}
@media (max-width: 640px) {
  .legal h2 { font-size: 1.15rem; }
}
