/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111111;
    color: #f4f4f4;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================
   HEADER
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;

    background: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid #2a2a2a;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 85px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #bdbdbd;
    transition: 0.2s;
}

nav a:hover {
    color: white;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1.05;

    max-width: 900px;

    margin-bottom: 25px;
}

.hero p {
    color: #bdbdbd;

    font-size: 20px;

    max-width: 600px;

    margin-bottom: 35px;
}

.main-button {
    display: inline-block;

    padding: 14px 28px;

    background: white;
    color: black;

    font-weight: 700;

    border-radius: 6px;

    transition: 0.2s;
}

.main-button:hover {
    transform: translateY(-2px);
    background: #dcdcdc;
}


/* =========================
   PRODUCT SECTIONS
========================= */

.products-section {
    padding: 90px 8%;
}

.products-section:nth-of-type(even) {
    background: #161616;
}

.products-section h2 {
    font-size: 36px;

    margin-bottom: 35px;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}


/* =========================
   PRODUCT CARD
========================= */

.product-card {
    overflow: hidden;

    background: #1d1d1d;

    border: 1px solid #303030;
    border-radius: 12px;

    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
}


/* PRODUCT IMAGE */

.product-image {
    width: 100%;
    aspect-ratio: 16 / 10;

    background: #0d0d0d;
}

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;

    background:
        radial-gradient(
            circle at center,
            #292929,
            #101010
        );
}


/* PRODUCT INFORMATION */

.product-info {
    padding: 24px;
}

.product-platform {
    display: inline-block;

    margin-bottom: 14px;

    padding: 5px 10px;

    background: #303030;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;
}

.product-card h3 {
    font-size: 26px;
    margin-bottom: 2px;
}

.product-author {
    color: #888888;
    font-size: 14px;

    margin-bottom: 18px;
}

.product-description {
    color: #bdbdbd;

    margin-bottom: 28px;
}


/* PRICE + BUTTON */

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
}

.product-card button {
    border: none;

    padding: 11px 18px;

    background: white;
    color: black;

    border-radius: 5px;

    cursor: pointer;

    font-weight: 700;

    transition: 0.2s;
}

.product-card button:hover {
    background: #d8d8d8;
}
/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    padding: 90px 8%;

    background: #0c0c0c;
}

.how-it-works h2 {
    font-size: 36px;

    margin-bottom: 40px;
}

.how-it-works div {
    max-width: 700px;

    margin-bottom: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid #292929;
}

.how-it-works h3 {
    font-size: 22px;

    margin-bottom: 5px;
}

.how-it-works p {
    color: #bdbdbd;
}


/* =========================
   FAQ
========================= */

.faq {
    max-width: 1400px;

    margin: 0 auto;

    padding: 90px 8%;
}

.faq h2 {
    font-size: 36px;

    margin-bottom: 35px;
}

.faq-item {
    border-top: 1px solid #303030;
}

.faq-item:last-child {
    border-bottom: 1px solid #303030;
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 0;

    border: none;

    background: transparent;
    color: white;

    text-align: left;

    font-size: 19px;
    font-weight: 700;

    cursor: pointer;
}

.faq-question span {
    font-size: 26px;
    font-weight: 400;

    transition: transform 0.25s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;
}

.faq-answer p {
    max-width: 800px;

    padding-bottom: 22px;

    color: #bdbdbd;
}


/* WHEN FAQ IS OPEN */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq {
    padding: 90px 8%;
}

.faq h2 {
    font-size: 36px;

    margin-bottom: 35px;
}

.faq h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.faq p {
    color: #bdbdbd;

    max-width: 700px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 40px 8%;

    text-align: center;

    color: #777777;

    border-top: 1px solid #292929;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 60vh;
    }

    .products-section,
    .how-it-works,
    .faq {
        padding: 65px 6%;
    }

}
.product-button {
    display: inline-block;

    padding: 11px 18px;

    background: white;
    color: black;

    border-radius: 5px;

    font-weight: 700;

    text-align: center;

    transition: 0.2s;
}

.product-button:hover {
    background: #d8d8d8;
}
/* =========================
   INDIVIDUAL PRODUCT PAGE
========================= */

.product-page {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    padding: 90px 8%;
    align-items: center;
}


/* PRODUCT IMAGE */

.product-page-image {
    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #181818;

    border: 1px solid #303030;
    border-radius: 14px;
}

.product-page-image .product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: 3px;

    background:
        radial-gradient(
            circle at center,
            #292929,
            #101010
        );
}


/* PRODUCT INFO */

