/* ==========================================================================
   Hero Section
   ========================================================================== */
.header {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
}

/* Hero Text */
.header-text {
    flex: 1;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 1.75rem;
    color: #3b82f6;
    margin-top: 0.5rem;
}

.header-tagline {
    font-size: 1.25rem;
    color: #1e40af;
    margin-top: 1.5rem;
}

/* Book Cover */
.book-cover {
    width: 400px;
    flex-shrink: 0;
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.hero-preorder {
    margin: 2rem 0;
}

.playbook-cta {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.download-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Value Section */
.value-section {
    background: white;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.value-statement {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Continue with other sections... */ 

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.value-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-item i {
    color: #2563eb;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Featured Quote */
.featured-quote {
    max-width: 800px;
    margin: 4rem auto 0;
}

.quote-bubble {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    text-align: center;
}

.quote-icon {
    color: #93c5fd;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    background: white;
}

.reviews-section h2 {
    text-align: center;
    color: #1e40af;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Framework Section */
.frameworks-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.framework-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-pill {
    background: white;
    color: #1e40af;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-pill.active {
    background: #2563eb;
    color: white;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Newsletter & Insights Sections */
.newsletter-section,
.insights-section {
    padding: 6rem 2rem;
    background: white;
}

.insights-section {
    background: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-card,
.insight-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.newsletter-card:hover,
.insight-card:hover {
    transform: translateY(-4px);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    border-radius: 9999px;
    color: #1e40af;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .value-grid,
    .framework-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .playbook-cta {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Background Effects
   ========================================================================== */
.background-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.blob-1 {
    background: #93c5fd;
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.blob-2 {
    background: #60a5fa;
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -100px;
}

.blob-3 {
    background: #3b82f6;
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 10%;
}

/* ==========================================================================
   Download Form
   ========================================================================== */
.download-form {
    display: none;
    margin-top: 1rem;
}

.download-form.visible {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: start;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.submit-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   Preorder Buttons
   ========================================================================== */
.preorder-buttons {
    margin-top: 2rem;
}

.retailer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.retailer-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #1e40af;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.retailer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.retailer-button img {
    height: 24px;
    width: auto;
}

/* ==========================================================================
   Framework Cards
   ========================================================================== */
.framework-content {
    padding: 1.5rem;
}

.framework-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.framework-header h3 {
    color: #1e40af;
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: auto;
}

.category-tag {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.module-number {
    color: #64748b;
    font-size: 0.875rem;
}

.framework-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

.framework-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.framework-link:hover {
    transform: translateX(2px);
}

/* Framework Card Image */
.framework-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;  /* Ensure all cards are same height */
}

.framework-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;  /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.framework-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* This ensures the image covers the area without distortion */
    object-position: center;  /* Centers the image */
}

.framework-content {
    flex: 1;  /* Takes up remaining space */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Ensure consistent spacing */
.framework-header {
    margin-bottom: 1rem;
}

.framework-description {
    margin-bottom: 2rem;  /* Space for the chevron button */
}

.framework-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/* ==========================================================================
   Newsletter & Insights Cards
   ========================================================================== */
.newsletter-content,
.insight-content {
    padding: 1.5rem;
}

.newsletter-date,
.insight-date {
    color: #64748b;
    font-size: 0.875rem;
}

.newsletter-content h3,
.insight-content h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.newsletter-content p,
.insight-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

h2 {
    text-align: center;
    color: #1e40af;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 2rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.separator {
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1rem;
    }
}
</rewritten_file> 