/* ============================================================
   DOWNLOAD CENTER — LUXURY PREMIUM DARK UI
   File: download/css/download.css
============================================================ */


/* ============================================================
   01. ROOT VARIABLES
============================================================ */

:root {
    --bg-main: #050911;
    --bg-secondary: #08111d;
    --bg-card: rgba(12, 24, 39, 0.72);
    --bg-card-soft: rgba(255, 255, 255, 0.035);

    --text-primary: #f5f8fc;
    --text-secondary: #aab7c7;
    --text-muted: #718095;

    --accent: #31d6a3;
    --accent-light: #69f2c5;
    --accent-dark: #159b78;

    --blue: #3c8cff;
    --blue-light: #78b2ff;

    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(49, 214, 163, 0.35);

    --shadow-large:
        0 35px 90px rgba(0, 0, 0, 0.45);

    --shadow-card:
        0 20px 60px rgba(0, 0, 0, 0.32);

    --radius-large: 28px;
    --radius-medium: 18px;
    --radius-small: 12px;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   02. RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(49, 214, 163, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(60, 140, 255, 0.08),
            transparent 30%
        ),
        var(--bg-main);

    color: var(--text-primary);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ============================================================
   03. MAIN PAGE
============================================================ */

.download-page {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    isolation: isolate;
}


/* ============================================================
   04. BACKGROUND GRID
============================================================ */

.background-grid {
    position: fixed;

    inset: 0;

    z-index: -3;

    opacity: 0.20;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}


/* ============================================================
   05. BACKGROUND GLOWS
============================================================ */

.background-glow {
    position: fixed;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    z-index: -2;

    opacity: 0.10;

    animation: floatingGlow 12s ease-in-out infinite;
}

.background-glow-one {
    top: -220px;
    left: -160px;

    background: var(--accent);
}

.background-glow-two {
    top: 30%;
    right: -260px;

    background: var(--blue);

    animation-delay: -5s;
}

@keyframes floatingGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(25px, 35px, 0);
    }
}


/* ============================================================
   06. HEADER
============================================================ */

.download-header {
    position: relative;

    width: 100%;

    border-bottom: 1px solid var(--border);

    background:
        rgba(5, 9, 17, 0.72);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    z-index: 20;
}

.download-header-inner {
    width: min(1180px, calc(100% - 48px));

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* ============================================================
   07. BRAND
============================================================ */

.download-brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    transition: var(--transition);
}

.download-brand:hover {
    transform: translateY(-2px);
}

.brand-mark {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(105, 242, 197, 0.18),
            rgba(49, 214, 163, 0.04)
        );

    border: 1px solid rgba(105, 242, 197, 0.25);

    color: var(--accent-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.08em;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 25px rgba(49, 214, 163, 0.08);
}

.brand-text {
    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.01em;

    color: #e9eef5;
}


/* ============================================================
   08. BACK HOME
============================================================ */

.back-home {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    border-radius: 10px;

    color: var(--text-secondary);

    font-size: 13px;

    font-weight: 600;

    border: 1px solid transparent;

    transition: var(--transition);
}

.back-home:hover {
    color: var(--text-primary);

    background: rgba(255, 255, 255, 0.045);

    border-color: var(--border);

    transform: translateX(-3px);
}

.back-icon {
    font-size: 16px;

    transition: transform var(--transition);
}

.back-home:hover .back-icon {
    transform: translateX(-4px);
}


/* ============================================================
   09. MAIN CONTAINER
============================================================ */

.download-main {
    width: min(1180px, calc(100% - 48px));

    margin: auto;

    padding:
        90px 0
        110px;
}


/* ============================================================
   10. HERO
============================================================ */

