/* ==========================================================================
   OurVoteToday — Main Stylesheet
   Version: 0.3.0 — Animation fixes + polish
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --ovt-navy: #1B2F6E;
    --ovt-navy-dark: #0F1F4A;
    --ovt-teal: #00A8A8;
    --ovt-cream: #F5F2EC;
    --ovt-gold: #F5C518;
    --ovt-red: #E8341A;
    --ovt-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  6rem;
    --space-2xl: 10rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 200ms;
    --duration-med:  400ms;
    --duration-slow: 800ms;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ovt-navy);
    background-color: var(--ovt-cream);
}

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

a {
    color: var(--ovt-teal);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--ovt-navy);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 3vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(245, 242, 236, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 47, 110, 0.08);
    transition: background var(--duration-med) var(--ease-out);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 100%;
}

.site-logo:hover {
    text-decoration: none;
}

.site-wordmark {
    display: flex;
    gap: 0;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.site-wordmark:hover {
    text-decoration: none;
}

.wordmark__light {
    font-weight: 400;
    color: var(--ovt-navy);
}

.wordmark__bold {
    font-weight: 800;
    color: var(--ovt-navy);
}

.wordmark__accent {
    color: var(--ovt-teal);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: var(--space-md);
}

.nav-list a {
    color: var(--ovt-navy);
    opacity: 0.6;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.nav-list a:hover {
    opacity: 1;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ovt-navy);
    position: absolute;
    left: 0;
    transition: all var(--duration-fast) var(--ease-out);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.site-nav.is-open ~ .nav-toggle span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.site-nav.is-open ~ .nav-toggle span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-nav.is-open ~ .nav-toggle span:nth-child(3),
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.section--hero {
    min-height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ovt-navy-dark);
    padding-top: var(--header-height);
    padding-bottom: 4rem;
    margin-bottom: -2.5rem;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060d1f, var(--ovt-navy-dark), var(--ovt-navy), #0a1a42);
    background-size: 400% 400%;
    animation: hero-gradient 20s ease infinite;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 74, 0.4);
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 45px 2rem 20px;
}

.hero__eyebrow {
    font-variant: small-caps;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--ovt-white);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.hero__headline {
    color: var(--ovt-white);
    font-size: clamp(72px, 11vw, 120px);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero__line--heavy {
    font-weight: 900;
}

.hero__line--bridge {
    font-weight: 700;
    opacity: 0.75;
}

.hero__headline em {
    font-style: normal;
    font-weight: 900;
    color: var(--ovt-gold);
}

.hero__subline {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

/* CTA chevron */
.btn__chevron {
    transition: transform 200ms ease;
    flex-shrink: 0;
}

.btn--pill:hover .btn__chevron {
    transform: translateX(3px);
}

/* Text arrow in other buttons */
.btn__arrow {
    font-size: 1.2em;
    transition: transform 200ms ease;
}

.btn--pill:hover .btn__arrow {
    transform: translateX(4px);
}


@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    z-index: 1;
}

.btn--primary {
    background: var(--ovt-navy);
    color: var(--ovt-white);
}

.btn--primary:hover {
    background: var(--ovt-navy-dark);
    color: var(--ovt-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(27, 47, 110, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--ovt-teal);
    border: 1.5px solid var(--ovt-teal);
}

.btn--secondary:hover {
    background: var(--ovt-teal);
    color: var(--ovt-white);
}

/* Pill buttons */
.btn--pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    background: var(--ovt-teal);
    color: var(--ovt-white);
    transition: all 200ms ease;
}

