/* =========================================================
   APEX AUTO CLICKER
   Website v1.0
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

:root {
    --bg: #08090c;
    --bg-secondary: #0d0f14;
    --card: #11141a;
    --card-hover: #151922;
    --border: rgba(255, 255, 255, 0.08);

    --text: #f5f7fa;
    --text-secondary: #9ca3af;
    --text-dark: #737b88;

    --accent: #ff4d32;
    --accent-light: #ff765f;
    --accent-dark: #d9341d;

    --green: #2ed573;

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);

    --container: 1180px;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(255, 77, 50, 0.10),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 9, 12, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--accent-light),
            var(--accent-dark)
        );

    box-shadow:
        0 7px 25px rgba(255, 77, 50, 0.25);
}

.brand-icon.small {
    width: 34px;
    height: 34px;
    font-size: 17px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-main {
    font-size: 17px;
    font-weight: 800;
}

.brand-sub {
    color: var(--text-secondary);
    font-size: 11px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-download {
    padding: 10px 19px;

    border-radius: 9px;

    background: var(--text);
    color: #090a0d;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-download:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.12);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    display: flex;
    align-items: center;

    padding:
        150px 0
        95px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.hero-glow-one {
    top: -230px;
    left: 5%;

    background:
        rgba(255, 77, 50, 0.12);
}

.hero-glow-two {
    right: -300px;
    bottom: -150px;

    background:
        rgba(255, 119, 71, 0.07);
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.9fr);

    align-items: center;

    gap: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    margin-bottom: 25px;

    border: 1px solid rgba(255, 77, 50, 0.20);

    border-radius: 999px;

    background:
        rgba(255, 77, 50, 0.06);

    color: #ff9c8d;

    font-size: 12px;
    font-weight: 700;
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 12px rgba(255, 77, 50, 0.9);
}

.hero h1 {
    max-width: 690px;

    font-size:
        clamp(52px, 6vw, 83px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 850;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--accent-light),
            var(--accent)
        );

    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 580px;

    margin-top: 27px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 34px;
}

.primary-button,
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 57px;

    padding: 10px 22px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--accent-light),
            var(--accent-dark)
        );

    box-shadow:
        0 13px 35px rgba(255, 77, 50, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.primary-button:hover,
.download-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 42px rgba(255, 77, 50, 0.30);
}

.button-icon,
.download-arrow {
    font-size: 25px;
    font-weight: 400;
}

.primary-button > span:last-child,
.download-button > span:last-child {
    display: flex;
    flex-direction: column;
}

.primary-button strong,
.download-button strong {
    font-size: 14px;
}

.primary-button small,
.download-button small {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 10px;
}

.secondary-button {
    min-height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 23px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.secondary-button:hover {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.15);
}

.hero-meta {
    display: flex;
    align-items: center;

    margin-top: 42px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-size: 13px;
}

.meta-item span {
    margin-top: 4px;

    color: var(--text-dark);

    font-size: 10px;
}

.meta-divider {
    width: 1px;
    height: 31px;

    margin: 0 20px;

    background:
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   APP PREVIEW
   ========================================================= */

.hero-image-wrapper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.app-preview-glow {
    position: absolute;

    width: 75%;
    height: 75%;

    background:
        rgba(255, 77, 50, 0.16);

    filter: blur(90px);

    border-radius: 50%;
}

.app-preview {
    position: relative;
    z-index: 2;

    width: 100%;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 15px;

    overflow: hidden;

    background: #101217;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 77, 50, 0.03);

    transform:
        perspective(1000px)
        rotateY(-3deg)
        rotateX(1deg);
}

.preview-toolbar {
    height: 42px;

    display: flex;
    align-items: center;

    position: relative;

    padding: 0 15px;

    background: #15171c;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.14);
}

.preview-dots span:first-child {
    background: var(--accent);
}

.preview-title {
    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    color: #8b9099;

    font-size: 10px;
}

.preview-image-container {
    padding: 18px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 77, 50, 0.06),
            transparent 45%
        ),
        #0c0e12;
}

.preview-image-container img {
    width: 100%;

    border-radius: 7px;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    background:
        rgba(255, 255, 255, 0.015);
}

