/* === CivicAI Design System === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #0a0a0f;
    --cream: #f5f2eb;
    --red: #c23616;
    --red-light: #e8d5cf;
    --blue: #1a3a5c;
    --gold: #b8860b;
    --gray: #6b6b7b;
    --white: #ffffff;
    --green: #2d6a4f;
    --green-light: #d8f3dc;
    --amber: #b45309;
    --amber-light: #fef3c7;
    --border: rgba(10, 10, 15, 0.08);
    --shadow-sm: 0 1px 3px rgba(10,10,15,0.06);
    --shadow-md: 0 4px 16px rgba(10,10,15,0.08);
    --shadow-lg: 0 8px 32px rgba(10,10,15,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: var(--ink);
}

.logo .brand-ai { color: var(--red); }

.brand-i {
    display: inline-block;
    width: 0.55em;
    height: 1.15em;
    vertical-align: -0.12em;
    margin-left: 0.02em;
    fill: currentColor;
    stroke: currentColor;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--ink); }

.nav-tag {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-overline {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-accent { color: var(--red); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 640px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: #a52d13;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn-donate {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-donate:hover {
    background: #1e4d38;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* === SECTIONS === */
.tracker-section,
.contact-section,
.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-overline {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

/* === FILTERS === */
.filters {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'DM Sans', sans-serif;
}

.chip:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.chip.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.search-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--red);
}

.search-input::placeholder { color: #aaa; }

/* === BILLS LIST === */
.bills-container {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.bills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: rgba(245, 242, 235, 0.5);
}

.bills-count {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-controls label {
    font-size: 0.8rem;
    color: var(--gray);
}

.sort-select {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    background: var(--cream);
    cursor: pointer;
}

.bills-list {
    min-height: 200px;
}

/* Bill Card */
.bill-card {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}

.bill-card:last-child { border-bottom: none; }

.bill-card:hover {
    background: rgba(245, 242, 235, 0.5);
}

.bill-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.bill-card-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.bill-jurisdiction {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--blue);
    color: var(--white);
}

.bill-jurisdiction.federal { background: var(--blue); }
.bill-jurisdiction.colorado { background: #7b2d8e; }
.bill-jurisdiction.california { background: var(--gold); }
.bill-jurisdiction.new_york { background: #d35400; }

.bill-status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.bill-status.introduced { background: #e8e8e8; color: var(--gray); }
.bill-status.in_committee { background: var(--amber-light); color: var(--amber); }
.bill-status.passed_one_chamber { background: #dbeafe; color: #1d4ed8; }
.bill-status.enacted { background: var(--green-light); color: var(--green); }
.bill-status.dead { background: #fde8e8; color: #991b1b; }

.bill-relevance {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--red-light);
    color: var(--red);
}

.bill-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.bill-card .bill-summary {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bill-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bill-sponsor {
    font-size: 0.8rem;
    color: var(--gray);
}

.bill-sponsor strong { color: var(--ink); }

.bill-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.bill-topics {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.topic-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    background: rgba(10, 10, 15, 0.04);
    color: var(--gray);
    border: 1px solid var(--border);
}

/* Loading */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--gray);
}

.loader {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

.page-btn {
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}

.page-btn:hover { border-color: var(--ink); }
.page-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.page-btn:disabled { opacity: 0.4; cursor: default; }

/* === MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.modal-close:hover { color: var(--ink); }

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header .bill-card-meta {
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.modal-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.modal-body p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.modal-body .detail-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.detail-row .detail-label {
    font-weight: 600;
    min-width: 140px;
    color: var(--gray);
}

.detail-row .detail-value {
    color: var(--ink);
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

/* === CONTACT SECTION === */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 3rem;
}

.contact-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.address-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    transition: border-color 0.2s;
}

.address-input:focus {
    outline: none;
    border-color: var(--red);
}

.rep-results {
    min-height: 0;
}

.rep-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}

.rep-card:hover { border-color: var(--ink); }

.rep-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rep-info { flex: 1; }

.rep-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.rep-office {
    font-size: 0.85rem;
    color: var(--gray);
}

.rep-party {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.rep-party.D { background: #dbeafe; color: #1d4ed8; }
.rep-party.R { background: #fde8e8; color: #991b1b; }
.rep-party.I { background: #e8e8e8; color: var(--gray); }

.rep-actions {
    display: flex;
    gap: 0.5rem;
}

.rep-links-fallback {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.fallback-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.rep-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.quick-link:hover {
    border-color: var(--red);
    background: rgba(194, 54, 22, 0.03);
}

.quick-link-icon { font-size: 1.25rem; }

/* Talking Points */
.talking-points h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tp-intro {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.tp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
}

.tp-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(10, 10, 15, 0.06);
}

.tp-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--red);
}

.tp-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
}

/* === DONATE SECTION === */
.donate-section {
    background: var(--ink);
    color: var(--cream);
    padding: 6rem 2rem;
}

.donate-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.donate-header {
    margin-bottom: 3rem;
}

.donate-header .section-overline {
    color: var(--red);
}

.donate-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.donate-sub {
    font-size: 1.1rem;
    color: rgba(245, 242, 235, 0.6);
    max-width: 600px;
    line-height: 1.7;
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Where Your Money Goes */
.donate-usage h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.usage-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.usage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 54, 22, 0.15);
    border-radius: var(--radius-sm);
}

.usage-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--cream);
}

