/* Base Resets & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Jost', sans-serif;
    background-color: #FAF9F7;
    color: #2A3D30;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .cormorant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}
a { text-decoration: none; color: inherit; }

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 0.5px solid #A2BCA9;
    z-index: 1000;
}
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.brand-logo img {
    width: 40px;
    height: auto;
    margin-bottom: 4px;
}
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: #2A3D30;
    line-height: 1.1;
}
.brand-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4E7259;
}
.join-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #4E7259;
    padding: 0.5rem 1.25rem;
    border: 0.5px solid #A2BCA9;
    border-radius: 999px;
    transition: all 0.3s ease;
}
.join-btn:hover {
    background-color: #A2BCA9;
    color: #FAF9F7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(162,188,169,0.5) 0%, rgba(211,162,139,0.5) 50%, rgba(186,165,178,0.5) 100%), #FAF9F7;
    padding: 6rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo-wrapper {
    width: 300px;
    margin: 0 auto 2rem;
}
.hero-logo-wrapper img {
    width: 80px;
    margin: 0 auto 10px;
    display: block;
}
.hero-logo-wrapper .brand-name {
    font-size: 2.5rem;
    letter-spacing: 0.25em;
}
.hero-logo-wrapper .brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}
.hero-divider {
    width: 60px;
    height: 0.5px;
    background-color: #A2BCA9;
    margin: 0 auto 2rem;
    border: none;
}
.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    color: #2A3D30;
    line-height: 1.6;
}

/* Intro Video */
.intro-section {
    padding: 4rem 2rem 0;
    text-align: center;
}
.video-player {
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(to bottom right, #2A3D30, #3D5246);
    border-radius: 4px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(42, 61, 48, 0.1);
}
.video-watermark {
    position: absolute;
    width: 50%;
    opacity: 0.1;
    filter: brightness(2) contrast(0);
}
.video-title-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: #FAF9F7;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    z-index: 2;
}
.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(250, 249, 247, 0.2);
    backdrop-filter: blur(6px);
    border: 0.5px solid rgba(250, 249, 247, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}
.play-button:hover {
    transform: scale(1.05);
    background: rgba(250, 249, 247, 0.3);
}
.play-button svg {
    width: 20px;
    height: 20px;
    fill: #FAF9F7;
    margin-left: 4px;
}
.intro-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4E7259;
    margin-bottom: 0.5rem;
    display: block;
}

/* Chapters Section */
.chapters-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-pill {
    display: inline-block;
    border: 0.5px solid #A2BCA9;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    color: #4E7259;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: 2.5rem;
    color: #2A3D30;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #4E7259;
    font-weight: 300;
}

/* Grid Layout */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

@media (max-width: 900px) {
    .chapters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .chapters-grid { grid-template-columns: 1fr; }
}

/* Chapter Cards */
.card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    cursor: pointer;
}
.card-thumbnail {
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 0.5px solid #A2BCA9;
}
.lock-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(42, 61, 48, 0.48);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.lock-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(250, 249, 247, 0.2);
    backdrop-filter: blur(4px);
    border: 0.5px solid rgba(250, 249, 247, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.lock-icon svg {
    width: 14px;
    height: 14px;
    fill: #FAF9F7;
}
.card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #FAF9F7;
    font-weight: 400;
    font-size: 0.9rem;
    z-index: 2;
    letter-spacing: 0.05em;
}
.card-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #2A3D30;
    color: #FAF9F7;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    z-index: 2;
}
.card-title {
    font-size: 1.4rem;
    color: #2A3D30;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.card-desc {
    font-size: 0.9rem;
    color: #4E7259;
    font-weight: 300;
    line-height: 1.5;
}