.download-hero {
    max-width: 820px;

    margin:
        0 auto
        60px;

    text-align: center;

    animation:
        heroEntrance 0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

@keyframes heroEntrance {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ============================================================
   11. HERO BADGE
============================================================ */

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 24px;

    border-radius: 100px;

    border: 1px solid
        rgba(49, 214, 163, 0.20);

    background:
        rgba(49, 214, 163, 0.055);

    color: var(--accent-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.04);
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 4px
        rgba(49, 214, 163, 0.08),
        0 0 14px
        rgba(49, 214, 163, 0.55);

    animation:
        badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}


/* ============================================================
   12. HERO HEADING
============================================================ */

.download-hero h1 {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(44px, 6vw, 74px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -0.035em;

    color: #f6f9fd;
}

.download-hero h1 span {
    display: block;

    margin-top: 6px;

    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            var(--accent-light) 45%,
            var(--blue-light) 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* ============================================================
   13. HERO DESCRIPTION
============================================================ */

.hero-description {
    max-width: 680px;

    margin:
        24px auto
        0;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;
}


/* ============================================================
   14. DOWNLOAD SECTION
============================================================ */

.download-section {
    position: relative;

    animation:
        cardEntrance 0.9s
        0.12s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

@keyframes cardEntrance {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(0.985);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* ============================================================
   15. DOWNLOAD CARD
============================================================ */

.download-card {
    position: relative;

    display: grid;

    grid-template-columns:
        180px
        minmax(0, 1fr);

    gap: 45px;

    padding: 45px;

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(19, 35, 54, 0.82),
            rgba(7, 16, 28, 0.76)
        );

    border: 1px solid var(--border);

    box-shadow:
        var(--shadow-large),
        inset 0 1px 0
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    overflow: hidden;
}


/* Top shine */

.download-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;

    width: 84%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(105, 242, 197, 0.5),
            transparent
        );

    opacity: 0.75;
}


/* Corner glow */

.download-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(60, 140, 255, 0.08);

    filter: blur(60px);

    pointer-events: none;
}


/* ============================================================
   16. FILE ICON AREA
============================================================ */

.file-icon-wrapper {
    display: flex;

    align-items: center;

    justify-content: center;
}

.file-icon {
    position: relative;

    width: 125px;
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(49, 214, 163, 0.16),
            rgba(49, 214, 163, 0.025)
        );

    border: 1px solid
        rgba(105, 242, 197, 0.25);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.35),
        inset 0 1px 0
        rgba(255, 255, 255, 0.08);

    transform:
        rotate(-3deg);

    transition: var(--transition);

    animation:
        iconFloat 5s ease-in-out infinite;
}

.file-icon:hover {
    transform:
        rotate(0deg)
        translateY(-7px);

    border-color:
        rgba(105, 242, 197, 0.5);

    box-shadow:
        0 30px 75px
        rgba(0, 0, 0, 0.42),
        0 0 40px
        rgba(49, 214, 163, 0.08);
}

@keyframes iconFloat {

    0%,
    100% {
        transform:
            rotate(-3deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-1deg)
            translateY(-8px);
    }
}


/* Fold */

.file-fold {
    position: absolute;

    top: -1px;
    right: -1px;

    width: 38px;
    height: 38px;

    background:
        linear-gradient(
            135deg,
            transparent 49%,
            rgba(105, 242, 197, 0.30) 50%
        );

    border-top-right-radius: 16px;
}


/* ZIP */

.zip-text {
    position: relative;

    padding: 8px 12px;

    border-radius: 8px;

    border: 1px solid
        rgba(105, 242, 197, 0.22);

    color: var(--accent-light);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 0.12em;

    background:
        rgba(49, 214, 163, 0.06);

    box-shadow:
        0 8px 25px
        rgba(49, 214, 163, 0.08);
}


/* ============================================================
   17. FILE CONTENT
============================================================ */

.file-content {
    min-width: 0;
}

