:root {
    --bg: #FAFAF7;
    --bg-alt: #F3F1EC;
    --surface: #FFFFFF;
    --text: #0A0A0A;
    --text-2: #4A4A4A;
    --text-3: #8A8A8A;
    --border: #ECEAE5;
    --border-strong: #D9D5CD;
    --ink: #0F0E0C;
    --ink-2: #1A1916;
    --accent: #FF5733;
    --accent-2: #FF8C42;
    --violet: #7C5CFF;
    --violet-2: #A78BFA;
    --lime: #D4F04B;
    --green: #10B981;
    --amber: #F59E0B;
    --r-xs: 8px;
    --r-sm: 12px;
    --r: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-xxl: 36px;
    --r-full: 999px;
    --sh-sm: 0 1px 2px rgba(15,14,12,0.04);
    --sh: 0 1px 2px rgba(15,14,12,0.05), 0 8px 24px rgba(15,14,12,0.06);
    --sh-lg: 0 1px 2px rgba(15,14,12,0.06), 0 24px 60px rgba(15,14,12,0.10);
    --sh-xl: 0 40px 100px rgba(15,14,12,0.18);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --dur: 0.4s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'ss01', 'cv11';
    overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--violet));
    width: 0%;
    z-index: 200;
    transition: width 0.1s linear;
}

