* {
  box-sizing: border-box;
}

html {
  font-family: var(--votespace-font-family);
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--votespace-background);
  color: var(--votespace-text);
  line-height: 1.5;
  margin: 0;
}

a {
  color: inherit;
  transition: color .15s ease, text-decoration-color .15s ease, transform .15s ease;
}

a:not(.button):hover {
  color: var(--votespace-teal);
  text-decoration: underline;
  text-decoration-thickness: .125rem;
  text-underline-offset: .18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--votespace-green);
  outline-offset: 3px;
}

.shell {
  margin: 0 auto;
  max-width: 80rem;
  padding-inline: 1.25rem;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--votespace-background);
  color: var(--votespace-navy);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--votespace-background);
  border-bottom: 1px solid var(--votespace-border);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 .25rem 1rem var(--votespace-shadow-subtle);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 5.75rem;
}

.brand-link {
  flex: 0 0 auto;
  grid-column: 1;
  justify-self: start;
}

.brand-link img {
  display: block;
  height: auto;
  max-width: 16.65rem;
}

.site-nav-list,
.footer-link-list,
.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-toggle,
.mobile-menu-toggle-label,
.mobile-nav-cta {
  display: none;
}

.site-nav-list {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  gap: .25rem 1.25rem;
}

.site-navigation {
  grid-column: 2;
  justify-self: center;
}

.desktop-header-cta {
  grid-column: 3;
  justify-self: end;
}

.nav-link {
  color: var(--votespace-navy);
  display: inline-block;
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .625rem;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}

.nav-menu {
  position: relative;
}

.nav-menu details {
  position: relative;
}