.btn--pill:hover {
    background: #008f8f;
    color: var(--ovt-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(47, 214, 168, 0.25);
}

.btn--pill-outline {
    background: transparent;
    color: var(--ovt-teal);
    border: 2px solid var(--ovt-teal);
}

.btn--pill-outline:hover {
    background: var(--ovt-teal);
    color: var(--ovt-white);
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker {
    background: var(--ovt-red);
    color: var(--ovt-white);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ticker__track {
    display: flex;
    animation: ticker-scroll 25s linear infinite;
    /* duration overridden in JS to ~px/s — keeps speed constant across viewports.
       Plain CSS fallback runs at 25s if JS is blocked. */
    will-change: transform;
}

.ticker__content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    padding-right: 2rem;
}

.ticker__item {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
}

.ticker__separator {
    color: var(--ovt-white);
    font-size: 0.75rem;
    opacity: 0.6;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Triptych (snap-scroll panels)
   -------------------------------------------------------------------------- */
.section--triptych {
    /* no padding — panels handle their own */
}

.triptych__panel {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
}

.triptych__panel--scale {
    background: var(--ovt-cream);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.triptych__content--overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

.triptych__panel--problem {
    background: var(--ovt-navy-dark);
    color: var(--ovt-white);
    min-height: 100dvh;
    padding: 120px var(--space-md);
}

.triptych__panel--missing {
    background: var(--ovt-cream);
}

.triptych__inner {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.triptych__stat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 1;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    text-align: right;
}

.triptych__stat--gold { color: var(--ovt-gold); }
.triptych__stat--navy { color: var(--ovt-navy); }

.triptych__stat--secondary {
    font-size: clamp(2.5rem, 5vw, 5rem);
    opacity: 0.5;
}

.triptych__stat-supporting {
    margin-top: var(--space-md);
}

/* Arc unit — stat crowns the ring */
.triptych__arc-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: none;
    border-radius: 0;
    overflow: visible;
}

.triptych__arc-unit .triptych__stat {
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 2;
}

.arc-ring {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.triptych__divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--space-md) 0;
}

.triptych__stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.triptych__body {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    opacity: 0.85;
}

.triptych__source {
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Dot Field (US map with scattered dots)
   -------------------------------------------------------------------------- */
.dot-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    pointer-events: none;
}

.dot-field__map {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.07;
    filter: grayscale(1) brightness(0.3) blur(1.5px);
}

.dot-field__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(../img/us-map.svg);
    mask-image: url(../img/us-map.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.dot-field__canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* --------------------------------------------------------------------------
   Abstract Graphics
   -------------------------------------------------------------------------- */
.abstract-graphic {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


/* Partisan Matrix — R vs D dot columns */
.partisan-matrix {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.partisan-matrix__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.partisan-matrix__label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--ovt-navy);
    text-transform: uppercase;
    line-height: 1;
}

.partisan-matrix__divider {
    width: 1px;
    align-self: stretch;
    background: rgba(13, 31, 60, 0.12);
    margin: 0 0.5rem;
}

.partisan-matrix__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 0 8px;
}

.partisan-matrix__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.partisan-matrix__dot--filled {
    background: var(--ovt-navy);
}

.partisan-matrix__grid--r .partisan-matrix__dot--filled {
    background: #E8341A;
}

.partisan-matrix__dot--ghost {
    background: none;
    border: 1.5px solid rgba(13, 31, 60, 0.15);
}

.partisan-matrix__dot--gold {
    background: var(--ovt-gold);
}



/* Data Grid — leadership CTA */
.data-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 40px;
    gap: 10px;
    justify-content: center;
    align-content: center;
    min-height: 300px;
    max-width: 500px;
}

.data-grid__cell {
    border-radius: 8px;
    background: var(--ovt-teal);
}

.data-grid__cell--gold {
    background: var(--ovt-gold);
}

/* Solid teal button variant */
.btn--pill-solid {
    background: var(--ovt-teal);
    color: #0D1F3C;
    border: none;
    font-weight: 700;
}

.btn--pill-solid:hover {
    background: #2FD6A8;
    color: #0D1F3C;
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.section--timeline {
    background: var(--ovt-navy-dark);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(0, 168, 168, 0.05) 0%, transparent 60%);
    color: var(--ovt-white);
    padding: var(--space-2xl) 0;
}

.timeline__header {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.timeline__track {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline__line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--ovt-teal), var(--ovt-gold), transparent);
}