/* ============ TOPBAR ============ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.72);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.topbar.scrolled {
    border-bottom-color: var(--border);
    background: rgba(250, 250, 247, 0.88);
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-center::-webkit-scrollbar { display: none; }

.genre-chip {
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--dur) var(--ease);
    flex-shrink: 0;
}
.genre-chip:hover { color: var(--ink); background: var(--bg-alt); }
.genre-chip.active { background: var(--ink); color: #fff; }

.search-box {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}
.search-box input {
    width: 100%;
    padding: 9px 14px 9px 38px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--r-full);
    font-size: 13px;
    font-family: inherit;
    color: var(--ink);
    transition: all var(--dur) var(--ease);
    outline: none;
}
.search-box input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(15,14,12,0.06); width: 260px; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-3); }
.search-kbd {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 4px;
    background: var(--bg-alt); color: var(--text-3); border: 1px solid var(--border); pointer-events: none;
}

.btn-cta {
    padding: 9px 18px; background: var(--ink); color: #fff; border-radius: var(--r-full);
    font-size: 12.5px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: all var(--dur) var(--ease); flex-shrink: 0; border: 1px solid var(--ink);
}
.btn-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
    position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 90px 0 110px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,87,51,0.35), transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(124,92,255,0.35), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(212,240,75,0.18), transparent 50%);
    animation: meshShift 18s ease-in-out infinite alternate;
}
@keyframes meshShift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-2%, 3%) scale(1.08); } }

.hero-inner {
    position: relative; max-width: 1400px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px); border-radius: var(--r-full); font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.85); margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(44px, 6.5vw, 88px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 700; margin-bottom: 28px; }
.hero h1 em {
    font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .stroke { -webkit-text-stroke: 1.5px rgba(255,255,255,0.6); color: transparent; }

.hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-primary {
    padding: 14px 26px; background: var(--lime); color: var(--ink); border-radius: var(--r-full);
    font-size: 14px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all var(--dur) var(--ease); border: 1px solid var(--lime);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,240,75,0.35); }
.btn-ghost {
    padding: 14px 22px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-full); font-size: 14px; font-weight: 600; text-decoration: none; transition: all var(--dur) var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Instrument Serif', serif; font-size: 38px; font-style: italic; line-height: 1; color: var(--lime); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; letter-spacing: 0.02em; }

.hero-visual { position: relative; height: 480px; perspective: 1200px; }
.float-book { position: absolute; border-radius: var(--r); box-shadow: var(--sh-xl); transition: transform 0.6s var(--ease); overflow: hidden; }
.float-book img, .float-book .cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.fb-1 { width: 180px; height: 260px; top: 20px; left: 50%; transform: translateX(-50%) rotate(-4deg); z-index: 3; background: linear-gradient(135deg, #2D1B69, #7C5CFF); }
.fb-2 { width: 160px; height: 230px; top: 120px; left: 10%; transform: rotate(8deg); z-index: 2; background: linear-gradient(135deg, #FF5733, #FF8C42); }
.fb-3 { width: 160px; height: 230px; top: 140px; right: 8%; transform: rotate(-10deg); z-index: 1; background: linear-gradient(135deg, #0F2027, #203A43); }
.hero-visual:hover .fb-1 { transform: translateX(-50%) rotate(-2deg) translateY(-8px); }
.hero-visual:hover .fb-2 { transform: rotate(12deg) translateY(-6px); }
.hero-visual:hover .fb-3 { transform: rotate(-14deg) translateY(-6px); }

.cover { display: flex; flex-direction: column; justify-content: space-between; padding: 22px; color: #fff; height: 100%; position: relative; }
.cover .tag { font-size: 9px; font-weight: 800; letter-spacing: 0.15em; opacity: 0.7; text-transform: uppercase; }
.cover .title { font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1.1; }
.cover .author { font-size: 10px; opacity: 0.8; }

.partnership-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--sh-lg);
    z-index: 10;
}
.partnership-badge .badge-mark { width: 22px; height: 22px; background: #FF6B00; color: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 11px; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 40px; flex-wrap: wrap; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; max-width: 680px; }
.section-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--accent); }
.section-sub { font-size: 15px; color: var(--text-2); max-width: 380px; }

/* ============ BENTO ============ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 16px; }
.bento-cell {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px;
    display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden;
    transition: all var(--dur) var(--ease); cursor: pointer;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--border-strong); }
.bento-cell h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.bento-cell h3 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.bento-cell p { font-size: 13px; color: var(--text-2); }
.bento-count { font-family: 'Instrument Serif', serif; font-size: 44px; font-style: italic; line-height: 1; color: var(--accent); }
.bento-emoji { font-size: 56px; line-height: 1; }

.cell-fantasy { grid-column: span 5; grid-row: span 2; background: linear-gradient(135deg, #1A1A2E, #2D1B69); color: #fff; }
.cell-fantasy h3 { color: #fff; } .cell-fantasy p { color: rgba(255,255,255,0.7); } .cell-fantasy .bento-count { color: var(--lime); }
.cell-fantasy .bg-deco { position: absolute; right: -30px; bottom: -30px; font-size: 200px; opacity: 0.15; pointer-events: none; }
.cell-thriller { grid-column: span 4; grid-row: span 1; background: #FDECEA; } .cell-thriller .bento-count { color: #C62828; }
.cell-roman { grid-column: span 3; grid-row: span 2; background: #FFF7E6; } .cell-roman .bento-count { color: var(--accent-2); }
.cell-scifi { grid-column: span 4; grid-row: span 1; background: #E8EAFF; } .cell-scifi .bento-count { color: var(--violet); }
.cell-nf { grid-column: span 4; grid-row: span 1; background: #E6F4EA; } .cell-nf .bento-count { color: var(--green); }
.cell-horror { grid-column: span 3; grid-row: span 1; background: #1A1916; color: #fff; } .cell-horror h3 { color: #fff; } .cell-horror p { color: rgba(255,255,255,0.6); } .cell-horror .bento-count { color: #FF5252; }
.cell-new { grid-column: span 5; grid-row: span 1; background: var(--ink); color: #fff; flex-direction: row; align-items: center; gap: 20px; }
.cell-new h3 { color: #fff; font-size: 18px; } .cell-new p { color: rgba(255,255,255,0.6); }
.cell-new .arrow { margin-left: auto; width: 40px; height: 40px; border-radius: 50%; background: var(--lime); color: var(--ink); display: flex; align-items: center; justify-content: center; transition: transform var(--dur) var(--ease); }
.cell-new:hover .arrow { transform: rotate(-45deg); }

/* ============ CATALOG SECTION ============ */
.catalog-section { padding-top: 50px; }

/* ============ BOOKS GRID ============ */
.books-section { padding-top: 40px; }

.filter-bar { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-right: 8px; }
.filter-chip {
    padding: 7px 14px; border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border);
    font-size: 12.5px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: all var(--dur) var(--ease); font-family: inherit;
}
.filter-chip:hover { border-color: var(--border-strong); color: var(--ink); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }

.book-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px;
    transition: all var(--dur) var(--ease); display: flex; gap: 18px; position: relative; transform-style: preserve-3d;
}
.book-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--border-strong); }

