/* ============================================================
   JC MINE WEBSITE
   Main Stylesheet
   ============================================================ */

/* ============================================================
   ROOT VARIABLES
   ============================================================ */

:root {
    --black: #0D0D0D;
    --black-soft: #111111;
    --black-card: #1A1A1A;
    --black-card-light: #202020;

    --gold: #F5B800;
    --gold-light: #FFD54A;
    --gold-dark: #C99400;

    --white: #FFFFFF;
    --white-soft: #E8E8E8;
    --white-muted: #A6A6A6;
    --white-dark: #707070;

    --green: #42D392;

    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 184, 0, 0.28);

    --container: 1180px;

    --radius-small: 10px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-xl: 32px;

    --transition: 0.3s ease;
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
a {
    font-family: "Poppins", sans-serif;
}

button {
    border: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


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

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

    margin: 0 auto;
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    z-index: 1000;

    background: rgba(13, 13, 13, 0.86);

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

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

.nav-container {
    height: 100%;

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

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    width: 130px;
    height: auto;

    object-fit: contain;
}

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

    gap: 34px;
}

.nav-link {
    position: relative;

    color: var(--white-muted);

    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-download {
    padding: 10px 18px;

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

    border-radius: 10px;

    color: var(--gold);

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

    transition: var(--transition);
}

.nav-download:hover {
    background: var(--gold);
    color: var(--black);

    box-shadow:
        0 0 25px rgba(245, 184, 0, 0.25);
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

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

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;

    background: var(--white);

    border-radius: 2px;

    transition: var(--transition);
}


/* ============================================================
   MOBILE NAV
   ============================================================ */

.mobile-nav {
    display: none;

    position: absolute;

    top: 78px;
    left: 0;

    width: 100%;

    padding: 18px 20px 24px;

    background: rgba(13, 13, 13, 0.98);

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

.mobile-nav.open {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.mobile-nav-link {
    padding: 14px 12px;

    color: var(--white-muted);

    font-size: 14px;

    border-radius: 10px;

    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--black-card);

    color: var(--gold);
}

.mobile-download {
    margin-top: 8px;

    background: var(--gold);

    color: var(--black) !important;

    text-align: center;

    font-weight: 700;
}


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

.hero {
    position: relative;

    min-height: 800px;

    padding-top: 78px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;

    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 680px;
}

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

    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 24px;

    background: rgba(245, 184, 0, 0.08);

    border: 1px solid rgba(245, 184, 0, 0.2);

    border-radius: 50px;

    color: var(--gold-light);

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

    letter-spacing: 0.4px;
}

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

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px rgba(245, 184, 0, 0.8);

    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

.hero h1 {
    font-size: clamp(42px, 5.2vw, 72px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 800;

    margin-bottom: 24px;
}

.hero h1 span {
    display: inline;

    color: var(--gold);

    text-shadow:
        0 0 40px rgba(245, 184, 0, 0.16);
}

.hero-description {
    max-width: 610px;

    color: var(--white-muted);

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-flex;

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

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

/* =========================================================
   BRAND / HEADER LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.brand span {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
}

.button-primary {
    background: var(--gold);

    color: var(--black);

    box-shadow:
        0 10px 35px rgba(245, 184, 0, 0.16);
}

.button-primary:hover {
    background: var(--gold-light);

    transform: translateY(-3px);

    box-shadow:
        0 15px 45px rgba(245, 184, 0, 0.28);
}

.button-secondary {
    background: transparent;

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.14);
}

.button-secondary:hover {
    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-3px);
}

.button-arrow {
    font-size: 18px;

    line-height: 0;
}


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

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--white-dark);

    font-size: 11px;
}

.trust-icon {
    display: flex;

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

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: rgba(66, 211, 146, 0.1);

    color: var(--green);

    font-size: 10px;
}


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

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

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

.hero-logo-card {
    position: relative;
    z-index: 3;

    width: 320px;
    height: 320px;

    display: flex;

    flex-direction: column;

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

    gap: 20px;

    background:
        radial-gradient(
            circle at center,
            rgba(245, 184, 0, 0.08),
            rgba(26, 26, 26, 0.95) 60%
        );

    border: 1px solid rgba(245, 184, 0, 0.22);

    border-radius: 50%;

    box-shadow:
        0 0 80px rgba(245, 184, 0, 0.08),
        inset 0 0 50px rgba(245, 184, 0, 0.025);

    animation: floatingLogo 5s ease-in-out infinite;
}

@keyframes floatingLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-card-glow {
    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: var(--gold);

    filter: blur(100px);

    opacity: 0.08;
}

.hero-logo {
    position: relative;
    z-index: 2;

    width: 190px;
    max-height: 100px;

    object-fit: contain;
}

.mining-status {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background: rgba(13, 13, 13, 0.75);

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

    color: var(--white-muted);

    font-size: 10px;
}

.mining-status .status-dot {
    width: 6px;
    height: 6px;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(66, 211, 146, 0.7);
}


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

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(245, 184, 0, 0.1);

    border-radius: 50%;
}

.orbit-one {
    width: 450px;
    height: 450px;

    transform: rotate(-20deg);
}

.orbit-two {
    width: 600px;
    height: 260px;

    transform: rotate(35deg);
}


/* ============================================================
   FLOATING CARDS
   ============================================================ */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 15px;

    background: rgba(26, 26, 26, 0.92);

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

    border-radius: 14px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-card small {
    display: block;

    color: var(--white-dark);

    font-size: 9px;

    margin-bottom: 2px;
}

.floating-card strong {
    display: block;

    color: var(--white);

    font-size: 12px;
}

.floating-icon {
    display: flex;

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

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: rgba(245, 184, 0, 0.1);

    color: var(--gold);

    font-weight: 700;
}

.floating-card-one {
    top: 70px;
    right: 10px;
}

.floating-card-two {
    bottom: 80px;
    left: 15px;

    animation-delay: -2s;
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


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

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;

    top: -180px;
    right: -100px;

    background: var(--gold);

    opacity: 0.045;
}

.hero-glow-two {
    width: 400px;
    height: 400px;

    bottom: -150px;
    left: -150px;

    background: var(--gold);

    opacity: 0.035;
}

.hero-bottom-fade {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 160px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--black)
        );

    pointer-events: none;
}


/* ============================================================
   STATS
   ============================================================ */

.stats-section {
    position: relative;

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

    background: rgba(26, 26, 26, 0.25);
}

.stats-grid {
    min-height: 125px;

    display: grid;

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

    align-items: center;

    gap: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;

    color: var(--gold);

    font-size: 22px;

    font-weight: 800;

    line-height: 1.2;
}

.stat-label {
    display: block;

    margin-top: 4px;

    color: var(--white-dark);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.stat-divider {
    width: 1px;
    height: 35px;

    background: var(--border);
}


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.section {
    padding: 115px 0;
}

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

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2,
.app-content h2,
.referral-content h2 {
    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.18;

    letter-spacing: -1.2px;

    font-weight: 750;

    margin-bottom: 16px;
}

.section-heading h2 span,
.app-content h2 span,
.referral-content h2 span,
.final-cta h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--white-muted);

    font-size: 14px;

    line-height: 1.8;
}


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