.timeline__node {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline__badge {
    position: absolute;
    left: -3rem;
    transform: translateX(-50%);
    background: var(--ovt-teal);
    color: var(--ovt-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.timeline__node--today .timeline__badge {
    background: var(--ovt-gold);
    color: var(--ovt-navy);
}

.timeline__headline {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.timeline__content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.85;
}

.timeline__pullquote {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--ovt-gold);
    font-style: italic;
    font-size: 1.25rem;
}

.timeline__pullquote cite {
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Solution
   -------------------------------------------------------------------------- */
.section--solution {
    background: var(--ovt-cream);
    padding: var(--space-2xl) 0;
}

.solution__eyebrow {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ovt-teal);
    margin-bottom: 0.75rem;
}

.solution__headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.solution__subline {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.7;
    font-family: var(--font-body);
}

/* Feature Rows — staggered left-right with border accent */
.feature-rows {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.feature-row {
    display: flex;
    padding: 56px 0;
}

.feature-row__text {
    max-width: 520px;
    border-left: 3px solid var(--ovt-teal);
    padding-left: var(--space-md);
}

.feature-row--reversed {
    justify-content: flex-end;
}

.feature-row--reversed .feature-row__text {
    border-left: none;
    border-right: 3px solid var(--ovt-teal);
    padding-left: 0;
    padding-right: var(--space-md);
    text-align: right;
}

.feature-row__headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    color: var(--ovt-navy);
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

.feature-row__body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ovt-navy);
    opacity: 0.65;
}

.feature-row__divider {
    border: none;
    height: 1px;
    background: rgba(13, 31, 60, 0.08);
    margin: 0;
}

/* Bridge label between features and steps */
.solution__bridge {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ovt-navy);
    opacity: 0.4;
    margin: 48px 0 var(--space-lg);
}

/* Steps Flow — unified 5-step horizontal */
.steps-flow {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

.steps-flow__hairline {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(13, 31, 60, 0.12);
    transform-origin: left center;
}

.steps-flow__track {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.steps-flow__number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    background: var(--ovt-cream);
    padding: 0 0.5rem;
}

.steps-flow__step--navy .steps-flow__number { color: #0D1F3C; }
.steps-flow__step--gold .steps-flow__number { color: var(--ovt-gold); }
.steps-flow__step--teal .steps-flow__number { color: var(--ovt-teal); }

.steps-flow__label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--ovt-navy);
    margin-bottom: 0.25rem;
}

.steps-flow__desc {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--ovt-navy);
    opacity: 0.5;
    max-width: 140px;
    line-height: 1.3;
}

.steps-flow__footnote {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--ovt-navy);
    opacity: 0.4;
    margin-top: var(--space-lg);
}

.solution__cta {
    text-align: center;
    padding-top: 64px;
    margin-bottom: var(--space-xl);
}

.solution__cta .btn--pill {
    padding: 14px 32px;
    font-size: 0.9375rem;
}

.pricing {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--ovt-navy), var(--ovt-navy-dark));
    color: var(--ovt-cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 168, 168, 0.15);
    box-shadow: 0 12px 40px rgba(15, 31, 74, 0.15);
}

