/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1C352D;
    background-color: #F9F6F3;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.nav {
    padding: 24px 32px;
    background: #F9F6F3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1C352D;
    letter-spacing: -0.3px;
}

.nav-contact a {
    color: #1C352D;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-contact a:hover {
    color: #A6B28B;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #F9F6F3;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: #A6B28B;
    border-radius: 50% 20% 50% 20%;
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: #A6B28B;
    border-radius: 20% 50% 20% 50%;
    opacity: 0.2;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-mascot {
    margin-bottom: 40px;
}

.owl-character {
    font-size: 80px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000000;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.4;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.user-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: -8px;
    font-size: 16px;
}

.avatar:first-child {
    margin-left: 0;
}

.join-count {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.signup-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.email-input:focus {
    border-color: #A6B28B;
}

.cta-button {
    padding: 12px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #333333;
}

/* Notebook Visual */
.notebook-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 400px;
}

.notebook {
    width: 400px;
    height: 300px;
    position: relative;
    display: flex;
    transform: perspective(800px) rotateX(10deg);
}

.notebook-cover {
    width: 200px;
    height: 100%;
    background: #8B4513;
    border-radius: 8px 0 0 8px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotateY(-25deg);
    transform-origin: right center;
}

.notebook-cover::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    bottom: 20px;
    border: 2px solid #D2691E;
    border-radius: 4px;
}

.notebook-pages {
    width: 200px;
    height: 100%;
    position: relative;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F9F6F3;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #e0e0e0;
}

.page-1 {
    right: 0;
    z-index: 2;
    background: #F9F6F3;
}


.page-1::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    right: 20px;
    bottom: 30px;
    background: repeating-linear-gradient(
        transparent,
        transparent 18px,
        #f0f0f0 18px,
        #f0f0f0 20px
    );
}

.page-2 {
    right: -2px;
    z-index: 1;
    background: #fafafa;
}

.notebook-binding {
    position: absolute;
    left: 199px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
    z-index: 3;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 30%;
    right: 30%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 40%;
    right: 15%;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.icon-5 {
    top: 50%;
    right: 35%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Examples Section */
.examples {
    padding: 80px 0;
    background: #F9F6F3;
    text-align: center;
}

.examples h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1C352D;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.example-card {
    background: #f7f6f3;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: all 0.2s ease;
}

.example-card:hover {
    transform: translateY(-2px);
    border-color: #A6B28B;
    background: #f0f9ff;
}

.example-emoji {
    font-size: 36px;
    margin-bottom: 16px;
}

.example-title {
    font-size: 18px;
    font-weight: 600;
    color: #1C352D;
    margin-bottom: 6px;
}

.example-duration {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.example-outcome {
    font-size: 14px;
    color: #A6B28B;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #F5C9B0;
}

.features-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 8px;
    background: #F9F6F3;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.feature-block:hover {
    transform: translateX(4px);
    background: #f7f6f3;
}

.feature-block .block-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.block-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1C352D;
    margin-bottom: 6px;
}

.block-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.5;
}

/* Problem Section */
.problem {
    padding: 60px 0;
    background: #F5C9B0;
    text-align: center;
}

.problem h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1C352D;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.problem-text {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Identity Section */
.identity {
    padding: 80px 0;
    background: #F9F6F3;
    text-align: center;
}

.identity h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1C352D;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.identity-text {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #1C352D;
    text-align: center;
}

.final-cta .cta-block {
    max-width: 500px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.waitlist-form-final {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input-final {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
}

.cta-button-final {
    padding: 12px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cta-button-final:hover {
    background: #333333;
}

/* Footer */
footer {
    padding: 32px 0;
    background: #f7f6f3;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

footer p {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .notebook {
        width: 320px;
        height: 240px;
    }
    
    .waitlist-form-final {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notebook {
        width: 280px;
        height: 200px;
    }
    
    .floating-icon {
        font-size: 24px;
    }
    
    .features-blocks {
        max-width: 100%;
    }
    
    .feature-block {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .problem h2, .identity h2, .final-cta h2 {
        font-size: 24px;
    }
    
    .problem-text, .identity-text {
        font-size: 16px;
    }
}

/* Beehiiv form styling */
iframe[data-test-id="beehiiv-embed"] {
    border-radius: 8px !important;
    margin: 16px auto !important;
    max-width: 500px !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.beehiiv-embed {
    border-radius: 8px !important;
    margin: 16px auto !important;
    max-width: 500px !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}