/* =========================================================
   THUMBDOWNLOADER — MASTER UI
   ========================================================= */

:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-soft: #f8fafc;

    --text: #0f172a;
    --text-soft: #334155;
    --muted: #64748b;
    --muted-light: #94a3b8;

    --border: #e2e8f0;
    --border-dark: #cbd5e1;

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;

    --success: #059669;
    --success-soft: #ecfdf5;

    --shadow-sm:
        0 1px 2px rgba(15, 23, 42, .04);

    --shadow:
        0 12px 40px rgba(15, 23, 42, .07);

    --shadow-lg:
        0 25px 70px rgba(15, 23, 42, .10);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;

    --container: 1120px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, .055),
            transparent 32rem
        ),
        var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.page-glow {
    position: fixed;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    opacity: .28;

    z-index: -1;
}

.glow-one {
    top: -260px;
    left: 15%;
    background: rgba(37, 99, 235, .12);
}

.glow-two {
    top: 35%;
    right: -300px;
    background: rgba(14, 165, 233, .08);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 72px;

    background: rgba(255, 255, 255, .84);

    border-bottom: 1px solid rgba(226, 232, 240, .85);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: var(--text);

    font-size: 15px;
}

.brand:hover {
    color: var(--text);
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #2563eb,
            #1d4ed8
        );

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .22);

    font-size: 21px;
}

.brand-text {
    letter-spacing: -.4px;
}

.brand-text strong {
    font-weight: 800;
}


/* NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: auto;
    margin-right: 34px;
}

.desktop-nav a {
    color: var(--muted);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: color .2s ease;
}

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


/* HEADER BUTTON */

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 15px;

    color: var(--text);

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow: var(--shadow-sm);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.header-button:hover {
    color: var(--text);

    transform: translateY(-1px);

    border-color: var(--border-dark);

    box-shadow: var(--shadow);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    padding:
        82px 0
        48px;
}

.hero-content {
    max-width: 800px;

    margin-inline: auto;

    text-align: center;
}


/* BADGE */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    margin-bottom: 22px;

    border: 1px solid #dbeafe;
    border-radius: 999px;

    background: rgba(239, 246, 255, .75);

    color: #2563eb;

    font-size: 11px;
    font-weight: 700;
}

.status-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: #10b981;

    box-shadow:
        0 0 0 3px rgba(16, 185, 129, .12);
}


/* TITLE */

.hero-content h1 {
    max-width: 800px;

    margin-inline: auto;

    font-size:
        clamp(
            42px,
            6vw,
            70px
        );

    line-height: .98;

    letter-spacing: -3.8px;

    font-weight: 800;
}

.hero-content h1 span {
    color: var(--primary);
}


/* DESCRIPTION */

.hero-content > p {
    max-width: 640px;

    margin:
        24px auto
        0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


/* TRUST */

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 600;
}

.trust-item i {
    color: var(--success);
}


/* =========================================================
   ADS
   ========================================================= */

.ad-section {
    margin:
        0 auto
        32px;
}

.ad-box {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px dashed
        #cbd5e1;

    border-radius: 13px;

    background:
        rgba(255, 255, 255, .65);

    color: #94a3b8;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.ad-box-large {
    min-height: 120px;
}


/* =========================================================
   DOWNLOADER
   ========================================================= */

.downloader-section {
    max-width: 900px;
}

.downloader-card {
    overflow: hidden;

    padding: 30px;

    background: rgba(255, 255, 255, .94);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(20px);
}


/* CARD HEADER */

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 20px;
}

.card-title h2 {
    margin: 0;

    font-size: 17px;

    letter-spacing: -.3px;

    font-weight: 750;
}

.card-title p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}


/* SECURE */

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 10px;

    border-radius: 8px;

    background: var(--success-soft);

    color: var(--success);

    font-size: 10px;
    font-weight: 700;
}

.secure-badge i {
    font-size: 12px;
}


/* =========================================================
   URL FIELD
   ========================================================= */

.url-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;
}

.input-container {
    position: relative;

    display: flex;
    align-items: center;
}

.input-leading {
    position: absolute;
    left: 15px;

    color: var(--muted-light);

    font-size: 18px;

    pointer-events: none;
}

.input-container input {
    width: 100%;
    height: 54px;

    padding:
        0 90px
        0 45px;

    color: var(--text);

    border:
        1px solid
        var(--border-dark);

    border-radius: 12px;

    background: white;

    outline: none;

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.input-container input::placeholder {
    color: #a3afbf;
}

.input-container input:hover {
    border-color: #94a3b8;
}

.input-container input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(37, 99, 235, .09);
}


/* PASTE */

.paste-button {
    position: absolute;

    right: 7px;

    height: 40px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0 12px;

    border: 0;
    border-radius: 8px;

    background: #f1f5f9;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease;
}

.paste-button:hover {
    background: var(--primary-soft);
    color: var(--primary);
}


/* HELP */

.input-help {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    margin-top: 8px;

    color: var(--muted-light);

    font-size: 10px;
}