.steps-grid {
    display: grid;

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

    gap: 20px;
}

.step-card {
    position: relative;

    padding: 32px;

    min-height: 310px;

    background:
        linear-gradient(
            145deg,
            rgba(32, 32, 32, 0.8),
            rgba(20, 20, 20, 0.8)
        );

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

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

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-7px);

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(245, 184, 0, 0.1);

    font-size: 54px;

    font-weight: 800;
}

.step-icon {
    display: flex;

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

    width: 58px;
    height: 58px;

    margin-bottom: 30px;

    background: rgba(245, 184, 0, 0.08);

    border: 1px solid rgba(245, 184, 0, 0.16);

    border-radius: 16px;

    color: var(--gold);

    font-size: 24px;
}

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

    font-size: 18px;

    font-weight: 700;
}

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

    font-size: 12px;

    line-height: 1.8;
}


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

.features-section {
    background:
        linear-gradient(
            to bottom,
            rgba(26, 26, 26, 0.18),
            transparent
        );
}

.features-grid {
    display: grid;

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

    gap: 18px;
}

.feature-card {
    position: relative;

    min-height: 240px;

    padding: 28px;

    background: var(--black-card);

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

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

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition);
}

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

    border-color: var(--border-gold);
}

.feature-large {
    grid-column: span 2;

    display: flex;

    align-items: flex-start;

    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;

    display: flex;

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

    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    background: rgba(245, 184, 0, 0.08);

    border: 1px solid rgba(245, 184, 0, 0.15);

    border-radius: 14px;

    color: var(--gold);

    font-size: 21px;
}

.feature-large .feature-icon {
    margin-bottom: 0;
}

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

    font-size: 17px;
}

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

    font-size: 12px;

    line-height: 1.8;
}