.book-cover { flex-shrink: 0; width: 92px; height: 136px; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--sh); position: relative; transition: transform var(--dur) var(--ease); }
.book-card:hover .book-cover { transform: translateY(-4px) rotate(-2deg); }
.book-cover .cover { padding: 14px; } .book-cover .tag { font-size: 8px; } .book-cover .title { font-size: 14px; margin-top: auto; } .book-cover .author { font-size: 9px; margin-top: 6px; }

.book-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }

.genre-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.genre-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

a.genre-tag { transition: all var(--dur) var(--ease); }
a.genre-tag:hover { transform: translateY(-1px); opacity: 0.8; }

.book-title { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.book-author { font-size: 12.5px; color: var(--text-2); }

.book-vibes { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.vibe { font-size: 10.5px; font-weight: 500; padding: 4px 9px; border-radius: var(--r-full); background: var(--bg-alt); color: var(--text-2); border: 1px solid var(--border); }

.book-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border); }

.verdict { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; }
.verdict-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.verdict.good { color: var(--green); } .verdict.good .verdict-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.verdict.mixed { color: var(--amber); } .verdict.mixed .verdict-dot { background: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }

.btn-read {
    display: inline-flex; align-items: center; gap: 5px; padding: 9px 16px; background: #FF6B00; color: #fff;
    border-radius: var(--r-full); font-size: 11px; font-weight: 700; text-decoration: none;
    transition: all var(--dur) var(--ease); white-space: nowrap; flex-shrink: 0;
}
.btn-read:hover { background: #E55F00; transform: translateX(2px); }

.books-more { display: flex; justify-content: flex-end; margin-top: 32px; }

.btn-more {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--surface);
    color: var(--ink); border: 1px solid var(--border); border-radius: var(--r-full);
    font-size: 14px; font-weight: 600; text-decoration: none; transition: all var(--dur) var(--ease);
}
.btn-more:hover { border-color: var(--ink); background: var(--bg-alt); transform: translateX(4px); }

/* ============ REVIEWS FEED ============ */
.reviews-feed { display: flex; flex-direction: column; gap: 16px; }

.review-strip {
    display: grid; grid-template-columns: 80px 1fr 180px; gap: 20px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; align-items: center; transition: all var(--dur) var(--ease);
}
.review-strip:hover { border-color: var(--border-strong); box-shadow: var(--sh); transform: translateY(-2px); }

.review-cover { width: 80px; height: 115px; border-radius: var(--r-xs); overflow: hidden; box-shadow: var(--sh); flex-shrink: 0; }
.review-cover img { width: 100%; height: 100%; object-fit: cover; }
.review-cover .cover { padding: 12px; } .review-cover .tag { font-size: 7px; } .review-cover .title { font-size: 12px; } .review-cover .author { font-size: 8px; }

.review-content { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.review-header { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.review-title { font-family: 'Instrument Serif', serif; font-size: 20px; font-weight: 400; line-height: 1.2; }
.review-author { font-size: 12px; color: var(--text-2); }

a.review-author { transition: all var(--dur) var(--ease); }
a.review-author:hover { color: var(--accent) !important; transform: translateY(-1px); }

.review-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.review-verdict { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }

/* ============ REVIEWS EMPTY ============ */
.reviews-empty { text-align: center; padding: 60px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); }
.reviews-empty .empty-icon { font-size: 48px; margin-bottom: 16px; }
.reviews-empty h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.reviews-empty p { font-size: 14px; color: var(--text-2); max-width: 400px; margin: 0 auto; }

/* ============ REVIEW PAGE ============ */
.back-link { color: var(--text-2); text-decoration: none; font-size: 13px; transition: color var(--dur) var(--ease); }
.back-link:hover { color: var(--accent); }

.review-hero { display: grid; grid-template-columns: 140px 1fr; gap: 32px; margin-top: 24px; align-items: start; }
.review-hero-cover { width: 140px; height: 205px; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--sh-lg); flex-shrink: 0; }
.review-hero-cover img { width: 100%; height: 100%; object-fit: cover; }

.review-title-head { font-family: 'Instrument Serif', serif; font-size: 40px; font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; margin: 8px 0 4px; }

.review-author-link { font-size: 16px; color: var(--text-2); text-decoration: none; transition: all var(--dur) var(--ease); display: inline-block; }
.review-author-link:hover { color: var(--accent); transform: translateY(-1px); }