.usage-text p {
    font-size: 0.88rem;
    color: rgba(245, 242, 235, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* Donation Card */
.donate-action {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donate-card {
    background: rgba(245, 242, 235, 0.06);
    border: 1px solid rgba(245, 242, 235, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.donate-card-header {
    margin-bottom: 1.5rem;
}

.donate-card-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.donate-card-header p {
    font-size: 0.88rem;
    color: rgba(245, 242, 235, 0.5);
}

.donate-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.donate-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    border: 2px solid rgba(245, 242, 235, 0.12);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    background: transparent;
}

.donate-tier:hover {
    border-color: var(--red);
    background: rgba(194, 54, 22, 0.08);
    transform: translateY(-2px);
}

.donate-tier.featured {
    border-color: var(--red);
    background: rgba(194, 54, 22, 0.1);
}

.tier-badge {
    position: absolute;
    top: -10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--red);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.tier-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tier-desc {
    font-size: 0.75rem;
    color: rgba(245, 242, 235, 0.5);
    font-weight: 500;
}

.donate-secure {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: rgba(245, 242, 235, 0.4);
    text-align: center;
}

/* Trust Items */
.donate-trust {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(245, 242, 235, 0.6);
}

.trust-check {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.2);
    border-radius: 50%;
}

/* Nav Donate Button */
.nav-donate {
    color: var(--red) !important;
    font-weight: 600 !important;
}

.nav-donate:hover {
    color: #a52d13 !important;
}

/* === ABOUT === */
.about-section {
    border-top: 1px solid var(--border);
}

.about-content {
    max-width: 700px;
}

.about-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-cta {
    margin-top: 1.5rem;
    font-size: 1.1rem !important;
    color: var(--ink) !important;
}

/* === FOOTER === */
footer {
    background: var(--ink);
    color: rgba(245, 242, 235, 0.7);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand .logo { color: var(--cream); }
.footer-brand .logo .brand-ai { color: var(--red); }
.footer-brand p {
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(245, 242, 235, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .tracker-section,
    .contact-section,
    .about-section {
        padding: 4rem 1.25rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .filters {
        padding: 1rem;
    }

    .filter-chips {
        gap: 0.35rem;
    }

    .chip {
        font-size: 0.78rem;
        padding: 0.3rem 0.75rem;
    }

    .bill-card {
        padding: 1rem;
    }

    .bill-card h3 {
        font-size: 0.95rem;
    }

    .contact-input-group {
        flex-direction: column;
    }

    .modal {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
    }

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

    .donate-section {
        padding: 4rem 1.25rem;
    }

    .donate-header h2 {
        font-size: 1.75rem;
    }

    .donate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .donate-tiers {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .bill-card-top {
        flex-direction: column;
    }

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

    .rep-card {
        flex-direction: column;
        text-align: center;
    }

    .rep-actions {
        justify-content: center;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--red);
    color: var(--white);
}
