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

:root {
    --primary-color: #0D1EA9;
    --secondary-color: #8808B5;
    --accent-color: #08C58A;
    --highlight-color: #7DFFD5;
    --teal-accent: #08C58A;
    --cyan-accent: #7DFFD5;
    --purple-accent: #8808B5;
    --blue-primary: #0D1EA9;
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #0D1EA9 0%, #8808B5 100%);
    --gradient-2: linear-gradient(135deg, #08C58A 0%, #7DFFD5 100%);
    --gradient-3: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====================================
   Typography
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 75ch;
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

.emphasis {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    font-style: italic;
}

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

.section {
    padding: 5rem 0;
}



/* ====================================
   Hero Section
   ==================================== */
.hero {
    background: #000000;
    color: white;
    padding: 4rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--teal-accent);
}

.hero-logo {
    display: inline-block;
    margin-bottom: 3rem;
    transition: opacity 0.2s ease;
}

.hero-logo:hover {
    opacity: 0.8;
}

.hero-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    opacity: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ====================================
   Introduction Section
   ==================================== */
.intro {
    background: var(--bg-white);
}

.intro h2 {
    margin-bottom: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, #08C58A15 0%, #7DFFD515 100%);
    border-left: 4px solid var(--teal-accent);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.highlight-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-subtext {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ====================================
   Decision Sequence Section
   ==================================== */
.decision-sequence {
    background: var(--bg-light);
}

.section-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.checkpoint-list {
    list-style: none;
    counter-reset: checkpoint-counter;
    margin: 2.5rem 0;
    max-width: 700px;
}

.checkpoint-list li {
    counter-increment: checkpoint-counter;
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem 4.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkpoint-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checkpoint-list li::before {
    content: counter(checkpoint-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--teal-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.checkpoint-summary {
    font-size: 1.0625rem;
    margin-top: 3rem;
    max-width: none;
}

/* ====================================
   Levers Section
   ==================================== */
.levers {
    background: var(--bg-white);
}

.levers-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.levers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.lever {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lever:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.lever-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(13, 30, 169, 0.3);
}

.lever-content {
    flex: 1;
}

.lever-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.checkpoint-tag {
    display: inline-block;
    background: #08C58A15;
    color: var(--teal-accent);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lever-section {
    margin-bottom: 1.5rem;
}

.lever-section h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.lever-section p {
    margin-bottom: 0;
}

.action-items {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.action-item {
    background: var(--bg-light);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--teal-accent);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.action-item:last-child {
    margin-bottom: 0;
}

.action-item strong {
    color: var(--teal-accent);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ====================================
   Quick Wins Section
   ==================================== */
.quick-wins {
    background: var(--bg-light);
    text-align: center;
}

.quick-wins h2 {
    margin-bottom: 3rem;
}

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

.win-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.win-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.win-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.win-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.win-card p {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0 auto;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: #000000;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
}

.cta-description {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    max-width: 700px;
    opacity: 0.95;
    color: white;
}

.cta-button {
    display: inline-block;
    background: var(--teal-accent);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 16px rgba(8, 197, 138, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(125, 255, 213, 0.6);
    background: var(--cyan-accent);
}

.cta-button:active {
    transform: translateY(0);
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo-img {
        height: 50px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-logo {
        margin-bottom: 2rem;
    }

    .hero-logo-img {
        height: 35px;
    }

    .lever {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .lever-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .checkpoint-list li {
        padding: 1rem 1rem 1rem 3.5rem;
        font-size: 1rem;
    }

    .checkpoint-list li::before {
        left: 1rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8125rem;
    }

    .wins-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 1.5rem 1.25rem;
    }

    .highlight-text {
        font-size: 1.125rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .lever {
        padding: 1.5rem 1rem;
    }

    .action-item {
        padding: 1rem 1.25rem;
    }
}

/* ====================================
   Smooth Scrolling
   ==================================== */
html {
    scroll-behavior: smooth;
}

/* ====================================
   Print Styles
   ==================================== */
@media print {
    .cta-section,
    .footer {
        display: none;
    }
    
    .lever {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}