/* political.bar -- maximalist pop-art political pub */

:root {
    --rally-red: #cc0000;
    --rally-blue: #0044cc;
    --neutral-white: #ffffff;
    --debate-dark: #1a1a1a;
    --forum-light: #f5f5f5;
    --spotlight-gold: #ffd700;
    --neutral-gray: #666666;
    --amber-warm: #ffeecc;

    --font-display: 'Roboto', 'Arial Black', sans-serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-label: 'Roboto', 'Arial', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--debate-dark);
    background: var(--neutral-white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============= TICKER ============= */
.ticker {
    background: var(--debate-dark);
    color: var(--spotlight-gold);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 4px solid var(--spotlight-gold);
    position: relative;
    z-index: 50;
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    will-change: transform;
}

.ticker-item {
    font-family: var(--font-label);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 28px;
    color: var(--spotlight-gold);
}

.ticker-item.star {
    color: var(--rally-red);
    font-size: 1rem;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============= RALLY STAGE (HERO) ============= */
.rally-stage {
    position: relative;
    min-height: calc(100vh - 50px);
    color: var(--neutral-white);
    overflow: hidden;
    isolation: isolate;
}

.rally-half {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.rally-left {
    left: 0;
    right: 0;
    background: var(--rally-red);
    clip-path: polygon(
        0 0, 55% 0,
        52% 8%, 56% 18%, 50% 28%, 54% 38%,
        48% 48%, 52% 58%, 46% 68%, 50% 78%,
        44% 88%, 45% 100%,
        0 100%
    );
}

.rally-right {
    left: 0;
    right: 0;
    background: var(--rally-blue);
    clip-path: polygon(
        55% 0, 100% 0,
        100% 100%, 45% 100%,
        44% 88%, 50% 78%, 46% 68%, 52% 58%,
        48% 48%, 54% 38%, 50% 28%, 56% 18%, 52% 8%
    );
}

.rally-zigzag {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    transform: translateX(-50%);
    background: var(--spotlight-gold);
    clip-path: polygon(
        50% 0, 100% 4%, 0 12%, 100% 20%, 0 28%, 100% 36%,
        0 44%, 100% 52%, 0 60%, 100% 68%, 0 76%, 100% 84%,
        0 92%, 50% 100%
    );
    z-index: 2;
}

.top-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    color: var(--neutral-white);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--neutral-white);
}

.brand-dot-red { background: var(--rally-red); }
.brand-dot-blue { background: var(--rally-blue); }

.brand-text {
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    border-bottom-color: var(--spotlight-gold);
    color: var(--spotlight-gold);
}

.rally-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.rally-label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 2px solid var(--spotlight-gold);
    color: var(--spotlight-gold);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

.rally-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 9vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    text-shadow: 4px 4px 0 var(--debate-dark);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}

.rally-word {
    display: inline-block;
    color: var(--neutral-white);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rally-word-left { transform: translateX(0); }
.rally-word-right { transform: translateX(0); }

.rally-stage.shake .rally-word-left { transform: translateX(-8px) rotate(-1deg); }
.rally-stage.shake .rally-word-right { transform: translateX(8px) rotate(1deg); }

.rally-dot {
    color: var(--spotlight-gold);
    margin: 0 -2px;
}

.rally-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    max-width: 640px;
    margin: 0 auto 36px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.rally-stamps {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.rally-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============= STAMPS ============= */
.stamp {
    display: inline-block;
    padding: 6px 14px;
    border: 3px solid currentColor;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-3deg);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.25s ease;
}

.stamp.small {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-width: 2px;
}

.stamp-red {
    color: var(--rally-red);
    border-color: var(--rally-red);
}

.stamp-blue {
    color: var(--rally-blue);
    border-color: var(--rally-blue);
    transform: rotate(3deg);
}

.stamp-amber {
    color: var(--amber-warm);
    border-color: var(--amber-warm);
    background: transparent;
}

.stamp:hover {
    transform: rotate(0deg) scale(1.05);
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 3px solid var(--neutral-white);
    background: transparent;
    color: var(--neutral-white);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 4px 4px 0 var(--debate-dark);
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--debate-dark);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--debate-dark);
}

.btn-red {
    background: var(--rally-red);
}

.btn-red:hover {
    background: var(--neutral-white);
    color: var(--rally-red);
}

.btn-blue {
    background: var(--rally-blue);
}

.btn-blue:hover {
    background: var(--neutral-white);
    color: var(--rally-blue);
}

