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

:root {
    --primary-green: #1a5c3a;
    --light-green: #2d7a52;
    --accent-peach: #ffd4a3;
    --soft-pink: #ffb3c1;
    --cream: #fffbf5;
    --dark-text: #2d3436;
    --light-gray: #f8f9fa;
    --pale-mint: #e8f5e9;
    --pale-peach: #fff3e0;
    --pale-pink: #fce4ec;
    --pale-blue: #e3f2fd;
    --pale-green-1: #e8f5e9;
    --pale-green-2: #c8e6c9;
    --pale-green-3: #a5d6a7;
    --pale-blue-1: #e3f2fd;
    --pale-blue-2: #d1e7fd;
    --pale-blue-3: #bbdefb;
    --pale-blue-4: #b3d9fb;
    --pale-blue-5: #a8d4fa;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--cream);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-logo {
    height: 90px;
    width: auto;
    background: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #cccccc;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding: 200px 2rem 100px;
    background: var(--cream);
    text-align: center;
}

.hero-logo {
    max-width: 1200px;
    width: 90%;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
    background: transparent;
}

#hero h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-green);
}

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

/* Sections */
.section {
    padding: 20px 0 20px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.alt-bg {
    background-color: white;
}

#mission {
    background-color: white;
    padding-top: 200px;
}

#production {
    background-color: #f5f5f5;
}

#mixing {
    background-color: white;
}

#economic {
    background-color: #f5f5f5;
}

#financing {
    background-color: white;
}

#ip-main {
    background-color: #f5f5f5;
}

#ip-reuse {
    background-color: white;
}

#ip-brands {
    background-color: #f5f5f5;
}

#revenue-streams {
    background-color: white;
}

#revenue-direct {
    background-color: #f5f5f5;
}

#revenue-roles {
    background-color: white;
}

#revenue-allocation {
    background-color: #f5f5f5;
}

#revenue-collective {
    background-color: white;
}

#revenue-operations {
    background-color: #f5f5f5;
}

#legal {
    background-color: white;
}

#contact {
    background-color: #000000;
    color: #ffffff;
}

#contact h2,
#contact h3,
#contact p,
#contact .center {
    color: #ffffff !important;
}

.section h2 {
    font-size: 2.75rem;
    color: #000000;
    margin-bottom: .5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.section h3 {
    font-size: 2.0rem;
    color: #000000;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.section h4 {
    font-size: 2.0rem;
    color: #000000;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.tight-heading {
    line-height: 1.2;
}

.tight-heading .subtitle {
    display: block;
    margin-top: 0.3rem;
}

.section p {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #000000;
}

.section p + p {
    margin-top: 1rem;
}

.lead {
    font-size: 2.0rem !important;
    font-weight: 300;
    color: #000000;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

#mission .lead + .lead {
    margin-top: 1.5rem;
}

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

/* Layout helpers */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Highlight boxes */
.highlight-box {
    text-align: left;
    font-weight: 400;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    font-size: 2rem;
    line-height: 1.6;
    color: #000000;
}

.formula-box {
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.formula-box h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.formula-box h4:first-child {
    margin-top: 0;
}

.formula-box ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.formula-box .note {
    margin-top: 1rem;
}

/* Mixing grid */
.mixing-grid {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mixing-example h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    Font size: 0.9rem;
}

table th {
    background: #000000;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: .9rem;
}

table td {
    padding: .5rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: .9rem;
}

table tbody tr:hover {
    background-color: var(--light-gray);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Mixing table specific */
.mixing-table th:first-child,
.mixing-table td:first-child {
    background-color: light gray;
    font-weight: 600;
}

.mixing-table th {
    text-align: center;
}

.mixing-table th:first-child {
    text-align: left;
}

.mixing-table td {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
}

.mixing-table td:first-child {
    text-align: left;
}

.table-caption {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Revenue table specific */
.revenue-table th {
    text-align: center;
}

.revenue-table th:first-child {
    text-align: left;
}

.revenue-table td {
    text-align: center;
}

.revenue-table td:first-child {
    text-align: left;
}

.revenue-table .category-row {
    background-color: var(--light-gray);
}

.revenue-table .category-row td {
    font-weight: 600;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.revenue-table .sub-row td {
    padding-left: 2rem;
    color: #666;
}

.revenue-table .sub-row td:first-child {
    font-style: italic;
}

/* Revenue streams */
.revenue-intro {
    text-align: left;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1rem auto;
    line-height: 1.8;
    color: #000000;
}

.platform-list {
    text-align: left;
    font-size: 1.05rem;
    font-weight: 300;
    margin: 2rem auto;
    line-height: 1.8;
    color: #000000;
}

.streaming-logos {
    text-align: center;
    margin: 3rem auto;
    max-width: 1000px;
}

.streaming-logos img {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

.revenue-streams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.stream {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stream h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.stream ul {
    list-style: none;
    padding: 0;
}

.stream ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.stream ul li:last-child {
    border-bottom: none;
}

/* Bullet lists */
.bullet-list {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.bullet-list li {
    margin-bottom: 0.50rem;
    font-size: 1.25rem;
}

/* Legal grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.legal-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.legal-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Legal list */
.legal-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.legal-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Operations list */
.operations-list {
    margin-top: 0rem;
}

.operations-list h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.operations-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.operations-list ul li {
    margin-bottom: 0.50rem;
    line-height: 1.7;
    font-size: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.operations-list ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Contact section */
.center {
    text-align: center;
}

.contact-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

.email-direct {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-top: 1rem;
}

.website {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .two-column,
    .three-column,
    .revenue-streams {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #hero h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .section h3 {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 800px;
    }

    .nav-logo {
        height: 70px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    #hero {
        padding: 120px 1.5rem 80px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .section h2 {
        font-size: 2.50rem;
    }

    .hero-logo {
        max-width: 600px;
    }
}
