*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-section: #111118;
    --bg-card: #1a1a24;
    --accent: #f59e0b;
    --accent-hover: #fbbf24;
    --accent-glow: rgba(245, 158, 11, 0.15);
    --text-primary: #f1f1f4;
    --text-secondary: #9a9ab0;
    --text-muted: #6b6b80;
    --border: #2a2a3a;
    --gradient-start: #f59e0b;
    --gradient-end: #ef4444;
    --discord-purple: #5865F2;
}

html {
    scroll-behavior: smooth;
}

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

/* ── ACCESSIBILITY ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-mobile-buy {
    display: none;
    text-decoration: none;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.btn-discord {
    background: var(--discord-purple);
    color: #fff;
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.25);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.35);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── SECTION FOUNDATIONS ── */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.8;
}

/* ── PROBLEM ── */
.problem {
    background: var(--bg-section);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.problem-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ── BIG QUOTE ── */
.big-quote {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 50%, var(--bg-dark) 100%);
}

.big-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    color: var(--text-primary);
}

.big-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

/* ── VIDEO ── */
.video-section {
    background: var(--bg-section);
}

.video-wrapper {
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin: 3rem auto 0;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* ── 7 BELIEFS FRAMEWORK ── */
.framework {
    background: var(--bg-dark);
}

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

.framework-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
}

.framework-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.framework-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.framework-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.framework-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── ABOUT / AUTHOR ── */
.author {
    background: var(--bg-section);
}

.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    align-items: start;
}

.author-covers {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.author-cover-item {
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--accent-glow), rgba(239, 68, 68, 0.1));
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
}

.author-cover-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.author-cover-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cover-hint {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.4rem 0;
    opacity: 0.7;
}

.author-photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--accent-glow), rgba(239, 68, 68, 0.1));
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.author-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.author-info .author-aka {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.author-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author-highlight {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.author-highlight-item {
    text-align: center;
    min-width: 120px;
}

.author-highlight-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.author-highlight-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── IMAGE MODAL ── */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 60px 20px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

/* ── REVIEWS ── */
.reviews {
    background: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.review-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── FREE CHAPTERS ── */
.free-chapters {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.free-chapters-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chapter-list {
    list-style: none;
    margin-top: 2rem;
}

.chapter-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.chapter-list li .ch-num {
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.free-chapters-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.free-chapters-cta .gift-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.free-chapters-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.free-chapters-cta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-section);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.email-form input::placeholder {
    color: var(--text-muted);
}

.email-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.email-form button {
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.email-form button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ── FREE CHAPTERS FORM (multi-field) ── */
.chapters-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.chapters-form-row {
    display: flex;
    gap: 0.5rem;
}

.chapters-field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.chapters-form input[type="text"],
.chapters-form input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-section);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.chapters-form input[type="text"]::placeholder,
.chapters-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.chapters-form input[type="text"]:focus,
.chapters-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.chapters-form input.input-error {
    border-color: #ef4444;
}

.chapters-field-error {
    font-size: 0.78rem;
    color: #ef4444;
    min-height: 1em;
}

.chapters-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid transparent;
    margin-top: 0.25rem;
    transition: border-color 0.2s;
}

.chapters-consent-item.consent-error {
    border-color: #ef4444;
}

.chapters-consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.chapters-consent-item label {
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
    color: var(--text-secondary);
}

.chapters-form button[type="submit"] {
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 0.5rem;
}

.chapters-form button[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.chapters-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chapters-success {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px;
    color: var(--text-primary);
}

.chapters-success .success-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.chapters-success h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chapters-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ── COMMUNITY / DISCORD ── */
.community {
    background: var(--bg-dark);
}

.discord-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.discord-card .discord-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.discord-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.discord-card p {
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.discord-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.discord-feature {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #8b9afc;
    font-weight: 500;
}

/* ── BUY ── */
.buy {
    background: var(--bg-section);
    text-align: center;
    padding: 6rem 2rem;
}

.buy-inner {
    max-width: 700px;
    margin: 0 auto;
}

.buy .section-title {
    margin-bottom: 1rem;
}

.buy-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 1.5rem 0 0.5rem;
}

.buy-price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.buy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.buy-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.buy-feature .check {
    color: var(--accent);
    font-weight: 700;
}

/* ── QUOTES BAND ── */
.quotes-band {
    background: var(--bg-dark);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}

.quotes-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-item {
    padding: 2rem;
    border-left: 3px solid var(--accent);
}

.quote-item blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.quote-item cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
}

/* ── FOOTER ── */
footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-mobile-buy {
        display: inline-flex;
        align-items: center;
        margin-left: auto;
        margin-right: 0.75rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
        white-space: nowrap;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-covers {
        justify-content: center;
        margin: 0 auto;
    }

    .author-cover-item {
        width: 180px;
    }

    .author-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .author-highlight {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-close {
        font-size: 60px;
        top: 10px;
        right: 20px;
        padding: 1rem;
        line-height: 1;
    }

    .free-chapters-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .email-form {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}