/* ============= RALLY META ============= */
.rally-meta {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 24px 60px;
}

.meta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--neutral-white);
    border-top: 4px solid var(--spotlight-gold);
    padding-top: 12px;
    min-width: 140px;
}

.meta-label {
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--spotlight-gold);
    margin-bottom: 4px;
}

.meta-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* ============= SECTION LABEL ============= */
.section-label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neutral-gray);
    padding-left: 22px;
    position: relative;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--spotlight-gold);
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ============= MANIFESTO ============= */
.manifesto {
    position: relative;
    background: var(--neutral-white);
    padding: 100px 24px;
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 40px,
            rgba(204, 0, 0, 0.04) 40px,
            rgba(204, 0, 0, 0.04) 42px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 40px,
            rgba(0, 68, 204, 0.04) 40px,
            rgba(0, 68, 204, 0.04) 42px
        );
    pointer-events: none;
}

.manifesto-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.manifesto-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 56px;
    max-width: 860px;
}

.manifesto-headline .hl {
    background: var(--spotlight-gold);
    padding: 0 8px;
    color: var(--debate-dark);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.rule-card {
    position: relative;
    background: var(--forum-light);
    padding: 32px 28px;
    border-top: 6px solid var(--debate-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-card:nth-child(odd) {
    border-top-color: var(--rally-red);
}

.rule-card:nth-child(even) {
    border-top-color: var(--rally-blue);
}

.rule-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--debate-dark);
}

.rule-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--spotlight-gold);
    -webkit-text-stroke: 2px var(--debate-dark);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.rule-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.15;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    line-height: 1.65;
}

/* ============= DEBATE BOARDS ============= */
.debate {
    background: var(--debate-dark);
    color: var(--neutral-white);
    padding: 100px 24px;
    position: relative;
}

.debate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--spotlight-gold);
    clip-path: polygon(
        0 0, 100% 0, 100% 50%,
        96% 100%, 92% 50%, 88% 100%, 84% 50%, 80% 100%, 76% 50%,
        72% 100%, 68% 50%, 64% 100%, 60% 50%, 56% 100%, 52% 50%,
        48% 100%, 44% 50%, 40% 100%, 36% 50%, 32% 100%, 28% 50%,
        24% 100%, 20% 50%, 16% 100%, 12% 50%, 8% 100%, 4% 50%,
        0 100%
    );
}

.debate-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.debate-header .section-label {
    color: var(--spotlight-gold);
}

.debate-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.debate-blurb {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.debate-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.debate-row {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.debate-row.in-view {
    opacity: 1;
    transform: translateY(0);
}

.debate-topic {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--spotlight-gold);
    padding-bottom: 8px;
}

.topic-num {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--spotlight-gold);
}

.topic-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--neutral-white);
}

.debate-pair {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    background: var(--forum-light);
}

.debate-panel {
    padding: 32px;
    color: var(--debate-dark);
    border-top: 6px solid;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    position: relative;
}

.debate-panel.panel-red {
    border-top-color: var(--rally-red);
    background: var(--neutral-white);
}

.debate-panel.panel-blue {
    border-top-color: var(--rally-blue);
    background: var(--neutral-white);
}

.debate-panel:hover {
    background: var(--amber-warm);
    transform: translateY(-2px);
}

.debate-panel.cheered {
    background: var(--spotlight-gold);
}

.debate-divider {
    background: var(--neutral-gray);
    width: 1px;
}

.panel-position {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 16px;
    color: var(--neutral-white);
}

.panel-red .panel-position { background: var(--rally-red); }
.panel-blue .panel-position { background: var(--rally-blue); }

.panel-claim {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
    text-transform: none;
}

