:root {
  --scfp-blue: #003da5;
  --scfp-blue-dark: #002b74;
  --scfp-blue-deep: #061a44;
  --scfp-sky: #7fd4ef;
  --scfp-red: #ef3340;
  --scfp-red-dark: #bf1724;
  --ink: #111111;
  --ink-soft: #343434;
  --paper: #ffffff;
  --paper-warm: #f4f7fb;
  --line: rgba(17, 17, 17, 0.14);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 24, 78, 0.22);
  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --measure: 68ch;
  --space-page: max(20px, calc((100vw - 1160px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
blockquote {
  text-wrap: pretty;
}

body::selection {
  background: var(--scfp-blue);
  color: var(--paper);
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: var(--scfp-blue);
  color: var(--paper);
  box-shadow: 0 14px 40px rgba(0, 24, 78, 0.24);
}

.brand-lockup,
.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  text-decoration: none;
}

.brand-lockup span,
.footer-lockup span {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.48);
}

.brand-campaign {
  width: 118px;
  min-width: 96px;
}

.brand-scfp {
  width: 112px;
  min-width: 88px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.secondary-link {
  text-underline-offset: 0.26em;
  text-decoration-thickness: 2px;
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 2px solid currentColor;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  background: var(--scfp-red);
  color: var(--paper);
  border-color: var(--scfp-red);
  box-shadow: 0 10px 22px rgba(0, 24, 78, 0.24);
}

.header-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.header-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
}

.header-cta:active,
.header-secondary:active,
.primary-cta:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 74dvh, 760px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 61, 165, 0.96), rgba(6, 26, 68, 0.98)),
    var(--scfp-blue);
  color: var(--paper);
  padding: 44px 0 56px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 43, 116, 0.34), rgba(6, 26, 68, 0.08));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(127, 212, 239, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(127, 212, 239, 0.13) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity: 0.12;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -18vw;
  bottom: -30vw;
  width: 64vw;
  height: 64vw;
  border: 46px solid rgba(127, 212, 239, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 0 clamp(28px, 5vw, 72px);
  align-items: center;
  min-width: 0;
}

.hero-copy > :not(.hero-ballot) {
  grid-column: 1;
}

.kicker {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.45rem, 2.65vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: var(--measure);
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.hero-ballot {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: end;
  justify-self: end;
  width: min(42vw, 520px);
  margin: 0 -18px -30px 0;
  pointer-events: none;
}

.hero-ballot::before {
  content: "";
  position: absolute;
  inset: 24% 12% 4%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 18, 58, 0.34);
  filter: blur(32px);
}

.hero-ballot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 48px rgba(0, 12, 42, 0.34));
  transform: rotate(-2deg);
  transform-origin: 50% 82%;
}

.primary-cta {
  background: var(--scfp-red);
  color: var(--paper);
  border-color: var(--scfp-red);
  box-shadow: 0 16px 36px rgba(0, 24, 78, 0.28);
}

.secondary-link {
  color: var(--paper);
  font-weight: 900;
}

.intro-section {
  scroll-margin-top: 88px;
  background: var(--paper-warm);
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 10vw, 140px);
}

.statement-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-mark {
  position: sticky;
  top: 116px;
  border-top: 7px solid var(--scfp-blue);
  max-width: 16rem;
  padding-top: 18px;
}

