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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Header ── */
.top-bar {
    background: #fff;
    border-bottom: 3px solid #1549c9;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}
.logo-mark {
    background: #1549c9;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 6px 10px;
    border-radius: 6px;
}
.logo-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111;
}
nav a {
    color: #444;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
}
nav a:hover { color: #1549c9; }

/* ── Hero ── */
.hero {
    background: #f0f4ff;
    border-bottom: 1px solid #d4dffa;
    padding: 90px 0 80px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    color: #0a1e6e;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 28px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-tags span {
    background: #1549c9;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Mission Strip ── */
.mission-strip {
    background: #1549c9;
    color: #fff;
    padding: 36px 0;
    text-align: center;
}
.mission-strip p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
}

/* ── Approach ── */
.approach {
    padding: 90px 0;
    background: #fff;
}
.approach-header {
    margin-bottom: 56px;
}
.approach-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1e6e;
    margin-bottom: 8px;
}
.approach-header p {
    color: #666;
    font-size: 1.05rem;
}
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-top: 1px solid #e5e9f5;
    padding: 40px 0;
    gap: 40px;
    align-items: start;
}
.step:last-child { border-bottom: 1px solid #e5e9f5; }
.step-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #d0daf8;
    line-height: 1;
    padding-top: 4px;
}
.step-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1e6e;
    margin-bottom: 12px;
}
.step-body p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 680px;
}

/* ── Photo Band ── */
.photo-band {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.photo-band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.35);
}
.photo-band-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
}
.photo-band-overlay h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 700px;
}
.photo-band-overlay p {
    font-size: 1.05rem;
    color: #c8d4f8;
    max-width: 640px;
    line-height: 1.7;
}

/* ── Issues ── */
.issues {
    padding: 80px 0;
    background: #f8f9ff;
}
.issues-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1e6e;
    margin-bottom: 40px;
    text-align: center;
}
.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.issue-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 24px;
    border-top: 4px solid #1549c9;
    box-shadow: 0 2px 12px rgba(21,73,201,0.07);
}
.issue-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a1e6e;
    margin-bottom: 10px;
}
.issue-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.65;
}

/* ── Footer ── */
footer {
    background: #0a1e6e;
    color: #8da0d4;
    padding: 44px 0 24px;
    font-size: 0.9rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.footer-brand p { font-size: 0.85rem; }
.footer-link {
    color: #a0b8f0;
    text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }
.footer-legal {
    border-top: 1px solid #1e3380;
    padding-top: 20px;
    text-align: center;
}
.footer-legal p { margin-bottom: 6px; }
.disclaimer { font-size: 0.8rem; color: #4a6099; font-style: italic; }

/* ── Privacy Page ── */
.privacy-page { padding: 60px 0; }
.privacy-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1e6e;
    margin-bottom: 32px;
}
.privacy-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1e6e;
    margin: 28px 0 10px;
}
.privacy-content p, .privacy-content li {
    font-size: 0.96rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}
.privacy-content ul { margin-left: 24px; margin-bottom: 16px; }
.privacy-content a { color: #1549c9; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .issues-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 32px; }
    .step { grid-template-columns: 60px 1fr; gap: 20px; }
    .step-num { font-size: 2rem; }
    .issues-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
    .photo-band { height: 320px; }
}

/* ── FEC Disclaimer Box ── */
.disclaimer-box {
    display: inline-block;
    border: 1px solid rgba(10,30,110,0.35);
    padding: 6px 14px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #4a6099;
    font-style: normal;
    font-family: sans-serif;
    line-height: 1.5;
    background: rgba(21,73,201,0.04);
}