.panel-body {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* ============= TALLY ============= */
.debate-tally {
    max-width: 700px;
    margin: 80px auto 0;
    background: var(--neutral-white);
    color: var(--debate-dark);
    padding: 32px;
    border-top: 6px solid var(--spotlight-gold);
}

.debate-tally .section-label {
    color: var(--neutral-gray);
}

.tally-row {
    display: grid;
    grid-template-columns: 110px 1fr 60px;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tally-label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tally-bar {
    height: 18px;
    background: var(--forum-light);
    border: 2px solid var(--debate-dark);
    overflow: hidden;
    position: relative;
}

.tally-fill {
    height: 100%;
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tally-red { background: var(--rally-red); }
.tally-blue { background: var(--rally-blue); }

.tally-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    text-align: right;
}

.tally-fineprint {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--neutral-gray);
    font-style: italic;
}

/* ============= SCHEDULE ============= */
.schedule {
    background: var(--forum-light);
    padding: 100px 24px;
}

.schedule-header {
    max-width: 900px;
    margin: 0 auto 56px;
}

.schedule-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.schedule-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.schedule-card {
    background: var(--neutral-white);
    padding: 28px;
    border-top: 6px solid var(--debate-dark);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:nth-child(3n+1) { border-top-color: var(--rally-red); }
.schedule-card:nth-child(3n+2) { border-top-color: var(--rally-blue); }
.schedule-card:nth-child(3n+3) { border-top-color: var(--spotlight-gold); }

.schedule-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--debate-dark);
}

.schedule-time {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--debate-dark);
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.schedule-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
}

.schedule-body {
    font-size: 0.9rem;
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.schedule-tag {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
    color: var(--neutral-white);
}

.tag-red { background: var(--rally-red); }
.tag-blue { background: var(--rally-blue); }
.tag-gold { background: var(--spotlight-gold); color: var(--debate-dark); }

/* ============= STAMPS WALL ============= */
.stamps-wall {
    background: var(--neutral-white);
    padding: 80px 24px;
    text-align: center;
    border-top: 4px solid var(--debate-dark);
    border-bottom: 4px solid var(--debate-dark);
}

.stamps-floor {
    max-width: 1100px;
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
}

.wall-stamp {
    font-size: 1rem;
    padding: 8px 16px;
}

.wall-stamp:nth-child(odd) { transform: rotate(-4deg); }
.wall-stamp:nth-child(even) { transform: rotate(3deg); }
.wall-stamp:nth-child(3n) { transform: rotate(-2deg); }
.wall-stamp:nth-child(5n) { transform: rotate(5deg); }

/* ============= LAST CALL FOOTER ============= */
.last-call {
    position: relative;
    background: var(--debate-dark);
    color: var(--amber-warm);
    padding: 80px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.last-call-zigzag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: var(--spotlight-gold);
    clip-path: polygon(
        0 0, 100% 0, 100% 30%,
        96% 100%, 92% 30%, 88% 100%, 84% 30%, 80% 100%, 76% 30%,
        72% 100%, 68% 30%, 64% 100%, 60% 30%, 56% 100%, 52% 30%,
        48% 100%, 44% 30%, 40% 100%, 36% 30%, 32% 100%, 28% 30%,
        24% 100%, 20% 30%, 16% 100%, 12% 30%, 8% 100%, 4% 30%,
        0 100%
    );
}

.last-call-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
}

.last-call-label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--spotlight-gold);
    margin-bottom: 24px;
    border: 2px solid var(--spotlight-gold);
    padding: 6px 14px;
}

.last-call-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--amber-warm);
    margin-bottom: 24px;
    text-transform: none;
}

.last-call-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 238, 204, 0.85);
    margin-bottom: 32px;
}

.last-call-stamps {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.last-call-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 24px;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--spotlight-gold);
}

/* ============= ANIMATIONS ============= */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseStamp {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(-3deg) scale(1.05); }
}

.rally-stamps .stamp-red {
    animation: slideInLeft 0.4s ease both;
    animation-delay: 0.2s;
}

.rally-stamps .stamp-blue {
    animation: slideInRight 0.4s ease both;
    animation-delay: 0.3s;
}

.rally-cta .btn-red {
    animation: slideInLeft 0.4s ease both;
    animation-delay: 0.4s;
}

.rally-cta .btn-blue {
    animation: slideInRight 0.4s ease both;
    animation-delay: 0.5s;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 720px) {
    .top-nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rally-content {
        padding: 56px 20px 40px;
    }

    .rally-meta {
        gap: 24px;
        padding: 0 20px 40px;
    }

    .meta-block {
        min-width: 100px;
    }

    .debate-pair {
        grid-template-columns: 1fr;
    }

    .debate-divider {
        height: 1px;
        width: 100%;
    }

    .manifesto, .debate, .schedule {
        padding: 64px 20px;
    }

    .last-call {
        padding: 60px 20px 40px;
    }

    .last-call-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tally-row {
        grid-template-columns: 80px 1fr 50px;
        gap: 10px;
    }

    .tally-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 460px) {
    .rally-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .ticker-item {
        font-size: 0.75rem;
        padding: 0 18px;
    }
}