.intro-mark span {
  display: block;
  color: var(--scfp-blue);
  font-size: clamp(1.65rem, 2.75vw, 2.55rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.statement-flow,
.commitment-copy,
.signature-card {
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.statement-flow,
.commitment-copy {
  max-width: var(--measure);
}

.statement-flow p,
.commitment-copy p,
.signature-card p {
  margin: 0;
}

.statement-flow p + p,
.commitment-copy p + p {
  margin-top: 22px;
}

blockquote {
  margin: 36px 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 61, 165, 0.2);
  border-top: 8px solid var(--scfp-blue);
  background: var(--paper);
  border-radius: var(--radius);
}

blockquote p {
  font-style: italic;
  font-weight: 800;
  color: var(--ink);
}

.commitment-summary {
  scroll-margin-top: 88px;
  padding: clamp(28px, 5vw, 56px) 0;
  background: var(--scfp-blue);
  color: var(--paper);
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.summary-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 2px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.summary-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 18px 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--paper);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.summary-list li:last-child a {
  border-inline-end: 0;
}

.summary-list a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.summary-list span {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  background: var(--paper);
  color: var(--scfp-blue);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
}

.summary-list strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.15;
}

.commitments {
  background: var(--paper);
}

.commitment {
  scroll-margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(90px, 0.3fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  padding: clamp(58px, 8vw, 110px) var(--space-page);
  border-top: 1px solid var(--line);
}

.commitment:nth-of-type(even) {
  background: #fafafa;
}

.section-image-break {
  margin: 0;
  display: grid;
  overflow: hidden;
  background: var(--scfp-blue-deep);
}

.section-image-break img {
  width: 100%;
  height: clamp(220px, 28vw, 390px);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.section-image-break-grid {
  grid-template-columns: 1fr 1fr;
}

.roadwork-break {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.roadwork-break img {
  height: clamp(280px, 32vw, 430px);
}

.roadwork-break img:first-child {
  object-position: 50% 54%;
}

.roadwork-break img:last-child {
  object-position: 68% 52%;
}

.final-service-break img:first-child {
  object-position: 50% 48%;
}

.final-service-break img:last-child {
  object-position: 48% 48%;
}

.commitment-number {
  display: grid;
  place-items: center;
  width: clamp(70px, 12vw, 132px);
  aspect-ratio: 1;
  background: var(--scfp-blue);
  color: var(--paper);
  border-radius: var(--radius);
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.commitment-copy {
  max-width: 880px;
}

.commitment h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

strong {
  font-weight: 900;
  color: var(--scfp-blue);
}

.signature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 140px) 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 68, 1) 0%, rgba(6, 26, 68, 0.96) 56%, rgba(0, 61, 165, 0.7) 100%),
    var(--scfp-blue-deep);
  color: var(--paper);
}

.signature-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--scfp-blue-deep);
}

.signature-card p {
  color: rgba(255, 255, 255, 0.9);
}

.signature-actions {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.final-cta {
  margin-top: 0;
}

.modal-open {
  overflow: hidden;
}

.support-modal {
  width: min(500px, calc(100% - 28px));
  max-height: min(90vh, 820px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.support-modal::backdrop {
  background:
    linear-gradient(180deg, rgba(6, 26, 68, 0.82), rgba(0, 43, 116, 0.7)),
    rgba(0, 0, 0, 0.42);
}

.support-modal-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  height: min(90vh, 820px);
  max-height: min(90vh, 820px);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(6, 26, 68, 0.3);
}

.support-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px 24px;
  background: var(--scfp-blue);
  color: var(--paper);
}

.support-modal-header h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.modal-close {
  flex: 0 0 auto;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--paper);
  color: var(--scfp-blue);
}

.support-form-frame {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(20px, 4vw, 30px);
  overflow: auto;
  background: var(--paper);
}

.support-form-frame #can_embed_form,
.support-form-frame #can_embed_form form,
.support-form-frame #can_embed_form .can_embed-html,
.support-form-frame #can_embed_form .can_embed_form_inner,
.support-form-frame #can_embed_form .can_main_col,
.support-form-frame #can_embed_form .can_sidebar,
.support-form-frame #can_embed_form .clearfix,
.support-form-frame #can_embed_form .js-ticketed_event_widget {
  float: none !important;
  clear: both !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.support-form-frame #action_info,
.support-form-frame #logo_wrap,
.support-form-frame #can_embed_form h2:first-of-type,
.support-form-frame #can_embed_form h4,
.support-form-frame #can_embed_form .international_link-wrap,
.support-form-frame #can_embed_form .js-international_link-wrap,
.support-form-frame #can_embed_form .entry-title,
.support-form-frame #can_embed_form .action-title {
  display: none !important;
}

.support-form-frame #can_embed_form {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.support-form-frame #can_embed_form form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
}

