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

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

/* NAVIGATION */
.navbar {
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #fff;
    border-bottom: 0.5px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 16px;
    font-weight: 600;
    color: #185FA5;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #666;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #185FA5;
}

.nav-btn {
    background: #185FA5;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-btn:hover {
    background: #0C447C;
}

/* URGENCY BANNER */
.urgency-banner {
    background: #B5D4F4;
    color: #042C53;
    padding: 10px 2.5rem;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #185FA5;
    flex-shrink: 0;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(160deg, #042C53 0%, #185FA5 60%, #0F6E56 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.18;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9FE1CB;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 540px;
}

.hero h1 span {
    color: #5DCAA5;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    display: inline-block;
    background: #5DCAA5;
    color: #04342C;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #3db890;
    transform: scale(1.02);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

/* PROGRESS SECTION */
.progress-section {
    padding: 2rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.progress-title {
    font-weight: 600;
    color: #1a1a1a;
}

.progress-amount {
    font-weight: 600;
    color: #185FA5;
}

.progress-track {
    background: #f0f0f0;
    border-radius: 99px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    background: linear-gradient(90deg, #185FA5, #5DCAA5);
    height: 100%;
    border-radius: 99px;
    width: 34%;
    transition: width 0.3s ease;
}

.progress-meta {
    font-size: 12px;
    color: #999;
}

/* DETERRENCE SECTION */
.deterrence-section {
    background: #042C53;
    color: #fff;
    padding: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
    width: calc(100% - 5rem);
}

.deterrence-section .section-label {
    color: #9FE1CB;
}

.deterrence-section h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.intro-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 580px;
}

.det-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-bottom: 1.5rem;
}

.det-card {
    background: rgba(255, 255, 255, 0.07);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
}

.det-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.det-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
}

.det-stat {
    font-size: 22px;
    font-weight: 600;
    color: #5DCAA5;
    display: block;
    margin-bottom: 4px;
}

.quote-block {
    border-left: 3px solid #5DCAA5;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 12px 12px 0;
    margin-top: 1.5rem;
}

.quote-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-style: italic;
}

.quote-block cite {
    font-size: 12px;
    color: #9FE1CB;
    display: block;
    margin-top: 6px;
    font-style: normal;
}

/* STANDARD SECTIONS */
.section {
    padding: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* TWO COLUMN LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1.25rem;
}

.mission-card {
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
}

.mission-card.accent-blue {
    border-top: 3px solid #185FA5;
}

.mission-card.accent-teal {
    border-top: 3px solid #1D9E75;
}

.m-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.m-icon.blue-icon {
    background: #E6F1FB;
    color: #185FA5;
}

.m-icon.teal-icon {
    background: #E1F5EE;
    color: #1D9E75;
}

.mission-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mission-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}

.small-text {
    margin-top: 8px !important;
    font-size: 12px !important;
    color: #999 !important;
}

/* APPROACH CARDS */
.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 1.25rem;
}

.a-card {
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
}

.a-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.a-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.a-num {
    font-size: 22px;
    font-weight: 600;
    color: #185FA5;
    display: block;
    margin-bottom: 6px;
}

/* STATISTICS */
.stats-section {
    background: #f9f9f9;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 1.5rem 0;
}

.stat-card {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.stat-num {
    font-size: 26px;
    font-weight: 600;
    color: #185FA5;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}

/* VESSELS SECTION */
.vessels-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 1.75rem;
}

.vessel-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 0.5px solid #e0e0e0;
}

.vessel-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.vessel-caption {
    padding: 12px 16px;
    font-size: 12px;
    color: #999;
    background: #f9f9f9;
    border-top: 0.5px solid #e0e0e0;
}

/* DONATION SECTION */
.donate-section {
    padding: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.donate-box {
    background: #042C53;
    border-radius: 12px;
    padding: 2.5rem;
    color: #fff;
}

.donate-box h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.donate-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.monthly-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.tog {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    background: transparent;
    transition: all 0.2s;
}

.tog:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.tog.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

.amt-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.amt-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.amt-btn.selected {
    background: #5DCAA5;
    color: #04342C;
    border-color: #5DCAA5;
    font-weight: 600;
}

.donate-cta {
    width: 100%;
    background: #5DCAA5;
    color: #04342C;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.donate-cta:hover {
    background: #3db890;
    transform: scale(1.01);
}

.donate-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #fff;
    border-top: 0.5px solid #e0e0e0;
    padding: 1.5rem 2.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    color: #999;
}

.footer-links a {
    color: #185FA5;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0C447C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .two-col,
    .approach-cards,
    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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