.input-help span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear-button {
    border: 0;

    background: transparent;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
}

.clear-button:hover {
    color: var(--primary);
}


/* =========================================================
   QUALITY
   ========================================================= */

.quality-section {
    margin-top: 26px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.section-label span {
    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;
}

.section-label small {
    padding: 4px 7px;

    border-radius: 5px;

    background: var(--success-soft);

    color: var(--success);

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;
}


/* GRID */

.quality-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


/* QUALITY CARD */

.quality-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 11px;

    min-height: 68px;

    padding: 11px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background: white;

    text-align: left;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.quality-card:hover {
    transform: translateY(-1px);

    border-color: #b7c5d8;

    box-shadow: var(--shadow-sm);
}

.quality-card.active {
    border-color: #93b4f8;

    background: #f8fbff;

    box-shadow:
        0 0 0 1px
        rgba(37, 99, 235, .08);
}

.quality-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f1f5f9;

    color: var(--text-soft);

    font-size: 15px;
}

.quality-card.active .quality-icon {
    background: var(--primary-soft);
    color: var(--primary);
}

.quality-info {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.quality-info strong {
    color: var(--text);

    font-size: 11px;
}

.quality-info small {
    color: var(--muted);

    font-size: 9px;
}

.quality-check {
    position: absolute;

    top: 7px;
    right: 7px;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    font-size: 9px;

    opacity: 0;
    transform: scale(.7);

    transition: .2s ease;
}

.quality-card.active .quality-check {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   PREVIEW
   ========================================================= */

.preview-section {
    margin-top: 28px;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.preview-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-title {
    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;
}

.preview-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--success);

    font-size: 9px;
    font-weight: 700;
}

.preview-status .status-dot {
    width: 5px;
    height: 5px;
}

.fullscreen-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 9px;

    border: 1px solid var(--border);

    border-radius: 7px;

    background: white;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;
}

.fullscreen-button:hover {
    color: var(--text);
    border-color: var(--border-dark);
}


/* PREVIEW BOX */

.preview-container {
    position: relative;

    overflow: hidden;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--border);

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #eef2f7,
            #f8fafc
        );
}

.thumbnail-image {
    display: block;

    width: 100%;
    height: auto;

    max-height: 520px;

    object-fit: contain;

    cursor: zoom-in;

    transition:
        transform .3s ease,
        filter .3s ease;
}

.thumbnail-image:hover {
    transform: scale(1.01);
}


/* OVERLAY */

.preview-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 16px;

    opacity: 0;

    background:
        linear-gradient(
            transparent 50%,
            rgba(15, 23, 42, .25)
        );

    transition: opacity .25s ease;

    pointer-events: none;
}

.preview-container:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay button {
    padding: 8px 12px;

    border: 0;
    border-radius: 8px;

    background: rgba(15, 23, 42, .82);

    color: white;

    font-size: 10px;
    font-weight: 700;

    pointer-events: auto;
}


/* LOADING */

.preview-loading {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 9px;

    background:
        rgba(248, 250, 252, .92);

    color: var(--muted);

    font-size: 10px;
}

.preview-loading.active {
    display: flex;
}

.spinner {
    width: 24px;
    height: 24px;

    border:
        2px solid
        #dbeafe;

    border-top-color:
        var(--primary);

    border-radius: 50%;

    animation:
        spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   DOWNLOAD AREA
   ========================================================= */

.download-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    padding: 14px;

    border:
        1px solid
        #dce5ef;

    border-radius: 12px;

    background: #f8fafc;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--success-soft);

    color: var(--success);

    font-size: 15px;
}

.download-info > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.download-info strong {
    font-size: 11px;
}

.download-info span {
    color: var(--muted);

    font-size: 9px;
}


/* DOWNLOAD BUTTON */

.download-button {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 17px;

    border: 0;
    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );

    color: white;

    font-size: 11px;
    font-weight: 750;

    box-shadow:
        0 8px 20px
        rgba(5, 150, 105, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.download-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 12px 25px
        rgba(5, 150, 105, .25);
}


/* =========================================================
   TOOL FEATURES
   ========================================================= */

.tool-features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 18px;

    padding-top: 18px;

    border-top:
        1px solid
        var(--border);
}

.tool-features > div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 600;

    border-right:
        1px solid
        var(--border);
}

.tool-features > div:last-child {
    border-right: 0;
}

.tool-features i {
    color: var(--primary);
    font-size: 12px;
}


/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.content-section {
    padding:
        100px 0;
}

.section-heading {
    max-width: 650px;

    margin-bottom: 35px;
}

.section-eyebrow {
    margin-bottom: 11px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin: 0;

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}

.section-heading h2 span {
    color: var(--muted-light);
}

.section-heading p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}

.feature-card {
    position: relative;

    min-height: 250px;

    padding: 23px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background: white;

    box-shadow: var(--shadow-sm);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: #d1dbe8;

    box-shadow: var(--shadow);
}

.feature-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #cbd5e1;

    font-size: 10px;
    font-weight: 800;
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 11px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 17px;
}

