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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #083359;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Typography System */
h1, h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #083359;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #083359;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

p {
    margin-bottom: 1rem;
    color: #083359;
    line-height: 1.7;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Button Components */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: #083359;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #062840;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(8, 51, 89, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #083359;
    border: 1px solid #083359;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #083359;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(8, 51, 89, 0.2);
}

.btn-red-gradient {
    background: linear-gradient(135deg, #FF5E5B 0%, #ff7a77 100%);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-red-gradient:hover {
    background: linear-gradient(135deg, #ff7a77 0%, #FF5E5B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 94, 91, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(8, 51, 89, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 51, 89, 0.3);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #083359;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-image {
    height: calc(100% - 1rem);
    width: auto;
    max-height: 50px;
    min-height: 24px;
}

.logo-text {
    display: inline;
}

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

.nav-link {
    font-weight: 500;
    color: #083359;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #FF5E5B;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #083359;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background-color: #FFFAF0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #083359;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 500;
    color: #083359;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-social {
    text-align: left;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #0077b5;
    transform: translateX(5px);
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #083359;
    box-shadow: 0 20px 40px rgba(8, 51, 89, 0.25), 0 0 0 10px rgba(255, 94, 91, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #FFFAF0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #083359;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF5E5B 0%, #06B6D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Coaching Section */
.coaching-section {
    background-color: #f8f9fa;
    position: relative;
}

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

.coaching-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(8, 51, 89, 0.08);
    border: 1px solid rgba(8, 51, 89, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF5E5B 0%, #06B6D4 100%);
}

.coaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 51, 89, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.coaching-card h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #083359;
    letter-spacing: -0.01em;
}

.coaching-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

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

.cta-note {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #FFFAF0;
    position: relative;
}

.substack-embed-container {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
    z-index: 2;
}

/* Podcast Section */
.podcast-section {
    background-color: #f8f9fa;
    position: relative;
}

.podcast-placeholder {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 51, 89, 0.1);
    box-shadow: 0 15px 35px rgba(8, 51, 89, 0.15);
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.podcast-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(8, 51, 89, 0.2);
}

.microphone-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.podcast-placeholder h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #083359;
    letter-spacing: -0.01em;
}

.podcast-placeholder p {
    margin-bottom: 1.5rem;
    color: #666;
    font-weight: 400;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #FFFAF0;
    padding: 3rem 0;
}

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

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #083359;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.final-cta-text {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
    margin-bottom: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 28px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Mobile Profile Photo */
.mobile-profile-photo {
    display: none;
    margin-bottom: 2rem;
    text-align: center;
}

.mobile-profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #083359;
    box-shadow: 0 15px 30px rgba(8, 51, 89, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        letter-spacing: -0.02em;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    /* Header */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-top: none;
        padding: 1rem 0;
        display: none;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 0.5rem 2rem;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .nav-menu .btn-nav {
        margin: 0.5rem 2rem 0;
        width: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        position: relative;
        padding: 0.75rem 2rem !important;
    }
    
    /* Mobile Profile Photo */
    .mobile-profile-photo {
        display: block;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-social {
        text-align: center;
    }
    
    /* Coaching */
    .coaching-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.015em;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .avatar-circle {
        width: 100px;
        height: 100px;
    }
    
    .avatar-text {
        font-size: 1.5rem;
    }
}