.product-page-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-page-info h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;

    margin-top: 10px;
    margin-bottom: 8px;
}

.product-page-description {
    max-width: 600px;

    margin-top: 20px;
    margin-bottom: 28px;

    color: #bdbdbd;

    font-size: 18px;
}


/* REQUIREMENTS WARNING */

.requirement-box {
    width: 100%;

    margin-bottom: 30px;
    padding: 20px;

    background: #181818;

    border: 1px solid #444444;
    border-radius: 8px;
}

.requirement-box strong {
    display: block;

    margin-bottom: 10px;

    font-size: 17px;
}

.requirement-box p {
    color: #bdbdbd;

    margin-bottom: 5px;
}


/* PRICE */

.product-page-price {
    margin-bottom: 16px;

    font-size: 24px;
    font-weight: 700;
}


/* BUY BUTTON */

.buy-button {
    width: 100%;

    border: none;

    padding: 15px 25px;

    background: white;
    color: black;

    border-radius: 6px;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.buy-button:hover {
    background: #d8d8d8;
    transform: translateY(-2px);
}


/* =========================
   PRODUCT DETAILS
========================= */

.product-details {
    max-width: 1400px;

    margin: 0 auto;

    padding: 20px 8% 100px;
}

.product-details h2 {
    margin-top: 35px;
    margin-bottom: 12px;

    font-size: 28px;
}

.product-details p {
    max-width: 750px;

    margin-bottom: 8px;

    color: #bdbdbd;
}


/* =========================
   PRODUCT PAGE MOBILE
========================= */

@media (max-width: 900px) {

    .product-page {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 50px;
    }

    .product-page-info h1 {
        font-size: 42px;
    }

}
/* =========================
   PRODUCT DEMO
========================= */

.product-demo {
    max-width: 1400px;

    margin: 0 auto;

    padding: 40px 8% 80px;
}

.demo-header {
    max-width: 700px;

    margin-bottom: 35px;
}

.demo-header h2 {
    margin-top: 12px;
    margin-bottom: 12px;

    font-size: clamp(32px, 4vw, 48px);
}

.demo-header p {
    color: #bdbdbd;

    font-size: 18px;
}


/* VIDEO */

.video-placeholder {
    width: 100%;

    aspect-ratio: 16 / 9;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #242424,
            #0d0d0d
        );

    border: 1px solid #303030;
    border-radius: 14px;

    text-align: center;
}

.play-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: white;
    color: black;

    font-size: 26px;

    padding-left: 4px;
}

.video-placeholder p {
    margin-bottom: 4px;

    font-size: 22px;
    font-weight: 700;
}

.video-placeholder span {
    color: #888888;

    font-size: 14px;
}
/* =========================
   PRODUCT DETAILS
========================= */

.product-details {
    max-width: 1400px;

    margin: 0 auto;

    padding: 40px 8% 100px;
}

.details-header {
    max-width: 700px;

    margin-bottom: 35px;
}

.details-header h2,
.requirements-section h2 {
    margin-top: 12px;
    margin-bottom: 12px;

    font-size: clamp(32px, 4vw, 48px);
}

.details-header p {
    color: #bdbdbd;

    font-size: 18px;
}


/* WHAT'S INCLUDED */

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 90px;
}

.included-card {
    padding: 26px;

    background: #181818;

    border: 1px solid #303030;
    border-radius: 10px;
}

.included-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: white;
    color: black;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;
}

.included-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.included-card p {
    color: #a9a9a9;

    font-size: 15px;
}


/* REQUIREMENTS */

.requirements-section {
    padding-top: 10px;
}

.requirements-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 35px;
    margin-bottom: 20px;
}

.requirement-item {
    display: flex;
    flex-direction: column;

    padding: 22px;

    background: #181818;

    border: 1px solid #303030;
    border-radius: 8px;
}

.requirement-item span {
    margin-bottom: 7px;

    color: #888888;

    font-size: 13px;
}

.requirement-item strong {
    font-size: 17px;
}

.requirements-warning {
    padding: 18px 20px;

    background: #181818;

    border: 1px solid #555555;
    border-radius: 8px;

    color: #d3d3d3;
}


/* MOBILE */

@media (max-width: 900px) {

    .included-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 550px) {

    .included-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 8% 30px;

    background: #0b0b0b;

    border-top: 1px solid #292929;
}

.footer-content {
    max-width: 1400px;

    margin: 0 auto 50px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 40px;
}

