/* Self-hosted web fonts (assets/website/fonts/). Variable woff2 files downloaded from Google Fonts; unicode-range values copied from its CSS. */
/* Outfit latin-ext (variable, weights 300 800) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/fonts/outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Outfit latin (variable, weights 300 800) */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/fonts/outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter latin-ext (variable, weights 400 500) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter latin (variable, weights 400 500) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Generated pages: see website-src/ and scripts/build-website.mjs */

:root {
    --bg-main: #0B0B11;
    --bg-secondary: #13131A;
    --primary-neon: #00ffd1;
    --primary-neon-dim: rgba(0, 255, 209, 0.2);
    --accent-pink: #d100ff;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Background effects */
.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-neon-dim) 0%, transparent 60%);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
    animation: pulse 8s infinite alternate ease-in-out;
}

.bg-glow.right {
    top: 30%;
    left: 50%;
    background: radial-gradient(circle, rgba(209, 0, 255, 0.15) 0%, transparent 60%);
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.1) translate(20px, 30px); opacity: 0.6; }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

nav.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 48px;
    width: auto;
}

.logo-text {
    white-space: nowrap;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links a {
    white-space: nowrap;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin-left: 32px;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    gap: 60px;
    padding: 80px 0 40px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    color: var(--primary-neon);
    background: none;
    -webkit-text-fill-color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon-dim);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
    cursor: pointer;
}

.btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-primary {
    background-color: var(--primary-neon);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 209, 0.5);
    background-color: #33ffdb;
}

.btn-secondary {
    background-color: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.hero-phone {
    max-width: 320px;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-phone:hover {
    transform: rotateY(0) rotateX(0);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.screenshot-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.screenshot-item:hover {
    transform: scale(1.05) translateY(-10px);
}

.phone-frame {
    border: 10px solid #1a1a1a;
    border-radius: 40px;
    background: #000;
    padding: 3px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(108, 92, 231, 0.2);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.screenshot-caption {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    padding: 20px 10px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 3;
}

/* Footer & Support */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.support-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
}

.support-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.support-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    .steps { grid-template-columns: 1fr; }
    .article-header h1 { font-size: 1.9rem; }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-phone {
        transform: rotateY(0) rotateX(0) scale(1);
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .support-box {
        margin: 0 auto;
    }
    
    nav.site-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links a {
        margin-left: 0;
        margin: 5px 10px;
        font-size: 0.95rem;
    }
}


/* ---------- Nav ---------- */
a.brand { color: inherit; text-decoration: none; }
.nav-links { display: flex; align-items: center; }
.nav-links .lang-switch {
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: var(--text-main);
}
.nav-links .lang-switch:hover { border-color: var(--primary-neon); }

/* ---------- Hero extras ---------- */
.eyebrow {
    color: var(--primary-neon);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.hero p.hero-note { font-size: 0.9rem; margin: 18px 0 0; opacity: 0.8; }
.store-frame img { width: 100%; height: auto; display: block; border-radius: 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.6); aspect-ratio: 640 / 1385; }
.screenshot-item.store-frame { max-width: 280px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- How it works ---------- */
.how-it-works { padding: 40px 0 60px; }
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.steps .card { padding: 32px 28px; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary-neon); color: #000; font-weight: 800; font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 8px; }
.steps p { color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--bg-secondary);
    margin-bottom: 12px;
    padding: 0 22px;
}
.faq-item summary {
    cursor: pointer; list-style: none; padding: 18px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--primary-neon); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; }
.faq-item[open] summary::after { content: '–'; }
.faq-item h3 { font-size: 1.05rem; font-weight: 600; margin: 0; }
.faq-answer { color: var(--text-muted); padding: 0 0 20px; line-height: 1.7; }
.faq-answer strong { color: var(--text-main); }

/* ---------- CTA band ---------- */
.cta-band {
    text-align: center; padding: 70px 24px; margin: 20px 0 60px;
    border: 1px solid var(--glass-border); border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,255,209,0.08), rgba(209,0,255,0.08));
}
.cta-band h2 { font-size: 2.2rem; margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); margin-bottom: 28px; }