.feature-decoration {
    position: absolute;

    right: -20px;
    bottom: -25px;

    color: rgba(245, 184, 0, 0.035);

    font-size: 80px;

    font-weight: 800;

    pointer-events: none;
}


/* ============================================================
   REFERRAL SECTION
   ============================================================ */

.referral-section {
    padding: 35px 0 115px;
}

.referral-box {
    position: relative;

    min-height: 430px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 50px;

    padding: 60px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(245, 184, 0, 0.1),
            transparent 35%
        ),
        var(--black-card);

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

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

    overflow: hidden;
}

.referral-box::before {
    content: "";

    position: absolute;

    top: -200px;
    left: -200px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: var(--gold);

    filter: blur(150px);

    opacity: 0.035;
}

.referral-content {
    position: relative;

    z-index: 2;

    max-width: 600px;
}

.referral-content p {
    max-width: 570px;

    margin-bottom: 28px;

    color: var(--white-muted);

    font-size: 13px;

    line-height: 1.9;
}

.referral-visual {
    position: relative;

    min-height: 300px;

    display: flex;

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

.referral-circle {
    width: 210px;
    height: 210px;

    display: flex;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 184, 0, 0.13),
            rgba(245, 184, 0, 0.025) 65%
        );

    border: 1px solid rgba(245, 184, 0, 0.22);

    box-shadow:
        0 0 80px rgba(245, 184, 0, 0.07);
}

.referral-symbol {
    font-size: 65px;

    filter:
        drop-shadow(
            0 0 25px rgba(245, 184, 0, 0.18)
        );
}

.referral-mini-card {
    position: absolute;

    right: 10px;
    bottom: 20px;

    padding: 16px 20px;

    background: rgba(13, 13, 13, 0.92);

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

    border-radius: 14px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.4);
}

.referral-mini-card span {
    display: block;

    margin-bottom: 3px;

    color: var(--white-dark);

    font-size: 9px;
}

.referral-mini-card strong {
    color: var(--gold);

    font-size: 16px;
}


/* ============================================================
   APP SECTION
   ============================================================ */

.app-section {
    overflow: hidden;
}

.app-container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 90px;
}

.app-visual {
    display: flex;

    justify-content: center;
}

.phone-frame {
    position: relative;

    width: 250px;
    height: 500px;

    padding: 8px;

    background: #080808;

    border: 2px solid #292929;

    border-radius: 38px;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(245, 184, 0, 0.04);
}

.phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 60px 18px 25px;

    background:
        radial-gradient(
            circle at top,
            rgba(245, 184, 0, 0.1),
            transparent 38%
        ),
        #0D0D0D;

    border-radius: 30px;

    overflow: hidden;
}

.phone-notch {
    position: absolute;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    width: 85px;
    height: 22px;

    background: #050505;

    border-radius: 20px;
}

.phone-logo {
    width: 115px;

    margin-bottom: 6px;
}

.phone-title {
    color: var(--white-muted);

    font-size: 10px;

    margin-bottom: 40px;
}

.phone-mining-card {
    width: 100%;

    padding: 18px;

    background: var(--black-card);

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

    border-radius: 16px;
}

.phone-mining-card small {
    display: block;

    color: var(--white-dark);

    font-size: 9px;

    margin-bottom: 8px;
}

.phone-mining-card strong {
    display: block;

    color: var(--gold);

    font-size: 15px;

    margin-bottom: 8px;
}

.phone-mining-card span {
    color: var(--white-muted);

    font-size: 9px;
}

.app-content {
    max-width: 600px;
}

.app-content > p {
    color: var(--white-muted);

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 26px;
}

.app-features {
    display: grid;

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

    gap: 13px;

    margin-bottom: 30px;
}

.app-features div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--white-soft);

    font-size: 11px;
}

.app-features span {
    display: flex;

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

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: rgba(66, 211, 146, 0.1);

    color: var(--green);

    font-size: 10px;
}

.download-note {
    display: block;

    margin-top: 10px;

    color: var(--white-dark);

    font-size: 10px;
}


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

.faq-section {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(26, 26, 26, 0.22)
        );
}

.faq-list {
    max-width: 800px;

    margin: 0 auto;
}

.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 5px;

    background: transparent;

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;
}

.faq-plus {
    display: flex;

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

    width: 30px;
    height: 30px;

    flex-shrink: 0;

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

    border-radius: 50%;

    color: var(--gold);

    font-size: 19px;

    transition: var(--transition);
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);

    background: rgba(245, 184, 0, 0.08);

    border-color: var(--border-gold);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;

    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--white-muted);

    font-size: 12px;

    line-height: 1.8;
}


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