.nav-menu summary {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  list-style: none;
  position: relative;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-level-two-context {
  align-items: center;
  color: var(--votespace-teal);
  display: inline-flex;
  font-size: .625rem;
  font-weight: 700;
  gap: .25rem;
  left: 1.25rem;
  line-height: 1.2;
  position: absolute;
  top: calc(100% + .125rem);
  transform: none;
  white-space: nowrap;
}

.nav-level-two-context-arrow {
  fill: none;
  flex: 0 0 auto;
  height: .75rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 1rem;
}

.nav-menu details.has-navigation-context .subnav-list {
  top: 100%;
}

.nav-disclosure-icon {
  fill: none;
  height: 1rem;
  margin-left: .25rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  transition: transform .15s ease;
  width: 1rem;
}

.nav-menu details[open] .nav-disclosure-icon {
  transform: rotate(180deg);
}

.subnav-list {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .5rem;
  box-shadow: 0 .5rem 1.5rem var(--votespace-shadow-overlay);
  list-style: none;
  margin: 0;
  min-width: 16rem;
  padding: .5rem;
  position: absolute;
  z-index: 3;
}

.subnav-list a {
  color: var(--votespace-navy);
  display: block;
  font-size: .875rem;
  line-height: 1.35;
  padding: .625rem .75rem;
  text-decoration: none;
}

.subnav-list a:hover,
.subnav-list a:focus-visible {
  background: var(--votespace-background-soft);
  color: var(--votespace-teal);
  text-decoration: underline;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: color-mix(in srgb, var(--votespace-teal) 10%, transparent);
  border-radius: .375rem;
  color: var(--votespace-teal);
  text-decoration: none;
}

.nav-link.is-current {
  background: color-mix(in srgb, var(--votespace-teal) 16%, transparent);
  border-radius: .375rem;
  color: var(--votespace-teal);
  font-weight: 700;
  text-decoration: none;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: .25rem;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 2.75rem;
  padding: .625rem 1rem;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.button:hover,
button:hover {
  transform: translateY(-.125rem);
}

.button-primary {
  background: var(--votespace-green);
  color: var(--votespace-background);
  box-shadow: 0 .25rem .5rem var(--votespace-shadow-raised);
}

.button-primary:hover {
  background: var(--votespace-background);
  border-color: var(--votespace-green);
  color: var(--votespace-green);
}

.button-secondary {
  border-color: var(--votespace-navy);
  color: var(--votespace-navy);
}

.button-secondary:hover {
  background: var(--votespace-background-soft);
}

.header-cta {
  flex: 0 0 auto;
  font-size: .875rem;
  margin-left: auto;
  white-space: nowrap;
}

.hero {
  background: linear-gradient(116deg, var(--votespace-background-soft) 0%, #edf4f6 100%);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.eyebrow {
  color: var(--votespace-teal);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0 0 .75rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--votespace-navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -.04em;
  margin: 0;
  max-width: 11ch;
}

.title-tricolor {
  max-width: 14ch;
}

.title-tricolor > span {
  display: block;
}

.title-tricolor > span:nth-child(1) {
  color: var(--votespace-navy);
}

.title-tricolor > span:nth-child(2) {
  color: var(--votespace-teal);
}

.title-tricolor > span:nth-child(3) {
  color: var(--votespace-green);
}

.home-hero .title-tricolor .hero-title-line > span {
  display: inline;
}

.content-hero .title-tricolor {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  max-width: 18ch;
}

.content-hero .hero-title-line {
  display: block;
}

.content-hero .hero-title-word {
  display: inline;
}

.title-word-navy {
  color: var(--votespace-navy);
}

.title-word-teal {
  color: var(--votespace-teal);
}

.title-word-green {
  color: var(--votespace-green);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 .75rem;
}

.hero-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 1.5rem 0;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-figure {
  border-radius: .75rem;
  box-shadow: 0 1.25rem 2.5rem var(--votespace-shadow-raised);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-figure img {
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  box-shadow: none;
  display: block;
  height: auto;
  max-width: 100%;
}

.hero-image--focus-right,
.hero-image--focus-group,
.hero-image--focus-knowledge-group,
.hero-image--focus-central-team,
.hero-image--focus-notebook,
.hero-image--focus-tablet,
.hero-image--focus-package-advisor {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

.hero-image--focus-right {
  object-position: 100% center;
}

.hero-image--focus-group {
  object-position: center;
}

.hero-image--focus-knowledge-group {
  object-position: 100% center;
}

.hero-image--focus-central-team {
  object-position: 36% center;
}

.hero-image--focus-notebook {
  object-position: 66% center;
}

.hero-image--focus-tablet {
  object-position: 24% center;
}

.hero-image--focus-package-advisor {
  object-position: 78% center;
}

.visual-image--focus-right {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.22);
  transform-origin: 52% center;
  width: 100%;
}

.hero-image-placeholder {
  align-items: center;
  aspect-ratio: 5 / 4;
  background: var(--votespace-background);
  border: 1px dashed var(--votespace-teal);
  color: var(--votespace-navy);
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
}

.content-visual-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.content-visual {
  border-radius: .75rem;
  box-shadow: 0 1.25rem 2.5rem var(--votespace-shadow-raised);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.content-visual img {
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  box-shadow: none;
  display: block;
  height: auto;
  max-width: 100%;
}

.ai-generated-image-badge {
  background: var(--votespace-navy);
  border: 1px solid var(--votespace-background);
  border-radius: 999px;
  box-shadow: 0 .25rem .75rem var(--votespace-shadow-overlay);
  color: var(--votespace-background);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  padding: .5rem .65rem;
  pointer-events: none;
  position: absolute;
  right: .875rem;
  text-transform: uppercase;
  top: .875rem;
  z-index: 1;
}

.home-hero {
  overflow: hidden;
  padding-block: 0;
}

.home-hero .hero-figure {
  overflow: hidden;
}

.home-hero-image--focus-right {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 100% top;
  width: 100%;
}

.home-hero .hero-content {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.benefits {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section,
.content-page {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.content-hero + .section,
.content-hero + .content-page:not(.audience-page) {
  padding-top: clamp(2rem, 3.5vw, 3rem);
}

.content-hero + .content-page.audience-page {
  padding-top: 0;
}

.section:nth-of-type(even),
.content-page {
  background: var(--votespace-background-soft);
}

.narrow-content {
  max-width: 52rem;
}

.reference-page .shell {
  max-width: 75rem;
}

.reference-page-intro {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.reference-page-intro h2,
.reference-format h3,
.reference-format-section h3 {
  color: var(--votespace-navy);
}

.reference-page-intro h2 {
  margin-bottom: 1rem;
}

.reference-page-intro p:not(.eyebrow) {
  margin-bottom: 0;
}

.reference-format,
.reference-format-section {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.reference-format {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--votespace-border);
  border-radius: .85rem;
  background: var(--votespace-background);
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
}

.reference-format--case-study {
  grid-template-columns: minmax(15rem, .85fr) minmax(0, 1.15fr);
}

.reference-format-media {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: end;
  min-height: 21rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--votespace-background);
  background: linear-gradient(145deg, var(--votespace-teal), var(--votespace-navy) 65%);
}

.reference-format-media::before {
  position: absolute;
  inset: 1.5rem;
  border: 1px dashed rgb(255 255 255 / 55%);
  border-radius: .5rem;
  content: "";
}

.reference-format-media > * {
  position: relative;
}

.reference-format-media span,
.reference-format-label {
  margin: 0 0 .5rem;
  color: var(--votespace-teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.reference-format-media span {
  color: #cae5ee;
}

.reference-format-media strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.reference-format-media small {
  margin-top: .35rem;
}

.reference-format-content,
.reference-testimonial-context {
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.reference-format-content h3,
.reference-testimonial-context h3,
.reference-format-section h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.reference-key-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.5rem 0;
}

.reference-key-figures div {
  padding: .8rem .75rem;
  border-left: .2rem solid var(--votespace-green);
  background: var(--votespace-background-soft);
}

.reference-key-figures dt {
  color: var(--votespace-navy);
  font-size: 1.1rem;
  font-weight: 800;
}

.reference-key-figures dd {
  margin: .15rem 0 0;
  color: var(--votespace-text);
  font-size: .78rem;
}

.reference-format blockquote {
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: .2rem solid var(--votespace-teal);
  color: var(--votespace-text);
  font-style: italic;
}

.reference-format blockquote cite,
.reference-testimonial-quote cite {
  display: block;
  margin-top: .6rem;
  font-size: .86rem;
  font-style: normal;
}

.reference-format-note {
  color: var(--votespace-text);
  font-size: .9rem;
  font-weight: 700;
}

.reference-format-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .7fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}

.reference-format-section-heading p:last-child {
  margin: 0;
}

.reference-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reference-profile-card {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: 1.5rem;
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  background: var(--votespace-background);
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
}

.reference-profile-card--accent {
  border-color: #cfe1c0;
  background: var(--votespace-green-soft);
}

.reference-logo-placeholder {
  display: grid;
  width: 7rem;
  height: 3.6rem;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px dashed var(--votespace-teal);
  border-radius: .35rem;
  color: var(--votespace-teal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.reference-profile-card h4 {
  margin: 0 0 .5rem;
  color: var(--votespace-navy);
  font-size: 1.15rem;
}

.reference-profile-card p {
  margin-bottom: 1rem;
}

.reference-profile-tag {
  width: fit-content;
  margin-top: auto;
  padding: .3rem .55rem;
  border-radius: 2rem;
  background: #d9ebf2;
  color: var(--votespace-teal);
  font-size: .76rem;
  font-weight: 800;
}

.reference-format--testimonial {
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, .85fr);
}

.reference-story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.reference-story-steps li {
  padding-top: .75rem;
  border-top: .18rem solid var(--votespace-teal);
}

.reference-story-steps li:nth-child(2) {
  border-color: var(--votespace-green);
}

.reference-story-steps strong,
.reference-story-steps span {
  display: block;
}

.reference-story-steps strong {
  color: var(--votespace-navy);
  font-size: .9rem;
}

.reference-story-steps span {
  margin-top: .25rem;
  font-size: .82rem;
}

.reference-format .reference-testimonial-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--votespace-background);
  background: var(--votespace-navy);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
}

.reference-format .reference-testimonial-quote cite {
  color: #c8e0ea;
}

.reference-release-notice {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  background: var(--votespace-green-soft);
}

.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.contact-introduction h2,
.contact-form-card h2 {
  margin-top: 0;
}

.contact-introduction .content-note {
  margin-top: 2rem;
}

.contact-form-card {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-top: .35rem solid var(--votespace-teal);
  border-radius: 1rem;
  box-shadow: 0 .75rem 1.75rem var(--votespace-shadow-subtle);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field {
  display: grid;
  gap: .45rem;
}

.contact-field--full,
.contact-privacy,
.contact-form-hint {
  grid-column: 1 / -1;
}

.contact-field label,
.contact-privacy label {
  color: var(--votespace-navy);
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .375rem;
  color: var(--votespace-text);
  font: inherit;
  padding: .7rem .8rem;
  width: 100%;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible,
.contact-privacy input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--votespace-teal) 30%, transparent);
  outline-offset: 2px;
}

.contact-privacy {
  align-items: flex-start;
  display: flex;
  gap: .65rem;
}

.contact-privacy input {
  accent-color: var(--votespace-green);
  height: 1.125rem;
  margin: .2rem 0 0;
  min-width: 1.125rem;
  width: 1.125rem;
}

.contact-form-hint {
  font-size: .875rem;
  margin: 0;
}

.contact-success {
  background: var(--votespace-green-soft);
  border-left: .3rem solid var(--votespace-green);
  padding: 1.5rem;
}

.contact-success p:last-child {
  margin-bottom: 0;
}

.contact-honeypot {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

@media (max-width: 47.9375rem) {
  .contact-layout,
  .contact-field-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.download-handout-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.download-handout {
  align-items: flex-start;
  background: linear-gradient(125deg, var(--votespace-background) 0%, var(--votespace-background) 64%, var(--votespace-green-soft) 100%);
  border: 1px solid var(--votespace-border);
  border-top: .35rem solid var(--votespace-teal);
  border-radius: 1rem;
  box-shadow: 0 .75rem 1.75rem var(--votespace-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.download-handout-icon {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  display: flex;
  font-size: .82rem;
  font-weight: 800;
  height: 3.25rem;
  justify-content: center;
  letter-spacing: .08em;
  width: 3.25rem;
}

.download-handout-content .eyebrow,
.download-handout-content h2 {
  margin-top: 0;
}

.download-handout-content > p:not(.eyebrow):not(.download-handout-meta) {
  max-width: 42rem;
}

.download-handout .button {
  margin-top: .25rem;
}

.download-handout-meta {
  color: color-mix(in srgb, var(--votespace-text) 75%, var(--votespace-background));
  font-size: .9375rem;
  margin-bottom: 0;
}

.download-handout-meta {
  margin-top: 1rem;
}

.page-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.function-introduction,
.process-explainer {
  margin-inline: auto;
  max-width: 72rem;
}

.function-explorer {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: 1rem;
  box-shadow: 0 .8rem 2rem var(--votespace-shadow-subtle);
  overflow: hidden;
}

.function-explorer-tabs {
  display: grid;
  gap: 1px;
  background: var(--votespace-border);
}

.function-explorer-tab {
  align-items: center;
  background: var(--votespace-background);
  border: 0;
  color: var(--votespace-navy);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 700;
  gap: .75rem;
  min-height: 4.5rem;
  padding: .875rem 1rem;
  text-align: left;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.function-explorer-tab span {
  color: var(--votespace-teal);
  font-size: .8125rem;
  letter-spacing: .08em;
}

.function-explorer-tab:hover,
.function-explorer-tab:focus-visible,
.function-explorer-tab[aria-selected="true"] {
  background: var(--votespace-navy);
  color: var(--votespace-background);
  transform: none;
}

.function-explorer-tab:hover span,
.function-explorer-tab:focus-visible span,
.function-explorer-tab[aria-selected="true"] span {
  color: var(--votespace-green-soft);
}

.function-explorer-panels {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.function-explorer-panel h3 {
  color: var(--votespace-navy);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 .75rem;
  max-width: 28ch;
}

.function-explorer-panel > p:not(.eyebrow),
.function-explorer-panel li {
  line-height: 1.65;
}

.function-explorer-panel ul {
  display: grid;
  gap: .5rem;
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
}

.function-explorer-panel li::marker {
  color: var(--votespace-green);
}

.process-explainer {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-areas:
    "video"
    "content";
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.process-explainer > div {
  grid-area: content;
}

.process-explainer h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 0;
  max-width: none;
}

.process-explainer-visual {
  margin: 0;
}

.process-explainer-visual img {
  border-radius: .75rem;
  box-shadow: 0 .8rem 2rem var(--votespace-shadow-subtle);
  display: block;
  width: 100%;
}

.process-explainer-video {
  grid-area: video;
  margin: 0 auto;
  margin-inline: auto;
  max-width: 60rem;
  width: 100%;
}

.voter-story-slider {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  box-shadow: 0 .8rem 2rem var(--votespace-shadow-subtle);
  overflow: hidden;
}

.voter-story-slide {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(15rem, .82fr);
}

.voter-story-slide[hidden] {
  display: none;
}

.voter-story-image {
  min-height: 21rem;
  overflow: hidden;
  position: relative;
}

.voter-story-slide img {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  max-height: 25rem;
  min-height: 21rem;
  object-fit: cover;
}

.voter-story-slide .voter-story-image-phone {
  object-position: center 15%;
}

.voter-story-ai-notice {
  background: color-mix(in srgb, var(--votespace-navy) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--votespace-background) 50%, transparent);
  border-radius: 999px;
  color: var(--votespace-background);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  padding: .24rem .38rem;
  position: absolute;
  right: .65rem;
  text-transform: uppercase;
  top: .65rem;
}

.voter-story-copy {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.voter-story-copy .eyebrow {
  margin-bottom: .75rem;
}

.voter-story-copy h3 {
  color: var(--votespace-navy);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0 0 .9rem;
}

.voter-story-copy p:not(.eyebrow) {
  line-height: 1.65;
  margin: 0;
}

.voter-story-controls {
  align-items: center;
  border-top: 1px solid var(--votespace-border);
  display: grid;
  gap: .65rem;
  grid-template-columns: auto 1fr auto;
  padding: .875rem 1rem;
}

.voter-story-button,
.voter-story-pause,
.voter-story-indicators button {
  font: inherit;
}

.voter-story-button,
.voter-story-pause {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-teal);
  border-radius: .375rem;
  color: var(--votespace-teal);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
  padding: .5rem .75rem;
}

.voter-story-button:hover,
.voter-story-button:focus-visible,
.voter-story-pause:hover,
.voter-story-pause:focus-visible {
  background: var(--votespace-teal);
  color: var(--votespace-background);
  transform: none;
}

.voter-story-indicators {
  align-items: center;
  display: flex;
  gap: .45rem;
  justify-content: center;
}

.voter-story-indicators button {
  background: var(--votespace-border);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: .65rem;
  padding: 0;
  width: .65rem;
}

.voter-story-indicators button[aria-selected="true"] {
  background: var(--votespace-green);
  transform: scale(1.2);
}

.voter-story-indicators button:focus-visible {
  outline: 3px solid var(--votespace-teal);
  outline-offset: 3px;
}

.voter-story-pause {
  grid-column: 1 / -1;
  justify-self: center;
}

.voter-video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, var(--votespace-navy), var(--votespace-teal));
  border-radius: .75rem;
  box-shadow: 0 .8rem 2rem var(--votespace-shadow-subtle);
  box-sizing: border-box;
  color: var(--votespace-background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  position: relative;
}

.voter-video-placeholder-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  left: clamp(1.5rem, 5vw, 2.5rem);
  position: absolute;
  text-transform: uppercase;
  top: clamp(1.5rem, 5vw, 2.5rem);
}

.voter-video-placeholder-label {
  color: var(--votespace-green-soft);
}

.voter-video-placeholder-play {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  display: inline-flex;
  height: 4rem;
  justify-content: center;
  margin: 0;
  width: 4rem;
}

.voter-video-placeholder-play svg {
  fill: var(--votespace-background);
  height: 2rem;
  margin-left: .15rem;
  width: 2rem;
}

.voter-video-placeholder-status {
  background: var(--votespace-green-soft);
  color: var(--votespace-navy);
  bottom: clamp(1.5rem, 5vw, 2.5rem);
  font-size: .75rem;
  font-weight: 700;
  left: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: .08em;
  margin: 0;
  padding: .4rem .55rem;
  position: absolute;
  text-transform: uppercase;
}

.process-explainer-visual figcaption {
  color: var(--votespace-text-muted);
  font-size: .9rem;
  line-height: 1.5;
  margin-top: .75rem;
}

.function-note {
  margin: clamp(2.5rem, 4vw, 3.75rem) auto 0;
  max-width: 72rem;
}

.function-requirements {
  background:
    radial-gradient(circle at 94% 13%, color-mix(in srgb, var(--votespace-green-soft) 78%, transparent) 0 9rem, transparent 9.1rem),
    var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: 1rem;
  box-shadow: 0 .8rem 2rem var(--votespace-shadow-subtle);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  position: relative;
}

.function-requirements-header {
  max-width: none;
  position: relative;
}

.function-requirements-header h2 {
  color: var(--votespace-navy);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.13;
  margin: 0 0 .9rem;
  max-width: none;
}

.function-requirements-header > p:not(.eyebrow) {
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
  max-width: 76ch;
}

.function-requirements-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.function-requirements-card {
  background: var(--votespace-background-soft);
  border: 1px solid var(--votespace-border);
  border-radius: .9rem;
  border-top: .3rem solid var(--votespace-teal);
  padding: 1.5rem;
}

.function-requirements-card--individual {
  background: color-mix(in srgb, var(--votespace-green-soft) 56%, var(--votespace-background));
  border-top-color: var(--votespace-green);
}

.function-requirements-card img {
  background: var(--votespace-teal);
  border-radius: 50%;
  display: block;
  margin-bottom: 1.1rem;
  padding: .55rem;
}

.function-requirements-card--individual img {
  background: var(--votespace-green);
}

.function-requirements-label {
  color: var(--votespace-teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 .4rem;
  text-transform: uppercase;
}

.function-requirements-card--individual .function-requirements-label {
  color: var(--votespace-green);
}

.function-requirements-card h3 {
  color: var(--votespace-navy);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 .7rem;
}

.function-requirements-card > p:not(.function-requirements-label) {
  line-height: 1.62;
  margin: 0;
}

.function-requirements-card ul {
  display: grid;
  gap: .6rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}

.function-requirements-card li {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1.1rem 1fr;
  line-height: 1.5;
}

.function-requirements-card li::before {
  align-items: center;
  background: var(--votespace-teal);
  border-radius: 50%;
  color: var(--votespace-background);
  content: "✓";
  display: inline-flex;
  font-size: .7rem;
  font-weight: 800;
  height: 1.1rem;
  justify-content: center;
  margin-top: .15rem;
  width: 1.1rem;
}

.function-requirements-card--individual li::before {
  background: var(--votespace-green);
}

.function-requirements-callout {
  align-items: center;
  border-left: .3rem solid var(--votespace-green);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding: .25rem 0 .25rem 1.1rem;
}

.function-requirements-callout > div {
  max-width: 52rem;
}

.function-requirements-callout strong {
  color: var(--votespace-navy);
  display: block;
  margin-bottom: .35rem;
}

.function-requirements-callout p {
  line-height: 1.6;
  margin: 0;
}

.function-requirements-callout a {
  flex: 0 0 auto;
}

.audience-content {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.content-hero + .content-page.audience-page .audience-content {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.audience-overview {
  background: linear-gradient(118deg, var(--votespace-background-soft), color-mix(in srgb, var(--votespace-green-soft) 58%, var(--votespace-background)));
  border-left: .4rem solid var(--votespace-green);
  border-radius: 1rem;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.audience-overview::after {
  background: color-mix(in srgb, var(--votespace-teal) 11%, transparent);
  border-radius: 50%;
  content: "";
  height: 15rem;
  position: absolute;
  right: -7rem;
  top: -8rem;
  width: 15rem;
}

.audience-overview > * {
  position: relative;
  z-index: 1;
}

.audience-overview h2,
.audience-story-content h2 {
  color: var(--votespace-navy);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  max-width: 24ch;
}

.audience-overview p:not(.eyebrow) {
  line-height: 1.7;
  max-width: 60ch;
}

.audience-checklist {
  align-self: center;
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  padding: 1.25rem;
}

.audience-checklist h3 {
  color: var(--votespace-navy);
  font-size: 1.1rem;
  margin-top: 0;
}

.audience-checklist ul {
  display: grid;
  gap: .7rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.audience-checklist li {
  display: grid;
  gap: .65rem;
  grid-template-columns: .7rem 1fr;
  line-height: 1.5;
}

.audience-checklist li::before {
  background: var(--votespace-green);
  border-radius: 50%;
  content: "";
  height: .55rem;
  margin-top: .4rem;
  width: .55rem;
}

.audience-section-heading {
  max-width: 48rem;
}

.audience-section-heading h2 {
  color: var(--votespace-navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}

.audience-section-heading p:not(.eyebrow) {
  line-height: 1.7;
}

.audience-scenario-grid,
.audience-details {
  display: grid;
  gap: 1rem;
}

.audience-scenario {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  border-top: .3rem solid var(--votespace-navy);
  min-height: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.audience-scenario:nth-child(2) {
  border-top-color: var(--votespace-teal);
}

.audience-scenario:nth-child(3) {
  border-top-color: var(--votespace-green);
}

.audience-scenario-icon {
  background: var(--votespace-navy);
  border-radius: 50%;
  display: block;
  height: 2.65rem;
  margin-bottom: 1.5rem;
  padding: .6rem;
  width: 2.65rem;
}

.audience-scenario:nth-child(2) .audience-scenario-icon {
  background: var(--votespace-teal);
}

.audience-scenario:nth-child(3) .audience-scenario-icon {
  background: var(--votespace-green);
}

.audience-scenario-number {
  color: color-mix(in srgb, var(--votespace-navy) 15%, transparent);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.audience-scenario h3 {
  color: var(--votespace-navy);
  font-size: 1.2rem;
  margin: 0 0 .65rem;
  max-width: 16ch;
  position: relative;
}

.audience-scenario p {
  line-height: 1.65;
  margin: 0;
  position: relative;
}

.audience-storyboard {
  align-items: stretch;
  background: var(--votespace-background-soft);
  border: 1px solid var(--votespace-border);
  border-radius: 1rem;
  display: grid;
  overflow: hidden;
}

.audience-story-visual {
  margin: 0;
  position: relative;
}

.audience-story-visual img {
  aspect-ratio: 5 / 4;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  width: 100%;
}

.audience-story-visual--focus-background-woman img {
  flex: 1 1 auto;
  min-height: 0;
  object-position: 100% center;
  transform: scale(1.35);
  transform-origin: 100% center;
}

.audience-story-visual--focus-background-woman {
  align-self: stretch;
  display: flex;
}

.audience-story-visual--focus-right-participant img {
  object-position: 100% center;
}

.audience-story-visual figcaption {
  background: color-mix(in srgb, var(--votespace-navy) 92%, transparent);
  bottom: 0;
  color: var(--votespace-background);
  font-size: .85rem;
  line-height: 1.45;
  margin: 0;
  padding: .8rem 1rem;
  position: absolute;
  width: 100%;
}

.audience-story-content {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.audience-step-list {
  counter-reset: audience-step;
  display: grid;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.audience-step-list li {
  border-top: 1px solid var(--votespace-border);
  counter-increment: audience-step;
  display: grid;
  gap: .4rem .8rem;
  grid-template-columns: 2.2rem 1fr;
  padding: .85rem 0;
}

.audience-step-list li:last-child {
  border-bottom: 1px solid var(--votespace-border);
}

.audience-step-list li::before {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  content: counter(audience-step);
  display: inline-flex;
  font-size: .875rem;
  font-weight: 800;
  grid-row: span 2;
  height: 1.8rem;
  justify-content: center;
  width: 1.8rem;
}

.audience-step-list strong {
  color: var(--votespace-navy);
}

.audience-step-list span {
  grid-column: 2;
  line-height: 1.55;
}

.audience-detail {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  margin: 0 !important;
  overflow: hidden;
  padding: 1.25rem !important;
}

.audience-detail h3 {
  color: var(--votespace-navy);
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0 0 .85rem;
}

.audience-detail p {
  line-height: 1.65;
  margin: 0;
}

.audience-responsibility {
  border-left: .4rem solid var(--votespace-teal);
  margin: 0;
  max-width: none;
}

.knowledge-content {
  margin-inline: auto;
  max-width: 72rem;
}

.knowledge-page section + section {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.knowledge-overview,
.knowledge-article-lead {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.knowledge-overview-content h2,
.knowledge-article-lead h2,
.knowledge-section-heading h2 {
  color: var(--votespace-navy);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 25ch;
}

.knowledge-overview-content > p:not(.eyebrow),
.knowledge-article-lead > div > p:not(.eyebrow),
.knowledge-section-heading > p:not(.eyebrow),
.knowledge-story-content > p:not(.eyebrow) {
  line-height: 1.7;
  max-width: 68ch;
}

.knowledge-guide {
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--votespace-teal) 14%, transparent) 0 5.5rem, transparent 5.6rem),
    var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-top: .3rem solid var(--votespace-green);
  border-radius: .9rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  padding: 1.5rem;
}

.knowledge-guide h3 {
  color: var(--votespace-navy);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.knowledge-guide-list,
.knowledge-check-list,
.knowledge-step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.knowledge-guide-list {
  counter-reset: knowledge-guide;
  display: grid;
  gap: .9rem;
}

.knowledge-guide-list li {
  counter-increment: knowledge-guide;
  display: grid;
  gap: .2rem .75rem;
  grid-template-columns: 1.8rem 1fr;
}

.knowledge-guide-list li::before {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  content: counter(knowledge-guide);
  display: inline-flex;
  font-size: .8rem;
  font-weight: 800;
  grid-row: span 2;
  height: 1.8rem;
  justify-content: center;
  width: 1.8rem;
}

.knowledge-guide-list strong,
.knowledge-guide-list span {
  display: block;
}

.knowledge-guide-list strong {
  color: var(--votespace-navy);
}

.knowledge-guide-list span {
  font-size: .93rem;
  line-height: 1.5;
}

.knowledge-check-list {
  display: grid;
  gap: .75rem;
}

.knowledge-check-list li {
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.knowledge-check-list li::before {
  color: var(--votespace-green);
  content: "•";
  font-size: 1.35rem;
  left: .15rem;
  line-height: 1;
  position: absolute;
  top: .1rem;
}

.knowledge-topic-section,
.knowledge-steps-section,
.knowledge-decision-section,
.knowledge-comparison-section {
  margin-inline: auto;
  max-width: 72rem;
}

.knowledge-section-heading {
  margin-bottom: 1.25rem;
}

.knowledge-section-heading h2 {
  margin-bottom: .75rem;
  max-width: 28ch;
}

.knowledge-section-heading > p:not(.eyebrow) {
  margin-bottom: 0;
}

.knowledge-topic-grid,
.knowledge-decision-grid,
.knowledge-comparison-grid,
.knowledge-step-grid {
  display: grid;
  gap: 1rem;
}

.knowledge-topic-card {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .9rem;
  border-top: .3rem solid var(--votespace-teal);
  color: var(--votespace-text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.knowledge-topic-card--board {
  border-top-color: var(--votespace-navy);
}

.knowledge-topic-card--comparison {
  border-top-color: var(--votespace-green);
}

.knowledge-topic-card img {
  background: var(--votespace-teal);
  border-radius: 50%;
  display: block;
  margin-bottom: 1.25rem;
  padding: .55rem;
}

.knowledge-topic-card--board img {
  background: var(--votespace-navy);
}

.knowledge-topic-card--comparison img {
  background: var(--votespace-green);
}

.knowledge-topic-number {
  color: color-mix(in srgb, var(--votespace-navy) 15%, transparent);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.knowledge-topic-kicker {
  color: var(--votespace-teal);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.knowledge-topic-card--board .knowledge-topic-kicker {
  color: var(--votespace-navy);
}

.knowledge-topic-card--comparison .knowledge-topic-kicker {
  color: var(--votespace-green);
}

.knowledge-topic-card > strong {
  color: var(--votespace-navy);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: .45rem 0 .75rem;
  max-width: 18ch;
}

.knowledge-topic-card > span:not(.knowledge-topic-number):not(.knowledge-topic-kicker):not(.knowledge-topic-link) {
  line-height: 1.6;
}

.knowledge-topic-link {
  align-items: center;
  align-self: flex-start;
  color: var(--votespace-teal);
  display: inline-flex;
  font-weight: 800;
  gap: .4rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.knowledge-topic-link span {
  display: inline-block;
  font-size: 1.25rem;
  transition: transform .18s ease;
}

.knowledge-topic-card:hover .knowledge-topic-link span,
.knowledge-topic-link:hover span,
.knowledge-topic-link:focus-visible span {
  transform: translateX(.25rem);
}

.knowledge-storyboard {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: 1rem;
  display: grid;
  overflow: hidden;
}

.knowledge-story-visual {
  margin: 0;
  position: relative;
}

.knowledge-story-visual img {
  aspect-ratio: 5 / 4;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.knowledge-story-visual figcaption {
  background: color-mix(in srgb, var(--votespace-navy) 92%, transparent);
  bottom: 0;
  color: var(--votespace-background);
  font-size: .85rem;
  line-height: 1.45;
  margin: 0;
  padding: .8rem 1rem;
  position: absolute;
  width: 100%;
}

.knowledge-story-content {
  align-self: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.knowledge-story-content h2 {
  color: var(--votespace-navy);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.17;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.knowledge-story-content .knowledge-check-list {
  margin: 1.25rem 0;
}

.knowledge-step-grid {
  counter-reset: knowledge-step;
}

.knowledge-step-grid li {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  display: grid;
  gap: .9rem;
  grid-template-columns: 2.25rem 1fr;
  padding: 1.25rem;
}

.knowledge-step-grid li > span {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 800;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.knowledge-step-grid strong,
.knowledge-decision-card h3,
.knowledge-comparison-card h3 {
  color: var(--votespace-navy);
}

.knowledge-step-grid p,
.knowledge-decision-card p,
.knowledge-comparison-card p {
  line-height: 1.6;
  margin: .4rem 0 0;
}

.knowledge-decision-card,
.knowledge-comparison-card {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  padding: 1.5rem;
}

.knowledge-decision-card img {
  background: var(--votespace-teal);
  border-radius: 50%;
  display: block;
  margin-bottom: 1rem;
  padding: .55rem;
}

.knowledge-decision-card:nth-child(2) img {
  background: var(--votespace-green);
}

.knowledge-decision-card:nth-child(3) img {
  background: var(--votespace-navy);
}

.knowledge-decision-card h3,
.knowledge-comparison-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0;
}

.knowledge-comparison-card {
  border-top: .3rem solid var(--votespace-teal);
}

.knowledge-comparison-card--election {
  border-top-color: var(--votespace-green);
}

.knowledge-comparison-card .knowledge-topic-kicker {
  margin-bottom: .5rem;
}

.knowledge-comparison-card ul {
  line-height: 1.55;
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.knowledge-comparison-card li + li {
  margin-top: .5rem;
}

.knowledge-comparison-card li::marker {
  color: var(--votespace-green);
}

.knowledge-boundary {
  border-left: .4rem solid var(--votespace-teal);
  margin-inline: auto;
  max-width: 72rem;
}

.audience-grid,
.content-grid {
  display: grid;
  gap: 1rem;
}

.audience-grid article,
.content-grid section,
.content-note,
.security-card-grid article,
.package-grid article,
.wizard-panel {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  padding: 1.5rem;
}

.interactive-card,
.visual-card-grid > *,
.content-grid > *,
.content-note,
.security-card-grid > *,
.package-grid > *,
.package-clarifications > article,
.wizard-panel {
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.interactive-card:focus-within,
.visual-card-grid > *:focus-within,
.content-grid > *:focus-within,
.content-note:focus-within,
.security-card-grid > *:focus-within,
.package-grid > *:focus-within,
.package-clarifications > article:focus-within {
  background-color: var(--votespace-green-soft);
  border-color: var(--votespace-green);
}

@media (hover: hover) and (pointer: fine) {
  .interactive-card:hover,
  .visual-card-grid > *:hover,
  .content-grid > *:hover,
  .content-note:hover,
  .security-card-grid > *:hover,
  .package-grid > *:hover,
  .package-clarifications > article:hover {
    background-color: var(--votespace-green-soft);
    border-color: var(--votespace-green);
  }
}

.feature-icon {
  background: var(--votespace-green-soft);
  border-radius: 50%;
  display: block;
  margin-bottom: 1rem;
  padding: .65rem;
}

.feature-icon--navy {
  background: var(--votespace-navy);
}

.feature-icon--teal {
  background: var(--votespace-teal);
}

.feature-icon--green {
  background: var(--votespace-green);
}

.trust-strip {
  background: var(--votespace-background);
  border-bottom: 1px solid var(--votespace-border);
  border-top: 1px solid var(--votespace-border);
  padding-block: 1.5rem;
}

.trust-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  align-items: center;
  display: flex;
  gap: .875rem;
}

.trust-list img {
  border-radius: 50%;
  flex: 0 0 auto;
  margin-bottom: 0;
  padding: .5rem;
}

.trust-list span {
  display: grid;
  font-size: .9375rem;
}

.trust-list strong {
  color: var(--votespace-navy);
}

.audience-grid h3,
.content-grid h2,
.content-note h2,
.content-page section h2 {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.audience-grid a,
.content-page a:not(.button),
.text-link {
  color: var(--votespace-teal);
  font-weight: 700;
}

.process-list,
.numbered-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-list li,
.numbered-steps li {
  border-left: .25rem solid var(--votespace-green);
  padding: .75rem 1rem;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  line-height: 1.55;
  margin-top: .25rem;
}

.numbered-steps {
  counter-reset: steps;
}

.numbered-steps li {
  counter-increment: steps;
  margin-bottom: 1rem;
}

.numbered-steps h3::before {
  color: var(--votespace-teal);
  content: counter(steps) ". ";
}

.numbered-steps p,
.content-page section p {
  line-height: 1.65;
}

.section-note {
  line-height: 1.65;
}

.faq-preview details,
.content-page details {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  margin-bottom: .75rem;
  padding: 1rem 1.25rem;
}

.faq-preview summary,
.content-page summary {
  color: var(--votespace-navy);
  cursor: pointer;
  font-weight: 700;
}

.faq-preview details p,
.content-page details p {
  line-height: 1.6;
  margin-bottom: 0;
}

.page-cta {
  background: var(--votespace-teal);
  color: var(--votespace-background);
  padding-block: 4rem;
}

.page-cta h2 {
  color: var(--votespace-background);
  margin-top: 0;
}

.page-cta p {
  line-height: 1.6;
  max-width: 44rem;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-grid li {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-top: .25rem solid var(--votespace-green);
  border-radius: .75rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  padding: 1.5rem;
}

.benefit-grid p {
  line-height: 1.6;
  margin: 0;
}

.site-footer {
  background: var(--votespace-navy);
  color: var(--votespace-background);
  padding-block: 3rem;
}

.price-notice {
  color: var(--votespace-navy);
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
}

.price-table {
  border-collapse: collapse;
  min-width: 54rem;
  width: 100%;
}

.price-table td,
.price-table th {
  border: 1px solid var(--votespace-border);
  padding: 1rem;
  text-align: left;
}

.price-table thead th {
  background: var(--votespace-navy);
  color: var(--votespace-background);
}

.price-table tbody tr:nth-child(even) {
  background: var(--votespace-background-soft);
}

.package-comparison-scroll {
  margin-inline: -.5rem;
  overflow-x: auto;
  padding: .5rem;
}

.package-scroll-hint {
  color: var(--votespace-text-muted);
  font-size: .85rem;
  margin: .5rem 0 0;
}

.package-comparison-table {
  background: var(--votespace-background);
  border-collapse: separate;
  border-radius: 1rem;
  border-spacing: 0;
  box-shadow: 0 1rem 2rem var(--votespace-shadow-subtle);
  min-width: 74rem;
  overflow: hidden;
  width: 100%;
}

.package-comparison-table th,
.package-comparison-table td {
  border-bottom: 1px solid var(--votespace-border);
  border-right: 1px solid var(--votespace-border);
  padding: .8rem 1rem;
  text-align: left;
  vertical-align: middle;
}

.package-comparison-table tr > :last-child {
  border-right: 0;
}

.package-comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.package-comparison-table tbody tr:nth-child(even) > * {
  background: var(--votespace-background-soft);
}

.package-comparison-table tbody th {
  color: var(--votespace-navy);
  font-size: .9rem;
  min-width: 15rem;
}

.package-comparison-table td {
  font-size: .9rem;
  line-height: 1.4;
  min-width: 14rem;
}

.package-comparison-table td small {
  color: var(--votespace-text-muted);
  font-size: .78rem;
}

.package-feature-heading {
  background: var(--votespace-background-soft);
  color: var(--votespace-navy);
  min-width: 15rem;
  vertical-align: bottom !important;
}

.package-tier {
  background: var(--votespace-background);
  border-top: .3rem solid var(--votespace-navy);
  min-width: 14rem;
}

.package-tier--guided {
  border-top-color: var(--votespace-teal);
}

.package-tier--plus {
  border-top-color: var(--votespace-green);
}

.package-tier--individual {
  border-top-color: var(--votespace-navy);
}

.package-tier img {
  background: var(--votespace-navy);
  border-radius: 50%;
  display: inline-block;
  margin-right: .65rem;
  padding: .45rem;
  vertical-align: middle;
}

.package-tier--guided img {
  background: var(--votespace-teal);
}

.package-tier--plus img {
  background: var(--votespace-green);
}

.package-tier span {
  display: inline-block;
  max-width: calc(100% - 3.6rem);
  vertical-align: middle;
}

.package-tier strong,
.package-tier small {
  display: block;
}

.package-tier strong {
  color: var(--votespace-navy);
  font-size: 1.05rem;
}

.package-tier small {
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.35;
  margin-top: .15rem;
}

.package-price-row td strong,
.package-price-intro,
.package-question-included {
    color: var(--votespace-navy);
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

.package-price-tiers,
.package-reservation-tiers,
.package-question-tiers {
    display: grid;
    gap: .2rem;
    list-style: none;
    margin: .55rem 0 0;
    padding: 0;
}

.package-price-tiers li,
.package-reservation-tiers li,
.package-question-tiers li {
    align-items: baseline;
    border-top: 1px solid var(--votespace-border);
    display: flex;
    gap: .5rem;
    justify-content: space-between;
    padding-top: .25rem;
}

.package-price-tiers li:first-child,
.package-reservation-tiers li:first-child,
.package-question-tiers li:first-child {
    border-top: 0;
    padding-top: 0;
}

.package-price-tiers li span:last-child,
.package-reservation-tiers li span:last-child,
.package-question-tiers li span:last-child {
    color: var(--votespace-navy);
    font-weight: 700;
    white-space: nowrap;
}

.package-question-tiers li {
    display: block;
}

.package-custom-offer {
    color: var(--votespace-navy);
    font-weight: 700;
  text-align: center !important;
}

.package-clarifications {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.package-clarifications article {
  align-items: flex-start;
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .75rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.package-clarifications img {
  background: var(--votespace-teal);
  border-radius: 50%;
  flex: 0 0 auto;
  padding: .45rem;
}

.package-clarifications h3,
.package-clarifications p {
  margin: 0;
}

.package-clarifications h3 {
  color: var(--votespace-navy);
  font-size: 1rem;
}

.package-clarifications p {
  font-size: .9rem;
  line-height: 1.5;
  margin-top: .2rem;
}

.package-grid ul {
  line-height: 1.55;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.package-grid li + li {
  margin-top: .5rem;
}

.subdomain-reservation-section {
  background:
    radial-gradient(circle at 91% 18%, color-mix(in srgb, var(--votespace-green-soft) 72%, transparent) 0 9rem, transparent 9.1rem),
    var(--votespace-background);
  overflow: hidden;
  position: relative;
}

.subdomain-reservation-section .shell {
  position: relative;
}

.subdomain-reservation-header {
  display: grid;
  gap: 1.5rem;
}

.subdomain-reservation-header h2 {
  color: var(--votespace-navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: .9rem;
  max-width: 20ch;
}

.subdomain-reservation-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
  max-width: 62ch;
}

.subdomain-reservation-highlight {
  background: var(--votespace-navy);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.25rem var(--votespace-shadow-subtle);
  color: var(--votespace-background);
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.subdomain-reservation-highlight::after {
  background: color-mix(in srgb, var(--votespace-teal) 65%, transparent);
  border-radius: 50%;
  content: "";
  height: 7rem;
  position: absolute;
  right: -3.5rem;
  top: -3.5rem;
  width: 7rem;
}

.subdomain-reservation-highlight img {
  background: var(--votespace-teal);
  border-radius: 50%;
  display: block;
  margin-bottom: 1rem;
  padding: .55rem;
  position: relative;
  z-index: 1;
}

.subdomain-reservation-highlight p {
  line-height: 1.55;
  margin: 0;
  max-width: 31rem;
  position: relative;
  z-index: 1;
}

.subdomain-reservation-highlight-label {
  color: var(--votespace-green-soft);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: .5rem !important;
  text-transform: uppercase;
}

.subdomain-reservation-detail-grid,
.subdomain-reservation-flow {
  display: grid;
  gap: 1rem;
}

.subdomain-reservation-detail-grid {
  margin-top: 2rem;
}

.subdomain-reservation-detail {
  background: var(--votespace-background-soft);
  border: 1px solid var(--votespace-border);
  border-radius: .9rem;
  border-top: .3rem solid var(--votespace-teal);
  padding: 1.5rem;
}

.subdomain-reservation-detail--duration {
  background: color-mix(in srgb, var(--votespace-green-soft) 55%, var(--votespace-background));
  border-top-color: var(--votespace-green);
}

.subdomain-reservation-card-label {
  color: var(--votespace-teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 .45rem;
  text-transform: uppercase;
}

.subdomain-reservation-detail--duration .subdomain-reservation-card-label {
  color: var(--votespace-green);
}

.subdomain-reservation-detail h3 {
  color: var(--votespace-navy);
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0;
}

.subdomain-reservation-list,
.subdomain-reservation-prices {
  display: grid;
  gap: .7rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.subdomain-reservation-list li {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1.1rem 1fr;
  line-height: 1.55;
}

.subdomain-reservation-list li::before {
  align-items: center;
  background: var(--votespace-teal);
  border-radius: 50%;
  color: var(--votespace-background);
  content: "✓";
  display: inline-flex;
  font-size: .7rem;
  font-weight: 800;
  height: 1.1rem;
  justify-content: center;
  margin-top: .18rem;
  width: 1.1rem;
}

.subdomain-reservation-prices li {
  align-items: baseline;
  border-top: 1px solid color-mix(in srgb, var(--votespace-green) 26%, var(--votespace-border));
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: .65rem;
}

.subdomain-reservation-prices li:first-child {
  border-top: 0;
  padding-top: 0;
}

.subdomain-reservation-prices strong,
.subdomain-reservation-prices span {
  color: var(--votespace-navy);
  font-size: 1rem;
}

.subdomain-reservation-prices span {
  font-weight: 800;
  white-space: nowrap;
}

.subdomain-reservation-flow {
  counter-reset: reservation-step;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.subdomain-reservation-flow li {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .9rem;
  display: grid;
  gap: .85rem;
  grid-template-columns: 2.25rem 1fr;
  padding: 1.25rem;
  position: relative;
}

.subdomain-reservation-flow > li > span {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.subdomain-reservation-flow strong {
  color: var(--votespace-navy);
  display: block;
  font-size: 1rem;
  margin-bottom: .35rem;
}

.subdomain-reservation-flow p {
  line-height: 1.55;
  margin: 0;
}

.subdomain-reservation-note {
  border-left: .3rem solid var(--votespace-green);
  line-height: 1.65;
  margin: 1.5rem 0 0;
  max-width: none;
  padding-left: 1rem;
}

.security-card-grid {
  display: grid;
  gap: 1rem;
}

.security-principles-section {
  background: linear-gradient(120deg, var(--votespace-background-soft), color-mix(in srgb, var(--votespace-green-soft) 72%, var(--votespace-background)));
}

.security-section-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.security-section-intro h2,
.security-boundaries-heading h2,
.security-preparation-content h2,
.security-transparency-card h2 {
  color: var(--votespace-navy);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  max-width: 23ch;
}

.security-section-intro > div > p:not(.eyebrow),
.security-boundaries-heading > p:not(.eyebrow),
.security-preparation-content > p:not(.eyebrow) {
  line-height: 1.7;
  max-width: 65ch;
}

.security-assurance {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-left: .35rem solid var(--votespace-teal);
  border-radius: .75rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  padding: 1.25rem;
}

.security-assurance img {
  background: color-mix(in srgb, var(--votespace-teal) 12%, var(--votespace-background));
  border-radius: .625rem;
  display: block;
  margin-bottom: 1rem;
  padding: .6rem;
}

.security-assurance .eyebrow {
  margin-bottom: .25rem;
}

.security-assurance strong {
  color: var(--votespace-navy);
  display: block;
  font-size: 1.0625rem;
}

.security-assurance p:last-child {
  font-size: .9375rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.security-principle-card {
  border-top: .3rem solid var(--votespace-navy);
  overflow: hidden;
  position: relative;
}

.security-principle-card:nth-child(2) {
  border-top-color: var(--votespace-teal);
}

.security-principle-card:nth-child(3) {
  border-top-color: var(--votespace-green);
}

.security-card-index {
  color: color-mix(in srgb, var(--votespace-navy) 20%, var(--votespace-background));
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.security-principle-card .feature-icon {
  position: relative;
}

.security-principle-card h3 {
  color: var(--votespace-navy);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 15ch;
  position: relative;
}

.security-principle-card p {
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
}

.security-boundaries-section {
  background: var(--votespace-background);
}

.security-boundaries-heading {
  margin-bottom: 2rem;
  max-width: none;
}

.security-boundaries-heading h2,
.security-boundaries-heading > p:not(.eyebrow) {
  max-width: none;
}

.security-boundary-grid {
  display: grid;
  gap: 1rem;
}

.security-boundary {
  border: 1px solid var(--votespace-border);
  border-radius: .875rem;
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.security-boundary--votespace {
  background: color-mix(in srgb, var(--votespace-teal) 6%, var(--votespace-background));
  border-top: .35rem solid var(--votespace-teal);
}

.security-boundary--organisation {
  background: color-mix(in srgb, var(--votespace-green-soft) 52%, var(--votespace-background));
  border-top: .35rem solid var(--votespace-green);
}

.security-boundary-label {
  color: var(--votespace-teal);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .07em;
  margin: 0;
  text-transform: uppercase;
}

.security-boundary--organisation .security-boundary-label {
  color: var(--votespace-green);
}

.security-boundary h3 {
  color: var(--votespace-navy);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: .5rem 0 1.25rem;
}

.security-boundary ul {
  display: grid;
  gap: .875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.security-boundary li {
  display: grid;
  gap: .25rem .75rem;
  grid-template-columns: .625rem minmax(0, 1fr);
  line-height: 1.55;
}

.security-boundary li::before {
  background: var(--votespace-teal);
  border-radius: 50%;
  content: "";
  grid-row: span 2;
  height: .5rem;
  margin-top: .45rem;
  width: .5rem;
}

.security-boundary--organisation li::before {
  background: var(--votespace-green);
}

.security-boundary li strong {
  color: var(--votespace-navy);
}

.security-boundary li span {
  min-width: 0;
}

.security-visual-section {
  background: linear-gradient(118deg, color-mix(in srgb, var(--votespace-teal) 7%, var(--votespace-background)), var(--votespace-background-soft));
}

.security-preparation-steps {
  counter-reset: security-step;
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.security-preparation-steps li {
  border-top: 1px solid var(--votespace-border);
  counter-increment: security-step;
  display: grid;
  gap: .15rem 1rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  padding-top: 1rem;
}

.security-preparation-steps li::before {
  align-items: center;
  background: var(--votespace-green);
  border-radius: 50%;
  color: var(--votespace-background);
  content: counter(security-step);
  display: inline-flex;
  font-size: .875rem;
  font-weight: 800;
  grid-row: span 2;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.security-preparation-steps strong {
  color: var(--votespace-navy);
}

.security-preparation-steps span {
  font-size: .9375rem;
  line-height: 1.5;
}

.security-transparency-section {
  background: var(--votespace-navy);
  color: var(--votespace-background);
}

.security-transparency-section h2,
.security-transparency-section .eyebrow {
  color: var(--votespace-background);
}

.security-transparency-card {
  display: grid;
  gap: 1.75rem;
}

.security-transparency-card h2 {
  margin-bottom: 1rem;
}

.security-transparency-card p {
  line-height: 1.7;
  max-width: 62ch;
}

.security-transparency-action {
  align-self: center;
  border-left: .3rem solid var(--votespace-green);
  padding-left: 1.25rem;
}

.security-transparency-action p {
  font-weight: 700;
  margin-top: 0;
}

.security-legal-note {
  border-top: 1px solid rgb(255 255 255 / 28%);
  font-size: .9375rem;
  line-height: 1.6;
  margin: 2rem 0 0;
  max-width: 70ch;
  padding-top: 1.25rem;
}

.content-note-section {
  background: var(--votespace-background);
  color: var(--votespace-text);
}

.content-note-section h2 {
  color: var(--votespace-navy);
}

.content-note-section.security-transparency-section {
  background: var(--votespace-navy);
  color: var(--votespace-background);
}

.content-note-section.security-transparency-section h2,
.content-note-section.security-transparency-section .eyebrow {
  color: var(--votespace-background);
}

.wizard-progress {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.wizard-progress li {
  color: var(--votespace-text);
  font-size: .9375rem;
}

.wizard-step-status,
.wizard-step-link {
  align-items: center;
  color: inherit;
  display: flex;
  gap: .5rem;
  text-align: left;
  width: 100%;
}

.wizard-step-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.wizard-step-status > span,
.wizard-step-link > span {
  align-items: center;
  background: var(--votespace-background-soft);
  border: 1px solid var(--votespace-border);
  border-radius: 50%;
  color: var(--votespace-navy);
  display: inline-flex;
  font-weight: 700;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.wizard-step-link small {
  color: var(--votespace-text);
  display: none;
  font-size: .75rem;
  font-weight: 400;
}

.wizard-progress .is-complete .wizard-step-link:hover strong,
.wizard-progress .is-complete .wizard-step-link:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: .2em;
}

.wizard-progress .is-complete .wizard-step-link > span {
  background: var(--votespace-teal-soft);
  border-color: var(--votespace-teal);
}

.wizard-progress .is-current {
  color: var(--votespace-navy);
  font-weight: 700;
}

.wizard-progress .is-current .wizard-step-status > span {
  background: var(--votespace-green);
  border-color: var(--votespace-green);
  color: var(--votespace-background);
}

.wizard-panel {
  box-shadow: 0 .65rem 1.5rem var(--votespace-shadow-subtle);
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.election-check-lead {
  font-size: 1.125rem;
  max-width: 48rem;
}

.wizard-fieldsets {
  display: grid;
  gap: 1.75rem;
}

.wizard-fieldsets fieldset,
.wizard-fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.wizard-fieldsets legend,
.wizard-fieldset legend {
  color: var(--votespace-navy);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.wizard-option-grid {
  display: grid;
  gap: .75rem;
}

.wizard-option {
  background: var(--votespace-background);
  border: 1px solid var(--votespace-border);
  border-radius: .5rem;
  column-gap: .65rem;
  cursor: pointer;
  display: grid;
  gap: .25rem;
  grid-template-columns: 1.125rem minmax(0, 1fr);
  padding: 1rem;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wizard-option input {
  accent-color: var(--votespace-green);
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  height: 1.125rem;
  margin: 0;
  width: 1.125rem;
}

.wizard-option strong {
  align-self: center;
  color: var(--votespace-navy);
  grid-column: 2;
  grid-row: 1;
}

.wizard-option span {
  font-size: .9375rem;
  grid-column: 1 / -1;
}

.wizard-option:has(input:checked) {
  background: var(--votespace-green-soft);
  border-color: var(--votespace-green);
  box-shadow: inset 0 0 0 1px var(--votespace-green);
}

.wizard-option:focus-within {
  border-color: var(--votespace-teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--votespace-teal) 25%, transparent);
}

.wizard-option--attention:has(input:checked) {
  background: var(--votespace-background-soft);
  border-color: var(--votespace-teal);
  box-shadow: inset 0 0 0 1px var(--votespace-teal);
}

.field-validation {
  color: #9d3420;
  display: block;
  font-weight: 700;
  margin: 0 0 .75rem;
}

.field-validation:empty {
  display: none;
}

.wizard-recommendation {
  background: var(--votespace-green-soft);
  border: 1px solid var(--votespace-green);
  border-radius: .75rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.wizard-recommendation-tier {
  color: var(--votespace-green);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: .25rem 0;
}

.wizard-recommendation h4,
.wizard-summary h4 {
  color: var(--votespace-navy);
  font-size: 1.25rem;
  margin: .5rem 0;
}

.wizard-recommendation ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.wizard-summary {
  margin-top: 1.5rem;
}

.wizard-summary ol {
  display: grid;
  gap: .5rem;
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
}

.wizard-summary li {
  align-items: start;
  background: var(--votespace-background-soft);
  border-radius: .375rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .75rem;
}

.wizard-summary strong,
.wizard-summary span {
  display: block;
}

.wizard-summary span {
  font-size: .875rem;
}

.text-link {
  background: transparent;
  border: 0;
  color: var(--votespace-teal);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.validation-summary:empty {
  display: none;
}

.validation-summary {
  background: var(--votespace-background-soft);
  border-left: .25rem solid var(--votespace-teal);
  color: var(--votespace-navy);
  font-weight: 700;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.waits-logo {
  display: block;
  height: auto;
  margin-bottom: 1rem;
  max-width: 11rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-link:hover .votespace-footer-logo,
.waits-company-link:hover .waits-logo {
  transform: translateY(-.125rem);
}

.votespace-footer-logo {
  display: block;
  height: auto;
  margin-bottom: 1rem;
  max-width: 11.1rem;
}

.provider-label {
  display: block;
  font-size: .8125rem;
  margin-bottom: .75rem !important;
}

.site-footer h2 {
  color: var(--votespace-background);
  font-size: 1rem;
  margin: 0 0 .75rem;
}

.site-footer p,
.footer-link-list {
  font-size: .9375rem;
  line-height: 1.6;
  margin: 0;
}

.footer-link-list li + li {
  margin-top: .5rem;
}

.footer-legal {
  border-top: 1px solid var(--votespace-teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-legal .footer-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

.footer-legal .footer-link-list li + li {
  margin-top: 0;
}

.footer-version {
  color: var(--votespace-blue-light);
  font-size: .875rem;
  white-space: nowrap;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--votespace-green-soft);
  text-decoration: underline;
  text-decoration-thickness: .125rem;
  text-underline-offset: .18em;
}

.site-footer a {
  color: var(--votespace-background);
  text-decoration: none;
}

.site-footer a[aria-current="page"] {
  color: var(--votespace-background);
  font-weight: 700;
}

.site-footer a[aria-current="page"]:hover {
  color: var(--votespace-green-soft);
}

.footer-social-link {
  align-items: center;
  display: inline-flex;
  min-height: 1.5rem;
}

.footer-social-link img {
  display: block;
  transition: transform .15s ease;
}

.footer-social-link:hover img {
  transform: translateY(-.125rem);
}

@media (max-width: 75rem) {
  .header-content {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    padding-block: .75rem;
    position: relative;
  }

  .desktop-header-cta {
    display: none;
  }

  .brand-link img {
    max-width: 11.1rem;
  }

  .mobile-menu-toggle {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .mobile-menu-toggle-label {
    align-items: center;
    background: var(--votespace-background);
    border: 1px solid var(--votespace-navy);
    border-radius: .25rem;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: .3rem;
    height: 2.75rem;
    justify-content: center;
    margin-left: auto;
    width: 2.75rem;
  }

  .mobile-menu-toggle-label > span:not(.visually-hidden) {
    background: var(--votespace-navy);
    display: block;
    height: .125rem;
    transition: transform .15s ease, opacity .15s ease;
    width: 1.25rem;
  }

  .mobile-menu-toggle:focus-visible + .mobile-menu-toggle-label {
    outline: 3px solid var(--votespace-green);
    outline-offset: 3px;
  }

  .mobile-menu-toggle:checked + .mobile-menu-toggle-label > span:nth-of-type(3) {
    opacity: 0;
  }

  .mobile-menu-toggle:checked + .mobile-menu-toggle-label > span:nth-of-type(2) {
    transform: translateY(.425rem) rotate(45deg);
  }

  .mobile-menu-toggle:checked + .mobile-menu-toggle-label > span:nth-of-type(4) {
    transform: translateY(-.425rem) rotate(-45deg);
  }

  .site-navigation {
    display: none;
  }

  .mobile-menu-toggle:checked ~ .site-navigation {
    background: var(--votespace-background);
    border-bottom: 1px solid var(--votespace-border);
    box-shadow: 0 .75rem 1.5rem var(--votespace-shadow-overlay);
    display: block;
    left: 0;
    padding: .75rem 1.25rem 1.25rem;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 4;
  }

  .site-nav-list {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-menu,
  .nav-menu details {
    width: 100%;
  }

  .nav-menu summary {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-level-two-context {
    flex-basis: 100%;
    margin: -.25rem 0 .25rem;
    padding-left: 1.25rem;
    position: static;
    text-align: left;
    transform: none;
    white-space: normal;
  }

  .nav-level-two-context-arrow {
    height: .875rem;
    width: 1.125rem;
  }

  .nav-link {
    padding-block: .75rem;
    width: 100%;
  }

  .subnav-list {
    box-shadow: none;
    margin: 0 0 .5rem;
    min-width: 0;
    position: static;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: .75rem;
  }

  .mobile-nav-cta .button {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .package-scroll-hint {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  }

  .content-visual-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  }

  .function-explorer-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .function-explorer-tab {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 8.5rem;
  }

  .function-requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-grid {
    align-items: stretch;
    height: clamp(32rem, 38vw, 35rem);
    min-height: 0;
  }

  .home-hero-grid .hero-content {
    align-self: center;
    padding-block: 0;
  }

  .home-hero-grid .hero-figure {
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    width: calc(100% + max(1.25rem, calc(50vw - 38.75rem)));
  }

  .home-hero-grid .hero-figure img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 100% top;
    transform: scale(1.28);
    transform-origin: 100% top;
    width: 100%;
  }

  .content-hero {
    overflow: hidden;
    padding-block: 0;
  }

  .content-hero .hero-grid {
    align-items: stretch;
    height: clamp(32rem, 38vw, 35rem);
    min-height: 0;
  }

  .content-hero .hero-content {
    align-self: center;
  }

  .content-hero .hero-figure {
    border-radius: 0;
    box-shadow: none;
    width: calc(100% + max(1.25rem, calc(50vw - 38.75rem)));
  }

  .content-hero .hero-figure img,
  .content-hero .hero-image-placeholder {
    border: 0;
    border-radius: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .content-hero .hero-image-placeholder {
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list,
  .security-card-grid,
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .security-section-intro {
    align-items: end;
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, .8fr);
  }

  .security-boundary-grid,
  .security-transparency-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-transparency-card {
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
  }

  .package-clarifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subdomain-reservation-header {
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  }

  .subdomain-reservation-detail-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  }

  .subdomain-reservation-flow {
    gap: 4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subdomain-reservation-flow li:not(:last-child)::after {
    background-image: url("/images/icons/sequence-chevron.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    display: block;
    height: 1.5rem;
    pointer-events: none;
    position: absolute;
    right: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 2;
  }

  .audience-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-overview {
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, .75fr);
  }

  .knowledge-overview,
  .knowledge-article-lead {
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, .8fr);
  }

  .knowledge-topic-grid,
  .knowledge-decision-grid,
  .knowledge-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .knowledge-comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-storyboard {
    grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
  }

  .audience-scenario-grid,
  .audience-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-storyboard {
    grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sequence-flow > li:not(:last-child)::after {
    background-image: url("/images/icons/sequence-chevron.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    display: block;
    height: 1.5rem;
    pointer-events: none;
    position: absolute;
    right: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-progress {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

  .wizard-progress li {
      min-width: 0;
    }

    .wizard-step-status,
    .wizard-step-link {
      align-items: flex-start;
      flex-direction: column;
    }

    .wizard-step-link small {
      display: block;
      overflow-wrap: anywhere;
    }

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

  .wizard-option-grid--compact {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

@media (min-width: 64rem) {
  .wizard-progress--interactive {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0;
    row-gap: .5rem;
  }

  .wizard-progress--interactive li {
    align-items: center;
    display: grid;
    grid-template-columns: max-content minmax(1rem, 1fr);
  }

  .wizard-progress--interactive li:not(:last-child)::after {
    align-self: center;
    color: var(--votespace-teal);
    content: "⟶";
    font-size: 1.5rem;
    font-weight: 700;
    grid-column: 2;
    line-height: 1;
    justify-self: center;
    text-align: center;
  }

  .wizard-progress--interactive .wizard-step-status,
  .wizard-progress--interactive .wizard-step-link {
    align-items: center;
    flex-direction: row;
    gap: .45rem;
    width: auto;
  }

  .wizard-progress--interactive .wizard-step-link small {
    display: none;
  }
}

@media (min-width: 64rem) {
  .numbered-steps {
    display: grid;
    gap: clamp(1rem, 2vw, 1.75rem);
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .numbered-steps li {
    border-left: 0;
    border-top: .25rem solid var(--votespace-green);
    margin-bottom: 0;
    min-width: 0;
    padding: 1rem 0 0;
  }

  .numbered-steps h3 {
    font-size: 1.05rem;
  }

  .numbered-steps p {
    font-size: .95rem;
  }
}

@media (min-width: 64rem) {
  .package-comparison-scroll {
    margin-inline: 0;
    overflow-x: visible;
    padding: 0;
  }

  .package-comparison-table {
    min-width: 0;
    table-layout: fixed;
  }

  .package-comparison-table th,
  .package-comparison-table td,
  .package-comparison-table tbody th,
  .package-feature-heading,
  .package-tier {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .package-feature-heading {
    width: 17%;
  }

  .package-tier span {
    max-width: none;
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 72rem) {
  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(13rem, 1.5fr) repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  .voter-story-slide {
    grid-template-columns: 1fr;
  }

  .voter-story-slide img {
    max-height: none;
    min-height: 0;
  }

  .voter-story-image {
    min-height: 0;
  }

  .voter-story-copy {
    padding: 1.5rem;
  }

  .voter-story-controls {
    gap: .5rem;
    grid-template-columns: 1fr 1fr;
    padding: .75rem;
  }

  .voter-story-button {
    padding-inline: .6rem;
  }

  .voter-story-indicators {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .voter-story-button[data-voter-story-previous] {
    grid-column: 1;
    grid-row: 2;
  }

  .voter-story-button[data-voter-story-next] {
    grid-column: 2;
    grid-row: 2;
  }

  .voter-story-pause {
    grid-row: 3;
  }

  .reference-format--case-study,
  .reference-format--testimonial,
  .reference-format-section-heading {
    grid-template-columns: 1fr;
  }

  .reference-format-section-heading {
    align-items: start;
  }

  .reference-profile-grid,
  .reference-key-figures,
  .reference-story-steps {
    grid-template-columns: 1fr;
  }

  .reference-format-media {
    min-height: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .interactive-card,
  .visual-card-grid > *,
  .content-grid > *,
  .content-note,
  .security-card-grid > *,
  .package-grid > *,
  .package-clarifications > article,
  .wizard-panel {
    transition: none;
  }
}
