/* ==========================================================================
   Spector — site.css
   Custom design, no framework dependency. Mobile-first, modern CSS.
   ========================================================================== */

:root {
    --c-primary:      #7C3AED;
    --c-primary-dark: #5B21B6;
    --c-accent:       #06B6D4;
    --c-bg:           #FFFFFF;
    --c-bg-alt:       #F8FAFC;
    --c-text:         #0F172A;
    --c-text-muted:   #64748B;
    --c-border:       #E2E8F0;
    --c-success:      #10B981;
    --c-error:        #EF4444;
    --c-error-bg:     #FEE2E2;

    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
    --shadow:    0 4px 6px rgba(15, 23, 42, .04), 0 10px 15px rgba(15, 23, 42, .06);
    --shadow-lg: 0 10px 25px rgba(15, 23, 42, .08), 0 20px 40px rgba(15, 23, 42, .08);

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
                 Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* ── Reset / base ────────────────────────────────────────────────────────── */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color .2s;
}
a:hover { color: var(--c-primary-dark); text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .6em; color: var(--c-text); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 1.15rem + 1.2vw, 1.9rem); letter-spacing: -.015em; margin-top: 1.6em; }
h3 { font-size: 1.2rem; margin-top: 1.4em; }
h4 { font-size: 1rem; }

p, ul, ol { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: .35em; }

code { font-family: var(--font-mono); background: var(--c-bg-alt); padding: 1px 5px;
       border-radius: 4px; font-size: .9em; }
pre  { font-family: var(--font-mono); background: var(--c-bg-alt); padding: 1em;
       border-radius: var(--radius-sm); overflow-x: auto; font-size: .9em; line-height: 1.5; }

.muted { color: var(--c-text-muted); }
.small { font-size: .9rem; }

/* ── Layout primitives ───────────────────────────────────────────────────── */

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

.section       { padding: clamp(2.5rem, 2rem + 4vw, 5rem) 0; }
.section--alt  { background: var(--c-bg-alt); }

.section__heading { text-align: center; margin-bottom: 1rem; }
.section__lead    { text-align: center; max-width: 720px; margin: 0 auto 2.5rem;
                    color: var(--c-text-muted); font-size: 1.05rem; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose ul li, .prose ol li { margin-bottom: .55em; }

.bullets { list-style: none; padding: 0; }
.bullets li { padding-left: 1.6em; position: relative; }
.bullets li::before {
    content: "✓"; color: var(--c-primary); font-weight: 700;
    position: absolute; left: 0; top: 0;
}

/* ── Header / Nav ────────────────────────────────────────────────────────── */

.site-header {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--c-border);
    position: sticky; top: 0; z-index: 50;
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: .9rem; padding-bottom: .9rem;
}

.brand { display: flex; align-items: center; gap: .6rem; color: var(--c-text); }
.brand:hover { text-decoration: none; color: var(--c-text); }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand__name { font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; }

.nav-toggle {
    display: none;
    background: transparent; border: 0; padding: .5rem; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--c-text);
    margin: 4px 0; border-radius: 2px; transition: transform .2s;
}

.site-nav {
    display: flex; align-items: center; gap: .25rem;
}
.site-nav a {
    color: var(--c-text); padding: .5rem .85rem;
    border-radius: var(--radius-sm); font-weight: 500; font-size: .95rem;
}
.site-nav a:hover { background: var(--c-bg-alt); text-decoration: none; }
.site-nav a.active { color: var(--c-primary); }

.nav-cta {
    background: var(--c-primary); color: #fff !important;
    padding: .55rem 1rem !important;
    border-radius: var(--radius) !important;
    margin-left: .5rem;
}
.nav-cta:hover { background: var(--c-primary-dark) !important; }