.trust-container {
    min-height: 105px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-right:
        1px solid rgba(255, 255, 255, 0.05);
}

.trust-item:first-child {
    border-left:
        1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon {
    color: var(--accent);

    font-size: 22px;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item div span {
    margin-top: 3px;

    color: var(--text-dark);

    font-size: 10px;
}


/* =========================================================
   GLOBAL SECTIONS
   ========================================================= */

.section {
    padding: 115px 0;
}

.section-heading {
    max-width: 700px;

    margin:
        0 auto
        60px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.showcase-content h2,
.download-content h2,
.faq-heading h2,
.final-cta h2 {
    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.section-heading h2 span,
.showcase-content h2 span,
.faq-heading h2 span,
.final-cta h2 span {
    color: var(--accent);
}

.section-heading p {
    max-width: 560px;

    margin:
        18px auto
        0;

    color: var(--text-secondary);

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.012),
            transparent
        );
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.feature-card {
    min-height: 240px;

    padding: 29px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 77, 50, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 77, 50, 0.05),
            rgba(255, 255, 255, 0.018)
        );
}

.feature-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 10px;

    background:
        rgba(255, 77, 50, 0.09);

    color: var(--accent);

    font-size: 20px;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 12px;

    font-size: 17px;
}

.feature-card p {
    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.showcase-section {
    border-top:
        1px solid rgba(255, 255, 255, 0.04);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.04);

    background: var(--bg-secondary);
}

.showcase-container {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items: center;

    gap: 85px;
}

.showcase-window {
    position: relative;

    padding: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.025);

    box-shadow:
        var(--shadow);
}

.showcase-window::before {
    content: "";

    position: absolute;

    inset: -40px;

    z-index: -1;

    background:
        radial-gradient(
            circle,
            rgba(255, 77, 50, 0.11),
            transparent 65%
        );
}

.showcase-window img {
    width: 100%;

    border-radius: 8px;
}

.showcase-content h2 {
    max-width: 500px;
}

.showcase-content > p {
    max-width: 520px;

    margin-top: 22px;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.8;
}

.showcase-list {
    display: flex;
    flex-direction: column;

    gap: 13px;

    margin-top: 30px;
}

.showcase-list-item {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #d7dae0;

    font-size: 13px;
}

.check {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(46, 213, 115, 0.09);

    color: var(--green);

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps-grid {
    display: grid;

    grid-template-columns:
        1fr 80px
        1fr 80px
        1fr;

    align-items: center;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto
        20px;

    border:
        1px solid rgba(255, 77, 50, 0.22);

    border-radius: 50%;

    background:
        rgba(255, 77, 50, 0.06);

    color: var(--accent);

    font-size: 13px;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 10px;

    font-size: 17px;
}

.step-card p {
    max-width: 230px;

    margin: 0 auto;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.7;
}

.step-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 77, 50, 0.30),
            transparent
        );
}


/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-section {
    padding-top: 70px;
}

.download-card {
    position: relative;

    display: block;

    max-width: 720px;
    margin: 0 auto;

    gap: 60px;

    padding: 60px;

    overflow: hidden;

    border:
        1px solid rgba(255, 77, 50, 0.15);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 77, 50, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35);
}

.download-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    left: -150px;

    border-radius: 50%;

    background:
        rgba(255, 77, 50, 0.12);

    filter: blur(100px);

    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-content > p {
    margin-top: 15px;

    color: var(--text-secondary);

    font-size: 14px;
}

.release-details {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px;

    margin: 27px 0;
}

.release-item {
    display: flex;
    flex-direction: column;

    padding: 13px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 9px;

    background:
        rgba(0, 0, 0, 0.14);
}