.footer-brand img {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand p {
    max-width: 280px;
    color: #888888;
    line-height: 1.7;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-links h3 {
    margin-bottom: 8px;

    font-size: 15px;
}

.footer-links a {
    color: #888888;

    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;

    margin: 0 auto;

    padding-top: 25px;

    border-top: 1px solid #292929;

    color: #666666;

    font-size: 13px;
}


/* FOOTER MOBILE */

@media (max-width: 800px) {

    .footer-content {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .footer-content {
        grid-template-columns: 1fr;
    }

}
.product-main-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}
.product-card-image {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}
/* HOME PRODUCT IMAGE FINAL SIZE */

.product-card .product-image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 8;

    overflow: hidden;
}

.product-card .product-card-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}
/* =========================
   HOME PRODUCT CARD FINAL
========================= */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(280px, 420px));

    gap: 25px;

    justify-content: start;
}


/* CARD SIZE */

.product-card {
    width: 100%;
    max-width: 420px;
}


/* PRODUCT IMAGE */

.product-card .product-image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000000;
}


/* SHOW COMPLETE ARTWORK */

.product-card .product-card-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}
/* =========================
   AMPLITUBE PRODUCTS CAROUSEL
========================= */

#amplitube .products-carousel {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    width: 100%;
}


#amplitube .carousel-viewport {
    width: 100%;

    overflow: hidden;
}


#amplitube .products-track {
    display: flex;

    gap: 25px;

    transition: transform 0.4s ease;
}


/* 2 PRODUCTS VISIBLE ON DESKTOP */

#amplitube .products-track .product-card {
    flex: 0 0 calc((100% - 50px) / 3);

    max-width: none;
}


/* ARROWS */

#amplitube .carousel-button {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #3a3a3a;
    border-radius: 50%;

    background: #181818;
    color: white;

    font-size: 32px;

    cursor: pointer;

    transition: 0.2s;
}


#amplitube .carousel-button:hover:not(:disabled) {
    background: white;
    color: black;
}


#amplitube .carousel-button:disabled {
    opacity: 0.25;

    cursor: default;
}


/* TEMPORARY ARTWORK */

#amplitube .concept-artwork {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #292929,
            #050505
        );

    color: white;

    text-align: center;
}


#amplitube .concept-artwork span {
    font-size: 27px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 2px;
}


/* COMING SOON */

#amplitube .coming-soon-button {
    padding: 11px 18px;

    border: 1px solid #444444;
    border-radius: 5px;

    background: transparent;
    color: #777777;

    font-weight: 700;
}


/* TABLET */

@media (max-width: 1000px) {

    #amplitube .products-track .product-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }

}


/* PHONE */

@media (max-width: 650px) {

    #amplitube .products-track .product-card {
        flex: 0 0 100%;
    }

    #amplitube .carousel-button {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        font-size: 25px;
    }

}
/* =========================
   FINAL HEADER + MOBILE MENU
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 8%;

    background: rgba(17, 17, 17, 0.96);

    border-bottom: 1px solid #292929;
}


/* LOGO */

.site-header .logo {
    display: flex;
    align-items: center;

    z-index: 1001;
}

.site-header .logo img {
    width: 90px;
    height: auto;

    display: block;
}


/* DESKTOP NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.main-nav a {
    color: #bdbdbd;

    font-size: 15px;
    font-weight: 600;

    transition: 0.2s;
}

.main-nav a:hover {
    color: white;
}


/* HAMBURGER BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: none;

    background: transparent;

    cursor: pointer;

    z-index: 1001;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: white;

    transition: 0.25s;
}


/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 750px) {

    .site-header {
        padding: 14px 6%;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 15px 6% 20px;

        background: #111111;

        border-bottom: 1px solid #292929;


        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.25s;
    }


    .main-nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .main-nav a {
        width: 100%;

        padding: 14px 0;

        border-bottom: 1px solid #242424;

        font-size: 16px;
    }


    .main-nav a:last-child {
        border-bottom: none;
    }


    /* HAMBURGER → X */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }

}
/* =========================
   FINAL HERO
========================= */

.hero {
    max-width: 1500px;

    min-height: 75vh;

    margin: 0 auto;

    padding: 80px 8%;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

    text-align: left;
}


/* LEFT SIDE */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.hero-label {
    margin-bottom: 18px;

    color: #888888;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.hero h1 {
    max-width: 700px;

    margin-bottom: 24px;

    font-size: clamp(48px, 6vw, 86px);

    line-height: 0.98;

    letter-spacing: -3px;
}


.hero h1 span {
    display: block;

    color: #777777;
}