/* Thumbnail Gradients (Soft Botanical) */
.thumb-1 { background: linear-gradient(135deg, #E8EBE9, #D1DBD3); }
.thumb-2 { background: linear-gradient(135deg, #F5EBE9, #E6D0CB); }
.thumb-3 { background: linear-gradient(135deg, #EBE8EC, #D5CEDB); }
.thumb-4 { background: linear-gradient(135deg, #F2EEE9, #DFD6CC); }
.thumb-5 { background: linear-gradient(135deg, #E9EBEA, #C8D1CC); }
.thumb-6 { background: linear-gradient(135deg, #F5E9EC, #E3C9D1); }
.thumb-7 { background: linear-gradient(135deg, #E9F0EB, #CBE0D1); }
.thumb-8 { background: linear-gradient(135deg, #F7ECE6, #E8D1C3); }
.thumb-9 { background: linear-gradient(135deg, #E8EAEF, #C9CFDF); }
.thumb-10 { background: linear-gradient(135deg, #EAE6E8, #CFC5C9); }
.thumb-11 { background: linear-gradient(135deg, #EDEEEA, #D2D6C7); }
.thumb-12 { background: linear-gradient(135deg, #EFECE9, #D2CACA); }
.thumb-13 { background: linear-gradient(135deg, #E6E9E5, #C6D1C9); }
.thumb-14 { background: linear-gradient(135deg, #F0EAE8, #D8CCC8); }
.thumb-15 { background: linear-gradient(135deg, #EBEAEF, #C5C9D6); }
.thumb-16 { background: linear-gradient(135deg, #EBEAE6, #D6D1C5); }

/* Pricing Banner */
.pricing-banner {
    background-color: #2A3D30;
    color: #FAF9F7;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.pricing-banner .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.pricing-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.pricing-logo {
    filter: brightness(0) invert(1);
    width: 60px;
}
.pricing-info h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}
.pricing-info p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #A2BCA9;
}
.pricing-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.price-block {
    text-align: right;
}
.price-amount {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.price-note {
    font-size: 0.8rem;
    color: #A2BCA9;
    font-weight: 300;
}
.cta-btn {
    background-color: #FAF9F7;
    color: #2A3D30;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.cta-btn:hover { background-color: #E8EBE9; }

@media (max-width: 768px) {
    .pricing-left, .pricing-right { flex-direction: column; text-align: center; width: 100%; }
    .price-block { text-align: center; }
}

/* Login Modal Section */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.modal-overlay.active {
    display: flex;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(42, 61, 48, 0.7);
    backdrop-filter: blur(8px);
}
.modal-card {
    position: relative;
    background-color: #FAF9F7;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 1;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #A2BCA9;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.modal-close:hover {
    color: #2A3D30;
}
.modal-card .brand-logo img { width: 40px; }
.modal-title {
    font-size: 2rem;
    color: #2A3D30;
    margin: 1.5rem 0 0.5rem;
}
.modal-subtitle {
    font-size: 0.9rem;
    color: #4E7259;
    margin-bottom: 2rem;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.9; }
.btn-google { background: #FFFFFF; color: #333333; border: 0.5px solid #D1DBD3; }
.btn-facebook { background: #1877F2; color: #FFFFFF; border: none; }
.btn-apple { background: #000000; color: #FFFFFF; border: none; }

.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #A2BCA9;
    font-size: 0.85rem;
}
.modal-divider::before, .modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 0.5px solid #D1DBD3;
}
.modal-divider span { padding: 0 1rem; }

.name-input, .email-input, .password-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 0.5px solid #A2BCA9;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    background-color: #FAF9F7;
    color: #2A3D30;
}
.name-input:focus, .email-input:focus, .password-input:focus { outline: none; border-color: #2A3D30; }

.btn-email {
    width: 100%;
    background-color: #2A3D30;
    color: #FAF9F7;
    border: none;
    padding: 0.9rem;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}
.btn-email:hover { background-color: #3D5246; }

.modal-footer {
    font-size: 0.8rem;
    color: #4E7259;
}
.modal-footer a {
    color: #2A3D30;
    text-decoration: underline;
    text-underline-offset: 2px;
}