.release-item span {
    color: var(--text-dark);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-item strong {
    margin-top: 5px;

    font-size: 12px;
}

.download-button {
    width: 100%;
}

.download-note {
    text-align: center;

    color: var(--text-dark) !important;

    font-size: 10px !important;
}

.checksum-box {
    position: relative;
    z-index: 2;

    align-self: center;

    padding: 27px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 14px;

    background:
        rgba(4, 5, 7, 0.45);
}

.checksum-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.checksum-label {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.checksum-header h3 {
    margin-top: 5px;

    font-size: 17px;
}

.copy-button {
    padding: 8px 13px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.04);

    color: var(--text-secondary);

    cursor: pointer;

    font-size: 11px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.copy-button:hover {
    color: var(--text);

    border-color:
        rgba(255, 77, 50, 0.25);

    background:
        rgba(255, 77, 50, 0.07);
}

.checksum-box code {
    display: block;

    margin-top: 22px;

    padding: 17px;

    overflow-wrap: anywhere;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 8px;

    background: #07080b;

    color: #d6d9df;

    font-family:
        Consolas,
        "Courier New",
        monospace;

    font-size: 11px;
    line-height: 1.7;
}

.checksum-box > p {
    margin-top: 15px;

    color: var(--text-dark);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.012)
        );
}

.faq-container {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 90px;
}

.faq-heading {
    position: sticky;
    top: 130px;

    align-self: start;
}

.faq-heading p {
    margin-top: 17px;

    color: var(--text-secondary);

    font-size: 14px;
}

.faq-list {
    border-top:
        1px solid var(--border);
}

.faq-item {
    border-bottom:
        1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 23px 3px;

    border: 0;

    background: transparent;

    color: var(--text);

    cursor: pointer;

    text-align: left;

    font-size: 14px;
    font-weight: 700;
}

.faq-plus {
    color: var(--accent);

    font-size: 22px;
    font-weight: 300;

    transition:
        transform 0.25s ease;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;
}

.faq-answer p {
    max-width: 620px;

    padding:
        0 35px
        23px 3px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.75;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    padding:
        75px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    background: var(--bg-secondary);
}

.final-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.final-cta h2 {
    max-width: 650px;
}

.final-button {
    min-width: 210px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding:
        34px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    background: #06070a;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 11px;
}

.footer-brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 12px;
}

.footer-brand span {
    margin-top: 3px;

    color: var(--text-dark);

    font-size: 9px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-dark);

    font-size: 11px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    color: var(--text-dark);

    font-size: 10px;
}


/* =========================================================
   DOWNLOAD TOAST
   ========================================================= */

.download-toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 2000;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 250px;

    padding: 14px 17px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 11px;

    background:
        rgba(15, 17, 22, 0.94);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.40);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.download-toast.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.toast-check {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(46, 213, 115, 0.10);

    color: var(--green);

    font-size: 13px;
    font-weight: 900;
}

.download-toast > div {
    display: flex;
    flex-direction: column;
}

.download-toast strong {
    font-size: 11px;
}

.download-toast div span {
    margin-top: 3px;

    color: var(--text-dark);

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .hero-content {
        margin: 0 auto;

        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-meta {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 650px;

        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .showcase-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .showcase-content {
        max-width: 650px;
    }

    .download-card {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-heading {
        position: static;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav-links {
        display: none;
    }

    .navbar {
        background:
            rgba(8, 9, 12, 0.92);
    }

    .hero {
        min-height: auto;

        padding:
            135px 0
            75px;
    }

    .hero h1 {
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        align-items: center;
    }

    .app-preview {
        transform: none;
    }

    .trust-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item {
        min-height: 90px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.05);
    }

    .section {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .step-line {
        width: 1px;
        height: 35px;

        margin: 0 auto;

        background:
            linear-gradient(
                transparent,
                rgba(255, 77, 50, 0.35),
                transparent
            );
    }

    .download-card {
        padding: 35px 22px;

        gap: 40px;
    }

    .release-details {
        grid-template-columns: 1fr 1fr;
    }

    .checksum-box {
        padding: 20px;
    }

    .final-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .final-button {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 460px) {

    .brand-sub {
        display: none;
    }

    .nav-download {
        padding:
            9px 14px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .release-details {
        grid-template-columns: 1fr;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;

        padding-left: 25%;
    }

}

/* =========================================================
   JAVASCRIPT STATES
   ========================================================= */

.navbar.scrolled {
    background:
        rgba(8, 9, 12, 0.93);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    content: "";

    display: block;

    width: 100%;
    height: 2px;

    margin-top: 5px;

    border-radius: 999px;

    background: var(--accent);
}


/* Reveal animation */

.reveal {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        scroll-behavior: auto !important;
    }

}