.pricing__text {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* CTA Blocks */
.cta-block {
    padding: 0;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-block--candidates {
    background: var(--ovt-navy);
    color: var(--ovt-white);
}

.cta-block--leadership {
    background: linear-gradient(135deg, var(--ovt-navy-dark), #081230);
    color: var(--ovt-white);
}

.cta-block--leadership .cta-block__inner {
    grid-template-columns: 1.2fr 1fr;
    padding-left: 80px;
}

.cta-block__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
}

.cta-block--leadership .cta-block__illustration {
    order: 2;
}

.cta-block--leadership .cta-block__content {
    order: 1;
}

.cta-block__headline {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.cta-block__content p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.cta-block__content p em {
    font-style: normal;
    color: var(--ovt-gold);
    font-weight: 700;
}

/* Radiate rings — candidates CTA */
.cta-block__radiate {
    position: relative;
    min-height: 400px;
}

.radiate-ring,
.radiate-center {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.radiate-ring {
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.radiate-ring:nth-child(1) { width: 100px; height: 100px; border-color: rgba(255, 255, 255, 0.28); }
.radiate-ring:nth-child(2) { width: 240px; height: 240px; border-color: rgba(255, 255, 255, 0.22); }
.radiate-ring:nth-child(3) { width: 420px; height: 420px; border-color: rgba(255, 255, 255, 0.16); }
.radiate-ring:nth-child(4) { width: 640px; height: 640px; border-color: rgba(255, 255, 255, 0.10); }
.radiate-ring:nth-child(5) { width: 900px; height: 900px; border-color: rgba(255, 255, 255, 0.06); }
.radiate-ring:nth-child(6) { width: 1200px; height: 1200px; border-color: rgba(255, 255, 255, 0.03); }

.radiate-center {
    width: 12px;
    height: 12px;
    background: var(--ovt-teal);
    opacity: 0.8;
}

.radiate-ring.is-pulsing {
    animation: radiate-pulse 3s ease-in-out infinite alternate;
}

@keyframes radiate-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   Go / Action Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Section — Events proof ("Proof in the field")
   Between Solution and Go in the editorial arc.
   -------------------------------------------------------------------------- */
.section--events-proof {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: var(--ovt-cream);
    position: relative;
    overflow: hidden;
}

.section--events-proof .section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.events-proof__headline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ovt-navy);
    margin: var(--space-xs) auto var(--space-lg);
    max-width: 900px;
}

.events-proof__stat {
    color: var(--ovt-gold);
    display: inline-block;
    margin-right: 0.1em;
}

/* Featured event card — editorial, not product-style */
.featured-event {
    max-width: 720px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--ovt-white);
    border: 1px solid rgba(13, 31, 60, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px -8px rgba(13, 31, 60, 0.12);
    text-align: left;
    position: relative;
    transition:
        transform var(--duration-med) var(--ease-out),
        box-shadow var(--duration-med) var(--ease-out);
}

.featured-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px -8px rgba(13, 31, 60, 0.18);
}

.featured-event__date {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ovt-gold);
    margin: 0 0 var(--space-xs);
}

.featured-event__date time { color: inherit; }

.featured-event__time {
    display: inline-block;
    margin-left: 0.5rem;
    color: rgba(27, 47, 110, 0.72);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.featured-event__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: var(--ovt-navy);
    margin: 0 0 var(--space-xs);
    overflow-wrap: anywhere;
}

.featured-event__location {
    font-size: 1rem;
    color: rgba(27, 47, 110, 0.72);
    margin: 0 0 var(--space-xs);
}

.featured-event__excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ovt-navy);
    margin: 0 0 var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-event__link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ovt-navy);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color var(--duration-fast) var(--ease-out);
}

.featured-event__link:hover,
.featured-event__link:focus-visible {
    color: var(--ovt-gold);
    outline: none;
}

.featured-event__link:focus-visible {
    outline: 3px solid var(--ovt-gold);
    outline-offset: 4px;
    border-bottom-color: transparent;
}

.events-proof__cta {
    text-align: center;
}

.events-proof__cta-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 2px solid var(--ovt-navy);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--ovt-navy);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
}

.events-proof__cta-btn:hover,
.events-proof__cta-btn:focus-visible {
    background: var(--ovt-navy);
    color: var(--ovt-cream);
    outline: none;
}

.events-proof__cta-btn:focus-visible {
    outline: 3px solid var(--ovt-gold);
    outline-offset: 3px;
}

.section--go {
    padding: 60px 0 0;
}

.go__headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    font-size: clamp(2rem, 3.5vw, 3rem);
    padding: 0 var(--space-md);
}

.go__subline {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.25rem;
    opacity: 0.7;
    padding: 0 var(--space-md);
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-md);
    align-items: stretch;
}