.feature-card h3 {
    margin-bottom: 9px;

    font-size: 14px;
    font-weight: 750;
}

.feature-card p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(241, 245, 249, .65),
            transparent
        );
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.step-card {
    padding: 24px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background: white;
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.step-number {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.step-top > i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 17px;
}

.step-card h3 {
    margin-bottom: 8px;

    font-size: 14px;
}

.step-card p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding-top: 70px;
}

.faq-container {
    max-width: 850px;
}

.faq-list {
    border-top:
        1px solid
        var(--border);
}

.faq-list details {
    border-bottom:
        1px solid
        var(--border);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 4px;

    color: var(--text);

    cursor: pointer;

    list-style: none;

    font-size: 13px;
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    color: var(--muted);

    font-size: 17px;

    transition: transform .2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list p {
    max-width: 720px;

    padding:
        0 35px
        20px 4px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   CTA
   ========================================================= */

.final-cta {
    padding-bottom: 100px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px;

    border:
        1px solid
        #dbeafe;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ffffff
        );
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    border-radius: 12px;

    background: white;

    color: var(--primary);

    box-shadow: var(--shadow-sm);
}

.cta-content h2 {
    margin-bottom: 5px;

    font-size: 16px;
}

.cta-content p {
    color: var(--muted);

    font-size: 11px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 11px 16px;

    border-radius: 9px;

    background: var(--primary);

    color: white;

    text-decoration: none;

    font-size: 11px;
    font-weight: 750;

    white-space: nowrap;
}

.cta-button:hover {
    color: white;

    background: var(--primary-dark);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    border-top:
        1px solid
        var(--border);

    background: white;
}

.footer-main {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding:
        55px 0
        45px;
}

.footer-brand-area p {
    max-width: 280px;

    margin-top: 14px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 5px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.footer-column a {
    color: var(--muted);

    text-decoration: none;

    font-size: 11px;

    transition: color .2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding:
        18px 0;

    border-top:
        1px solid
        var(--border);

    color: var(--muted-light);

    font-size: 9px;
}


/* =========================================================
   FULLSCREEN
   ========================================================= */

.fullscreen-viewer {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        rgba(2, 6, 23, .96);

    backdrop-filter: blur(10px);

    cursor: zoom-out;
}

.fullscreen-viewer.active {
    display: flex;
}

.fullscreen-viewer img {
    max-width: 94vw;
    max-height: 88vh;

    object-fit: contain;

    border-radius: 6px;

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, .4);

    cursor: default;
}

.fullscreen-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, .14);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: white;

    font-size: 15px;
}

.fullscreen-close:hover {
    background:
        rgba(255, 255, 255, .15);
}

.fullscreen-hint {
    position: absolute;

    bottom: 20px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 10px;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast-message {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 10000;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 14px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: white;

    color: var(--text);

    box-shadow: var(--shadow-lg);

    font-size: 11px;
    font-weight: 650;

    transform:
        translateY(20px);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.toast-message.show {
    transform:
        translateY(0);

    opacity: 1;
}

.toast-message i {
    color: var(--success);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .tool-features {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 13px;
    }

    .tool-features > div:nth-child(2) {
        border-right: 0;
    }

    .footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .container {
        width:
            calc(100% - 28px);
    }

    .site-header {
        height: 64px;
    }

    .header-button {
        padding: 9px 11px;
    }

    .hero-section {
        padding:
            60px 0
            35px;
    }

    .hero-content h1 {
        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .downloader-card {
        padding: 20px;

        border-radius: 17px;
    }

    .card-top {
        align-items: flex-start;
    }

    .secure-badge {
        display: none;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        min-height: 62px;
    }

    .download-area {
        flex-direction: column;
        align-items: stretch;
    }

    .download-button {
        width: 100%;
    }

    .preview-container {
        min-height: 190px;
    }

    .content-section {
        padding:
            70px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .footer-brand-area {
        grid-column:
            1 / -1;
    }
}


@media (max-width: 460px) {

    .brand-text {
        font-size: 13px;
    }

    .header-button {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 38px;

        letter-spacing: -2px;
    }

    .hero-trust {
        gap: 10px 15px;
    }

    .hero-trust .trust-item {
        font-size: 10px;
    }

    .input-container input {
        height: 50px;

        padding-left: 42px;
    }

    .paste-button span {
        display: none;
    }

    .paste-button {
        width: 36px;

        justify-content: center;

        padding: 0;
    }

    .input-help {
        align-items: flex-start;
    }

    .input-help span {
        max-width: 80%;
    }

    .preview-header {
        align-items: flex-start;
    }

    .fullscreen-button {
        font-size: 0;
    }

    .fullscreen-button i {
        font-size: 13px;
    }

    .tool-features {
        grid-template-columns: 1fr 1fr;
    }

    .tool-features > div {
        border-right: 0;
    }

    .tool-features > div:nth-child(odd) {
        border-right:
            1px solid
            var(--border);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand-area {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}