.nav-dropdown { position: relative; }
.nav-dropdown__btn {
    background: transparent; border: 0; cursor: pointer;
    color: var(--c-text); padding: .5rem .85rem; font-size: .95rem;
    font-weight: 500; font-family: inherit; border-radius: var(--radius-sm);
}
.nav-dropdown__btn:hover { background: var(--c-bg-alt); }
.nav-dropdown__btn::after { content: " ▾"; opacity: .5; }
.nav-dropdown__menu {
    display: none; position: absolute; top: calc(100% + .25rem); left: 0;
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: .35rem; min-width: 220px;
    box-shadow: var(--shadow-lg); z-index: 60;
}
.nav-dropdown__menu a {
    display: block; padding: .55rem .8rem; border-radius: var(--radius-sm);
    font-size: .92rem;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: block; }

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: #fff; border-bottom: 1px solid var(--c-border);
        padding: .8rem 1.25rem; gap: 0;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a, .nav-dropdown__btn {
        padding: .8rem 0; border-radius: 0;
        border-bottom: 1px solid var(--c-border);
        font-size: 1rem;
    }
    .nav-cta { margin: .5rem 0 0; text-align: center; }
    .nav-dropdown__menu { position: static; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; }
    .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
    padding: clamp(2.5rem, 2rem + 5vw, 5rem) 0 clamp(2rem, 1.5rem + 3vw, 3.5rem);
    background:
        radial-gradient(1200px 500px at 90% 10%, rgba(124, 58, 237, .15), transparent 60%),
        radial-gradient(900px 400px at 0% 90%, rgba(6, 182, 212, .12), transparent 60%),
        var(--c-bg);
}
.hero__title { text-align: center; max-width: 900px; margin: 0 auto .8rem; }
.hero__subtitle {
    text-align: center; max-width: 720px; margin: 0 auto 2rem;
    font-size: 1.1rem; color: var(--c-text-muted);
}
.hero--small { padding-bottom: 1rem; }
.hero--tool .hero__title { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem); }

/* ── Downloader form ─────────────────────────────────────────────────────── */

.downloader { max-width: 720px; margin: 0 auto; }

.downloader__tabs {
    display: flex; flex-wrap: wrap; gap: .35rem; padding: .35rem;
    background: var(--c-bg-alt); border-radius: var(--radius-lg);
    margin-bottom: 1rem; justify-content: center;
}
.downloader__tab {
    flex: 1 1 80px;
    background: transparent; border: 0; cursor: pointer;
    padding: .65rem .9rem; font-family: inherit; font-size: .95rem;
    font-weight: 600; color: var(--c-text-muted);
    border-radius: var(--radius);
    transition: all .15s;
}
.downloader__tab:hover { color: var(--c-text); background: rgba(255, 255, 255, .6); }
.downloader__tab.is-active {
    background: #fff; color: var(--c-primary);
    box-shadow: var(--shadow-sm);
}

.downloader__form { background: #fff; border-radius: var(--radius-xl);
                    box-shadow: var(--shadow-lg); padding: 1rem; }
.downloader__row {
    display: flex; gap: .5rem; align-items: stretch;
}
.downloader__input {
    flex: 1; min-width: 0;
    padding: .9rem 1.1rem;
    border: 1px solid var(--c-border); border-radius: var(--radius);
    font-family: inherit; font-size: 1rem; color: var(--c-text);
    background: var(--c-bg-alt);
    transition: border-color .15s, background .15s;
}
.downloader__input:focus {
    outline: none; border-color: var(--c-primary); background: #fff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .15);
}
.downloader__paste {
    background: transparent; color: var(--c-text-muted);
    border: 1px solid var(--c-border); border-radius: var(--radius);
    padding: 0 .9rem; cursor: pointer; font-family: inherit; font-size: .85rem;
    display: inline-flex; align-items: center; gap: .35rem;
    transition: all .15s;
}
.downloader__paste:hover { background: var(--c-bg-alt); color: var(--c-text); }
.downloader__submit {
    background: var(--c-primary); color: #fff; border: 0;
    border-radius: var(--radius);
    padding: 0 1.6rem; cursor: pointer; font-family: inherit; font-size: 1rem;
    font-weight: 600; min-width: 130px;
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    transition: background .15s, transform .05s;
}
.downloader__submit:hover  { background: var(--c-primary-dark); }
.downloader__submit:active { transform: translateY(1px); }
.downloader__submit[disabled] { opacity: .7; cursor: not-allowed; }

