:root {
    --primary-color: #1A365D;
    --secondary-color: #2D3748;
    --accent-color: #F6AD55;
    --accent-hover: #ED8936;
    --white: #FFFFFF;
    --bg-color: #F7FAFC;
    --text-muted: #718096;
    --border-color: #E2E8F0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Hero Section */
.hero-image {
    position: relative;
    width: 100%;
    min-height: 400px;
    aspect-ratio: 2600 / 1286;
    max-height: 80vh;
    background-image: url('./tiburon.jpeg');
    background-size: 100% 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 54, 93, 0.6) 0%,
        rgba(26, 54, 93, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Main Container */
.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--primary-color);
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.mission-text strong {
    color: var(--primary-color);
}

/* Approach Grid (Our Approach + Neutrality Statement) */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.approach-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-card ul li {
    font-size: 0.95rem;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.approach-card ul li::before {
    content: "›";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.approach-card ul li strong {
    color: var(--primary-color);
}

.do-card {
    border-left: 4px solid var(--accent-color);
}

.disclaimer-card {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.02));
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Governance Reform Roadmap - Phase Cards */
.phases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.phase-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.phase-header {
    background: var(--primary-color);
    padding: 1rem 1.25rem;
}

.phase-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.phase-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
}

.phase-content {
    padding: 1.25rem;
}

.phase-focus {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.phase-focus strong {
    color: var(--primary-color);
}

.phase-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.phase-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.term {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--secondary-color);
}

/* Standards of Review Table */
.standards-table-container {
    overflow-x: auto;
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.standards-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.standards-table th:first-child {
    border-radius: 8px 0 0 0;
}

.standards-table th:last-child {
    border-radius: 0 8px 0 0;
}

.standards-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.standards-table tbody tr:nth-child(even) {
    background-color: var(--bg-color);
}

.standards-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.standards-table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.standards-table td:first-child {
    background: rgba(26, 54, 93, 0.03);
    font-weight: 500;
}

.standards-table td:last-child {
    color: var(--text-muted);
    font-style: italic;
}

/* Documentation/Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resource-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.resource-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Join Section (Form) */
.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-row input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2A4365;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Support/Donate Section */
.donate-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A4365 100%);
    border-top: 4px solid var(--accent-color);
}

.donate-section .section-title {
    color: var(--white);
}

.donate-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.btn-donate {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.btn-donate:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: left;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-main strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.footer-main p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer-disclaimer {
    font-style: italic;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.75rem;
}

.footer-meta {
    text-align: right;
}

.footer-meta p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-tags {
    margin-top: 0.75rem;
}

.footer-tags span {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--primary-color);
    margin-left: 0.5rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
    .phases-grid,
    .resources-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-meta {
        text-align: center;
    }

    .footer-tags span {
        margin: 0.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-image {
        min-height: 300px;
        aspect-ratio: 2600 / 1286;
        max-height: 50vh;
    }

    section {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .standards-table {
        font-size: 0.8rem;
    }

    .standards-table th,
    .standards-table td {
        padding: 0.75rem;
    }
}

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .mission-text {
        font-size: 1.05rem;
    }

    .phase-header h3 {
        font-size: 1rem;
    }
}
