      .page-shell {
        position: relative;
        z-index: 1;
      }

      .masthead {
        width: var(--container);
        margin: 0 auto;
        padding: 32px 0 12px;
      }

      .masthead-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 14px 18px;
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.58);
        backdrop-filter: blur(18px);
        box-shadow: 0 12px 32px rgba(26, 26, 46, 0.05);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-soft);
      }

      .eyebrow-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--red), var(--yellow));
      }

      .masthead-links {
        display: flex;
        gap: 14px;
        font-size: 0.95rem;
        color: var(--text-soft);
      }

      .hero {
        width: var(--container);
        margin: 0 auto;
        padding: 24px 0 48px;
      }

      .hero-card {
        position: relative;
        overflow: hidden;
        padding: clamp(24px, 4vw, 44px);
        border-radius: calc(var(--radius) + 8px);
        background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
          linear-gradient(145deg, rgba(255, 209, 102, 0.18), rgba(230, 57, 70, 0.1));
        border: 1px solid rgba(26, 26, 26, 0.08);
        box-shadow: var(--shadow);
      }

      .hero-card::before,
      .hero-card::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(1px);
        opacity: 0.8;
      }

      .hero-card::before {
        width: 320px;
        height: 320px;
        top: -180px;
        right: -70px;
        background: radial-gradient(circle, rgba(230, 57, 70, 0.18), transparent 72%);
      }

      .hero-card::after {
        width: 260px;
        height: 260px;
        bottom: -160px;
        left: -90px;
        background: radial-gradient(circle, rgba(255, 209, 102, 0.24), transparent 72%);
      }

      .hero-grid {
        position: relative;
        display: grid;
        gap: 28px;
      }

      .hero-copy {
        width: 100%;
        max-width: none;
      }

      .quote {
        margin: 0 0 18px;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.84rem;
        letter-spacing: 0.04em;
        color: var(--text-soft);
      }

      .hero-title {
        margin: 0;
        font-family: "Instrument Sans", sans-serif;
        font-size: clamp(3.2rem, 8vw, 6.5rem);
        line-height: 0.92;
        letter-spacing: -0.06em;
        text-transform: uppercase;
      }

      .hero-title span {
        color: var(--red);
      }

      .hero-subtitle {
        margin: 18px 0 0;
        max-width: 58ch;
        font-size: clamp(1.12rem, 1.8vw, 1.4rem);
        line-height: 1.45;
        color: var(--text-soft);
      }

      .counter-wrap {
        display: grid;
        gap: 12px;
        align-items: end;
      }

      .counter-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .counter-value {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(3.2rem, 8vw, 7rem);
        line-height: 0.92;
        font-weight: 700;
        color: var(--navy);
      }

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

      .stat-chip {
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(26, 26, 26, 0.08);
      }

      .stat-chip-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .stat-chip-value {
        margin-top: 8px;
        font-size: 1.2rem;
        font-weight: 700;
        font-family: "Instrument Sans", sans-serif;
      }

      main {
        padding-bottom: 80px;
      }

      .story-section {
        width: var(--container);
        margin: 0 auto 28px;
        display: grid;
        gap: 20px;
      }

      .section-card {
        position: relative;
        overflow: hidden;
        display: grid;
        gap: 24px;
        padding: clamp(22px, 3.2vw, 34px);
        border-radius: var(--radius);
        background: linear-gradient(180deg, var(--paper-strong), var(--paper));
        border: 1px solid rgba(26, 26, 26, 0.08);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow);
      }

      .section-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          125deg,
          rgba(255, 255, 255, 0.14),
          rgba(255, 255, 255, 0),
          rgba(255, 255, 255, 0.22)
        );
        opacity: 0.8;
        pointer-events: none;
      }

      .section-head {
        position: sticky;
        top: 12px;
        z-index: 3;
        display: grid;
        gap: 10px;
        max-width: 720px;
        padding-bottom: 2px;
      }

      .section-kicker {
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--red);
      }

      .section-title {
        margin: 0;
        font-family: "Instrument Sans", sans-serif;
        font-size: clamp(2rem, 4vw, 3.3rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        text-transform: uppercase;
      }

      .section-text {
        max-width: 64ch;
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.55;
        color: var(--text-soft);
      }

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

      .ytd-card {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 242, 232, 0.98)),
          var(--paper);
      }

      .ytd-summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .summary-card {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(26, 26, 26, 0.08);
      }

      .summary-card h3 {
        margin: 0 0 10px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-family: "JetBrains Mono", monospace;
        color: var(--text-soft);
      }

      .summary-card p {
        margin: 0;
        font-size: 1.06rem;
        line-height: 1.45;
      }

      .ytd-stat-card {
        min-height: 132px;
      }

      .ytd-stat-card.is-primary {
        background: #111111;
        color: #ffffff;
      }

      .ytd-stat-card.is-primary h3 {
        color: rgba(255, 255, 255, 0.72);
      }

      .ytd-stat-value {
        display: block;
        font-family: "Instrument Sans", sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 4.6rem);
        line-height: 0.92;
        letter-spacing: 0;
      }

      .chart-card {
        padding: 16px 16px 10px;
        border-radius: 22px;
        background: none;
        border: none;
      }

      .chart-shell {
        position: relative;
        min-height: 420px;
        padding-top: 8px;
      }

      .chart-shell.tall {
        min-height: 380px;
      }

      .chart-shell.short {
        min-height: 350px;
      }

      .chart-shell.chart-shell-volume {
        min-height: 308px;
      }

      .chart-shell.chart-shell-ytd {
        min-height: 292px;
      }

      .chart-shell.chart-shell-overlay {
        min-height: 266px;
      }

      .chart-shell.chart-shell-response {
        min-height: 318px;
      }

      .chart-shell.chart-shell-equity {
        min-height: 246px;
      }

      .chart-shell.chart-shell-scatter {
        min-height: 258px;
      }

      .chart-shell.chart-shell-seasonality {
        min-height: 286px;
      }

      .chart-shell.chart-shell-weather-strip {
        min-height: 168px;
      }

      .plot-root {
        width: 100%;
        height: 100%;
        overflow: visible;
      }

      .plot-root > * {
        width: 100%;
        height: 100%;
      }

      .echart-root {
        width: 100%;
        height: 100%;
      }

      .plot-root svg,
      .plot-root figure {
        display: block;
        overflow: visible;
      }

      .plot-render {
        display: grid;
        height: 100%;
        min-height: 0;
      }

      .plot-render--top {
        grid-template-rows: auto minmax(0, 1fr);
        gap: 8px;
      }

      .plot-render--bottom {
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 8px;
      }

      .plot-legend {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 14px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.5px;
        line-height: 15px;
        color: #666666;
      }

      .plot-root .plot {
        max-width: 100%;
      }

      .plot-legend--bottom {
        justify-content: center;
      }

      .plot-legend-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .plot-legend-swatch {
        position: relative;
        display: inline-block;
        width: 18px;
        height: 10px;
        flex: 0 0 auto;
      }

      .plot-legend-swatch::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 4px;
        border-top: 3px solid currentColor;
      }

      .plot-legend-swatch.is-dashed::before {
        border-top-style: dashed;
      }

      .plot-legend-swatch.is-bar::before {
        top: 0;
        bottom: 0;
        border-top: none;
        background: currentColor;
      }

      .plot-legend-swatch.is-dot::before {
        top: 1px;
        left: 4px;
        right: 4px;
        bottom: 1px;
        border-top: none;
        border-radius: 50%;
        background: currentColor;
      }

      .chart-notes {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 12px;
        margin-top: 14px;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .chart-note {
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(26, 26, 46, 0.05);
      }

      .toggle-row,
      .slider-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
      }

      .toggle-button {
        appearance: none;
        border: 1px solid rgba(26, 26, 26, 0.12);
        background: rgba(255, 255, 255, 0.8);
        color: var(--text-soft);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        transition: transform 120ms ease, background 120ms ease, color 120ms ease;
      }

      .toggle-button:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 1);
      }

      .toggle-button.is-active {
        color: white;
        background: var(--navy);
        border-color: var(--navy);
      }

      .compare-window {
        display: grid;
        gap: 14px;
        margin-top: 2px;
      }

      .slider-row label {
        font-family: "JetBrains Mono", monospace;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-soft);
      }

      .window-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(230, 57, 70, 0.1);
        color: var(--red);
        font-family: "JetBrains Mono", monospace;
        font-size: 0.88rem;
      }

      input[type="range"] {
        width: min(360px, 100%);
        accent-color: var(--red);
      }

      .scoreboard {
        display: grid;
        gap: 16px;
      }

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

      .mayor-card {
        padding: 20px;
        border-radius: 22px;
        color: white;
        display: grid;
        gap: 10px;
        min-height: 170px;
      }

      .mayor-card.adams {
        background: linear-gradient(160deg, #21213d, var(--navy));
      }

      .mayor-card.mamdani {
        background: linear-gradient(160deg, #ff5360, var(--red));
      }

      .mayor-card-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 0.74rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        opacity: 0.82;
      }

      .mayor-card h3 {
        margin: 0;
        font-family: "Instrument Sans", sans-serif;
        font-size: clamp(1.7rem, 2vw, 2.2rem);
        line-height: 1;
        text-transform: uppercase;
      }

      .mayor-card p {
        margin: 0;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.88);
      }

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

      .metric-card {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(26, 26, 26, 0.08);
      }

      .metric-card-label {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .metric-card-values {
        display: grid;
        gap: 6px;
        margin-top: 14px;
      }

      .metric-card-values strong {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        line-height: 0.98;
        font-family: "Instrument Sans", sans-serif;
      }

      .metric-card-values span {
        color: var(--text-soft);
        font-size: 1rem;
      }

      .delta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        white-space: nowrap;
      }

      .delta.good {
        color: var(--good);
        background: rgba(22, 121, 77, 0.1);
      }

      .delta.bad {
        color: var(--bad);
        background: rgba(175, 35, 55, 0.1);
      }

      .delta.neutral {
        color: var(--text-soft);
        background: rgba(26, 26, 26, 0.06);
      }

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

      .borough-callout {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(26, 26, 26, 0.08);
      }

      .borough-callout h4 {
        margin: 0 0 10px;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .borough-callout strong {
        display: block;
        font-family: "Instrument Sans", sans-serif;
        font-size: 1.55rem;
        line-height: 1;
      }

      .borough-callout p {
        margin: 8px 0 0;
        color: var(--text-soft);
      }

      .methodology {
        width: var(--container);
        margin: 0 auto;
      }

      .method-grid {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        gap: 16px;
      }

      .method-card {
        padding: 22px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.88));
        color: white;
        box-shadow: var(--shadow);
      }

      .method-card h2 {
        margin: 0 0 12px;
        font-family: "Instrument Sans", sans-serif;
        font-size: 2rem;
        line-height: 0.96;
        text-transform: uppercase;
      }

      .method-card p,
      .method-card li {
        color: rgba(255, 255, 255, 0.84);
        line-height: 1.5;
      }

      .method-card ul {
        margin: 16px 0 0;
        padding-left: 20px;
      }

      .method-card.links {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72));
        color: var(--text);
      }

      .method-card.links p,
      .method-card.links li {
        color: var(--text-soft);
      }

      .dataset-links {
        display: grid;
        gap: 10px;
        margin-top: 14px;
      }

      .dataset-links a {
        padding: 12px 14px;
        border-radius: 16px;
        border: 1px solid rgba(26, 26, 26, 0.08);
        background: rgba(255, 255, 255, 0.82);
        text-decoration: none;
      }

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

      .loading-state {
        position: fixed;
        inset: 0;
        z-index: 1400;
        width: 100vw;
        min-height: 100dvh;
        margin: 0;
        padding: 0;
        border: none;
        background: #06080d;
        box-shadow: none;
      }

      .error-state {
        width: var(--container);
        margin: 36px auto 90px;
        padding: 26px;
        border-radius: var(--radius);
        border: 1px solid rgba(26, 26, 26, 0.08);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: var(--shadow);
      }

      .skyline-loader {
        width: 100%;
        min-height: 100dvh;
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 22px;
        align-items: stretch;
        padding: clamp(28px, 4.5vh, 46px) 0 clamp(18px, 3vh, 34px);
        --loader-scale: 0;
        color: #ffffff;
      }

      .skyline-loader-head,
      .skyline-loader-foot {
        width: min(calc(100vw - 48px), 1240px);
        margin: 0 auto;
      }

      .skyline-loader-head {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 24px;
      }

      .skyline-loader-kicker {
        margin: 0 0 6px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.64);
      }

      .skyline-loader-copy {
        max-width: 680px;
        margin: 0;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.78);
      }

      .skyline-loader-progress {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: baseline;
        gap: 2px;
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: clamp(64px, 11vw, 124px);
        line-height: 0.9;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #ffffff;
      }

      .skyline-loader-progress-mark {
        font-size: 0.42em;
        color: rgba(255, 255, 255, 0.5);
      }

      .skyline-loader-stage {
        position: relative;
        width: 100%;
        min-height: min(64vh, 620px);
        align-self: end;
        overflow: hidden;
        background:
          linear-gradient(
            180deg,
            rgba(6, 8, 13, 1) 0%,
            rgba(6, 8, 13, 1) 26%,
            rgba(8, 12, 20, 0.98) 64%,
            rgba(8, 12, 20, 1) 100%
          );
      }

      .skyline-loader-image-layer {
        position: absolute;
        inset: auto 0 0;
        overflow: hidden;
        height: min(38vh, 320px);
        width: 100%;
      }

      .skyline-loader-image-layer.is-base {
        opacity: 0.22;
      }

      .skyline-loader-image-layer.is-reveal {
        clip-path: inset(0 var(--loader-clip, 100%) 0 0);
        transition: clip-path 260ms ease-out;
      }

      .skyline-loader-image {
        position: absolute;
        left: 50%;
        bottom: 0;
        display: block;
        width: 100%;
        height: auto;
        max-width: none;
        transform: translateX(-50%);
        user-select: none;
        pointer-events: none;
        filter: brightness(0) invert(1);
      }

      .skyline-loader-image-layer.is-reveal .skyline-loader-image {
        filter: brightness(0) invert(1);
      }

      .skyline-loader-foot {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 13px;
        line-height: 18px;
        color: rgba(255, 255, 255, 0.72);
      }

      .skyline-loader-hint {
        color: rgba(255, 255, 255, 0.46);
      }

      .skeleton {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        background: rgba(26, 26, 46, 0.08);
      }

      .skeleton::after {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-100%);
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.46),
          transparent
        );
        animation: shimmer 1.6s infinite;
      }

      .skeleton.hero-line {
        height: 28px;
        width: 48%;
      }

      .skeleton.hero-block {
        height: 138px;
        width: min(480px, 90%);
      }

      .skeleton.hero-copy {
        height: 20px;
        width: min(600px, 100%);
      }

      .skeleton.chart {
        height: 360px;
      }

      .error-state {
        display: none;
        gap: 12px;
      }

      .error-state.is-visible {
        display: grid;
      }

      .retry-button {
        justify-self: start;
        border: none;
        border-radius: 999px;
        padding: 12px 18px;
        color: white;
        background: var(--navy);
        cursor: pointer;
      }

      .is-hidden {
        display: none !important;
      }

      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 540ms ease, transform 540ms ease;
      }

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

      @keyframes shimmer {
        100% {
          transform: translateX(100%);
        }
      }

      @media (max-width: 960px) {
        .hero-strip,
        .metric-grid,
        .mayor-comparison-grid,
        .method-grid,
        .section-summary,
        .ytd-summary,
        .borough-callouts,
        .versus-columns,
        .mayor-era-metrics {
          grid-template-columns: 1fr;
        }

        .mayor-era-top {
          grid-template-columns: 1fr;
        }

        .mayor-era-heading-row {
          grid-template-columns: 1fr;
        }

        .masthead-inner {
          border-radius: 0;
        }
      }

      @media (max-width: 640px) {
        .masthead,
        .hero,
        .story-section,
        .methodology {
          width: min(100vw - 20px, var(--container));
        }

        .hero-card,
        .section-card,
        .error-state,
        .method-card {
          border-radius: 22px;
        }

        .hero-title {
          font-size: clamp(2.4rem, 15vw, 4rem);
        }

        .counter-value {
          font-size: clamp(2.6rem, 13vw, 4.4rem);
        }

        .chart-shell,
        .chart-shell.tall {
          min-height: 320px;
        }

        .chart-shell.chart-shell-volume,
        .chart-shell.chart-shell-ytd,
        .chart-shell.chart-shell-response {
          min-height: 292px;
        }

      .chart-shell.chart-shell-overlay,
      .chart-shell.chart-shell-equity,
      .chart-shell.chart-shell-scatter {
        min-height: 252px;
      }

      .chart-shell.chart-shell-seasonality {
        min-height: 264px;
      }

      .chart-shell.chart-shell-weather-strip {
        min-height: 176px;
      }

        .section-text,
        .hero-subtitle {
          font-size: 1.02rem;
        }

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

        .skyline-loader-head,
        .skyline-loader-foot {
          width: min(calc(100vw - 28px), 1240px);
          flex-direction: column;
          align-items: flex-start;
        }

        .skyline-loader-progress {
          font-size: clamp(52px, 18vw, 72px);
        }

        .skyline-loader-stage {
          min-height: min(46vh, 360px);
        }

        .skyline-loader-image-layer {
          height: min(22vh, 150px);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }

      /* NYC digital design system overrides */
      :root {
        --bg: #ffffff;
        --text: #333333;
        --text-soft: #555555;
        --muted: #777777;
        --grid: #dddddd;
        --panel: #ffffff;
        --panel-soft: #eeeeee;
        --brand-black: #000000;
        --brand-white: #ffffff;
        --brand-blue: #103fef;
        --brand-blue-dark: #050560;
        --brand-blue-light: #70baff;
        --brand-green: #00b703;
        --brand-yellow: #ffb320;
        --brand-red: #ec131e;
        --shadow: none;
        --radius: 0;
        --radius-sm: 0;
      }

      body {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 150%;
        color: var(--text);
        background: var(--bg);
      }

      body::before {
        display: none;
      }

      .masthead {
        width: 100%;
        padding: 0;
        background: var(--brand-black);
        border-bottom: none;
      }

      .masthead-inner {
        width: min(calc(100vw - 32px), 1312px);
        margin: 0 auto;
        min-height: 48px;
        padding: 12px 0;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
        backdrop-filter: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
      }

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

      .nyc-logo {
        width: 58px;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
      }

      .agency-name {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--brand-white);
      }

      .eyebrow {
        display: block;
        margin: 0;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        text-transform: none;
        color: rgba(255, 255, 255, 0.72);
      }

      .eyebrow-dot {
        display: none;
      }

      .masthead-links {
        display: flex;
        gap: 16px;
        align-items: center;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.78);
        --site-header-control-text: var(--brand-white);
        --site-header-control-bg: rgba(255, 255, 255, 0.04);
        --site-header-control-bg-hover: rgba(255, 255, 255, 0.1);
        --site-header-control-bg-active: rgba(255, 255, 255, 0.14);
        --site-header-control-border: rgba(255, 255, 255, 0.18);
      }

      .masthead-links a {
        color: var(--brand-blue-light);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .masthead-links .site-header-button,
      .masthead-links .site-header-icon-button,
      .masthead-links .site-header-icon-link {
        color: var(--brand-white);
        text-decoration: none;
      }

      .masthead-links .site-city-switcher-link {
        color: var(--site-header-panel-text);
        text-decoration: none;
      }

      .hero {
        width: min(calc(100vw - 32px), 1312px);
        padding: 40px 0 30px;
      }

      .hero-card {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
        overflow: visible;
      }

      .hero-card::before,
      .hero-card::after,
      .section-card::before {
        display: none;
      }

      .hero-grid {
        gap: 22px;
      }

      .hero-copy {
        width: 100%;
        max-width: none;
      }

      .quote {
        margin: 0 0 10px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .hero-title {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: clamp(42px, 6vw, 64px);
        line-height: 0.98;
        font-weight: 700;
        letter-spacing: -0.012em;
        text-transform: none;
        color: var(--brand-black);
      }

      .hero-title span {
        display: block;
        margin-top: 8px;
        color: var(--brand-black);
        font-size: clamp(72px, 12vw, 132px);
        line-height: 0.92;
        font-weight: 800;
        letter-spacing: -0.022em;
      }

      .hero-subtitle,
      .section-text,
      .summary-card p,
      .borough-callout p,
      .method-card p,
      .method-card li {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 150%;
        color: #333333;
      }

      .hero-subtitle {
        margin-top: 16px;
        max-width: none;
      }

      .hero-note {
        margin: 12px 0 0;
        max-width: none;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: #555555;
      }

      .hero-subtitle a,
      .hero-note a {
        color: var(--brand-blue);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .hero-note code {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 0.95em;
        font-weight: 700;
        color: #333333;
      }

      .hero-strip {
        border-top: 1px solid var(--grid);
      }

      .stat-chip-label,
      .slider-row label,
      .mayor-card-label,
      .borough-callout h4 {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 20px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .hero-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-top: 14px;
        gap: 20px;
      }

      .stat-chip {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
      }

      .stat-chip-value {
        margin-top: 4px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 17.5px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: -0.025em;
        color: #333333;
      }

      .story-section,
      .methodology {
        width: min(calc(100vw - 32px), 1312px);
        margin: 0 auto 40px;
        padding-top: 22px;
        border-top: 4px solid var(--brand-black);
      }

      .section-card {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
        gap: 18px;
      }

      .section-head {
        position: static;
        width: 100%;
        max-width: 100%;
        gap: 8px;
      }

      .section-title,
      .method-card h2 {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 31.5px;
        line-height: 40px;
        font-weight: 700;
        letter-spacing: -0.012em;
        text-transform: none;
        color: var(--brand-black);
      }

      .section-summary {
        gap: 20px;
      }

      @media (max-width: 960px) {
        .section-head {
          max-width: 100%;
        }

        .chart-grid.two-up {
          grid-template-columns: 1fr;
        }
      }

      .summary-card {
        padding: 0 0 0 14px;
        border: none;
        border-left: 4px solid var(--brand-blue);
        border-radius: 0;
        background: none;
      }

      .summary-card h3 {
        margin: 0 0 4px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
        color: #333333;
      }

      .chart-card {
        padding: 16px 18px 12px;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
      }

      .chart-shell {
        min-height: 400px;
      }

      .chart-shell.tall {
        min-height: 360px;
      }

      .chart-shell.short {
        min-height: 340px;
      }

      .chart-shell.chart-shell-volume {
        min-height: 296px;
      }

      .chart-shell.chart-shell-overlay {
        min-height: 258px;
      }

      .chart-shell.chart-shell-response {
        min-height: 304px;
      }

      .chart-shell.chart-shell-equity {
        min-height: 232px;
      }

      .chart-shell.chart-shell-scatter {
        min-height: 244px;
      }

      .chart-shell.chart-shell-seasonality {
        min-height: 272px;
      }

      .chart-shell.chart-shell-weather-strip {
        min-height: 160px;
      }

      .chart-grid {
        display: grid;
        gap: 18px;
      }

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

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

      .chart-panel {
        display: grid;
        gap: 10px;
      }

      .chart-grid.two-up .chart-panel {
        gap: 10px;
      }

      .chart-panel-title {
        margin: 0;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        color: #333333;
      }

      .chart-notes {
        gap: 10px 20px;
        margin-top: 10px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--text-soft);
      }

      .chart-note {
        padding: 0;
        border-radius: 0;
        background: none;
      }

      .chart-grid.two-up .chart-notes {
        display: flex;
        flex-wrap: wrap;
        gap: 2px 10px;
        margin-top: 2px;
        font-size: 12px;
        line-height: 16px;
      }

      .chart-grid.two-up .chart-note {
        display: inline;
        padding: 0;
      }

      .chart-grid.two-up .chart-note + .chart-note::before {
        content: "•";
        display: inline-block;
        margin-right: 8px;
        color: #999999;
      }

      .section-text {
        max-width: none;
      }

      .toggle-row,
      .slider-row {
        gap: 8px 12px;
      }

      .toggle-stack {
        display: grid;
        gap: 10px;
      }

      .toggle-group {
        display: grid;
        gap: 6px;
      }

      .toggle-group-label {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-soft);
      }

      .toggle-button {
        border: 1px solid var(--brand-blue);
        border-radius: 0;
        background: #ffffff;
        color: #333333;
        padding: 8px 12px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        transition: none;
      }

      .toggle-button:hover {
        transform: none;
        background: #f2f2f2;
      }

      .toggle-button.is-active {
        border-color: var(--brand-blue);
        background: var(--brand-blue);
        color: #ffffff;
      }

      .compare-window {
        gap: 8px;
      }

      .chart-window {
        margin-top: 6px;
        margin-bottom: 10px;
      }

      .timeline-window {
        width: var(--container);
        margin: 0 auto 24px;
        padding: 0 0 8px;
      }

      .timeline-range-shell {
        display: grid;
        gap: 2px;
      }

      .timeline-range-track {
        position: relative;
        height: 24px;
      }

      .timeline-range-track::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 10px;
        height: 4px;
        background: #d0d0d0;
      }

      .timeline-range-fill {
        position: absolute;
        top: 10px;
        height: 4px;
        background: var(--brand-blue);
      }

      .timeline-range-track input[type="range"] {
        position: absolute;
        inset: 0;
        width: 100%;
        margin: 0;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        appearance: none;
      }

      .timeline-range-track input[type="range"]::-webkit-slider-runnable-track {
        height: 24px;
        background: transparent;
      }

      .timeline-range-track input[type="range"]::-moz-range-track {
        height: 24px;
        background: transparent;
      }

      .timeline-range-track input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 14px;
        height: 14px;
        margin-top: 5px;
        border: 2px solid var(--brand-blue);
        border-radius: 50%;
        background: #ffffff;
        box-shadow: none;
        pointer-events: auto;
        cursor: ew-resize;
      }

      .timeline-range-track input[type="range"]::-moz-range-thumb {
        width: 14px;
        height: 14px;
        border: 2px solid var(--brand-blue);
        border-radius: 50%;
        background: #ffffff;
        box-shadow: none;
        pointer-events: auto;
        cursor: ew-resize;
      }

      .timeline-range-meta span {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #666666;
      }

      .timeline-range-meta {
        display: grid;
        grid-template-columns: auto auto auto;
        align-items: center;
        justify-content: space-between;
        gap: 8px 12px;
      }

      .timeline-range-row {
        display: block;
      }

      .timeline-range-meta .timeline-range-value {
        grid-column: auto;
      }

      .timeline-range-meta .timeline-range-value.is-end {
        justify-self: end;
      }

      .timeline-range-value {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--brand-blue);
        text-transform: none;
        letter-spacing: 0;
        font-weight: 500;
      }

      .timeline-range-value.is-end {
        text-align: right;
      }

      .timeline-range-meta .toggle-button {
        white-space: nowrap;
        justify-self: end;
      }

      .timeline-range-track {
        margin-top: 2px;
      }

      .window-pill {
        padding: 0;
        border-radius: 0;
        background: none;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--brand-blue);
      }

      input[type="range"] {
        width: min(420px, 100%);
        accent-color: var(--brand-blue);
      }

      .scoreboard {
        gap: 20px;
      }

      .versus-columns {
        gap: 24px;
      }

      .opening-window-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 24px;
      }

      .opening-window-card {
        display: grid;
        gap: 12px;
        padding: 12px 0 0;
        border-top: 6px solid var(--opening-accent, var(--brand-black));
      }

      .opening-window-card-title {
        margin: 0;
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 24.5px;
        line-height: 30.625px;
        font-weight: 700;
        letter-spacing: -0.012em;
        color: #333333;
      }

      .opening-window-card-window {
        margin: 0;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 150%;
        color: #333333;
      }

      .opening-window-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 24px;
      }

      .opening-window-metric {
        display: grid;
        gap: 2px;
      }

      .opening-window-metric-label {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #666666;
      }

      .opening-window-metric-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 24.5px;
        line-height: 30.625px;
        font-weight: 700;
        letter-spacing: -0.012em;
        color: #111111;
        font-variant-numeric: tabular-nums;
      }

      .mayor-card {
        padding: 12px 0 0;
        min-height: 0;
        border-radius: 0;
        background: none;
        color: #333333;
        border-top: 6px solid #111111;
      }

      .mayor-card.adams {
        background: none;
        border-color: var(--brand-black);
      }

      .mayor-card.mamdani {
        background: none;
        border-color: var(--brand-blue);
      }

      .mayor-card h3,
      .borough-callout strong {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 24.5px;
        line-height: 30.625px;
        font-weight: 700;
        letter-spacing: -0.012em;
        text-transform: none;
        color: #333333;
      }

      .mayor-card p {
        color: #333333;
        font-size: 16px;
        line-height: 150%;
      }

      .metric-grid {
        gap: 0 24px;
      }

      @media (max-width: 960px) {
        .opening-window-grid {
          grid-template-columns: 1fr;
        }

        .opening-window-metrics {
          grid-template-columns: 1fr 1fr;
          gap: 10px 16px;
        }
      }

      .map-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        border: none;
        border-bottom: none;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
      }

      .map-shell {
        position: relative;
        width: min(100%, calc(100vh - 220px), 820px);
        aspect-ratio: 1 / 1;
        height: auto;
        margin-inline: auto;
        border: 0;
        border-radius: 0;
        overflow: hidden;
        background: #f4f6f8;
        box-shadow: none;
      }

      .map-shell::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
        z-index: 450;
      }

      .leaflet-container {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #333333;
        background: #f4f6f8;
      }

      /* Single-hue monochrome basemap: grayscale the CARTO tiles, then tint them toward
         the NYC brand blue so the map reads as one quiet surface under the data. */
      .map-shell .leaflet-tile-pane {
        filter: grayscale(1) sepia(1) saturate(1.4) hue-rotate(170deg) brightness(1) contrast(1);
      }

      .leaflet-container a {
        color: var(--brand-blue);
      }

      .leaflet-control-zoom {
        border: none !important;
        box-shadow: 0 12px 28px rgba(5, 5, 96, 0.14);
      }

      .leaflet-bar a,
      .leaflet-bar a:hover {
        width: 34px;
        height: 34px;
        line-height: 34px;
        border: none;
        border-bottom: 1px solid #d8dde6;
        background: rgba(255, 255, 255, 0.96);
        color: #111111;
      }

      .leaflet-bar a:last-child {
        border-bottom: none;
      }

      .leaflet-bar a:hover {
        color: var(--brand-blue);
        background: #ffffff;
      }

      .leaflet-control-attribution {
        background: rgba(255, 255, 255, 0.92) !important;
        color: #555555;
        padding: 2px 8px;
        border-radius: 999px;
      }

      .leaflet-tooltip.pothole-tooltip {
        padding: 10px 12px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
        color: #111111;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 13px;
        line-height: 18px;
        min-width: 190px;
        max-width: 260px;
      }

      .leaflet-tooltip.pothole-tooltip::before {
        border-top-color: rgba(255, 255, 255, 0.96);
      }

      .leaflet-pane.map-labels-pane {
        mix-blend-mode: multiply;
        opacity: 0.78;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-title {
        font-weight: 700;
        line-height: 17px;
        margin-bottom: 2px;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-meta,
      .leaflet-tooltip.pothole-tooltip .map-tooltip-subtle,
      .leaflet-tooltip.pothole-tooltip .map-tooltip-status-row {
        margin-top: 3px;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-status-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-status {
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 0 8px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.01em;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-status.is-open {
        background: rgba(236, 19, 30, 0.12);
        color: #a20d17;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-status.is-closed {
        background: rgba(22, 121, 77, 0.12);
        color: #115f3d;
      }

      .leaflet-tooltip.pothole-tooltip .map-tooltip-id,
      .leaflet-tooltip.pothole-tooltip .map-tooltip-subtle {
        color: #56616e;
        font-size: 12px;
      }

      .leaflet-pane.map-heat-base-pane {
        filter: grayscale(1) contrast(1.1) brightness(1.02);
      }

      .leaflet-pane.map-silhouette-pane path {
        fill: #ffffff;
        stroke: #c9d0d8;
        stroke-width: 1px;
        opacity: 1;
      }

      .leaflet-pane.map-street-base-pane path {
        stroke: #111111;
        opacity: 1;
      }

      .leaflet-pane.map-heat-pane {
        mix-blend-mode: normal;
        opacity: 1;
      }

      .map-shell.map-heat-mode {
        background: #eceff2;
      }

      .map-shell.map-heat-mode::after {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
      }

      .map-shell.map-heat-mode .leaflet-overlay-pane canvas {
        opacity: 1;
      }

      .map-shell.map-heat-mode .leaflet-pane.map-heat-pane,
      .map-shell.map-heat-mode .leaflet-pane.map-heat-pane svg,
      .map-shell.map-heat-mode .leaflet-pane.map-heat-pane path {
        mix-blend-mode: normal !important;
        opacity: 1 !important;
      }

      .map-shell.map-heat-mode .leaflet-tile-pane,
      .map-shell.map-heat-mode .leaflet-pane.map-labels-pane,
      .map-shell.map-heat-mode .leaflet-pane.map-heat-base-pane {
        opacity: 0 !important;
      }

      .map-shell.map-heat-mode .map-heat-pane canvas {
        mix-blend-mode: normal;
        opacity: 1;
      }

      .map-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        width: min(100%, calc(100vh - 220px), 820px);
        margin-top: 0;
        padding: 14px 2px 0;
        border-top: none;
        background: transparent;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--text-soft);
      }

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

      .map-legend-item.map-legend-copy {
        color: var(--text);
        margin-right: 4px;
      }

      .map-legend-gradient {
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }

      .map-legend-gradient-bar {
        width: 168px;
        height: 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, #111111 0%, #58a7c9 18%, #f0d36b 48%, #f49c45 70%, #de5c28 86%, #9e1b15 100%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
      }

      .map-legend-gradient-label {
        font-weight: 700;
        color: var(--text);
        min-width: 10px;
      }

      .map-swatch {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
      }

      .map-swatch.open {
        background: var(--brand-red);
      }

      .map-swatch.closed {
        background: #16794d;
      }

      .map-swatch.repairs {
        background: #111111;
        width: 14px;
        height: 3px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
      }

      .map-swatch.hotspot {
        background: #ffb320;
      }

      .map-swatch.heat {
        width: 16px;
        height: 10px;
        border-radius: 999px;
        border: 0;
        box-shadow: none;
        background: linear-gradient(90deg, #cfe8ef 0%, #8cc9d1 28%, #f0d36b 52%, #f49c45 72%, #de5c28 88%, #9e1b15 100%);
      }

      .map-subsection {
        margin-bottom: 28px;
      }

      .map-subsection .toggle-row {
        margin-bottom: 12px;
      }

      .map-subsection-text {
        margin-top: 12px;
      }

      .repeat-table-head {
        display: grid;
        gap: 8px 10px;
        grid-template-columns: 72px 88px minmax(0, 2.2fr) minmax(96px, 0.8fr) minmax(104px, 0.95fr) minmax(104px, 0.95fr);
        align-items: center;
        justify-items: start;
      }

      .repeat-table-head {
        padding: 0 0 8px;
        border-bottom: 1px solid var(--grid);
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #666666;
      }

      .repeat-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0;
      }

      .repeat-item {
        display: grid;
        grid-template-columns: 72px 88px minmax(0, 2.2fr) minmax(96px, 0.8fr) minmax(104px, 0.95fr) minmax(104px, 0.95fr);
        gap: 8px 10px;
        align-items: start;
        justify-items: start;
        padding: 4px 0 8px;
        border-bottom: 1px solid var(--grid);
      }

      .repeat-rank {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--brand-blue);
      }

      .repeat-location {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: -0.025em;
        color: #333333;
        min-width: 0;
        text-indent: 0;
      }

      .repeat-meta,
      .repeat-footnote {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: #555555;
        text-indent: 0;
      }

      .repeat-count {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 20px;
        line-height: 24px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: #111111;
        font-variant-numeric: tabular-nums;
        text-align: left;
        justify-self: start;
      }

      .seasonality-frame {
        display: grid;
        gap: 14px;
      }

      .seasonality-weather-grid {
        align-items: start;
      }

      .seasonality-weather-grid .chart-card {
        gap: 10px;
      }

      .seasonality-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: #555555;
      }

      .seasonality-legend-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .seasonality-swatch {
        width: 14px;
        height: 14px;
        border: 1px solid rgba(0, 0, 0, 0.12);
      }

      .seasonality-swatch.complaints {
        background: #103fef;
      }

      .seasonality-swatch.freeze {
        background: #dce8ff;
      }

      .seasonality-swatch.snow {
        background: #ffffff;
      }

      .seasonality-swatch.rain {
        background: #7ab8ff;
      }

      .seasonality-grid {
        display: grid;
        grid-template-columns: 78px repeat(12, minmax(0, 1fr));
        gap: 8px;
        min-width: 1080px;
      }

      .seasonality-head,
      .seasonality-year {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #555555;
      }

      .seasonality-head.is-corner {
        justify-content: flex-start;
      }

      .seasonality-year {
        justify-content: flex-start;
        color: #333333;
      }

      .seasonality-cell {
        display: grid;
        align-content: start;
        gap: 4px;
        min-height: 118px;
        padding: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
      }

      .seasonality-cell.is-empty {
        background: #f5f5f5;
        border-style: dashed;
      }

      .seasonality-cell-top {
        display: grid;
        gap: 1px;
      }

      .seasonality-cell-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 22px;
        line-height: 24px;
        font-weight: 700;
        letter-spacing: -0.01em;
        font-variant-numeric: tabular-nums;
      }

      .seasonality-cell-month,
      .seasonality-cell-weather,
      .seasonality-cell-weather-line {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
      }

      .seasonality-cell-month {
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.82;
      }

      .seasonality-cell-weather {
        display: grid;
        gap: 1px;
        opacity: 0.9;
      }

      .seasonality-cell-weather-line strong {
        font-weight: 800;
      }

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

      .mayor-era-card {
        --card-bg: #ffffff;
        --card-text: #111111;
        --card-muted: rgba(17, 17, 17, 0.78);
        --card-panel: rgba(17, 17, 17, 0.04);
        --card-panel-border: rgba(17, 17, 17, 0.12);
        --card-label: #111111;
        --card-value: #111111;
        --card-link: #111111;
        --card-grade-bg: rgba(17, 17, 17, 0.08);
        --card-grade-border: rgba(17, 17, 17, 0.2);
        --card-grade-text: #111111;
        --card-accent: #555555;
        display: grid;
        gap: 16px;
        padding: 18px;
        border: 1px solid var(--card-panel-border);
        background: var(--card-bg);
        color: var(--card-text);
        position: relative;
      }

      .mayor-era-card::before {
        display: none;
      }

      .mayor-era-top {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 16px;
        align-items: stretch;
      }

      .mayor-portrait {
        position: relative;
        height: 100%;
        min-height: 176px;
        overflow: hidden;
        background: var(--card-panel);
        border: 1px solid var(--card-panel-border);
      }

      .mayor-portrait::after {
        content: "";
        position: absolute;
        inset: 0;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        pointer-events: none;
      }

      .mayor-portrait img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        filter: saturate(0.96) contrast(1.02);
      }

      .mayor-portrait-fallback {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 12px;
        background: var(--card-panel);
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 20px;
        line-height: 22px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--card-text);
      }

      .mayor-era-copy {
        display: grid;
        gap: 10px;
      }

      .mayor-era-heading-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: start;
      }

      .mayor-era-header {
        display: grid;
        gap: 2px;
      }

      .mayor-era-name {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 24.5px;
        line-height: 30.625px;
        font-weight: 700;
        letter-spacing: -0.012em;
        color: var(--card-text);
      }

      .mayor-era-period {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--card-muted);
      }

      .mayor-era-grade {
        display: grid;
        gap: 2px;
        min-width: 96px;
        padding: 10px 12px;
        border: 1px solid var(--card-grade-border);
        background: var(--card-grade-bg);
        color: var(--card-grade-text);
      }

      .mayor-era-grade.is-best {
        box-shadow: 0 0 0 2px var(--card-accent) inset;
      }

      .mayor-era-grade-label {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.82;
      }

      .mayor-era-grade-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 36px;
        line-height: 34px;
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      .mayor-era-grade-score {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 13px;
        line-height: 16px;
        opacity: 0.9;
      }

      .mayor-era-deck {
        margin: 0;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--card-muted);
      }

      .mayor-era-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 20px;
        padding-top: 14px;
        border-top: 1px solid var(--card-panel-border);
      }

      .mayor-era-metric {
        display: grid;
        gap: 4px;
        min-width: 0;
      }

      .mayor-era-metric.is-wide {
        grid-column: 1 / -1;
        padding-top: 10px;
        border-top: 1px dashed var(--card-panel-border);
      }

      .mayor-era-metric-label {
        display: block;
        align-items: center;
        min-height: 20px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--card-label);
      }

      .mayor-era-metric-label.is-best {
        color: var(--card-accent);
      }

      .metric-star {
        display: inline-block;
        margin-right: 4px;
        color: var(--card-accent);
      }

      .mayor-era-metric-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 34px;
        line-height: 36px;
        font-weight: 700;
        letter-spacing: -0.012em;
        color: var(--card-value);
        font-variant-numeric: tabular-nums;
        overflow-wrap: anywhere;
      }

      .mayor-era-note {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        color: var(--card-muted);
      }

      .mayor-era-context {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        font-weight: 700;
        color: var(--card-text);
      }

      .mayor-era-footer {
        display: grid;
        gap: 6px;
        padding-top: 14px;
        border-top: 1px solid var(--card-panel-border);
      }

      .mayor-era-source {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 20px;
        color: var(--card-muted);
      }

      .mayor-era-source a {
        color: var(--card-link);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .metric-card {
        display: grid;
        gap: 12px;
        padding: 16px 0;
        border: none;
        border-bottom: 1px solid var(--grid);
        border-radius: 0;
        background: none;
      }

      .metric-card-head {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: baseline;
      }

      .metric-card-label {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
        color: #333333;
      }

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

      .metric-card-column {
        display: grid;
        gap: 4px;
        min-width: 0;
      }

      .metric-card-column.adams {
        padding-right: 8px;
      }

      .metric-card-column.mamdani {
        padding-left: 8px;
        border-left: 1px solid var(--grid);
      }

      .metric-card-column.is-winner.adams {
        background: none;
      }

      .metric-card-column.is-winner.mamdani {
        background: none;
      }

      .metric-card-party {
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #333333;
      }

      .metric-card-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 36px;
        line-height: 40px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: #111111;
        font-variant-numeric: tabular-nums;
        overflow-wrap: anywhere;
      }

      .metric-card-support,
      .metric-card-note {
        font-size: 14px;
        line-height: 150%;
        color: #666666;
      }

      .delta {
        padding: 0;
        border-radius: 0;
        background: none !important;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 150%;
        font-weight: 700;
      }

      .borough-callout {
        padding: 16px 0 0;
        border: none;
        border-radius: 0;
        background: none;
      }

      .method-grid {
        gap: 24px;
      }

      .method-card {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none !important;
        color: #333333;
        box-shadow: none;
      }

      .method-card.links p,
      .method-card.links li {
        color: #333333;
      }

      .dataset-links {
        gap: 0;
        margin-top: 12px;
      }

      .dataset-links a {
        padding: 10px 0;
        border: none;
        border-bottom: 1px solid var(--grid);
        border-radius: 0;
        background: none;
        color: var(--brand-blue);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .loading-state {
        width: 100vw;
        padding: 0;
        border: none;
        border-radius: 0;
        background: #06080d;
        box-shadow: none;
      }

      .error-state {
        width: var(--container);
        padding: 20px;
        border: 1px solid var(--grid);
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
      }

      .skeleton {
        border-radius: 0;
        background: #efefef;
      }

      .retry-button {
        border-radius: 0;
        padding: 10px 14px;
        background: var(--brand-blue);
      }

      .section-summary {
        grid-template-columns: 1fr;
        max-width: 82ch;
      }

      .ytd-summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 100%;
        gap: 24px;
      }

      .ytd-stat-card {
        min-height: 0;
        padding: 12px 0 0;
        border: none;
        border-top: 6px solid var(--brand-black);
        border-radius: 0;
        background: none;
      }

      .ytd-stat-card h3 {
        margin: 0 0 6px;
        font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 11.9px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #666666;
      }

      .ytd-stat-card.is-primary {
        background: none;
        color: var(--text);
        border-top-color: var(--brand-blue);
      }

      .ytd-stat-card.is-primary h3 {
        color: #666666;
      }

      .ytd-stat-value {
        font-family: "Clash Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: clamp(34px, 3.4vw, 49px);
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -0.012em;
        color: #111111;
        font-variant-numeric: tabular-nums;
      }

      .ytd-stat-card.is-primary .ytd-stat-value {
        color: var(--brand-blue);
      }

      @media (max-width: 960px) {
        .ytd-summary {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      .chart-grid.two-up {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .chart-grid.two-up .chart-notes {
        display: grid;
        gap: 6px;
        margin-top: 6px;
        font-size: 13px;
        line-height: 19px;
      }

      .chart-grid.two-up .chart-note {
        display: block;
      }

      .chart-grid.two-up .chart-note + .chart-note::before {
        content: none;
      }

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

      .chart-shell.chart-shell-seasonality {
        min-height: 388px;
      }

      .seasonality-frame {
        gap: 18px;
      }

      @media (max-width: 960px) {
        .masthead-inner {
          width: min(calc(100vw - 80px), 1090px);
        }
      }

      @media (max-width: 640px) {
        .skyline-loader-stage {
          min-height: min(34vh, 220px);
        }

        .masthead-inner,
        .hero,
        .story-section,
        .methodology {
          width: min(calc(100vw - 32px), 100%);
        }

        .nyc-lockup {
          gap: 10px;
        }

        .hero-title {
          font-size: 31.5px;
          line-height: 40px;
        }

        .hero-title span {
          font-size: clamp(46px, 15vw, 74px);
        }

        .chart-shell,
        .chart-shell.tall {
          min-height: 310px;
        }

        .chart-shell.short {
          min-height: 280px;
        }

        .chart-shell.chart-shell-volume,
        .chart-shell.chart-shell-response {
          min-height: 280px;
        }

        .chart-shell.chart-shell-overlay,
        .chart-shell.chart-shell-equity,
        .chart-shell.chart-shell-scatter {
          min-height: 240px;
        }

        .chart-shell.chart-shell-seasonality {
          min-height: 252px;
        }

        .chart-shell.chart-shell-weather-strip {
          min-height: 164px;
        }

        .map-shell {
          height: 320px;
        }
      }

      @media (max-width: 960px) {
        .mayor-comparison-grid {
          grid-template-columns: 1fr;
        }

        .chart-grid.three-up {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 720px) {
        .repeat-table-head {
          display: none;
        }

        .repeat-list {
          display: grid;
          grid-template-columns: 1fr;
        }

        .repeat-item {
          grid-template-columns: 62px 72px minmax(0, 1fr);
          gap: 4px 10px;
          align-items: start;
        }

        .repeat-rank {
          grid-column: 1;
        }

        .repeat-count {
          grid-column: 2;
          text-align: left;
        }

        .repeat-location {
          grid-column: 3;
        }

        .repeat-meta,
        .repeat-footnote {
          grid-column: 3;
        }
      }