.downloader__spinner {
    width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff; border-radius: 50%;
    animation: spin .8s linear infinite; display: none;
}
.downloader.is-loading .downloader__spinner { display: inline-block; }
.downloader.is-loading .downloader__submit-label { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

.downloader__hint { color: var(--c-text-muted); font-size: .9rem; text-align: center;
                    margin: .8rem 0 0; }

.downloader__error {
    margin-top: 1rem; padding: .9rem 1.1rem;
    background: var(--c-error-bg); color: var(--c-error);
    border-radius: var(--radius); font-size: .95rem;
}

.downloader__results {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.downloader__count {
    grid-column: 1 / -1;
    font-size: .9rem;
    color: var(--c-text-muted);
    padding: .25rem .25rem .5rem;
    font-weight: 500;
}
.downloader__result {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.downloader__result-preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--c-bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.downloader__result-preview img,
.downloader__result-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.downloader__result-preview video {
    background: #000;
    object-fit: contain;        /* видео показываем целиком, без обрезки */
}
.downloader__result-preview .downloader__play-icon {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.downloader__result-preview .downloader__play-icon::before {
    content: ''; display: block;
    width: 0; height: 0;
    border-left: 16px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.downloader__result-footer {
    padding: .9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.downloader__result-info {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .55rem;
    align-items: center;
    min-width: 0;
}
.downloader__result-info strong { font-size: .95rem; min-width: 0;
                                  overflow: hidden; text-overflow: ellipsis;
                                  white-space: nowrap; }
.downloader__result-info .muted { font-size: .82rem; }
.downloader__result-badge {
    background: var(--c-primary);
    color: #fff;
    padding: .15rem .55rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.downloader__result-meta {
    color: var(--c-text-muted);
    font-size: .82rem;
}
.downloader__result-cta {
    background: var(--c-primary);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    display: block;
    transition: background .15s;
}
.downloader__result-cta:hover {
    background: var(--c-primary-dark);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 540px) {
    .downloader__row { flex-wrap: wrap; }
    .downloader__input { flex: 1 1 100%; }
    .downloader__paste, .downloader__submit { flex: 1 1 calc(50% - .25rem); }
}

/* ── Features grid / cards ───────────────────────────────────────────────── */

.features-grid {
    display: grid; gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius-lg); padding: 1.4rem;
    transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feature h3 { margin-top: 0; font-size: 1.1rem; }
.feature p { color: var(--c-text-muted); margin-bottom: 0; }

.tools-grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tool-card {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius-lg); padding: 1.2rem 1.4rem;
    color: var(--c-text); display: block;
    transition: all .2s;
}
.tool-card:hover {
    transform: translateY(-2px); box-shadow: var(--shadow);
    border-color: var(--c-primary); text-decoration: none; color: var(--c-text);
}
.tool-card h3 { color: var(--c-primary); margin: 0 0 .4rem; font-size: 1.1rem; }
.tool-card p  { color: var(--c-text-muted); margin: 0; font-size: .95rem; }

.usecases { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.usecase  { background: #fff; padding: 1.4rem; border-radius: var(--radius-lg);
            border: 1px solid var(--c-border); }
.usecase h3 { margin-top: 0; }
.usecase p  { color: var(--c-text-muted); margin: 0; }

/* ── How-to ──────────────────────────────────────────────────────────────── */

.howto { list-style: none; padding: 0; display: grid; gap: 1.5rem;
         grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 1000px; margin: 0 auto; }
.howto__step {
    background: #fff; padding: 1.6rem; border-radius: var(--radius-lg);
    border: 1px solid var(--c-border); position: relative;
}
.howto__num {
    position: absolute; top: -16px; left: 1.6rem;
    background: var(--c-primary); color: #fff;
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    box-shadow: var(--shadow);
}
.howto__step h3 { margin-top: .8rem; }
.howto__step p  { color: var(--c-text-muted); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-block { max-width: 820px; margin: 0 auto; }
.faq-block__heading { text-align: center; }
.faq-block__list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.faq-block__item {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: .9rem 1.2rem;
    transition: border-color .15s;
}
.faq-block__item[open] { border-color: var(--c-primary); }
.faq-block__q {
    font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-block__q::after { content: "+"; color: var(--c-text-muted); font-size: 1.4rem; line-height: 1;
                      transition: transform .2s; }
.faq-block__item[open] .faq-block__q::after { content: "−"; }
.faq-block__q::-webkit-details-marker { display: none; }
.faq-block__a { padding-top: .7rem; color: var(--c-text-muted); }

.faq-page { max-width: 880px; margin: 0 auto; }
.faq-section { margin-bottom: 2.5rem; }
.faq-section__heading { font-size: 1.3rem; padding-bottom: .5rem;
                       border-bottom: 2px solid var(--c-primary);
                       margin-bottom: 1rem; }
.faq-cta { margin-top: 3rem; padding: 1.5rem; background: var(--c-bg-alt);
           border-radius: var(--radius-lg); text-align: center; }

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.breadcrumbs { padding: 1rem 1.25rem; max-width: 1180px; margin: 0 auto;
              font-size: .9rem; color: var(--c-text-muted); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex;
                 flex-wrap: wrap; gap: .35rem; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: .35rem; opacity: .5; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs li[aria-current="page"] span { color: var(--c-text); font-weight: 500; }

/* ── Disclaimer strip ────────────────────────────────────────────────────── */

.disclaimer-strip {
    background: var(--c-bg-alt); border-top: 1px solid var(--c-border);
    padding: 1.5rem 0; font-size: .9rem; color: var(--c-text-muted);
}
.disclaimer-strip p { margin: 0; max-width: 880px; }

/* ── Legal pages ─────────────────────────────────────────────────────────── */

.legal-page .prose { font-size: 1rem; }
.legal-page h1 { margin-bottom: .5rem; }
.legal-page h2 { font-size: 1.25rem; }

/* ── Contact page ────────────────────────────────────────────────────────── */

.contact-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 920px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form {
    background: var(--c-bg-alt); padding: 2rem; border-radius: var(--radius-lg);
}
.form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: flex; flex-direction: column; gap: .35rem; }
.form__label { font-weight: 500; font-size: .9rem; }
.form input, .form textarea {
    padding: .75rem 1rem; border: 1px solid var(--c-border);
    border-radius: var(--radius); font-family: inherit; font-size: 1rem;
    background: #fff;
}
.form input:focus, .form textarea:focus {
    outline: none; border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .15);
}
.form__error { color: var(--c-error); font-size: .85rem; }

.honeypot { position: absolute; left: -9999px; }

.btn { display: inline-block; padding: .75rem 1.4rem; border-radius: var(--radius);
       font-weight: 600; cursor: pointer; border: 0; font-family: inherit; font-size: 1rem; }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; text-decoration: none; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1rem;
         font-size: .95rem; }
.alert--success { background: #DCFCE7; color: #166534; }
.alert--error   { background: var(--c-error-bg); color: #991B1B; }

/* ── Blog ────────────────────────────────────────────────────────────────── */

.blog-list { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-card {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all .2s; color: var(--c-text); display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg);
                   text-decoration: none; color: var(--c-text); }
.blog-card__cover {
    height: 160px; background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    background-size: cover; background-position: center;
}
.blog-card__body  { padding: 1.25rem; }
.blog-card__meta  { font-size: .85rem; color: var(--c-text-muted); margin-bottom: .35rem; }
.blog-card__title { margin: 0 0 .5rem; font-size: 1.1rem; }
.blog-card__excerpt { color: var(--c-text-muted); font-size: .95rem; margin: 0; }

.blog-post .prose { font-size: 1.05rem; }
.blog-post__meta { color: var(--c-text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.blog-post__cover { width: 100%; max-height: 460px; object-fit: cover;
                    border-radius: var(--radius-lg); margin-bottom: 2rem; }
.blog-post__share { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
    background: var(--c-text); color: #cbd5e1; padding: 3rem 0 2rem; margin-top: 3rem;
}
.footer-grid {
    display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h3 { color: #fff; margin-top: 0; }
.footer-col h4 { color: #fff; margin: 0 0 .8rem; font-size: 1rem; }
.footer-col p  { color: #cbd5e1; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a  { color: #cbd5e1; font-size: .92rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}
.footer-bottom p { color: #94A3B8; font-size: .85rem; margin: 0; }

/* ── Ad placeholder (only visible in DEBUG mode) ─────────────────────────── */

.ad-placeholder {
    background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 10px, #e2e8f0 10px, #e2e8f0 20px);
    border: 2px dashed var(--c-border);
    color: var(--c-text-muted);
    text-align: center; padding: 2rem; margin: 2rem auto;
    max-width: 728px; border-radius: var(--radius);
    font-size: .85rem;
}

/* ── Print ───────────────────────────────────────────────────────────────── */

@media print {
    .site-header, .site-footer, .nav-toggle, .ad-placeholder, .downloader { display: none; }
    body { font-size: 12pt; }
}