/* ---------- Footer extras ---------- */
.footer-tagline { color: var(--text-muted); margin: 14px 0 18px; }
.footer-buttons { justify-content: flex-start; }
.footer-buttons .btn { padding: 10px 18px; font-size: 0.9rem; }
.footer-bottom a { color: var(--text-muted); margin-left: 14px; }
.footer-bottom a:hover { color: var(--primary-neon); }
.screenshots figure { margin: 0; }

/* ---------- Blog index ---------- */
.page-header { text-align: center; padding: 60px 0 40px; }
.page-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.page-header p { color: var(--text-muted); font-size: 1.1rem; }
.post-list { list-style: none; max-width: 860px; margin: 0 auto 80px; display: grid; gap: 20px; }
.post-card a {
    display: block; text-decoration: none; color: inherit;
    background: var(--bg-secondary); border: 1px solid var(--glass-border); border-radius: 18px; padding: 28px 30px;
    transition: transform .25s ease, border-color .25s ease;
}
.post-card a:hover { transform: translateY(-4px); border-color: rgba(0,255,209,0.5); }
.post-card h2 { font-size: 1.4rem; margin-bottom: 10px; }
.post-card p { color: var(--text-muted); margin-bottom: 12px; }
.post-card .meta, .article-header .meta { color: var(--text-muted); font-size: 0.85rem; }
.post-list.compact li { margin-bottom: 10px; }
.post-list.compact a { color: var(--primary-neon); text-decoration: none; }
.post-list.compact a:hover { text-decoration: underline; }

/* ---------- Article ---------- */
.article-page { max-width: 820px; padding-bottom: 80px; }
.breadcrumbs { font-size: 0.85rem; color: var(--text-muted); padding: 24px 0 8px; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary-neon); }
.article-header { padding: 16px 0 28px; }
.article-header h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 14px; }
.article-body { font-size: 1.1rem; }
.article-body h2 { font-size: 1.7rem; margin: 2.4rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; margin: 1.8rem 0 .8rem; }
.article-body p { margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { padding-left: 1.6rem; margin-bottom: 1.6rem; }
.article-body li { margin-bottom: .8rem; color: #cbd5e1; }
.article-body a { color: var(--primary-neon); }
.article-body .highlight { color: var(--primary-neon); font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.6rem; font-size: 0.95rem; display: block; overflow-x: auto; }
.article-body th, .article-body td { border: 1px solid var(--glass-border); padding: 10px 12px; text-align: left; }
.article-body th { background: var(--bg-secondary); }
.article-cta {
    margin-top: 48px; padding: 32px; border-radius: 18px; text-align: center;
    border: 1px solid var(--glass-border); background: linear-gradient(135deg, rgba(0,255,209,0.08), rgba(209,0,255,0.08));
}
.article-cta h2 { font-size: 1.5rem; margin-bottom: 8px; }
.article-cta p { color: var(--text-muted); margin-bottom: 20px; }
.related { margin-top: 48px; }
.related h2 { font-size: 1.3rem; margin-bottom: 14px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 120px 0; max-width: 640px; margin: 0 auto; }
.notfound h1 { font-size: 2.6rem; margin-bottom: 16px; }
.notfound p { color: var(--text-muted); margin-bottom: 32px; }

@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; }
    .footer-buttons { justify-content: center; }
}
@media (max-width: 600px) {
    .hero { min-height: auto; gap: 40px; padding-top: 30px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-phone { max-width: 260px; }
    .section-header h2, .cta-band h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2.2rem; }
}