.file-heading-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.file-label {
    margin-bottom: 9px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.file-heading-row h2 {
    max-width: 650px;

    overflow-wrap: anywhere;

    color: #f2f6fb;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 750;

    letter-spacing: -0.025em;
}


/* ============================================================
   18. VERIFIED BADGE
============================================================ */

.verified-badge {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 100px;

    border: 1px solid
        rgba(49, 214, 163, 0.22);

    background:
        rgba(49, 214, 163, 0.055);

    color: var(--accent-light);

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}

.verified-icon {
    display: grid;

    place-items: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: var(--accent);

    color: #04130e;

    font-size: 10px;

    font-weight: 900;
}


/* ============================================================
   19. FILE DESCRIPTION
============================================================ */

.file-description {
    max-width: 760px;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   20. FILE DETAILS
============================================================ */

.file-details {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-top: 30px;
}

.detail-item {
    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;

    padding: 14px;

    border-radius: 14px;

    border: 1px solid
        rgba(255, 255, 255, 0.065);

    background:
        rgba(255, 255, 255, 0.025);

    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-3px);

    border-color:
        rgba(49, 214, 163, 0.20);

    background:
        rgba(49, 214, 163, 0.035);
}

.detail-icon {
    flex-shrink: 0;

    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    color: var(--accent-light);

    background:
        rgba(49, 214, 163, 0.075);

    font-size: 14px;
}

.detail-item div {
    min-width: 0;
}

.detail-label {
    display: block;

    margin-bottom: 3px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}

.detail-item strong {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: #e8edf4;

    font-size: 12px;

    font-weight: 650;
}


/* ============================================================
   21. DOWNLOAD ACTION
============================================================ */

.download-action {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.065);
}


/* ============================================================
   22. DOWNLOAD BUTTON
============================================================ */

.download-button {
    position: relative;

    min-width: 235px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 20px;

    border-radius: 13px;

    overflow: hidden;

    color: #03120d;

    background:
        linear-gradient(
            100deg,
            #36d9a7,
            #6df2c7
        );

    box-shadow:
        0 12px 30px
        rgba(49, 214, 163, 0.20);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.01em;

    transition: var(--transition);
}

.download-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255, 255, 255, 0.42),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.7s ease;
}

.download-button:hover::before {
    left: 140%;
}

.download-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(49, 214, 163, 0.28),
        0 0 35px
        rgba(49, 214, 163, 0.08);
}

.download-button:active {
    transform:
        translateY(-1px)
        scale(0.985);
}

.download-button-icon {
    font-size: 20px;

    line-height: 1;

    transition:
        transform var(--transition);
}

.download-button:hover
.download-button-icon {
    transform: translateY(3px);
}

.download-button-text {
    position: relative;

    z-index: 2;
}

.download-button-arrow {
    position: relative;

    z-index: 2;

    font-size: 17px;

    transition:
        transform var(--transition);
}

.download-button:hover
.download-button-arrow {
    transform: translateX(4px);
}


/* ============================================================
   23. SECURITY TEXT
============================================================ */

.download-security {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.5;
}

.security-icon {
    font-size: 13px;

    opacity: 0.85;
}


/* ============================================================
   24. TRUST SECTION
============================================================ */

.trust-section {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin-top: 22px;
}

.trust-card {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 23px;

    border-radius: var(--radius-medium);

    background:
        rgba(255, 255, 255, 0.025);

    border: 1px solid
        rgba(255, 255, 255, 0.065);

    box-shadow:
        var(--shadow-card);

    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(49, 214, 163, 0.20);
}

.trust-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--accent-light);

    background:
        rgba(49, 214, 163, 0.07);

    border: 1px solid
        rgba(49, 214, 163, 0.12);

    font-size: 15px;

    font-weight: 800;
}

.trust-card h3 {
    margin-bottom: 5px;

    color: #e8edf4;

    font-size: 13px;

    font-weight: 700;
}

.trust-card p {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.65;
}


/* ============================================================
   25. INFORMATION SECTION
============================================================ */

.information-section {
    margin-top: 100px;
}

.information-header {
    max-width: 650px;

    margin-bottom: 30px;
}

.section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.information-header h2 {
    margin-bottom: 10px;

    color: #f2f6fb;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 43px);

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.information-header p {
    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   26. STEPS GRID
============================================================ */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.step-card {
    position: relative;

    min-height: 210px;

    padding: 28px;

    overflow: hidden;

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            rgba(17, 30, 46, 0.70),
            rgba(7, 15, 26, 0.72)
        );

    border: 1px solid
        rgba(255, 255, 255, 0.065);

    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(49, 214, 163, 0.22);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.25);
}

