:root {
    --brand-teal: #005A5B;
    --brand-teal-dark: #003D3E;
    --brand-teal-bright: #007778;
    --brand-gold: #FFD129;
    --brand-gold-glow: rgba(255, 209, 41, 0.3);
    --bg-light: #F8FAFA;
    --text-main: #1A2E2E;
    --text-muted: #5A7070;
    --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container-large { width: 92%; max-width: 1300px; margin: 0 auto; }
.container-medium { width: 85%; max-width: 900px; margin: 0 auto; }
.text-center { text-align: center; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-teal-bright);
    margin-bottom: 12px;
}
.section-tag.center { margin: 0 auto 12px auto; display: table; }

h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--brand-teal-dark);
    margin-bottom: 35px;
}

header {
    background: rgba(0, 90, 91, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 2000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-group {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.nav-logo-img {
    height: 100px; 
    width: auto;  
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-logo-link:hover .nav-logo-img {
    transform: scale(1.04);
}

nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
nav ul li a:hover { color: var(--brand-gold); }

.btn-nav {
    background: #ffffff;
    color: var(--brand-teal-dark);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-nav:hover {
    background: var(--brand-gold);
    transform: translateY(-1px);
}

.btn-gold-glow {
    background: var(--brand-gold);
    color: var(--brand-teal-dark);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 20px var(--brand-gold-glow);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-gold-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 209, 41, 0.6);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.hero-flashy {
    background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-teal) 100%);
    position: relative;
    padding: 120px 0 180px 0;
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.hero-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text-block h1 {
    font-family: var(--font-display);
    font-size: 4.2rem;
    line-height: 0.95;
    margin-top: 20px;
    margin-bottom: 25px;
}

.hero-text-block .highlight-text {
    color: var(--brand-gold);
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #E2ECEC;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group { display: flex; gap: 20px; }

.angle-frame {
    background: var(--brand-gold);
    padding: 12px;
    transform: rotate(3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.angle-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-inner {
    background: #ccdcdc;
    height: 450px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-teal-dark);
    font-weight: bold;
}
.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center top;
    border-radius: 6px;
}

.slant-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.about-flashy { padding: 60px 0 120px 0; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; height: 400px; }
.floating-card { position: absolute; border-radius: 12px; }
.floating-card.accent-bg {
    background: var(--brand-gold);
    width: 70%;
    height: 80%;
    top: 10%;
    left: 5%;
    opacity: 0.2;
}
.floating-card.image-bg {
    background: var(--bg-light);
    border: 2px dashed #cbd5e0;
    width: 80%;
    height: 80%;
    bottom: 0;
    right: 5%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.floating-card.image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
}

.about-content .lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-teal);
    margin-bottom: 20px;
}
.about-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 15px; }

.priorities-flashy { background-color: var(--bg-light); padding: 120px 0; }
.section-header-center { text-align: center; max-width: 600px; margin: 0 auto 60px auto; }

.cards-interactive-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
}

@media (max-width: 992px) {
    .cards-interactive-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.interactive-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.interactive-card.featured {
    border-top: 5px solid var(--brand-gold);
}

.card-icon { font-size: 2.5rem; margin-bottom: 25px; }
.interactive-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 15px; color: var(--brand-teal-dark); }
.interactive-card p { color: var(--text-muted); line-height: 1.7; }
.card-arrow { position: absolute; bottom: 30px; right: 40px; font-size: 1.5rem; color: var(--brand-teal-bright); opacity: 0; transition: transform 0.3s, opacity 0.3s; }

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 90, 91, 0.08);
    border-color: var(--brand-teal-bright);
}
.interactive-card:hover .card-arrow { opacity: 1; transform: translateX(5px); }


.endorsements-flashy {
    padding: 100px 0;
    background: #ffffff;
}

.endorsements-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.endorsement-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.endorsement-list-item:hover {
    transform: translateY(-2px);
    border-color: var(--brand-teal-bright);
    box-shadow: 0 8px 20px rgba(0, 90, 91, 0.04);
}

.bubble-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--brand-gold);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
}

.bubble-avatar.organization {
    border-color: var(--brand-teal-bright);
    padding: 4px;
}

.bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.endorsement-info {
    display: flex;
    flex-direction: column;
}

.endorsement-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brand-teal-dark);
    font-weight: bold;
}

.endorsement-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .endorsements-list-grid {
        grid-template-columns: 1fr;
    }
    .endorsement-list-item {
        padding: 15px 20px;
    }
    .endorsement-name {
        font-size: 1.1rem;
    }
}

.action-hub-section { padding: 60px 0 120px 0; background-color: var(--bg-light); }
.hub-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }

.hub-panel { background: #ffffff; padding: 50px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.03); }
.join-panel { background: var(--brand-teal-dark); color: #ffffff; }
.join-panel .section-tag { color: var(--brand-gold); }
.join-panel h3, .calendar-panel h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 15px; }
.join-panel p { color: #E2ECEC; margin-bottom: 30px; }

.flashy-input-group { display: flex; flex-direction: column; gap: 15px; }
.flashy-input-group input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}
.flashy-input-group input::placeholder { color: #A3BFBF; }
.flashy-input-group input:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255,255,255,0.15);
}
.btn-gold-glow.wide { width: 100%; text-align: center; }

.embed-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.08);
}

.footer-flashy { background: #0A1414; color: #7F9494; padding: 60px 0; font-size: 0.9rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; }
.disclaimer-box { border: 1px solid #2C3E3E; padding: 12px 24px; font-size: 0.75rem; max-width: 450px; text-transform: uppercase; letter-spacing: 0.5px; }

@media(max-width: 992px) {
    .hero-grid, .grid-split, .hub-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-block h1 { font-size: 3rem; }
    .nav-container { flex-direction: column; gap: 20px; }
    nav ul { gap: 15px; }
    .footer-grid { flex-direction: column; gap: 20px; text-align: center; }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 31, 0.85); 
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 15px; 
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background: #ffffff;
    padding: 40px 25px 30px 25px; 
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-top: 6px solid var(--brand-teal);
    
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

.modal-close {
    position: sticky; 
    top: -20px;
    align-self: flex-end;
    background: #ffffff; 
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-close:hover {
    color: var(--brand-teal-bright);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.modal-window h2 {
    margin-bottom: 10px;
}
.modal-window p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.interactive-card {
    cursor: pointer;
}
.hero-logo-large {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 30px;       
    background-color: var(--brand-teal); 
    border-radius: 4px;
}

.footer-flashy {
    background: #0A1414; 
    color: #7F9494; 
    padding: 40px 0; 
    font-size: 0.9rem;
    width: 100%;
    overflow: hidden; 
}

.footer-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.disclaimer-box { 
    border: 1px solid #2C3E3E; 
    padding: 12px 20px; 
    font-size: 0.75rem; 
    max-width: 450px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap; 
}

.social-icon-link {
    color: #7F9494;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border: 1px solid #2C3E3E;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.social-icon-link:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

@media (max-width: 768px) {
    .footer-flex-container {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 30px;
    }
    .disclaimer-box {
        max-width: 100%;
        width: 100%;
    }
    .footer-social-links {
        justify-content: center !important;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-badge {
        display: block !important; 
        background: none !important; 
        border: none !important; 
        padding: 0 !important; 
        font-size: 0.85rem !important; 
        line-height: 1.4 !important; 
        letter-spacing: 1px !important; 
        color: var(--brand-gold) !important; 
        text-align: left !important; 
        margin-bottom: 15px !important; 
    }
}