/* ---------- Vocabulary lists ---------- */
.vocab-index, .vocab-page { padding-bottom: 80px; }
.vocab-page { max-width: 1000px; }
.vocab-intro { max-width: 820px; margin: 0 auto 48px; color: var(--text-muted); font-size: 1.05rem; }
.vocab-intro p { margin-bottom: 1.2rem; }
.vocab-section { margin-bottom: 56px; }
.vocab-section h2 { font-size: 1.8rem; margin-bottom: 6px; }
.vocab-section-blurb { color: var(--text-muted); margin-bottom: 22px; }
.vocab-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.vocab-card { display: block; text-decoration: none; color: inherit; padding: 26px 24px; }
.vocab-card .card-icon { font-size: 1.9rem; margin-bottom: 12px; }
.vocab-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.vocab-card p { color: var(--primary-neon); font-size: 0.9rem; font-weight: 500; }
.vocab-header h1 { font-size: 2.2rem; }
.vocab-header .eyebrow { margin-bottom: 10px; }
.vocab-lead { color: #cbd5e1; font-size: 1.08rem; line-height: 1.7; margin-bottom: 10px; }
.vocab-how {
    border: 1px solid var(--glass-border); border-left: 3px solid var(--primary-neon);
    background: var(--bg-secondary); border-radius: 14px; padding: 20px 24px; margin: 0 0 28px;
}
.vocab-how h2 { font-size: 1.15rem; margin-bottom: 10px; }
.vocab-how ul { padding-left: 1.2rem; }
.vocab-how li { color: #cbd5e1; margin-bottom: 6px; font-size: 0.97rem; }
.vocab-how a { color: var(--primary-neon); }
.vocab-capped { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.vocab-az { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.vocab-az a, .vocab-az span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 32px; height: 32px; padding: 0 8px; border-radius: 999px;
    border: 1px solid var(--glass-border); font-size: 0.85rem; font-weight: 600;
    font-family: 'Outfit', sans-serif; text-decoration: none;
}
.vocab-az a { color: var(--text-main); background: var(--glass-bg); }
.vocab-az a:hover { border-color: var(--primary-neon); color: var(--primary-neon); }
.vocab-az span { color: rgba(255,255,255,0.25); border-style: dashed; }
.vocab-table-wrap { border: 1px solid var(--glass-border); border-radius: 16px; background: var(--bg-secondary); }
@media (max-width: 700px) { .vocab-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; } }
.vocab-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 560px; }
.vocab-table th, .vocab-table td { padding: 10px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--glass-border); }
.vocab-table thead th {
    position: sticky; top: 0; z-index: 1;
    background: #1a1a24; color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.vocab-table tbody tr:last-child th, .vocab-table tbody tr:last-child td { border-bottom: 0; }
.vocab-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.vocab-table tbody th { white-space: nowrap; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.02rem; width: 1%; }
.vocab-table tbody tr[id] { scroll-margin-top: 56px; }
.vocab-word { color: var(--primary-neon); text-decoration: none; }
.vocab-word:hover { text-decoration: underline; }
.vocab-table td { color: #d1d5db; line-height: 1.5; }
.vocab-def2 { display: block; color: var(--text-muted); font-size: 0.82rem; margin-top: 3px; }
.vocab-play { width: 1%; white-space: nowrap; text-align: right; }
.btn-xs { padding: 6px 12px; font-size: 0.8rem; border-radius: 8px; gap: 4px; }
.btn-xs:hover { transform: none; border-color: var(--primary-neon); color: var(--primary-neon); }
.vocab-cta { margin-top: 40px; }
.vocab-related .meta { color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 600px) {
    .vocab-header h1 { font-size: 1.7rem; }
    .vocab-table { font-size: 0.9rem; min-width: 0; }
    .vocab-table th, .vocab-table td { padding: 9px 10px; }
    .vocab-table thead th { position: static; }
    .vocab-play { display: none; }
    .vocab-table thead th:last-child { display: none; }
}

/* ---------- Consent banner ---------- */
.consent-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 2000;
    max-width: 640px; margin: 0 auto; padding: 18px 20px;
    background: rgba(19, 19, 26, 0.96); border: 1px solid var(--glass-border); border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6); backdrop-filter: blur(12px);
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.consent-banner p { margin: 0; flex: 1 1 280px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.consent-banner p a { color: var(--primary-neon); }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .btn { padding: 8px 14px; font-size: 0.85rem; border-radius: 10px; }

.vocab-download { margin: 14px 0 0; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.vocab-download .btn-sm { padding: 10px 16px; font-size: 0.9rem; }
.vocab-download .meta { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Reviews ---------- */
.reviews { padding: 60px 0 20px; }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review { margin: 0; padding: 28px 26px; }
.review p { color: var(--text-main); font-size: 1.02rem; line-height: 1.6; margin-bottom: 14px; }
.review footer { color: var(--text-muted); font-size: 0.9rem; }