.step-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(49, 214, 163, 0.06);

    filter: blur(25px);
}

.step-number {
    display: block;

    margin-bottom: 30px;

    color: rgba(105, 242, 197, 0.45);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.step-card h3 {
    margin-bottom: 10px;

    color: #eef3f8;

    font-size: 17px;

    font-weight: 700;
}

.step-card p {
    max-width: 280px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.75;
}


/* ============================================================
   27. IMPORTANT NOTICE
============================================================ */

.download-notice {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 24px;

    padding: 23px 25px;

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            100deg,
            rgba(60, 140, 255, 0.045),
            rgba(49, 214, 163, 0.035)
        );

    border: 1px solid
        rgba(255, 255, 255, 0.07);
}

.notice-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: var(--blue-light);

    border: 1px solid
        rgba(60, 140, 255, 0.18);

    background:
        rgba(60, 140, 255, 0.07);

    font-size: 14px;

    font-weight: 800;
}

.notice-content h3 {
    margin-bottom: 5px;

    color: #e9eff7;

    font-size: 13px;

    font-weight: 700;
}

.notice-content p {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* ============================================================
   28. FOOTER
============================================================ */

.download-footer {
    border-top: 1px solid
        rgba(255, 255, 255, 0.07);

    background:
        rgba(3, 7, 13, 0.55);
}

.footer-inner {
    width: min(1180px, calc(100% - 48px));

    min-height: 100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 25px;
}


/* ============================================================
   29. FOOTER BRAND
============================================================ */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}

.footer-mark {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: var(--accent-light);

    border: 1px solid
        rgba(105, 242, 197, 0.16);

    background:
        rgba(49, 214, 163, 0.05);

    font-size: 10px;

    font-weight: 800;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    margin-bottom: 3px;

    color: #dfe6ef;

    font-size: 11px;

    font-weight: 700;
}

.footer-brand span {
    color: var(--text-muted);

    font-size: 9px;
}


/* ============================================================
   30. FOOTER LINKS
============================================================ */

.footer-links {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-muted);

    font-size: 10px;
}

.footer-links a {
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}


/* ============================================================
   31. COPYRIGHT
============================================================ */

.footer-copyright {
    text-align: right;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.6;
}


/* ============================================================
   32. FOCUS ACCESSIBILITY
============================================================ */

a:focus-visible {
    outline: 2px solid var(--accent);

    outline-offset: 4px;

    border-radius: 6px;
}


/* ============================================================
   33. SELECTION
============================================================ */

::selection {
    background:
        rgba(49, 214, 163, 0.25);

    color: #ffffff;
}


/* ============================================================
   34. SCROLLBAR
============================================================ */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #04070d;
}

::-webkit-scrollbar-thumb {
    background:
        rgba(255, 255, 255, 0.12);

    border-radius: 100px;

    border:
        2px solid #04070d;
}

::-webkit-scrollbar-thumb:hover {
    background:
        rgba(49, 214, 163, 0.35);
}


/* ============================================================
   35. LARGE TABLET
============================================================ */