.review-author-text { font-size: 16px; color: var(--text-2); margin-bottom: 16px; }

.review-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.review-verdict-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.review-body { margin-top: 48px; max-width: 780px; }
.review-body h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.review-full-text { font-size: 16px; line-height: 1.8; color: var(--text-2); white-space: pre-line; }

.review-who { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; max-width: 780px; }
.who-for { background: #ECFDF5; border: 1px solid #A7F3D0; border-radius: var(--r); padding: 20px; }
.who-not { background: #FEF2F2; border: 1px solid #FECACA; border-radius: var(--r); padding: 20px; }
.who-icon { font-size: 18px; margin-bottom: 8px; }
.who-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.who-text { font-size: 14px; color: var(--text-2); white-space: pre-line; }

.review-short-desc { margin-top: 32px; padding: 24px; background: var(--bg-alt); border-radius: var(--r); border: 1px solid var(--border); max-width: 780px; }
.review-short-desc p { font-size: 14px; color: var(--text-2); font-style: italic; }

/* ============ HOW ============ */
.how-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px 32px; transition: all var(--dur) var(--ease); position: relative; }
.how-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.how-num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; color: var(--accent); line-height: 1; margin-bottom: 18px; }
.how-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.how-card p { font-size: 14px; color: var(--text-2); }

/* ============ CTA ============ */
.partnership-cta {
    margin: 0 auto; max-width: 1400px; background: var(--ink); color: #fff; border-radius: var(--r-xxl); padding: 80px;
    position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.partnership-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(255,107,0,0.3), transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(124,92,255,0.25), transparent 50%);
}
.partnership-cta > * { position: relative; }
.partnership-cta h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
.partnership-cta h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #FF8C42; }
.partnership-cta p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 460px; margin-bottom: 28px; }

.features-showcase { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: var(--r); font-size: 13px; }
.feature-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.feature-text strong { display: block; font-weight: 600; }
.feature-text span { font-size: 11.5px; color: rgba(255,255,255,0.6); }

/* ============ FOOTER ============ */
.footer { padding: 60px 32px 40px; background: var(--bg); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-2); text-decoration: none; font-size: 14px; padding: 6px 0; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--text-2); margin-top: 14px; max-width: 320px; }
.footer-bottom { max-width: 1400px; margin: 30px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--text-3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--text-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ============ MODAL ============ */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(15, 14, 12, 0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box {
    background: var(--surface); border-radius: var(--r-xl); padding: 40px; text-align: center;
    max-width: 420px; width: 90%; box-shadow: var(--sh-xl); transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.modal-text { font-size: 14px; color: var(--text-2); margin-bottom: 24px; line-height: 1.6; }
.modal-close-btn { padding: 10px 24px !important; font-size: 14px !important; cursor: pointer; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { height: 380px; }
    .how-grid { grid-template-columns: 1fr; }
    .partnership-cta { grid-template-columns: 1fr; padding: 50px 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cell-fantasy, .cell-thriller, .cell-roman, .cell-scifi, .cell-nf, .cell-horror, .cell-new { grid-column: span 6; grid-row: span 1; }
    .cell-fantasy { grid-row: span 2; }
}
@media (max-width: 768px) {
    .review-strip { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; align-items: flex-start; }
    .review-cover { width: 80px; height: 115px; }
    .review-verdict { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
    .review-hero { grid-template-columns: 1fr; }
    .review-hero-cover { width: 100px; height: 146px; margin: 0 auto 0 0; }
    .review-title-head { font-size: 28px; }
    .review-who { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .topbar-inner { padding: 10px 16px; gap: 10px; }
    .nav-center { display: none; }
    .search-box { width: 140px; }
    .search-box input:focus { width: 140px; }
    .search-kbd { display: none; }
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero { padding: 60px 0 80px; }
    .hero-inner { padding: 0 16px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .bento { grid-auto-rows: 140px; }
    .cell-fantasy, .cell-thriller, .cell-roman, .cell-scifi, .cell-nf, .cell-horror, .cell-new { grid-column: span 12; }
    .books-grid { grid-template-columns: 1fr; }
    .partnership-cta { margin: 0 16px; padding: 36px 20px; border-radius: var(--r-xl); }
    .footer { padding: 40px 16px 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hero h1 { font-size: 44px; }
    .logo-img { height: 26px; }
}