    :root {
      /* Poster: navy primary + blue campaign + off-white */
      /* Sticky .site-nav + margins + wrap buffer — fragment scroll / scrollIntoView */
      --header-anchor-offset: clamp(96px, 11vw + 58px, 132px);
      --bg: #f4f7f4;
      --surface: #ffffff;
      --text: #001b44;
      --text-muted: #3d5678;
      --brand: #1a4f8c;
      --brand-hover: #143d73;
      --brand-light: #2d6bb3;
      --accent: #1a4f8c;
      --accent-muted: #e8eef5;
      --border: rgba(0, 27, 68, 0.12);
      --ring: rgba(0, 27, 68, 0.35);
      --r-xl: 28px;
      --r-lg: 20px;
      --r-md: 14px;
      --r-pill: 9999px;
      --shadow: 0 4px 6px -1px rgba(0, 27, 68, 0.06), 0 10px 24px -4px rgba(0, 27, 68, 0.08);
      --shadow-hover: 0 12px 32px -8px rgba(0, 27, 68, 0.14);
      --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      --hero-banner-interval: 15s;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--header-anchor-offset));
      text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font);
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      padding-left: env(safe-area-inset-left, 0px);
      padding-right: env(safe-area-inset-right, 0px);
    }

    .eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #228f18;
      margin-bottom: 12px;
    }

    .section-head {
      text-align: center;
      max-width: 520px;
      margin: 0 auto 36px;
    }

    .section-head h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.2;
    }

    .section-head .eyebrow {
      margin-bottom: 10px;
    }

    /* Top navigation */
    .site-nav {
      position: sticky;
      top: 12px;
      z-index: 100;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      max-width: min(1100px, calc(100% - 28px));
      margin: 12px auto 0;
      padding: 12px 18px 12px 20px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(16px) saturate(1.4);
      -webkit-backdrop-filter: blur(16px) saturate(1.4);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      box-shadow: var(--shadow);
    }

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

    .nav-brand .nav-contact-actions {
      margin-left: 4px;
    }

    .nav-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.42),
        0 0 14px rgba(34, 197, 94, 0.55);
      animation: navDotLivePulse 1.25s ease-in-out infinite;
    }

    .site-nav strong {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .site-nav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      list-style: none;
    }

    .site-nav ul a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.8125rem;
      padding: 9px 16px;
      border-radius: var(--r-pill);
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .site-nav ul a:hover,
    .site-nav ul a:focus-visible {
      background: var(--accent-muted);
      color: var(--text);
      outline: none;
    }

    .site-nav ul a:active {
      transform: scale(0.98);
    }

    .site-nav ul a.nav-cta-btn {
      color: #ea580c;
      font-weight: 800;
      background: transparent;
      border: 2px solid #ea580c;
      box-shadow: 0 2px 10px rgba(234, 88, 12, 0.12);
    }

    .site-nav ul a.nav-cta-btn:hover,
    .site-nav ul a.nav-cta-btn:focus-visible {
      color: #fff;
      background: #ea580c;
      border-color: #ea580c;
      box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
    }

    .nav-contact-actions {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    /* Hero banner */
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 15px 0 0;
      max-width: min(1100px, calc(100% - 28px));
      margin: 0 auto;
      color: var(--text);
      text-align: center;
    }

    .hero-banner-slider {
      position: relative;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .hero-banner-viewport {
      display: grid;
      position: relative;
      width: 100%;
      max-width: 100%;
      aspect-ratio: 2 / 1;
      border-radius: var(--r-xl);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      overflow: hidden;
      background: #0f172a;
    }

    .hero-banner-slide {
      grid-area: 1 / 1;
      min-height: 0;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.65s ease;
      pointer-events: none;
    }

    .hero-banner-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-banner-slide img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center center;
    }

    .hero-banner-slide--fit img {
      object-fit: contain;
      object-position: center center;
    }

    .hero-banner-progress {
      grid-area: 1 / 1;
      align-self: start;
      position: relative;
      z-index: 3;
      margin: 0px 12px 0;
      width: calc(100% - 24px);
      height: 4px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.35);
      overflow: hidden;
      pointer-events: none;
    }

    .hero-banner-progress-bar {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, #ea580c, #f97316);
      transform-origin: left center;
    }

    .hero-banner-progress-bar.is-animating {
      animation: heroBannerProgress var(--hero-banner-interval) linear forwards;
    }

    @keyframes heroBannerProgress {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }

    .hero-banner-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
      padding: 36px 20px 12px;
    }

    .hero h1 {
      font-size: clamp(1.85rem, 5vw, 2.65rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.15;
      margin-bottom: 14px;
      color: var(--text);
      animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero p.tagline {
      font-size: clamp(1rem, 2.4vw, 1.2rem);
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 28px;
      animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
    }

    @keyframes heroUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* अभियान स्थिति — तीन KPI टाइल + शीर्ष रेखा (संपर्क खंड) */
    .live-status-wrap {
      max-width: min(1100px, calc(100% - 28px));
      margin: 0 auto;
      padding: 0 0 18px;
    }

    .contact .live-status-wrap--in-contact {
      max-width: 100%;
      width: 100%;
      margin: 8px auto 22px;
      padding: 0;
    }

    .campaign-strip {
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .campaign-strip-accent {
      height: 4px;
      background: var(--brand);
      opacity: 0.95;
    }

    .campaign-strip-head {
      margin: 0;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 0.83rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }

    .campaign-strip-pulse {
      flex-shrink: 0;
      width: 9px;
      height: 9px;
      margin-top: 2px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.42),
        0 0 14px rgba(34, 197, 94, 0.55);
      animation: liveDotPulse 1.8s ease-in-out infinite;
    }

    @keyframes liveDotPulse {
      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.72;
        transform: scale(0.88);
      }
    }

    @keyframes navDotLivePulse {
      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.48;
        transform: scale(0.78);
      }
    }

    .campaign-strip-metrics {
      list-style: none;
      margin: 0;
      padding: 14px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .campaign-strip-metrics > li {
      margin: 0;
      padding: 16px 8px 14px;
      border-radius: var(--r-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 5.5rem;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    }

    .campaign-strip-metrics > li:nth-child(2) {
      background: var(--accent-muted);
      border-color: rgba(26, 79, 140, 0.15);
    }

    .campaign-strip-metrics > li:nth-child(3) {
      background: rgba(34, 197, 94, 0.06);
      border-color: rgba(34, 197, 94, 0.28);
    }

    .campaign-strip-metrics > li:nth-child(3) .campaign-strip-label {
      color: #15803d;
    }

    .campaign-strip-num {
      font-size: clamp(1.35rem, 3.8vw, 1.85rem);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.05;
    }

    .campaign-strip-num--badge {
      font-size: clamp(0.78rem, 2vw, 0.88rem);
      font-weight: 800;
      letter-spacing: 0.07em;
      padding: 8px 14px;
      border-radius: var(--r-pill);
      color: #15803d;
      background: rgba(34, 197, 94, 0.14);
      border: 1px solid rgba(34, 197, 94, 0.4);
      box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
      line-height: 1.2;
    }

    .campaign-strip-label {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--text-muted);
      line-height: 1.35;
      text-transform: none;
      max-width: 11em;
    }

    .campaign-strip-note {
      margin: 0;
      padding: 11px 16px 13px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.55;
      text-align: center;
      background: rgba(241, 245, 249, 0.85);
      border-top: 1px solid var(--border);
    }

    .campaign-live-chart {
      padding: 14px 16px 12px;
      border-top: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(26, 79, 140, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
      text-align: left;
    }

    .campaign-live-chart-head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px 12px;
      margin-bottom: 12px;
    }

    .campaign-live-chart-title {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--brand);
    }

    .campaign-live-refresh {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: var(--r-pill);
      font-size: 0.68rem;
      font-weight: 700;
      color: #15803d;
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.28);
    }

    .campaign-live-refresh.is-pending {
      color: var(--text-muted);
      background: rgba(26, 79, 140, 0.06);
      border-color: var(--border);
    }

    .campaign-live-refresh-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      animation: liveDotPulse 1.8s ease-in-out infinite;
    }

    .campaign-live-refresh.is-pending .campaign-live-refresh-dot {
      background: #94a3b8;
      animation: none;
    }

    .campaign-live-charts {
      display: grid;
      grid-template-columns: 1fr minmax(100px, 0.45fr);
      gap: 12px;
      align-items: center;
    }

    .campaign-line-wrap {
      min-width: 0;
    }

    .campaign-line-svg {
      display: block;
      width: 100%;
      height: auto;
      overflow: visible;
    }

    .campaign-line-grid {
      stroke: rgba(26, 79, 140, 0.1);
      stroke-width: 1;
    }

    .campaign-line-area {
      fill: url(#campaignLineFill);
      opacity: 0.85;
    }

    .campaign-line-path {
      fill: none;
      stroke: var(--brand);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .campaign-line-dot {
      fill: var(--brand);
      stroke: #fff;
      stroke-width: 2;
    }

    .campaign-line-dot.is-latest {
      fill: #22c55e;
    }

    .campaign-pie-wrap {
      display: grid;
      place-items: center;
    }

    .campaign-pie-svg {
      display: block;
      width: 100%;
      max-width: 110px;
      height: auto;
    }

    .campaign-pie-slice {
      transition: opacity 0.25s;
    }

    .campaign-live-legend {
      margin: 10px 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
    }

    .campaign-live-legend li {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--text-muted);
    }

    .campaign-live-legend i {
      width: 8px;
      height: 8px;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .campaign-live-meta {
      margin: 10px 0 0;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.5;
      text-align: center;
    }

    .campaign-strip-num.is-bump {
      animation: metricBump 0.55s ease;
    }

    @keyframes metricBump {
      0% { transform: scale(1); }
      40% { transform: scale(1.08); color: #15803d; }
      100% { transform: scale(1); }
    }

    @media (max-width: 520px) {
      .campaign-live-charts {
        grid-template-columns: 1fr;
      }

      .campaign-pie-wrap {
        max-width: 140px;
        margin: 0 auto;
      }
    }

    @media (max-width: 520px) {
      .campaign-strip-metrics {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        padding: 12px;
      }

      .campaign-strip-metrics > li {
        min-height: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        text-align: left;
      }

      .campaign-strip-metrics > li .campaign-strip-num,
      .campaign-strip-metrics > li .campaign-strip-num--badge {
        order: 2;
      }

      .campaign-strip-label {
        max-width: none;
        text-align: left;
        order: 1;
        font-size: 0.88rem;
      }
    }

    /* Homepage — info panels */
    .home-info {
      width: min(92%, 1100px);
      margin: 0 auto 28px;
      padding: 0 14px;
    }

    .home-info-grid {
      display: grid;
      gap: 18px;
    }

    @media (min-width: 860px) {
      .home-info-grid {
        grid-template-columns: 1fr 1fr;
      }

      .home-info-grid .home-panel-span {
        grid-column: 1 / -1;
      }
    }

    .home-panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: clamp(22px, 4vw, 32px);
      box-shadow: var(--shadow);
    }

    .home-panel h2 {
      font-size: clamp(1.2rem, 3vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .home-panel-lead {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    .home-panel-lead + .home-panel-lead {
      margin-top: 12px;
    }

    .voice-sub {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #ec6c2a;
      margin-bottom: 14px;
    }

    .voice-slider {
      position: relative;
      width: 100%;
    }

    .voice-slider-viewport {
      overflow: hidden;
      border-radius: var(--r-md);
      outline: none;
    }

    .voice-slider-viewport:focus-visible {
      box-shadow: 0 0 0 3px rgba(26, 79, 140, 0.35);
    }

    .voice-slider-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .voice-slider-track.voice-slider-track--instant {
      transition: none;
    }

    .voice-slide {
      flex: 0 0 100%;
      min-width: 0;
      box-sizing: border-box;
    }

    .voice-slider-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 14px;
      flex-wrap: wrap;
    }

    .voice-slider-btn {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--brand);
      font-size: 1.25rem;
      line-height: 1;
      font-weight: 700;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.15s;
    }

    .voice-slider-btn:hover {
      background: rgba(26, 79, 140, 0.08);
      border-color: rgba(26, 79, 140, 0.28);
    }

    .voice-slider-btn:active {
      transform: scale(0.96);
    }

    .voice-slider-btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(26, 79, 140, 0.35);
    }

    .voice-slider-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .voice-slider-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(26, 79, 140, 0.22);
      cursor: pointer;
      transition:
        transform 0.2s,
        background 0.2s;
    }

    .voice-slider-dot:hover {
      background: rgba(26, 79, 140, 0.4);
    }

    .voice-slider-dot.is-active {
      background: var(--brand);
      transform: scale(1.15);
    }

    .voice-slider-dot:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(26, 79, 140, 0.35);
    }

    .voice-card {
      position: relative;
      margin: 0;
      padding: 20px 20px 18px 24px;
      border-radius: var(--r-md);
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 4px solid var(--brand);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      text-transform: none;
    }

    .voice-card-quote {
      margin: 0;
      font: inherit;
      font-size: clamp(0.95rem, 2.1vw, 1.08rem);
      font-weight: 600;
      line-height: 1.85;
      letter-spacing: 0.01em;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .voice-card cite {
      display: block;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(26, 79, 140, 0.16);
      font-size: 0.8rem;
      font-weight: 700;
      font-style: normal;
      color: var(--brand);
      line-height: 1.5;
      letter-spacing: 0.02em;
      text-transform: none;
    }

    .how-steps {
      list-style: none;
      counter-reset: howstep;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .how-steps li {
      counter-increment: howstep;
      position: relative;
      padding: 14px 16px 14px 52px;
      background: var(--bg);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text);
    }

    .how-steps li::before {
      content: counter(howstep);
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      border-radius: 10px;
      background: rgba(26, 79, 140, 0.14);
      border: 1px solid rgba(26, 79, 140, 0.22);
      color: var(--brand);
      font-weight: 800;
      font-size: 0.85rem;
      display: grid;
      place-items: center;
    }

    /* Floating testimonial toast */
    .quote-floater {
      position: fixed;
      bottom: max(22px, env(safe-area-inset-bottom));
      left: max(14px, env(safe-area-inset-left));
      right: auto;
      max-width: min(340px, calc(100vw - 28px));
      z-index: 92;
      padding: 16px 40px 16px 18px;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-hover);
      border-left: 4px solid var(--brand);
      animation: quoteFloaterIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .quote-floater.is-out {
      animation: quoteFloaterOut 0.4s ease forwards;
    }

    @keyframes quoteFloaterIn {
      from {
        opacity: 0;
        transform: translate(-12px, 12px);
      }
      to {
        opacity: 1;
        transform: translate(0, 0);
      }
    }

    @keyframes quoteFloaterOut {
      to {
        opacity: 0;
        transform: translate(-8px, 8px);
      }
    }

    .quote-floater-text {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.5;
      margin: 0 0 8px;
    }

    .quote-floater-by {
      font-size: 0.78rem;
      font-weight: 700;
      color: #ea580c;
      margin: 0;
    }

    .quote-floater-close {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 32px;
      height: 32px;
      border: none;
      border-radius: var(--r-pill);
      background: var(--bg);
      color: var(--text-muted);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .quote-floater-close:hover,
    .quote-floater-close:focus-visible {
      background: var(--accent-muted);
      color: var(--brand);
      outline: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .nav-dot,
      .campaign-strip-pulse,
      .candidate-symbol-icon,
      .candidate-symbol-card {
        animation: none;
      }

      .candidate-symbol-card:hover {
        transform: none;
      }

      .quote-floater {
        animation: none;
      }
    }

    .container {
      width: min(92%, 1100px);
      margin: auto;
      padding: 50px 0 20px;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .candidate-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: minmax(220px, 0.95fr) 1.45fr;
      gap: clamp(20px, 3vw, 32px);
      padding: clamp(20px, 3.5vw, 36px);
      align-items: start;
      margin-bottom: 28px;
      transition: box-shadow 0.35s ease, border-color 0.35s ease;
    }

    @media (min-width: 900px) {
      .candidate-photo-wrap {
        position: sticky;
        top: 88px;
      }
    }

    .candidate-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: rgba(26, 79, 140, 0.12);
    }

    .candidate-photo-wrap {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: zoom-in;
      border: 1px solid var(--border);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .candidate-photo-wrap:hover,
    .candidate-photo-wrap:focus-visible {
      transform: translateY(-4px);
      outline: none;
      box-shadow: var(--shadow-hover), 0 0 0 3px var(--ring);
    }

    .candidate-photo-wrap img {
      width: 100%;
      display: block;
      border-radius: var(--r-lg);
      object-fit: cover;
      aspect-ratio: 4 / 5;
      max-height: 400px;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .candidate-photo-wrap:hover img {
      transform: scale(1.04);
    }

    .photo-hint {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 14px;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(0, 27, 68, 0.75);
      text-align: center;
      pointer-events: none;
    }

    .candidate-info .eyebrow {
      margin-bottom: 10px;
      color: #228f18;
    }

    .candidate-info h2 {
      font-size: clamp(1.65rem, 3vw, 2.1rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
      color: var(--text);
    }

    .candidate-info .role {
      font-size: 1rem;
      font-weight: 600;
      color: #ea580c;
      margin-bottom: 20px;
    }

    .candidate-info p {
      margin-bottom: 16px;
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 8px 14px;
      border-radius: var(--r-pill);
      background: var(--accent-muted);
      color: var(--accent);
      border: 1px solid rgba(26, 79, 140, 0.15);
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
      cursor: default;
    }

    .tag-row .tag:hover {
      transform: translateY(-2px);
      background: #fff;
      box-shadow: 0 4px 12px rgba(26, 79, 140, 0.12);
    }

    .candidate-credentials {
      display: grid;
      gap: 12px;
      margin-bottom: 16px;
    }

    @media (min-width: 720px) {
      .candidate-credentials {
        grid-template-columns: 1fr 1fr;
      }
    }

    .candidate-panel {
      border-radius: var(--r-md);
      background: var(--accent-muted);
      border: 1px solid rgba(26, 79, 140, 0.14);
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .candidate-panel:hover {
      border-color: rgba(26, 79, 140, 0.28);
    }

    .candidate-panel[open] {
      box-shadow: 0 6px 20px rgba(26, 79, 140, 0.1);
    }

    .candidate-panel-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      list-style: none;
      cursor: pointer;
      padding: 14px 16px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand);
      user-select: none;
    }

    .candidate-panel-toggle::-webkit-details-marker {
      display: none;
    }

    .candidate-panel-toggle::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-left: auto;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .candidate-panel[open] .candidate-panel-toggle::after {
      transform: rotate(-135deg);
    }

    .candidate-panel .candidate-edu-list {
      padding: 0 16px 14px;
    }

    .candidate-exp .candidate-panel-toggle {
      color: var(--accent);
    }

    .candidate-edu-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand);
    }

    .candidate-edu-head svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      flex-shrink: 0;
    }

    .candidate-edu-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .candidate-edu-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .candidate-edu-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(26, 79, 140, 0.12);
      border: 1px solid rgba(26, 79, 140, 0.18);
      color: var(--brand);
    }

    .candidate-edu-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
    }

    .candidate-edu-body strong {
      display: block;
      font-size: 0.97rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.25;
    }

    .candidate-edu-body .candidate-edu-hi {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.45;
    }

    .candidate-exp-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .candidate-exp-head svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      flex-shrink: 0;
    }

    .candidate-exp-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(26, 79, 140, 0.12);
      border: 1px solid rgba(26, 79, 140, 0.22);
      color: var(--accent);
    }

    .candidate-exp-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
    }

    .candidate-exp-block {
      flex: 1;
      min-width: 0;
    }

    .candidate-exp-title-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 14px;
      margin-bottom: 8px;
    }

    .candidate-exp-title-row strong {
      margin-bottom: 0;
      flex: 1;
      min-width: 12rem;
      font-size: clamp(0.95rem, 2.5vw, 1.05rem);
      line-height: 1.3;
    }

    .candidate-exp-tenure {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: var(--r-pill);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: var(--brand);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow:
        0 2px 10px rgba(26, 79, 140, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
      white-space: nowrap;
    }

    .candidate-exp-tenure svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.5;
      opacity: 0.95;
    }

    .candidate-exp-years-line {
      margin: 0 0 8px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.02em;
    }

    .candidate-symbol {
      margin-bottom: 16px;
      padding: 14px 16px 16px;
      border-radius: var(--r-md);
      background: linear-gradient(135deg, rgba(234, 88, 12, 0.14) 0%, rgba(255, 247, 237, 0.98) 100%);
      border: 2px solid rgba(234, 88, 12, 0.4);
      box-shadow: 0 6px 24px rgba(234, 88, 12, 0.14);
    }

    .candidate-symbol-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #c2410c;
      margin-bottom: 12px;
    }

    .candidate-symbol-head svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      flex-shrink: 0;
    }

    .candidate-symbol-card {
      display: flex;
      gap: 16px;
      align-items: center;
      width: 100%;
      margin: 0;
      padding: 12px;
      border: 2px dashed rgba(234, 88, 12, 0.35);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.72);
      cursor: zoom-in;
      font: inherit;
      text-align: left;
      color: inherit;
      transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    }

    .candidate-symbol-card:hover,
    .candidate-symbol-card:focus-visible {
      background: #fff;
      border-color: #ea580c;
      border-style: solid;
      outline: none;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(234, 88, 12, 0.22);
    }

    .candidate-symbol-icon {
      flex-shrink: 0;
      width: clamp(96px, 20vw, 132px);
      height: clamp(122px, 25vw, 168px);
      padding: 8px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
      border: 2px solid #ea580c;
      box-shadow:
        0 0 0 3px rgba(234, 88, 12, 0.12),
        0 8px 20px rgba(234, 88, 12, 0.28);
      overflow: hidden;
      animation: candidate-symbol-glow 2.8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes candidate-symbol-glow {
      0%, 100% {
        box-shadow:
          0 0 0 5px rgba(234, 88, 12, 0.14),
          0 14px 32px rgba(234, 88, 12, 0.32);
      }

      50% {
        box-shadow:
          0 0 0 9px rgba(234, 88, 12, 0.22),
          0 18px 42px rgba(234, 88, 12, 0.48);
      }
    }

    .candidate-symbol-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    }

    .candidate-symbol-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .candidate-symbol-body strong {
      display: block;
      font-size: clamp(1.2rem, 3.5vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #c2410c;
      line-height: 1.15;
    }

    .candidate-symbol-label {
      display: inline-block;
      align-self: flex-start;
      margin-bottom: 2px;
      padding: 4px 10px;
      border-radius: var(--r-pill);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(90deg, #ea580c, #f97316);
      box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
    }

    .candidate-symbol-body p {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .symbol-zoom-hint {
      flex-shrink: 0;
      align-self: center;
      padding: 8px 12px;
      border-radius: var(--r-pill);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #ea580c;
      background: rgba(234, 88, 12, 0.1);
      border: 1px solid rgba(234, 88, 12, 0.35);
      pointer-events: none;
    }

    @media (max-width: 560px) {
      .candidate-symbol-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }

      .candidate-symbol-body {
        align-items: center;
        flex: 1 1 100%;
      }

      .candidate-symbol-label {
        align-self: center;
      }

      .symbol-zoom-hint {
        flex: 1 1 100%;
        text-align: center;
      }
    }

    .candidate-symbol-body p b {
      color: #c2410c;
      font-weight: 800;
    }

    .candidate-outro {
      display: grid;
      gap: 14px;
      padding: 16px 18px;
      border-radius: var(--r-md);
      background: linear-gradient(135deg, rgba(26, 79, 140, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
      border: 1px solid rgba(26, 79, 140, 0.14);
    }

    @media (min-width: 640px) {
      .candidate-outro {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 20px;
      }
    }

    .candidate-motto {
      margin: 0;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .candidate-motto-highlight {
      display: block;
      margin-bottom: 4px;
      font-weight: 800;
      color: #ea580c;
    }

    .candidate-cta {
      margin-top: 0;
      white-space: nowrap;
    }

    .btn-outline {
      background: transparent;
      color: var(--brand);
      border: 2px solid var(--brand);
      box-shadow: none;
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      background: var(--brand);
      color: #fff;
      filter: none;
    }

    .vision {
      margin-top: 28px;
      background: var(--surface);
      padding: clamp(32px, 5vw, 48px);
      border-radius: var(--r-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      margin-bottom: 28px;
    }

    .vision-intro {
      text-align: center;
      max-width: 420px;
      margin: -18px auto 32px;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .vision-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 14px;
    }

    .vision-box {
      background: var(--bg);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .vision-box:hover {
      border-color: rgba(26, 79, 140, 0.18);
    }

    .vision-box.is-open {
      box-shadow: var(--shadow);
      border-color: rgba(26, 79, 140, 0.22);
      transform: translateY(-2px);
    }

    .vision-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      font-size: 0.9375rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      transition: background 0.2s;
    }

    .vision-toggle:hover,
    .vision-toggle:focus-visible {
      background: rgba(255, 255, 255, 0.7);
      outline: none;
    }

    .vision-toggle-main {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .vision-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(26, 79, 140, 0.1);
      border: 1px solid rgba(26, 79, 140, 0.15);
      color: var(--brand);
    }

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

    .vision-title {
      line-height: 1.3;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    .vision-toggle .chev {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
      font-size: 0.65rem;
      color: var(--brand);
    }

    .vision-box.is-open .vision-toggle .chev {
      transform: rotate(180deg);
      background: rgba(26, 79, 140, 0.08);
    }

    .vision-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .vision-panel-inner {
      margin: 0 12px 20px;
      padding: 17px 0px 10px;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      border-top: 1px solid var(--border);
    }

    ul.vision-points {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    ul.vision-points li {
      margin: 0;
      padding: 14px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      color: var(--text);
      font-weight: 600;
      font-size: 0.97rem;
      line-height: 1.45;
      letter-spacing: -0.015em;
      transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    }

    ul.vision-points li:hover {
      border-color: rgba(26, 79, 140, 0.35);
      box-shadow:
        0 8px 22px -6px rgba(26, 79, 140, 0.18),
        0 2px 0 rgba(255, 255, 255, 0.85) inset;
      transform: translateY(-2px);
    }

    ul.vision-points li:active {
      transform: translateY(0);
      transition-duration: 0.1s;
    }

    .reveal.is-visible .vision-points li {
      animation: visionPointIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .reveal.is-visible .vision-points li:nth-child(1) {
      animation-delay: 0.03s;
    }

    .reveal.is-visible .vision-points li:nth-child(2) {
      animation-delay: 0.09s;
    }

    .reveal.is-visible .vision-points li:nth-child(3) {
      animation-delay: 0.15s;
    }

    .reveal.is-visible .vision-points li:nth-child(4) {
      animation-delay: 0.21s;
    }

    .reveal.is-visible .vision-points li:nth-child(5) {
      animation-delay: 0.27s;
    }

    @keyframes visionPointIn {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal.is-visible .vision-points li {
        animation: none !important;
      }

      ul.vision-points li:hover {
        transform: none;
      }
    }

    .vision .vision-box.is-open .vision-toggle {
      position: relative;
      padding: 18px 18px 16px 22px;
      background: rgba(255, 255, 255, 0.96);
      border: none;
      border-bottom: 1px solid rgba(26, 79, 140, 0.14);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    }

    .vision .vision-box.is-open .vision-toggle::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 5px;
      border-radius: 0 6px 6px 0;
      background: var(--brand);
      box-shadow: 2px 0 12px rgba(26, 79, 140, 0.2);
    }

    .vision .vision-box.is-open .vision-toggle-main {
      padding-left: 6px;
    }

    .vision .vision-box.is-open .vision-toggle:hover,
    .vision .vision-box.is-open .vision-toggle:focus-visible {
      background: rgba(255, 255, 255, 0.96);
      outline: none;
    }

    .vision .vision-box.is-open .vision-title {
      font-size: clamp(1.05rem, 2.6vw, 1.22rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.28;
      color: var(--text);
      padding: 2px 0;
    }

    .vision .vision-box.is-open .vision-icon {
      width: 46px;
      height: 46px;
      opacity: 1;
      box-shadow:
        0 2px 8px rgba(26, 79, 140, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
      border-color: rgba(26, 79, 140, 0.22);
    }

    .vision .vision-box.is-open .vision-icon svg {
      width: 21px;
      height: 21px;
    }

    .vision .vision-box.is-open .vision-panel-inner {
      margin-top: 4px;
      border-top: none;
      padding-top: 8px;
    }

    .vision .vision-box.is-open {
      box-shadow: var(--shadow);
      border-color: rgba(26, 79, 140, 0.22);
      transform: translateY(-2px);
    }

    .priority-spotlight-intro {
      text-align: center;
      max-width: 640px;
      margin: 4px auto 20px;
      font-size: 0.94rem;
      line-height: 1.6;
      color: var(--text-muted);
      font-weight: 500;
    }

    .priority-slider {
      margin-top: 4px;
    }

    .priority-slider .voice-slider-viewport {
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--bg);
    }

    .priority-slider .priority-spotlight-card {
      margin-top: 0;
    }

    .priority-slider .voice-slide {
      padding: clamp(14px, 3vw, 24px);
      box-sizing: border-box;
    }

    .priority-slider .voice-slider-nav {
      margin-top: 18px;
    }

    /* Featured priority — photo + narrative (matches vision card tone) */
    .priority-spotlight {
      background: var(--surface);
      padding: clamp(32px, 5vw, 48px);
      border-radius: var(--r-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      margin-top: 28px;
      margin-bottom: 36px;
    }

    .priority-spotlight-card {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: clamp(20px, 4vw, 36px);
      align-items: center;
      margin-top: 8px;
    }

    .priority-spotlight-figure {
      margin: 0;
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--bg);
    }

    .priority-spotlight-figure img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .priority-spotlight-body {
      text-align: left;
    }

    .priority-spotlight-badge {
      display: inline-block;
      margin: 0 0 12px;
      padding: 6px 12px;
      border-radius: var(--r-pill);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      background: rgba(26, 79, 140, 0.1);
      border: 1px solid rgba(26, 79, 140, 0.18);
    }

    .priority-spotlight-lead {
      margin: 0 0 14px;
      font-size: clamp(1.05rem, 2.4vw, 1.2rem);
      font-weight: 700;
      line-height: 1.55;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .priority-spotlight-note {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-muted);
      font-weight: 500;
    }

    @media (max-width: 720px) {
      .priority-spotlight-card {
        grid-template-columns: 1fr;
      }

      .priority-spotlight-figure {
        order: -1;
      }
    }

    .contact {
      background: var(--surface);
      padding: clamp(36px, 5vw, 52px);
      border-radius: var(--r-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .contact .contact-details {
      display: grid;
      gap: 8px;
      max-width: 420px;
      margin: 24px auto 8px;
      text-align: left;
    }

    .contact .contact-details p {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 12px 16px;
      background: var(--bg);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      font-size: 0.94rem;
    }

    .contact .contact-details span {
      font-weight: 600;
      color: var(--text);
      text-align: right;
    }

    .contact .contact-details .contact-phone-cell {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      text-align: right;
      font-weight: 500;
    }

    .contact .contact-details .contact-phone-link {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px dashed rgba(26, 79, 140, 0.35);
      transition: color 0.2s, border-color 0.2s;
    }

    .contact .contact-details .contact-phone-link:hover,
    .contact .contact-details .contact-phone-link:focus-visible {
      color: var(--brand);
      border-bottom-color: var(--brand);
      outline: none;
    }

    .contact-action-group {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .contact-icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      color: #fff;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
    }

    .contact-icon-btn:hover,
    .contact-icon-btn:focus-visible {
      transform: translateY(-1px);
      outline: none;
      filter: brightness(1.06);
    }

    .contact-icon-btn:active {
      transform: translateY(0);
    }

    .contact-icon-btn svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
      stroke: none;
    }

    .contact-icon-call {
      background: var(--brand);
      box-shadow: 0 2px 8px rgba(26, 79, 140, 0.32);
    }

    .contact-icon-wa {
      background: #25d366;
      box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
    }

    .contact-icon-fb {
      background: #1877f2;
      box-shadow: 0 2px 8px rgba(24, 119, 242, 0.35);
    }

    .contact-icon-ig {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      box-shadow: 0 2px 8px rgba(220, 39, 67, 0.35);
    }

    @media (min-width: 420px) {
      .contact .contact-details .contact-phone-cell {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
      }
    }

    .contact > p.lead {
      margin-bottom: 0;
      font-size: 1.05rem;
      color: var(--text-muted);
      font-weight: 500;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-form-block {
      max-width: 580px;
      margin: 32px auto 0;
      text-align: left;
      padding: clamp(20px, 4vw, 28px);
      background: var(--bg);
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
    }

    .form-how-title {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 10px;
      text-align: center;
      line-height: 1.35;
    }

    .form-how-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 8px;
      text-align: center;
    }

    .form-sub {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand);
      margin: 22px 0 12px;
    }

    .form-steps {
      list-style: none;
      counter-reset: step;
      padding: 0;
      margin: 0 0 4px;
    }

    .form-steps li {
      counter-increment: step;
      position: relative;
      padding: 12px 14px 12px 48px;
      margin-bottom: 10px;
      background: var(--surface);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .form-steps li strong {
      color: var(--text);
      font-weight: 700;
    }

    .form-steps li::before {
      content: counter(step);
      position: absolute;
      left: 12px;
      top: 14px;
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: rgba(26, 79, 140, 0.12);
      border: 1px solid rgba(26, 79, 140, 0.2);
      color: var(--brand);
      font-weight: 800;
      font-size: 0.8rem;
      display: grid;
      place-items: center;
    }

    .form-tips {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .form-tips li {
      position: relative;
      padding: 10px 0 10px 28px;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
      border-bottom: 1px dashed var(--border);
    }

    .form-tips li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .form-tips li::before {
      content: '';
      position: absolute;
      left: 6px;
      top: 16px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .form-embed-wrap {
      margin-top: 0;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
      position: relative;
    }

    .contact-form-embed {
      position: relative;
      max-width: 920px;
      margin: 28px auto 0;
      padding: 0 4px;
    }

    .problem-form {
      padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 24px) 24px;
      text-align: left;
      background: #f1f3f4;
    }

    .problem-form-intro {
      margin: 0 0 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .problem-form-intro p {
      margin: 0 0 12px;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.6;
    }

    .problem-form-title {
      margin: 0 0 10px;
      font-size: 1.55rem;
      font-weight: 700;
      line-height: 1.4;
      text-align: center;
      color: var(--text);
    }

    .problem-form-quote {
      margin: 0 0 12px;
      padding: 12px 14px;
      border-radius: var(--r-md);
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--brand);
      background: rgba(26, 79, 140, 0.08);
      border-left: 4px solid var(--brand);
      line-height: 1.45;
    }

    .problem-form-required-note {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 600;
      color: #c2410c !important;
    }

    .problem-form-field {
      margin: 0 0 14px;
      padding: 18px 18px 16px;
      border-radius: var(--r-md);
      border: 1px solid #dadce0;
      background: #fff;
      box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
    }

    .problem-form-field.is-invalid {
      border-color: #dc2626;
      box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
    }

    .problem-form-label {
      display: block;
      margin-bottom: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
    }

    .problem-form-label .req {
      color: #c2410c;
      margin-left: 2px;
    }

    .problem-form-input,
    .problem-form-select,
    .problem-form-textarea {
      width: 100%;
      padding: 11px 12px;
      border: none;
      border-bottom: 1px solid #dadce0;
      border-radius: 0;
      background: transparent;
      font: inherit;
      font-size: 0.9rem;
      color: var(--text);
      transition: border-color 0.2s, background 0.2s;
    }

    .problem-form-input:focus,
    .problem-form-select:focus,
    .problem-form-textarea:focus {
      outline: none;
      border-bottom-color: var(--brand);
      background: rgba(26, 79, 140, 0.04);
    }

    .problem-form-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 4px center;
      padding-right: 28px;
    }

    .problem-form-textarea {
      min-height: 120px;
      resize: vertical;
      border: 1px solid #dadce0;
      border-radius: var(--r-md);
      margin-top: 4px;
    }

    .problem-form-error {
      display: none;
      margin: 8px 0 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: #dc2626;
      line-height: 1.4;
    }

    .problem-form-field.is-invalid .problem-form-error {
      display: block;
    }

    .problem-form-field--terms {
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .problem-form-terms-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .problem-form-checkbox {
      width: 18px;
      height: 18px;
      margin: 3px 0 0;
      flex-shrink: 0;
      accent-color: var(--brand);
      cursor: pointer;
    }

    .problem-form-terms-label {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 500;
      line-height: 1.45;
      color: var(--text);
      cursor: pointer;
    }

    .problem-form-terms-details {
      margin: 12px 0 0 30px;
      font-size: 0.82rem;
      line-height: 1.5;
      color: #5f6368;
    }

    .problem-form-terms-details summary {
      cursor: pointer;
      font-weight: 600;
      color: var(--brand);
      list-style-position: outside;
    }

    .problem-form-terms-details summary:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .problem-form-terms-body {
      margin-top: 10px;
      padding-left: 4px;
    }

    .problem-form-terms-body ul {
      margin: 0;
      padding-left: 1.15rem;
    }

    .problem-form-terms-body li + li {
      margin-top: 6px;
    }

    .problem-form-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px 20px;
      margin-top: 8px;
    }

    .problem-form-submit {
      margin: 0;
      padding: 12px 28px;
      border: none;
      border-radius: var(--r-md);
      background: var(--brand);
      color: #fff;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: filter 0.2s, transform 0.15s, opacity 0.2s;
      box-shadow: 0 2px 8px rgba(26, 79, 140, 0.35);
    }

    .problem-form-submit:hover:not(:disabled) {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }

    .problem-form-submit:disabled {
      opacity: 0.65;
      cursor: not-allowed;
    }

    .problem-form-clear {
      padding: 0;
      border: none;
      background: none;
      font: inherit;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--brand);
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .problem-form-clear:hover,
    .problem-form-clear:focus-visible {
      color: #0d4a8c;
      outline: none;
    }

    .problem-form-status {
      margin: 16px 0 20px;
      padding: 12px 14px;
      border-radius: var(--r-md);
      font-size: 0.88rem;
      font-weight: 600;
      line-height: 1.5;
      display: none;
    }

    .problem-form-status.is-visible {
      display: block;
    }

    .problem-form-status.is-success {
      color: #15803d;
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.35);
    }

    .problem-form-status.is-error {
      color: #b91c1c;
      background: rgba(220, 38, 38, 0.08);
      border: 1px solid rgba(220, 38, 38, 0.28);
    }

    .problem-form-tracking {
      display: block;
      margin-top: 6px;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--brand);
    }

    .problem-form-tracking-note {
      display: block;
      margin-top: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: normal;
      color: #15803d;
      line-height: 1.45;
    }

    .problem-form-success-modal {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(0, 27, 68, 0.55);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .problem-form-success-modal.is-active {
      opacity: 1;
      visibility: visible;
    }

    .problem-form-success-dialog {
      width: min(100%, 420px);
      padding: 24px 22px 20px;
      border-radius: var(--r-lg);
      background: var(--surface);
      border: 1px solid rgba(34, 197, 94, 0.35);
      box-shadow: var(--shadow-hover);
      text-align: center;
    }

    .problem-form-success-title {
      margin: 0 0 12px;
      font-size: 1.05rem;
      font-weight: 800;
      color: #15803d;
    }

    .problem-form-success-body {
      margin: 0;
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.55;
      color: var(--text);
    }

    .problem-form-success-body .problem-form-tracking {
      color: var(--brand);
    }

    .problem-form-success-body .problem-form-tracking-note {
      color: var(--text-muted);
    }

    .problem-form-success-ok {
      margin-top: 20px;
      min-width: 120px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
      background: var(--brand);
      color: white;
      padding: 15px 32px;
      border-radius: var(--r-pill);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9375rem;
      letter-spacing: 0.02em;
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      border: none;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 4px 14px rgba(26, 79, 140, 0.35);
    }

    .btn:hover,
    .btn:focus-visible {
      filter: brightness(1.05);
      outline: none;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26, 79, 140, 0.4);
    }

    footer {
      background: var(--bg);
      color: var(--text-muted);
      text-align: center;
      padding: 36px 24px 44px;
      padding-bottom: max(48px, calc(24px + env(safe-area-inset-bottom, 0px)));
      margin-top: 20px;
      border-top: 1px solid var(--border);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .footer-inner > p:first-of-type {
      color: var(--text);
      text-shadow: none;
    }

    footer p {
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .footer-inner {
      max-width: 560px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .visitor-stats {
      width: 100%;
      max-width: 460px;
      border-radius: var(--r-lg);
      overflow: hidden;
      text-align: left;
      background: var(--surface);
      border: 2px solid var(--brand);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 20px 50px rgba(0, 27, 68, 0.22),
        0 0 0 4px rgba(26, 79, 140, 0.12);
    }

    .visitor-stats-live-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px 14px;
      padding: 14px 16px 16px;
      background: var(--brand);
      color: #f0fdf4;
    }

    .visitor-stats-live-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .visitor-live-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9375rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      line-height: 1.2;
    }

    .visitor-live-dot {
      flex-shrink: 0;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.35),
        0 0 18px rgba(74, 222, 128, 0.85);
      animation: visitorPulse 2s ease-in-out infinite;
    }

    @keyframes visitorPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.82; transform: scale(0.92); }
    }

    .visitor-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 14px 14px 12px;
      background: var(--bg);
    }

    .visitor-stat {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 12px 14px 14px;
      background: var(--surface);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      min-height: 108px;
    }

    .visitor-stat--views {
      border-top: 3px solid var(--brand);
    }

    .visitor-stat--online {
      border-top: 3px solid var(--accent);
    }

    .visitor-stat-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--brand);
      background: rgba(26, 79, 140, 0.1);
    }

    .visitor-stat--online .visitor-stat-icon {
      color: var(--accent);
      background: rgba(26, 79, 140, 0.1);
    }

    .visitor-stat-icon svg {
      display: block;
      width: 22px;
      height: 22px;
    }

    .visitor-stat-main {
      min-width: 0;
      flex: 1;
    }

    .visitor-stat-label {
      display: block;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .visitor-stat-value-wrap {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 6px 10px;
    }

    .visitor-counter-num,
    .visitor-online-num {
      font-variant-numeric: tabular-nums;
      font-weight: 800;
      font-size: clamp(1.45rem, 4vw, 1.85rem);
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.1;
      transition: color 0.28s ease, transform 0.28s ease;
    }

    .visitor-online-num {
      font-size: clamp(1.35rem, 3.6vw, 1.7rem);
      color: #228f18;
    }

    .visitor-counter-num.is-bump {
      color: var(--brand-light);
      transform: scale(1.05);
    }

    .visitor-delta {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: var(--r-pill);
      background: rgba(26, 79, 140, 0.12);
      color: var(--brand);
      border: 1px solid rgba(26, 79, 140, 0.22);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .visitor-delta.is-show {
      opacity: 1;
      transform: translateY(0);
    }

    .visitor-updated {
      margin: 0;
      padding: 12px 16px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-muted);
      background: rgba(0, 27, 68, 0.04);
      border-top: 1px solid var(--border);
      font-variant-numeric: tabular-nums;
    }

    .visitor-updated time {
      color: var(--text);
      font-weight: 800;
    }

    @media (max-width: 380px) {
      .visitor-stats-grid {
        grid-template-columns: 1fr;
      }

      .visitor-stats-live-bar {
        align-items: flex-start;
      }
    }

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

      .visitor-delta {
        transition: none;
      }
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 27, 68, 0.92);
      backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .lightbox.is-active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox img {
      max-width: min(90vw, 520px);
      max-height: 85vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-hover);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 22px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--r-pill);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 1.35rem;
      cursor: pointer;
      line-height: 1;
      transition: background 0.2s, transform 0.15s;
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: scale(1.05);
    }

    .lightbox-caption {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(248, 250, 252, 0.85);
      font-size: 0.875rem;
      font-weight: 600;
      text-align: center;
      max-width: 90vw;
    }

    .lightbox--symbol {
      background: rgba(248, 250, 252, 0.98);
    }

    .lightbox--symbol .lightbox-close {
      color: var(--text);
      background: rgba(0, 27, 68, 0.06);
      border-color: var(--border);
    }

    .lightbox--symbol .lightbox-close:hover {
      background: rgba(0, 27, 68, 0.1);
    }

    .lightbox--symbol .lightbox-caption {
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .lightbox--symbol .lightbox-caption strong {
      color: #c2410c;
    }

    .lightbox-caption-sub {
      display: block;
      margin-top: 6px;
      font-size: 0.88em;
      font-weight: 600;
      opacity: 0.85;
    }

    .lightbox--symbol img {
      background: #fff;
      padding: clamp(20px, 4vw, 32px);
      border: 2px solid rgba(234, 88, 12, 0.35);
      box-shadow: 0 12px 40px rgba(234, 88, 12, 0.18);
    }

    /* Candidate section — congratulation flowers */
    .flower-celebration {
      position: fixed;
      inset: 0;
      z-index: 95;
      pointer-events: none;
      overflow: hidden;
    }

    .flower-celebration span {
      position: absolute;
      top: -8%;
      display: block;
      font-size: clamp(1rem, 2.8vw, 1.85rem);
      line-height: 1;
      filter: drop-shadow(0 2px 4px rgba(0, 27, 68, 0.12));
      animation-name: flowerFall;
      animation-timing-function: linear;
      animation-fill-mode: forwards;
      will-change: transform, opacity;
    }

    @keyframes flowerFall {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translate3d(var(--flower-drift, 0px), 115vh, 0) rotate(720deg);
        opacity: 0.75;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .flower-celebration {
        display: none !important;
      }
    }

    /* Back to top */
    .back-top {
      position: fixed;
      bottom: 26px;
      right: 26px;
      width: 52px;
      height: 52px;
      border-radius: var(--r-pill);
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: var(--brand);
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 10px 28px rgba(26, 79, 140, 0.4);
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px);
      transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
      z-index: 90;
    }

    .back-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-top:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      :root {
        --header-anchor-offset: clamp(140px, 36vw + 52px, 220px);
      }

      body {
        font-size: 1.02rem;
      }

      .site-nav {
        justify-content: center;
        top: max(6px, env(safe-area-inset-top));
        max-width: calc(100vw - 12px);
        padding: 10px 0px;
        gap: 2px;
        border-radius: var(--r-lg);
      }

      .nav-brand {
        width: 100%;
        justify-content: center;
        gap: 8px 12px;
      }

      .site-nav strong {
        font-size: 1rem;
      }

      .site-nav ul {
        width: 100%;
        justify-content: center;
        gap: 2px;
      }

      .site-nav ul a {
        padding: 11px 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
      }

      .contact-icon-btn {
        width: 32px;
        height: 32px;
      }

      .contact-icon-btn svg {
        width: 12px;
        height: 12px;
      }

      .hero {
        padding: 6px max(10px, env(safe-area-inset-left)) 0 max(10px, env(safe-area-inset-right));
        overflow-x: clip;
      }

      .hero-banner-slider {
        width: 100%;
      }

      .hero-banner-viewport {
        width: 100%;
        max-width: 100%;
        height: min(52vw, 255px);
        max-height: min(52vw, 255px);
        min-height: 0;
        border-radius: var(--r-lg);
        background: #0f172a;
      }

      .hero-banner-slide img {
        object-fit: cover;
        object-position: center center;
      }

      .hero-banner-slide--fit img {
        object-fit: contain;
        object-position: center center;
      }

      .hero-banner-progress {
        margin: 8px 10px 0;
        width: calc(100% - 20px);
        height: 3px;
      }

      .hero-banner-nav {
        margin-top: 10px;
        gap: 10px;
      }

      .hero-inner {
        padding: 24px 14px 16px;
      }

      .hero-inner > p:not(.eyebrow):not(.tagline) {
        font-size: 1.02rem;
        line-height: 1.72;
        color: #3d5678;
        text-align: left;
      }

      .live-status-wrap {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
        padding-bottom: 14px;
      }

      .campaign-strip-head {
        font-size: 0.9rem;
        padding: 11px 14px;
      }

      .campaign-strip-note {
        font-size: 0.76rem;
        line-height: 1.55;
        padding: 12px 14px;
      }

      .campaign-strip-label {
        font-size: 0.78rem;
      }

      .container {
        width: calc(100% - 20px);
        max-width: 1100px;
        padding: 36px 0 64px;
      }

      .home-info {
        padding-left: max(8px, env(safe-area-inset-left));
        padding-right: max(8px, env(safe-area-inset-right));
      }

      .home-panel-lead {
        font-size: 1rem;
      }

      .voice-card {
        padding: 18px 16px 16px 20px;
      }

      .voice-card-quote {
        font-size: 1.02rem;
        line-height: 1.88;
      }

      .voice-card cite {
        font-size: 0.85rem;
        margin-top: 16px;
      }

      .how-steps li {
        font-size: 0.98rem;
        padding: 16px 14px 16px 56px;
      }

      .section-head {
        margin-bottom: 28px;
        padding: 0 8px;
      }

      .contact {
        padding: 28px 16px 36px;
      }

      .contact .contact-details p {
        flex-direction: column;
        gap: 8px;
        font-size: 1rem;
        padding: 14px 16px;
      }

      .contact .contact-details .contact-phone-link {
        font-size: 1rem;
      }

      .visitor-stats {
        max-width: 100%;
      }

      .quote-floater {
        left: max(12px, env(safe-area-inset-left));
        right: max(12px, env(safe-area-inset-right));
        max-width: none;
        width: auto;
        bottom: max(20px, env(safe-area-inset-bottom));
        padding: 18px 44px 18px 16px;
      }

      .quote-floater-text {
        font-size: 0.95rem;
      }

      .quote-floater-close {
        width: 40px;
        height: 40px;
        top: 6px;
        right: 6px;
      }

      .btn {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        padding: 14px 22px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .candidate-card {
        grid-template-columns: 1fr;
      }

      .candidate-info p {
        font-size: 1.02rem;
        color: #4a5f7a;
      }

      .vision-intro {
        padding: 0 8px;
        font-size: 0.95rem;
      }

      .vision-toggle {
        padding: 16px 14px;
        font-size: 0.95rem;
        gap: 10px;
      }

      .vision-panel-inner {
        font-size: 0.98rem;
        padding: 16px 16px 18px;
        margin: 0 8px 16px;
      }

      .contact .contact-details span {
        text-align: left;
      }

      .contact .contact-details .contact-phone-cell {
        align-items: flex-start;
        text-align: left;
      }

      .contact .contact-details .contact-action-group {
        justify-content: flex-start;
      }

      .lightbox {
        padding: max(20px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
      }
    }

    @media (max-width: 480px) {
      .hero-banner-viewport {
        width: 100%;
        height: min(48vw, 220px);
        max-height: min(48vw, 220px);
      }

      .hero-banner-progress {
        margin-top: 0px;
        height: 3px;
      }

      .campaign-strip-num {
        font-size: clamp(1.2rem, 7vw, 1.65rem);
      }

      .campaign-strip-num--badge {
        font-size: 0.72rem;
      }

      .form-steps li,
      .form-tips li {
        font-size: 0.95rem;
      }

      .form-how-title {
        font-size: 1.05rem;
      }

      .back-top {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(12px, env(safe-area-inset-right));
      }

      footer {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
      }
    }

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

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

      .hero h1,
      .hero p.tagline,
      .hero-actions {
        animation: none;
      }

      .candidate-photo-wrap:hover img {
        transform: none;
      }

      .candidate-card:hover,
      .vision-box.is-open {
        transform: none;
      }

      .vision-panel {
        transition: none !important;
      }

      .voice-slider-track {
        transition: none !important;
      }

      .quote-floater {
        display: none !important;
      }
    }

    section#why-platform {
      width: 100%;
      padding: 0;
   }