.hero-description {
    max-width: 600px;

    margin-bottom: 32px;

    color: #bdbdbd;

    font-size: 18px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-bottom: 35px;
}


.secondary-button {
    display: inline-block;

    padding: 14px 28px;

    border: 1px solid #444444;
    border-radius: 6px;

    color: white;

    font-weight: 700;

    transition: 0.2s;
}


.secondary-button:hover {
    background: #1d1d1d;

    border-color: #777777;
}


/* PLATFORMS */

.hero-platforms {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #777777;

    font-size: 13px;
}


.hero-platforms strong {
    color: #bdbdbd;
}


/* =========================
   FEATURED PRODUCT
========================= */

.hero-featured {
    overflow: hidden;

    display: block;

    background: #0a0a0a;

    border: 1px solid #292929;
    border-radius: 14px;

    transition: 0.3s;
}


.hero-featured:hover {
    transform: translateY(-5px);

    border-color: #555555;
}


.hero-featured img {
    width: 100%;

    aspect-ratio: 16 / 10;

    display: block;

    object-fit: contain;

    background: black;
}


.hero-product-info {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 22px 24px;
}


.hero-product-info span {
    color: #777777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}


.hero-product-info h2 {
    margin-top: 4px;

    font-size: 22px;
}


.hero-arrow {
    color: white !important;

    font-size: 28px !important;

    transition: 0.2s;
}


.hero-featured:hover .hero-arrow {
    transform: translateX(5px);
}


/* =========================
   HERO MOBILE
========================= */

@media (max-width: 900px) {

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 60px;
    }


    .hero h1 {
        font-size: clamp(46px, 12vw, 72px);
    }

}


@media (max-width: 550px) {

    .hero {
        padding: 45px 6% 65px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }


    .hero-buttons a {
        width: 100%;

        text-align: center;
    }


    .hero-platforms {
        flex-wrap: wrap;
    }

}
/* =========================
   PURCHASE BOX
========================= */

.purchase-box {
    width: 100%;

    margin-top: 5px;
    padding: 24px;

    background: #181818;

    border: 1px solid #353535;
    border-radius: 10px;
}


.purchase-price {
    margin-bottom: 20px;
}


.price-label {
    display: block;

    margin-bottom: 6px;

    color: #777777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.price-row {
    display: flex;
    align-items: baseline;

    gap: 14px;
}


.price {
    font-size: 30px;
    font-weight: 700;
}


.price-note {
    color: #777777;

    font-size: 13px;
}


/* BUY BUTTON */