.action-card {
    background: var(--ovt-white);
    border: 1px solid rgba(13, 31, 60, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    box-shadow: 0 2px 12px rgba(13, 31, 60, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-card__top {
    flex: 1;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 47, 110, 0.12);
    border-color: rgba(0, 168, 168, 0.2);
}

.action-card__headline {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.action-card__audience {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ovt-teal);
    margin-bottom: 0.75rem;
}

.action-card__body {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.65;
    margin-bottom: 0;
}

.action-card .btn {
    margin-top: 1.5rem;
    align-self: flex-start;
}

.action-card .btn + .btn {
    margin-top: 0.75rem;
}

/* Multi-button action cards: stretch stacked buttons to equal card width
   so a longer label can't render a wider pill or wrap mid-line. */
.action-card:has(.btn + .btn) .btn {
    align-self: stretch;
    justify-content: center;
    text-align: center;
}

/* Small secondary text link under a primary action-card CTA (e.g.
   "Already authorized? Log in →"). Quiet, underline-on-hover, sits
   close under the button without competing for attention. */
.action-card__link-secondary {
    align-self: center;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(13, 31, 60, 0.55);
    text-decoration: none;
    transition: color 200ms ease;
}

/* When a card has both a primary button and a secondary text link,
   center the button too so the two stack on a shared center axis
   instead of one being left-aligned and the other centered.
   Scoped via :has() so single-CTA cards stay left-aligned as designed. */
.action-card:has(.action-card__link-secondary) .btn {
    align-self: center;
}

.action-card__link-secondary:hover {
    color: var(--ovt-teal);
    text-decoration: underline;
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--ovt-navy-dark);
    color: var(--ovt-cream);
    padding: 80px 0;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.footer__wordmark {
    margin-bottom: var(--space-lg);
}

.footer__wordmark-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 1;
}

.footer__wordmark-text .wordmark__light {
    color: var(--ovt-white);
    font-weight: 300;
}

.footer__wordmark-text .wordmark__bold {
    color: var(--ovt-white);
}

.footer__description {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer__nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__nav a {
    color: var(--ovt-cream);
    opacity: 0.4;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    transition: opacity 200ms ease;
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__legal {
    opacity: 0.4;
    font-size: 0.8125rem;
}

.footer__legal a {
    color: var(--ovt-cream);
}

/* Mobile nav — hidden on desktop */
.mobile-nav__wordmark,
.mobile-nav__logo,
.mobile-nav__social {
    display: none;
}

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

    /* Safety net: ensure nothing stays invisible if GSAP somehow runs */
    .timeline__node, .feature-row, .action-card,
    .solution__headline, .solution__subline, .solution__eyebrow, .solution__cta,
    .go__headline, .go__subline,
    .cta-block__content, .cta-block__illustration,
    .pricing,
    .triptych__stat, .triptych__stat-label,
    .triptych__body, .triptych__source,
    .steps-flow, .steps-flow__step, .steps-flow__number,
    .steps-flow__label, .steps-flow__desc, .steps-flow__hairline {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-xl: 3rem;
    }

    /* === FIX #2: Global horizontal overflow === */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* === FIX #1: Mobile nav — fully opaque overlay === */
    .site-nav { display: none !important; }
    .nav-toggle { display: block !important; z-index: 10001; }

    .site-nav.is-open {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        background: var(--ovt-navy-dark);
        /* Extra bottom padding reserves vertical room for the absolutely
           positioned social-icons row, so the centered nav list (which
           grows as items are added) never bumps against it. */
        padding: var(--space-xl) var(--space-xl) calc(var(--space-2xl) + 4rem);
        z-index: 10000;
    }

    .site-nav.is-open .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .site-nav.is-open .nav-list a {
        color: var(--ovt-white);
        opacity: 1;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.75rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .site-nav.is-open .nav-list a::after { display: none; }
    .site-nav.is-open .nav-list a:hover { color: var(--ovt-teal); }
    .nav-toggle[aria-expanded="true"] span { background: var(--ovt-white); }

    /* Mobile nav logo — matches header logo position */
    .site-nav.is-open .mobile-nav__logo {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        height: var(--header-height);
        align-items: center;
        padding-left: var(--space-md);
        text-decoration: none;
    }

    .site-nav.is-open .mobile-nav__logo img {
        display: block;
        height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .site-logo img {
        height: 36px;
    }

    /* Mobile nav social — bottom center */
    .site-nav.is-open .mobile-nav__social {
        display: flex;
        gap: var(--space-lg);
        position: absolute;
        bottom: var(--space-lg);
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-nav__social a {
        color: rgba(255, 255, 255, 0.4);
        transition: color 200ms ease;
    }

    .mobile-nav__social a:hover {
        color: var(--ovt-teal);
    }

    /* ---- Hero ---- */
    .hero__headline {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .hero__watermark { display: none; }

    .hero__content {
        padding: 0 var(--space-md) 20px;
    }

    /* Ticker speed is JS-driven (constant px/s across viewports) — no
       mobile-specific duration override needed. */

    /* === FIX #3: 500K section — map above content, no dashed outline === */
    .triptych__panel {
        padding: var(--space-lg) var(--space-md);
    }

    .triptych__panel--scale {
        min-height: auto;
        padding: var(--space-md) var(--space-md);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dot-field {
        position: relative;
        inset: auto;
        top: auto;
        left: auto;
        transform: none;
        width: 95%;
        max-width: 400px;
        margin: 0 auto var(--space-sm);
        overflow: visible;
    }

    .dot-field__map {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        opacity: 0.1;
        filter: grayscale(1) brightness(0.4);
    }

    .dot-field__dots {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-mask-image: url(../img/us-map.svg);
        mask-image: url(../img/us-map.svg);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .triptych__content--overlay {
        max-width: 100%;
        padding: 0;
    }

    .triptych__stat {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .triptych__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
        max-width: 100%;
    }

    /* Panel B: arc + stats */
    .triptych__panel--problem {
        padding: var(--space-lg) var(--space-md);
        min-height: auto;
    }

    .triptych__panel--problem .triptych__inner {
        gap: var(--space-sm);
    }

    .triptych__arc-unit {
        margin-bottom: 0;
    }

    .arc-ring {
        max-width: 160px;
    }

    .triptych__stat--secondary {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .triptych__divider {
        margin: var(--space-sm) 0;
    }

    /* Panel C: partisan matrix */
    .triptych__panel--missing {
        padding: var(--space-lg) var(--space-md);
    }

    .triptych__panel--missing .triptych__inner {
        gap: var(--space-md);
    }

    .partisan-matrix {
        gap: var(--space-md);
        justify-content: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .partisan-matrix__label {
        font-size: 1.75rem;
    }

    .partisan-matrix__dot {
        width: 14px;
        height: 14px;
    }

    .partisan-matrix__grid {
        gap: 5px;
        grid-template-columns: repeat(5, 1fr);
    }

    .partisan-matrix__divider {
        margin: 0 0.5rem;
    }

    /* === FIX #4: Timeline — constrain width, prevent overflow === */
    .section--timeline {
        padding: var(--space-lg) 0;
    }

    .timeline__header {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        padding: 0 var(--space-md);
    }

    .timeline__track {
        padding-left: 7rem;
        padding-right: var(--space-lg);
        max-width: 100vw;
        box-sizing: border-box;
    }

    .timeline__line {
        left: 4.25rem;
    }

    .timeline__badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        left: -5rem;
        transform: translateX(0);
        min-width: 4.5rem;
        text-align: center;
    }

    .timeline__headline {
        font-size: 0.9375rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .timeline__content p {
        font-size: 0.8125rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .timeline__node {
        padding-bottom: var(--space-md);
        max-width: calc(100vw - 10rem);
    }

    .timeline__pullquote {
        font-size: 0.9375rem;
        padding-left: 0.75rem;
    }

    .timeline__pullquote cite {
        font-size: 0.75rem;
    }

    /* === FIX #5: Solution intro — contain text within viewport === */
    .section--solution {
        padding: var(--space-lg) 0;
    }

    .section--solution .section__inner {
        padding: 0 var(--space-md);
        max-width: 100%;
        box-sizing: border-box;
    }

    .solution__eyebrow {
        font-size: 0.75rem;
    }

    .solution__headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        padding: 0;
        word-wrap: break-word;
    }

    .solution__subline {
        margin-bottom: var(--space-md);
        font-size: 0.9375rem;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .solution__bridge {
        margin: var(--space-md) 0;
        padding: 0 var(--space-md);
    }

    .feature-rows {
        padding: 0;
    }

    .feature-row {
        padding: 28px 0;
    }

    .feature-row__text {
        max-width: 100%;
    }

    .feature-row--reversed {
        justify-content: flex-start;
    }

    .feature-row--reversed .feature-row__text {
        border-right: none;
        border-left: 3px solid var(--ovt-teal);
        padding-right: 0;
        padding-left: var(--space-md);
        text-align: left;
    }

    .feature-row__headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .feature-row__body {
        font-size: 0.9375rem;
    }

    /* === FIX #6: Steps flow — compact centered stacks === */
    .steps-flow {
        padding: 0 var(--space-md);
    }

    .steps-flow__track {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: relative;
        padding-left: 3.5rem;
    }

    .steps-flow__track::before {
        content: '';
        position: absolute;
        left: 1.25rem;
        top: 1.5rem;
        bottom: 1.5rem;
        width: 1px;
        background: rgba(13, 31, 60, 0.12);
    }

    .steps-flow__hairline { display: none; }

    .steps-flow__step {
        flex: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.125rem;
        padding: 0.75rem 0;
        position: relative;
    }

    .steps-flow__number {
        position: absolute;
        left: -3.5rem;
        top: 0.75rem;
        font-size: 2rem;
        line-height: 1;
        background: var(--ovt-cream);
        padding: 0 0.25rem;
        z-index: 1;
        min-width: 2.5rem;
        text-align: center;
    }

    .steps-flow__label {
        text-align: left;
        font-size: 1.25rem;
        margin-top: 0;
    }

    .steps-flow__desc {
        text-align: left;
        max-width: none;
        font-size: 1rem;
    }

    .steps-flow__line { display: none; }

    /* === FIX #7: Footnote text contained === */
    .steps-flow__footnote {
        padding: 0 var(--space-md);
        font-size: 0.6875rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .solution__cta {
        padding: var(--space-lg) var(--space-md) 0;
    }

    .solution__cta .btn--pill {
        padding: 12px 28px;
    }

    /* === FIX #8: Run Smarter rings fill entire section === */
    .cta-block {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .cta-block__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-md);
    }

    .cta-block--candidates {
        position: relative;
        overflow: hidden;
    }

    .cta-block__radiate {
        position: absolute;
        inset: 0;
        min-height: auto;
        pointer-events: none;
    }

    .radiate-ring,
    .radiate-center {
        top: 15% !important;
        left: 75% !important;
    }

    /* Show all rings on mobile — they fill the section */
    .radiate-ring:nth-child(5),
    .radiate-ring:nth-child(6) {
        display: block !important;
    }

    .cta-block--candidates .cta-block__content {
        position: relative;
        z-index: 2;
    }

    .cta-block--leadership .cta-block__inner {
        grid-template-columns: 1fr;
        padding: 0 var(--space-md);
    }

    .cta-block--leadership .cta-block__illustration,
    .cta-block--leadership .cta-block__content {
        order: unset;
    }

    .cta-block__headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .data-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-auto-rows: 32px;
        gap: 6px;
        min-height: auto;
        max-width: 100%;
        width: 100%;
    }

    /* ---- Go / Action cards ---- */
    .section--go {
        padding: 40px 0 0;
    }

    .go__headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    /* ---- Footer ---- */
    .footer__wordmark-text {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: var(--space-sm) var(--space-md);
    }

    .footer__description {
        padding: 0 var(--space-md);
    }

    /* Events proof section — mobile */
    .section--events-proof {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .events-proof__headline {
        margin-bottom: var(--space-md);
    }

    .featured-event {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }

    .events-proof__cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* --------------------------------------------------------------------------
   Legal Pages (Terms of Service, Privacy Policy)
   -------------------------------------------------------------------------- */
.legal-page {
    /* Top padding clears the fixed header (var(--header-height) = 72px)
       plus breathing room so the H1 doesn't sit on the header edge. */
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-md) var(--space-xl);
    background: var(--ovt-white);
}

.legal-page__container {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
}

.legal-page__container h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ovt-navy);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
}

.legal-page__container h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--ovt-navy);
    margin: var(--space-md) 0 var(--space-sm);
    line-height: 1.3;
}

.legal-page__container p {
    margin: 0 0 1rem;
}

.legal-page__container strong {
    font-weight: 600;
}
