<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import fonts and base variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&amp;family=Montserrat:wght@400;500;600;700;800;900&amp;display=swap');

:root {
    --primary: #299b8e;
    --primary-dark: #237a70;
    --primary-light: #3fb5a8;
    --accent: #f7b801;
    --purple: #8b5cf6;
    --blue-dark: #00355c;
    --text-primary: #293340;
    --text-secondary: #6b7280;
    --background: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section backgrounds - all white */
section {
    background: var(--white);
    padding: 4rem 0;
}

/* Remove padding for first section */
section:first-of-type {
    padding-top: 2rem;
}

/* Auth Buttons */
.auth-buttons {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
}

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

.btn-primary-small {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Bento Box Base Styles */
.hero-bento,
.stats-bento,
.audience-bento,
.benefits-bento,
.process-bento,
.video-bento,
.pricing-bento,
.resources-bento,
.cta-bento {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 4rem 3rem;
    margin: 2rem 0;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}

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

.btn-ghost-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.play-icon {
    font-size: 0.875em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Section - Horizontal Split */
.pm-hero {
    padding-top: 2rem;
}

.hero-bento {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 0;
    margin: 2rem 0;
    overflow: hidden;
}

.hero-horizontal {
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 4rem 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    max-width: 800px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    height: 400px;
    background: var(--background);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-stats-inline {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-inline strong {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-inline span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Audience Section */
.pm-audience {
    padding: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.audience-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.pm-benefits {
    padding: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.pm-process {
    padding: 0;
}

.process-timeline {
    display: grid;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-image {
    width: 200px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Section */
.pm-video {
    padding: 0;
}

.video-bento {
    background: var(--text-primary);
    color: white;
}

.video-bento .section-header h2,
.video-bento .section-header p {
    color: white;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Pricing Section */
.pm-pricing {
    padding: 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.pricing-main-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 2px solid var(--primary);
}

.pricing-main-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-display {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.price-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-action {
    text-align: center;
}

.action-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.other-plans-sidebar h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.plan-card h5 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.plan-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.plan-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.plan-card a:hover {
    text-decoration: underline;
}

/* Resources Section */
.pm-resources {
    padding: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resource-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--primary);
    font-weight: 600;
}

/* Final CTA */
.pm-final-cta {
    padding: 0 0 2rem;
}

.cta-bento {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    opacity: 0.95;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .auth-buttons {
        right: 1.5rem;
    }
}

@media (max-width: 1024px) {
    /* Hero adjustments */
    .hero-content {
        padding: 3rem 3rem 2rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    /* Grid adjustments */
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Auth buttons mobile */
    .auth-buttons {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-ghost,
    .btn-primary-small {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
    }
    
    /* Hero mobile */
    .hero-content {
        padding: 3rem 2rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-inline {
        gap: 2rem;
    }
    
    .stat-inline strong {
        font-size: 1.5rem;
    }
    
    /* Reduce padding on all sections */
    .hero-bento,
    .stats-bento,
    .audience-bento,
    .benefits-bento,
    .process-bento,
    .video-bento,
    .pricing-bento,
    .resources-bento,
    .cta-bento {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
        border-radius: var(--radius-lg);
    }
    
    /* Reset hero bento padding */
    .hero-bento {
        padding: 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline-image {
        width: 100%;
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Auth buttons small mobile */
    .auth-buttons {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .btn-ghost,
    .btn-primary-small {
        padding: 0.4rem 0.875rem;
        font-size: 0.75rem;
    }
    
    /* Hero small mobile */
    .hero-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .hero-stats-inline {
        gap: 1.5rem;
    }
    
    .stat-inline span {
        font-size: 0.75rem;
    }
    
    /* Further reduce padding */
    .stats-bento,
    .audience-bento,
    .benefits-bento,
    .process-bento,
    .video-bento,
    .pricing-bento,
    .resources-bento,
    .cta-bento {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-md);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-card,
    .audience-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .benefit-icon,
    .card-icon,
    .resource-icon {
        font-size: 2rem;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .audience-card:hover,
    .benefit-card:hover,
    .resource-card:hover {
        transform: none;
    }
    
    /* Increase tap target sizes */
    .btn {
        min-height: 44px;
    }
}

/* Print Styles */
@media print {
    .hero-bento {
        background: white !important;
    }
    
    .hero-visual {
        display: none;
    }
    
    .cta-bento {
        background: white !important;
        color: var(--text-primary) !important;
    }
    
    .cta-content h2,
    .cta-content p {
        color: var(--text-primary) !important;
    }
}

/* Focus Styles */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}</pre></body></html>