.final-cta {
    position: relative;

    padding: 110px 0;

    text-align: center;

    overflow: hidden;

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

.cta-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 500px;
    height: 250px;

    border-radius: 50%;

    background: var(--gold);

    filter: blur(150px);

    opacity: 0.05;

    pointer-events: none;
}

.cta-content {
    position: relative;

    z-index: 2;
}

.cta-logo {
    width: 130px;

    margin: 0 auto 25px;
}

.final-cta h2 {
    max-width: 700px;

    margin: 0 auto 15px;

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

    line-height: 1.2;

    letter-spacing: -1.3px;
}

.final-cta p {
    max-width: 550px;

    margin: 0 auto 28px;

    color: var(--white-muted);

    font-size: 13px;
}


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

.site-footer {
    padding-top: 65px;

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

    background: #090909;
}

.footer-grid {
    display: grid;

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

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo {
    width: 125px;

    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 270px;

    color: var(--white-dark);

    font-size: 11px;

    line-height: 1.8;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

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

    color: var(--white);

    font-size: 12px;
}

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

    font-size: 11px;

    transition: var(--transition);
}

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

.footer-bottom {
    min-height: 70px;

    display: flex;

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

    gap: 20px;

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

    color: var(--white-dark);

    font-size: 9px;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

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

        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
    }

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

    .feature-large {
        grid-column: span 1;

        display: block;
    }

    .feature-large .feature-icon {
        margin-bottom: 20px;
    }

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

    .referral-box {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 20px;
    }

    .referral-content {
        margin: 0 auto;
    }

    .referral-visual {
        min-height: 270px;
    }

    .app-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .app-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .app-features {
        text-align: left;
    }

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

    .footer-column:last-child {
        grid-column: 2;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 700px) {

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

    .site-header {
        height: 70px;
    }

    .brand-logo {
        width: 105px;
    }

    .desktop-nav,
    .nav-download {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero {
        min-height: auto;

        padding-top: 70px;
    }

    .hero-container {
        padding-top: 70px;
        padding-bottom: 60px;

        gap: 10px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 54px);

        letter-spacing: -1.8px;
    }

    .hero-description {
        font-size: 13px;

        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .button {
        width: 100%;
    }

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

    .hero-visual {
        min-height: 370px;
    }

    .hero-logo-card {
        width: 245px;
        height: 245px;
    }

    .hero-logo {
        width: 145px;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 400px;
        height: 190px;
    }

    .floating-card {
        padding: 10px 11px;
    }

    .floating-card-one {
        top: 25px;
        right: 0;
    }

    .floating-card-two {
        bottom: 25px;
        left: 0;
    }

    .floating-icon {
        width: 29px;
        height: 29px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;

        padding: 30px 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 8px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .app-content h2,
    .referral-content h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 12px;
    }

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

    .step-card {
        min-height: 270px;

        padding: 27px;
    }

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

    .feature-card {
        min-height: auto;
    }

    .feature-large {
        grid-column: span 1;
    }

    .referral-section {
        padding: 10px 0 80px;
    }

    .referral-box {
        padding: 38px 24px;

        border-radius: 24px;
    }

    .referral-content p {
        font-size: 12px;
    }

    .referral-visual {
        min-height: 250px;
    }

    .referral-circle {
        width: 170px;
        height: 170px;
    }

    .referral-symbol {
        font-size: 50px;
    }

    .referral-mini-card {
        right: 0;
        bottom: 10px;
    }

    .app-features {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .phone-frame {
        width: 215px;
        height: 430px;
    }

    .phone-logo {
        width: 95px;
    }

    .final-cta {
        padding: 80px 0;
    }

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

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 18px 0;

        gap: 5px;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 35px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-logo-card {
        width: 215px;
        height: 215px;
    }

    .hero-logo {
        width: 125px;
    }

    .floating-card {
        transform: scale(0.9);
    }

    .floating-card-one {
        right: -5px;
    }

    .floating-card-two {
        left: -5px;
    }

    .stats-grid {
        gap: 18px;
    }

    .section-heading h2,
    .app-content h2,
    .referral-content h2 {
        font-size: 27px;
    }
}


/* ============================================================
   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;
    }
}
/* =========================================================
   HEADER LOGO — FINAL SIZE
========================================================= */

.site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
}

.site-header .brand img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    object-fit: contain;
    display: block;
}

.site-header .brand span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