@media (max-width: 1000px) {

    .download-card {
        grid-template-columns:
            140px
            minmax(0, 1fr);

        gap: 30px;

        padding: 35px;
    }

    .file-icon {
        width: 105px;
        height: 130px;
    }

    .file-details {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .trust-section {
        grid-template-columns:
            1fr;
    }

    .trust-card {
        min-height: 0;
    }

    .footer-inner {
        grid-template-columns:
            1fr
            auto;
    }

    .footer-copyright {
        grid-column: 1 / -1;

        text-align: left;

        padding-bottom: 22px;
    }
}


/* ============================================================
   36. TABLET
============================================================ */

@media (max-width: 760px) {

    .download-header-inner,
    .download-main,
    .footer-inner {
        width: min(100% - 32px, 600px);
    }

    .download-header-inner {
        min-height: 72px;
    }

    .brand-text {
        display: none;
    }

    .download-main {
        padding:
            65px 0
            75px;
    }

    .download-hero {
        margin-bottom: 42px;
    }

    .download-card {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;

        padding: 30px 24px;
    }

    .file-icon-wrapper {
        padding-top: 5px;
    }

    .file-heading-row {
        align-items: center;

        flex-direction: column;

        gap: 14px;
    }

    .file-heading-row h2 {
        font-size: 23px;
    }

    .file-description {
        margin-left: auto;
        margin-right: auto;
    }

    .file-details {
        text-align: left;
    }

    .download-action {
        align-items: center;

        flex-direction: column;
    }

    .download-button {
        width: 100%;
    }

    .download-security {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns:
            1fr;
    }

    .step-card {
        min-height: 0;
    }

    .footer-inner {
        grid-template-columns:
            1fr;

        padding:
            25px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-copyright {
        grid-column: auto;

        padding-bottom: 0;

        text-align: left;
    }
}


/* ============================================================
   37. MOBILE
============================================================ */

@media (max-width: 520px) {

    .download-header-inner,
    .download-main,
    .footer-inner {
        width: min(100% - 24px, 500px);
    }

    .back-home {
        padding: 8px 10px;

        font-size: 11px;
    }

    .back-home .back-icon {
        font-size: 14px;
    }

    .download-main {
        padding-top: 50px;
    }

    .hero-badge {
        font-size: 9px;

        padding:
            7px 11px;
    }

    .download-hero h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 13px;

        line-height: 1.75;
    }

    .download-card {
        padding:
            25px 17px;

        border-radius: 22px;
    }

    .file-icon {
        width: 92px;
        height: 115px;
    }

    .zip-text {
        font-size: 15px;
    }

    .file-heading-row h2 {
        font-size: 20px;
    }

    .file-description {
        font-size: 12px;
    }

    .file-details {
        grid-template-columns:
            1fr;
    }

    .detail-item {
        padding: 12px;
    }

    .download-action {
        margin-top: 23px;

        padding-top: 22px;
    }

    .download-button {
        min-width: 0;

        padding: 15px 16px;
    }

    .trust-card {
        padding: 18px;
    }

    .information-section {
        margin-top: 70px;
    }

    .information-header h2 {
        font-size: 31px;
    }

    .step-card {
        padding: 23px;
    }

    .download-notice {
        padding: 18px;
    }

    .notice-content p {
        font-size: 10px;
    }
}


/* ============================================================
   38. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }
}

/* ============================================================
   DOWNLOAD JS SUPPORT
============================================================ */

.download-button.is-downloading {
    pointer-events: none;
    opacity: 0.9;
    cursor: wait;
}

.download-spinner {
    display: inline-block;

    animation:
        downloadSpinner
        0.8s
        linear
        infinite;
}

@keyframes downloadSpinner {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* Ripple */

.download-ripple {
    position: absolute;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.35);

    transform: scale(0);

    animation:
        downloadRippleAnimation
        0.65s ease-out;

    pointer-events: none;

    z-index: 1;
}

@keyframes downloadRippleAnimation {

    to {
        transform: scale(2.5);
        opacity: 0;
    }

}


/* Scroll Reveal */

.trust-card,
.step-card,
.download-notice {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.trust-card.is-visible,
.step-card.is-visible,
.download-notice.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* Slight stagger */

.trust-card:nth-child(2),
.step-card:nth-child(2) {
    transition-delay: 0.08s;
}

.trust-card:nth-child(3),
.step-card:nth-child(3) {
    transition-delay: 0.16s;
}


/* Reduced motion */

@media (
    prefers-reduced-motion: reduce
) {

    .download-spinner {
        animation: none;
    }

    .download-ripple {
        display: none;
    }

    .trust-card,
    .step-card,
    .download-notice {
        opacity: 1;
        transform: none;
        transition: none;
    }

}