/* Brand Colors */
:root {
    --magenta: #BA03F7;
    --charcoal: #1C1C1C;
    --white: #FFFFFF;
    --blue: #1E90FF;
    --lime: #BAF703;
    --hover-magenta: #9E02CF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: var(--magenta);
}

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

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--magenta);
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    background: var(--white);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--magenta);
}

.hero-subline {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.hero-emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.hero-bullets {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--hover-magenta);
}

.cta-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Section Styles */
.section-light {
    padding: 5rem 0;
    background: var(--white);
}

.section-dark {
    padding: 5rem 0;
    background: var(--charcoal);
}

.section-invitation {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.section-headline {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--charcoal);
}

.section-headline-light {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

/* What You Do Section — Active Bullets */
.active-bullets {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.active-bullets li {
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.active-bullets li:last-child {
    border-bottom: none;
}

.active-bullets li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--magenta);
    font-weight: 700;
}

/* How You Work Section */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    text-align: center;
}

.pillar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--lime);
}

.pillar p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Credibility Section */
.credibility-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.credibility-image {
    text-align: center;
}

.headshot {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.credentials {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials li {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--magenta);
    font-weight: 700;
}

.company-logos {
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.company-logo {
    height: 32px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.company-text-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.company-text-logo:hover {
    color: var(--charcoal);
}

/* Footer Icons */
.footer-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.footer-icon-link {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-icon-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-icon {
    height: 36px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.program {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    transition: all 0.3s;
}

.program:hover {
    background: rgba(186, 3, 247, 0.15);
    border-color: var(--magenta);
    transform: translateY(-4px);
}

.program p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--white);
}

/* Invitation Section */
.invitation-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

/* Ongoing Thinking Section */
.ongoing-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.link-arrow {
    color: var(--blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--magenta);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 3rem 0;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--blue);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--lime);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subline {
        font-size: 1.2rem;
    }

    .section-headline,
    .section-headline-light {
        font-size: 2rem;
    }

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

    .credentials li {
        text-align: left;
    }

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

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

    .pillars,
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle (basic - can be enhanced with JS) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
}