.support-form-frame #can_embed_form form > *,
.support-form-frame #can_embed_form form > * > *,
.support-form-frame #can_embed_form .signup_form > *,
.support-form-frame #can_embed_form .can_embed_form_inner > *,
.support-form-frame #can_embed_form .can_field,
.support-form-frame #can_embed_form .core_field,
.support-form-frame #can_embed_form .floatlabel-wrapper,
.support-form-frame #can_embed_form .country_drop_wrap,
.support-form-frame #can_embed_form .international_link-wrap,
.support-form-frame #can_embed_form .check_radio_field {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.support-form-frame #can_embed_form :where(input, select, textarea) {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}

.support-form-frame #can_embed_form :where(input[type="checkbox"], input[type="radio"]) {
  display: inline-block !important;
  width: auto !important;
}

.support-form-frame :where(input[type="submit"], button[type="submit"], .button, .can_button) {
  width: 100% !important;
  max-width: 100% !important;
  background-color: var(--scfp-red) !important;
  border-color: var(--scfp-red) !important;
}

.site-footer {
  background: var(--scfp-blue);
  color: var(--paper);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-lockup .brand-campaign {
  width: 96px;
}

.footer-lockup .brand-scfp {
  width: 104px;
}

.footer-lockup span {
  height: 44px;
}

.footer-inner p {
  margin: 0;
  font-weight: 900;
}

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

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--scfp-blue);
  outline-offset: 4px;
}

.site-header a:focus-visible,
.hero a:focus-visible,
.commitment-summary a:focus-visible,
.signature-section a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--paper);
}

.primary-cta:focus-visible,
.header-secondary:focus-visible,
.secondary-link:focus-visible {
  outline-color: var(--scfp-sky);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 68px;
  }

  .site-nav {
    display: none;
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-lockup span {
    height: 44px;
  }

  .brand-campaign {
    width: 92px;
    min-width: 80px;
  }

  .brand-scfp {
    width: 92px;
    min-width: 80px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 38px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 43, 116, 0.38), rgba(6, 26, 68, 0.1));
  }

  .hero-grid,
  .hero-copy,
  .statement-layout,
  .summary-layout,
  .signature-card {
    grid-template-columns: 1fr;
  }

  .hero-ballot {
    grid-column: 1;
    grid-row: auto;
    width: min(58vw, 300px);
    justify-self: center;
    margin: 20px 0 -12px;
    opacity: 0.9;
  }

  .intro-mark {
    max-width: 30rem;
    position: static;
  }

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

  .section-image-break img {
    height: 230px;
  }

  .roadwork-break {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .roadwork-break img {
    height: 260px;
  }

  .signature-card {
    padding: 28px;
  }

  .signature-section {
    background:
      linear-gradient(180deg, rgba(6, 26, 68, 0.98), rgba(6, 26, 68, 0.9)),
      var(--scfp-blue-deep);
  }

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

  .summary-list {
    border-block: 0;
  }

  .summary-list a {
    min-height: 64px;
    padding: 14px 0;
    border-block-start: 1px solid rgba(255, 255, 255, 0.24);
    border-inline-end: 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .hero h2 {
    font-size: clamp(1.28rem, 7.2vw, 2rem);
  }

  .intro-mark {
    padding-top: 12px;
  }

  .intro-mark span {
    font-size: clamp(1.45rem, 6.5vw, 2.15rem);
  }

  .section-image-break-grid {
    grid-template-columns: 1fr;
  }

  .roadwork-break {
    grid-template-columns: 1fr;
  }

  .section-image-break img {
    height: 190px;
  }

  .roadwork-break img {
    height: 210px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero-ballot {
    width: min(68vw, 270px);
    margin-top: 18px;
    margin-bottom: -6px;
  }

  .primary-cta {
    width: 100%;
  }

  .commitment {
    padding-left: 14px;
    padding-right: 14px;
    gap: 18px;
  }

  .commitment-summary {
    padding: 30px 0;
  }

  .summary-copy h2,
  .commitment h2 {
    line-height: 1.04;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