.purchase-box .buy-button {
    width: 100%;

    margin-bottom: 20px;

    padding: 15px 20px;

    border: none;
    border-radius: 6px;

    background: white;
    color: black;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.purchase-box .buy-button:hover {
    background: #dddddd;

    transform: translateY(-2px);
}


/* PURCHASE INFO */

.purchase-features {
    display: flex;
    flex-direction: column;

    gap: 7px;

    padding-top: 18px;

    border-top: 1px solid #303030;

    color: #999999;

    font-size: 13px;
}


@media (max-width: 500px) {

    .price-row {
        flex-direction: column;
        gap: 2px;
    }

}
/* =========================
   FINAL HOW IT WORKS
========================= */

.how-it-works {
    padding: 100px 8%;

    background: #0c0c0c;
}


.how-header {
    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}


.section-label {
    display: block;

    margin-bottom: 14px;

    color: #777777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.how-header h2 {
    margin-bottom: 18px;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.how-header p {
    color: #999999;

    font-size: 17px;
}


/* STEPS */

.steps-grid {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.step-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background: #151515;

    border: 1px solid #292929;
    border-radius: 12px;

    transition: 0.25s;
}


.step-card:hover {
    transform: translateY(-4px);

    border-color: #4a4a4a;
}


.step-number {
    margin-bottom: auto;

    color: #777777;

    font-size: 34px;
    font-weight: 700;

    line-height: 1;
}


.step-card h3 {
    margin-top: 55px;
    margin-bottom: 10px;

    font-size: 23px;
}


.step-card p {
    color: #999999;

    font-size: 15px;
}


/* MOBILE */

@media (max-width: 800px) {

    .steps-grid {
        grid-template-columns: 1fr;
    }


    .step-card {
        min-height: 210px;
    }

}
/* =========================
   FINAL FAQ
========================= */

.faq {
    max-width: 1400px;

    margin: 0 auto;

    padding: 100px 8%;
}


.faq-header {
    max-width: 720px;

    margin-bottom: 45px;
}


.faq-header h2 {
    margin-top: 12px;
    margin-bottom: 16px;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.faq-header p {
    color: #999999;

    font-size: 17px;

    line-height: 1.7;
}


/* FAQ ITEMS */

.faq-item {
    border-top: 1px solid #303030;
}


.faq-item:last-child {
    border-bottom: 1px solid #303030;
}


.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border: none;

    background: transparent;
    color: white;

    text-align: left;

    font-size: 19px;
    font-weight: 700;

    cursor: pointer;

    transition: color 0.2s;
}


.faq-question:hover {
    color: #cfcfcf;
}


/* PLUS ICON */

.faq-question span {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #3a3a3a;
    border-radius: 50%;

    color: #bdbdbd;

    font-size: 22px;
    font-weight: 400;

    transition:
        transform 0.25s,
        background 0.25s,
        color 0.25s;
}


/* ANSWER */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;
}


.faq-answer p {
    max-width: 800px;

    padding: 0 60px 25px 0;

    color: #999999;

    font-size: 15px;

    line-height: 1.7;
}


/* OPEN STATE */

.faq-item.active .faq-answer {
    max-height: 250px;
}


.faq-item.active .faq-question span {
    transform: rotate(45deg);

    background: white;
    color: black;

    border-color: white;
}


/* MOBILE */

@media (max-width: 650px) {

    .faq {
        padding: 75px 6%;
    }


    .faq-header h2 {
        letter-spacing: -1px;
    }


    .faq-question {
        font-size: 17px;
    }


    .faq-answer p {
        padding-right: 0;
    }

}
.purchase-box .buy-button {
    display: block;
    text-align: center;
    text-decoration: none;
}
/* =========================
   AUTO-HIDE HEADER
========================= */

.site-header {
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}
/* =========================
   FIXED BACKGROUND LOGO
========================= */

body::before {
    content: "";

    position: fixed;

    top: 50%;
    left: 50%;

    width: min(60vw, 700px);
    aspect-ratio: 1 / 1;

    transform: translate(-50%, -50%);

    background-image: url("images/logo-background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.035;

    filter: none;

    pointer-events: none;

    z-index: 0;
}


/* KEEP ALL CONTENT ABOVE THE WATERMARK */

header,
main,
footer {
    position: relative;
    z-index: 1;
}
/* =========================
   TRANSPARENT CONTENT BLOCKS
========================= */

/* AmpliTube 5 section */

#amplitube {
    background: rgba(22, 22, 22, 0.82);
}


/* How It Works section */

.how-it-works {
    background: rgba(12, 12, 12, 0.82);
}
.future-updates {
    padding: 30px 20px 10px;
}

.future-updates-card {
    max-width: 900px;
    margin: 0 auto;

    padding: 28px 30px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
}

.future-updates-eyebrow {
    display: block;
    margin-bottom: 10px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    opacity: 0.65;
}

.future-updates-card h2 {
    margin: 0 0 10px;
}

.future-updates-card p {
    margin: 0;
    line-height: 1.65;
    opacity: 0.78;
}
/* =========================
   LEGAL PAGES
========================= */

.legal-page {
    min-height: 100vh;
}

.legal-hero {
    padding: 150px 24px 55px;
    text-align: center;
}

.legal-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.legal-eyebrow {
    display: block;
    margin-bottom: 14px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;

    opacity: 0.6;
}

.legal-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1;
}

.legal-hero p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.7;

    opacity: 0.7;
}

.legal-content {
    padding: 20px 24px 100px;
}

.legal-block {
    margin-bottom: 22px;
    padding: 28px 30px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(18, 18, 18, 0.82);
    backdrop-filter: blur(8px);
}

.legal-block h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.legal-block p {
    margin: 0 0 14px;
    line-height: 1.75;
    opacity: 0.75;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: inherit;
    font-weight: 600;
}

.legal-updated {
    margin-top: 35px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.45;
}

@media (max-width: 650px) {
    .legal-hero {
        padding-top: 125px;
    }

    .legal-block {
        padding: 22px 20px;
    }
}
.video-embed {
    width: min(100%, 1000px);
    aspect-ratio: 16 / 9;

    margin: 40px auto 0;

    border-radius: 18px;
    overflow: hidden;

    background: #000;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-embed iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}
.video-link-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.video-link-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.video-link-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.video-link-preview:hover img {
    transform: scale(1.03);
}

.video-link-preview:hover::after {
    background: rgba(0, 0, 0, 0.38);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);

    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 5px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;

    font-size: 30px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.video-watch-label {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;

    transform: translateX(-50%);

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;

    white-space: nowrap;
}