/* =========================================================
   LIMITLEZZ GLOBAL CSS
   ========================================================= */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --purple: #8b5cf6;
    --purple-light: #c084fc;
    --purple-dark: #6d28d9;

    --bg: #050505;
    --card-bg: rgba(15, 15, 20, 0.72);

    --combustion-orange: #ff6a00;
    --combustion-red: #ff2600;
    --combustion-yellow: #ffb300;
    --combustion-bg: #050505;
}

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

body {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)
        ),
        url("../assets/obsidian-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* =========================================================
   GLOBAL PURPLE ATMOSPHERE
   ========================================================= */

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    width: 500px;
    height: 100%;

    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, 0.18),
            transparent 70%
        );
}

body::before {
    left: -250px;
}

body::after {
    right: -250px;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: fixed;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: min(95%, 1320px);
    height: 74px;

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

    padding: 0 28px;

    background: rgba(10, 10, 18, 0.82);

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

    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 22px;

    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.12),
        0 0 24px rgba(139, 92, 246, 0.12),
        0 15px 45px rgba(0, 0, 0, 0.45);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    z-index: 9999;
}

.navbar:hover {
    border-color: rgba(139, 92, 246, 0.45);

    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.45),
        0 0 25px rgba(139, 92, 246, 0.25),
        0 0 70px rgba(139, 92, 246, 0.15),
        0 20px 55px rgba(0, 0, 0, 0.55);
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.96);

    border-color: rgba(139, 92, 246, 0.35);

    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.20),
        0 20px 50px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   LOGO
   ========================================================= */

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

    gap: 12px;

    text-decoration: none;

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

    color: white;
}

.logo i {
    font-size: 32px;
    color: var(--purple);
}

.logo-text span {
    color: var(--purple);
}

/* =========================================================
   NAV LINKS
   ========================================================= */

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

    gap: 26px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 500;

    color: white;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.nav-links a:hover {
    background: rgba(139, 92, 246, 0.10);
    color: var(--purple-light);
}

.nav-links a.active {
    color: var(--purple-light);
    background: rgba(139, 92, 246, 0.10);
}

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

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

    gap: 12px;
}

.login-btn {
    padding: 11px 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    color: white;

    text-decoration: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.login-btn:hover {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.08);
}

.start-btn {
    padding: 11px 22px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #c084fc
        );

    color: white;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.start-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(139, 92, 246, 0.35);
}

/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;

    gap: 8px;
}

.dropdown .arrow {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    display: none;
    flex-direction: column;

    width: 240px;

    padding: 10px;

    background: rgba(10, 10, 18, 0.98);

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

    border: 1px solid rgba(139, 92, 246, 0.25);

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(139, 92, 246, 0.12);

    z-index: 99999;

    animation: dropdown 0.25s ease;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border-radius: 12px;

    text-decoration: none;

    color: white;

    font-weight: 500;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.dropdown-menu a:hover {
    background: rgba(139, 92, 246, 0.10);

    color: var(--purple-light);

    padding-left: 22px;
}

@keyframes dropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   PROFILE
   ========================================================= */

.user-profile {
    position: relative;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    border-radius: 14px;

    background: rgba(139, 92, 246, 0.08);

    cursor: pointer;

    transition: background 0.25s ease;
}

.user-profile:hover {
    background: rgba(139, 92, 246, 0.16);
}

.user-profile img {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 2px solid var(--purple);

    object-fit: cover;
}

.user-profile span {
    font-weight: 600;
}

/* =========================================================
   PROFILE DROPDOWN
   ========================================================= */

.profile-dropdown {
    position: absolute;

    top: 60px;
    right: 0;

    width: 240px;

    display: none;
    flex-direction: column;

    background: rgba(10, 10, 18, 0.96);

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

    border: 1px solid rgba(139, 92, 246, 0.22);

    border-radius: 18px;

    padding: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5);

    z-index: 99999;
}

.profile-dropdown.show {
    display: flex;
}

.profile-dropdown a {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    transition:
        background 0.25s ease,
        padding-left 0.25s ease;
}

.profile-dropdown a:hover {
    background: rgba(139, 92, 246, 0.12);

    padding-left: 18px;
}

.profile-dropdown hr {
    margin: 8px 0;

    border: none;

    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}

.logout {
    color: #ff7070 !important;
}

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

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding:
        170px 20px
        80px;
}

.status {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    margin-bottom: 35px;

    background: rgba(15, 15, 20, 0.82);

    border:
        1px solid
        rgba(34, 197, 94, 0.35);

    border-radius: 999px;

    backdrop-filter: blur(10px);

    font-size: 14px;

    font-weight: 600;
}

.status i {
    color: #22c55e;
}

.hero h1 {
    font-size: 82px;

    font-weight: 800;

    letter-spacing: -3px;

    line-height: 1.05;

    max-width: 950px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            90deg,
            #fff,
            #c084fc
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 720px;

    font-size: 19px;

    line-height: 1.8;

    color: #d4d4d4;

    margin-bottom: 40px;
}

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

.buttons {
    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

.btn {
    padding: 16px 34px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #c084fc
        );

    color: white;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(139, 92, 246, 0.35);
}

.btn-outline {
    padding: 16px 34px;

    border-radius: 14px;

    border:
        1px solid
        rgba(139, 92, 246, 0.55);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.btn-outline:hover {
    background:
        rgba(139, 92, 246, 0.10);

    border-color:
        rgba(192, 132, 252, 0.8);
}

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

.stats {
    display: flex;

    justify-content: center;

    gap: 65px;

    margin-top: 55px;

    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 42px;

    font-weight: 800;
}

.stat p {
    margin-top: 6px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #9ca3af;
}

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

.section {
    padding: 110px 8%;
}

.section h2 {
    text-align: center;

    font-size: 48px;

    margin-bottom: 60px;
}

/* =========================================================
   GRID
   ========================================================= */

.grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(290px, 1fr)
        );

    gap: 28px;

    align-items: start;
}

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

.card {
    background: var(--card-bg);

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

    padding: 32px;

    border-radius: 20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

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

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

    border-color:
        rgba(139, 92, 246, 0.35);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(139, 92, 246, 0.12);
}

.card h3 {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 24px;

    margin-bottom: 18px;
}

.card h3 i {
    color: var(--purple);
}

.card p {
    color: #d4d4d4;

    line-height: 1.8;
}

/* =========================================================
   TERMINAL
   ========================================================= */

.terminal {
    max-width: 900px;

    margin: auto;

    background: #090909;

    padding: 35px;

    border-radius: 20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35);

    overflow-x: auto;
}

pre {
    font-size: 15px;

    line-height: 1.8;

    color: #e5e7eb;

    white-space: pre-wrap;
}

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

footer {
    padding: 50px 20px;

    text-align: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    color: #9ca3af;
}

.footer-content h3 {
    font-size: 28px;

    margin-bottom: 10px;

    color: white;
}

.footer-content p {
    margin: 6px 0;
}

/* =========================================================
   CURSOR
   ========================================================= */

.cursor-glow {
    display: none;
}

.trail-dot {
    position: fixed;

    left: 0;
    top: 0;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--purple);

    pointer-events: none;

    z-index: 99999;

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

    box-shadow:
        0 0 8px rgba(139, 92, 246, 0.9),
        0 0 18px rgba(139, 92, 246, 0.7),
        0 0 30px rgba(139, 92, 246, 0.45);
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: var(--purple);

    border-radius: 999px;
}

::selection {
    background: var(--purple);
    color: white;
}

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

/* =========================================================
   COMBUSTION SYSTEM
   ========================================================= */

/*
   IMPORTANT:

   Combustion-BG.png is the SINGLE Combustion background.

   HTML should contain:

   <div class="combustion-page">

       <img
           src="assets/Combustion/Combustion-BG.png"
           class="combustion-bg"
           alt=""
       >

       <div class="combustion-content-layer">
           ...
       </div>

   </div>

   The image is ABSOLUTE, not FIXED.

   Therefore it scrolls together with the page.
*/

/* =========================================================
   COMBUSTION PAGE ROOT
   ========================================================= */

.combustion-page {
    position: relative;

    width: 100%;

    min-height: 300vh;

    overflow: hidden;

    background: var(--combustion-bg);

    isolation: isolate;
}

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

.combustion-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    pointer-events: none;

    user-select: none;

    z-index: -3;

    transform: scale(1.015);

    will-change: transform;
}

/* =========================================================
   COMBUSTION DARK OVERLAY
   ========================================================= */

.combustion-page::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.16) 25%,
            rgba(0, 0, 0, 0.20) 55%,
            rgba(0, 0, 0, 0.60) 100%
        );
}

/* =========================================================
   COMBUSTION ATMOSPHERE
   ========================================================= */

.combustion-page::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 90, 0, 0.12),
            transparent 32%
        ),

        radial-gradient(
            circle at 50% 65%,
            rgba(255, 50, 0, 0.16),
            transparent 38%
        ),

        linear-gradient(
            180deg,
            transparent,
            rgba(20, 3, 0, 0.35)
        );
}

/* =========================================================
   COMBUSTION CONTENT LAYER
   ========================================================= */

.combustion-content-layer {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 300vh;
}

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

.combustion-hero {
    position: relative;

    min-height: 100vh;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding:
        160px 25px
        100px;
}

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

.combustion-hero-content {
    position: relative;

    z-index: 5;

    width: min(100%, 950px);

    margin: auto;
}

/* =========================================================
   LIMITLEZZ BADGE
   ========================================================= */

.limitless-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 10px 20px;

    border-radius: 999px;

    border:
        1px solid
        rgba(139, 92, 246, 0.50);

    background:
        rgba(20, 10, 30, 0.45);

    backdrop-filter: blur(12px);

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

    color: #d8b4fe;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    box-shadow:
        0 0 30px
        rgba(139, 92, 246, 0.08);
}

.limitless-badge i {
    color: var(--purple-light);
}

/* =========================================================
   COMBUSTION HERO TITLE
   ========================================================= */

.hero-title {
    margin-top: 35px;

    font-size:
        clamp(
            58px,
            9vw,
            115px
        );

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 800;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 30%,
            #d8b4fe 55%,
            #8b5cf6 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 60px
        rgba(139, 92, 246, 0.12);
}

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

.hero-subtitle {
    margin-top: 30px;

    color: #d8b4fe;

    font-size:
        clamp(
            20px,
            3vw,
            30px
        );

    font-weight: 500;
}

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

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

    margin:
        28px auto 0;

    color:
        rgba(235, 230, 245, 0.78);

    font-size: 17px;

    line-height: 1.85;
}

/* =========================================================
   EXPLORE BUTTON
   ========================================================= */

.explore-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 35px;

    padding: 15px 30px;

    border-radius: 13px;

    border:
        1px solid
        rgba(139, 92, 246, 0.45);

    background:
        rgba(139, 92, 246, 0.10);

    color: white;

    text-decoration: none;

    font-weight: 700;

    backdrop-filter: blur(10px);

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

.explore-btn:hover {
    transform: translateY(-4px);

    background:
        rgba(139, 92, 246, 0.20);

    border-color:
        rgba(192, 132, 252, 0.80);

    box-shadow:
        0 15px 40px
        rgba(139, 92, 246, 0.20);
}

/* =========================================================
   COMBUSTION TRANSITION
   ========================================================= */

.combustion-transition {
    position: relative;

    min-height: 90vh;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding:
        120px 25px;

    overflow: hidden;
}

/*
   No second background image here.

   The same Combustion-BG.png continues behind
   the entire Combustion page.
*/

/* =========================================================
   TRANSITION GLOW
   ========================================================= */

.combustion-transition::before {
    content: "";

    position: absolute;

    width: 900px;

    height: 500px;

    left: 50%;

    bottom: -250px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 80, 0, 0.30),
            rgba(255, 30, 0, 0.10),
            transparent 70%
        );

    filter: blur(45px);

    pointer-events: none;

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

@keyframes combustionGlow {
    0%,
    100% {
        transform:
            translateX(-50%)
            scale(0.85);

        opacity: 0.55;
    }

    50% {
        transform:
            translateX(-50%)
            scale(1.1);

        opacity: 1;
    }
}

/* =========================================================
   TRANSITION CONTENT
   ========================================================= */

.transition-content {
    position: relative;

    z-index: 5;

    max-width: 850px;

    margin: auto;
}

/* =========================================================
   TRANSITION LABEL
   ========================================================= */

.transition-label {
    display: inline-block;

    color: #ff9d42;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 5px;

    margin-bottom: 25px;
}

/* =========================================================
   TRANSITION TITLE
   ========================================================= */

.transition-title {
    font-size:
        clamp(
            55px,
            9vw,
            110px
        );

    line-height: 0.88;

    letter-spacing: -5px;

    background:
        linear-gradient(
            180deg,
            #fff7d1 0%,
            #ffcf5a 35%,
            #ff7200 65%,
            #ff2600 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 60px
        rgba(255, 80, 0, 0.18);
}

/* =========================================================
   TRANSITION DESCRIPTION
   ========================================================= */

.transition-description {
    margin-top: 35px;

    color:
        rgba(255, 220, 195, 0.85);

    font-size: 18px;

    line-height: 1.8;
}

/* =========================================================
   COMBUSTION PRODUCT SECTION
   ========================================================= */

.combustion-section {
    position: relative;

    width: 100%;

    min-height: 110vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding:
        130px 25px;

    overflow: hidden;
}

/* =========================================================
   COMBUSTION SECTION GLOW
   ========================================================= */

.combustion-section::before {
    content: "";

    position: absolute;

    width: 900px;

    height: 900px;

    left: 50%;

    top: 50%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 70, 0, 0.22),
            rgba(255, 30, 0, 0.08) 40%,
            transparent 70%
        );

    filter: blur(40px);

    pointer-events: none;

    animation:
        combustionCore
        6s
        ease-in-out
        infinite;
}

@keyframes combustionCore {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(0.85);

        opacity: 0.55;
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.12);

        opacity: 1;
    }
}

/* =========================================================
   COMBUSTION CONTENT
   ========================================================= */

.combustion-content {
    position: relative;

    z-index: 10;

    width: min(100%, 950px);

    margin: auto;

    display: flex;

    flex-direction: column;

    align-items: center;
}

/* =========================================================
   COMBUSTION LOGO
   ========================================================= */

.combustion-logo {
    width:
        clamp(
            130px,
            18vw,
            230px
        );

    height:
        clamp(
            130px,
            18vw,
            230px
        );

    object-fit: contain;

    margin-bottom: 28px;

    filter:
        drop-shadow(
            0 0 35px
            rgba(255, 80, 0, 0.60)
        );

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

@keyframes combustionLogoPulse {
    0%,
    100% {
        transform: scale(0.98);

        filter:
            drop-shadow(
                0 0 28px
                rgba(255, 80, 0, 0.50)
            );
    }

    50% {
        transform: scale(1.03);

        filter:
            drop-shadow(
                0 0 50px
                rgba(255, 80, 0, 0.80)
            );
    }
}

/* =========================================================
   BRAND BADGE
   ========================================================= */

.brand-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        9px 19px;

    border-radius: 999px;

    border:
        1px solid
        rgba(255, 100, 0, 0.60);

    background:
        rgba(255, 70, 0, 0.09);

    color: #ffad58;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 30px
        rgba(255, 60, 0, 0.08);
}

.brand-badge i {
    color: #ff6a00;
}

/* =========================================================
   COMBUSTION TITLE
   ========================================================= */

.combustion-title {
    margin-top: 30px;

    font-size:
        clamp(
            60px,
            10vw,
            130px
        );

    line-height: 0.82;

    letter-spacing: -6px;

    font-weight: 800;

    background:
        linear-gradient(
            180deg,
            #fff8d6 0%,
            #ffd15a 28%,
            #ff8a00 52%,
            #ff4300 76%,
            #c91900 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 55px
        rgba(255, 60, 0, 0.25);
}

/* =========================================================
   COMBUSTION TITLE SUBTEXT
   ========================================================= */

.combustion-title span {
    display: block;

    margin-top: 25px;

    font-size: 0.27em;

    line-height: 1;

    letter-spacing: 12px;

    color: #ff8a00;

    background: none;

    -webkit-text-fill-color: #ff8a00;

    text-shadow:
        0 0 25px
        rgba(255, 80, 0, 0.35);
}

/* =========================================================
   COMBUSTION DESCRIPTION
   ========================================================= */

.combustion-description {
    max-width: 680px;

    margin:
        38px auto 0;

    color:
        rgba(255, 221, 204, 0.88);

    font-size: 19px;

    line-height: 1.85;
}

/* =========================================================
   TRY US BUTTON
   ========================================================= */

.try-us {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 38px;

    padding:
        17px 45px;

    min-width: 190px;

    border-radius: 13px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 0.5px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff6a00,
            #ff2600
        );

    border:
        1px solid
        rgba(255, 180, 100, 0.20);

    box-shadow:
        0 0 30px
        rgba(255, 70, 0, 0.35),
        0 15px 40px
        rgba(255, 40, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.try-us:hover {
    transform:
        translateY(-5px)
        scale(1.04);

    filter: brightness(1.08);

    box-shadow:
        0 0 60px
        rgba(255, 70, 0, 0.70),
        0 20px 50px
        rgba(255, 40, 0, 0.25);
}

.try-us i:first-child {
    color: #fff0c0;
}

.try-us i:last-child {
    font-size: 14px;
}

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

.combustion-footer {
    position: relative;

    background: #050505;

    border-top:
        1px solid
        rgba(255, 70, 0, 0.25);

    z-index: 5;
}

.combustion-footer .footer-content h3 {
    color: #ff6a00;

    text-shadow:
        0 0 20px
        rgba(255, 70, 0, 0.30);
}

/* =========================================================
   COMBUSTION ISOLATION
   ========================================================= */

.combustion-page .combustion-transition,
.combustion-page .combustion-section {
    isolation: isolate;
}

/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

.mobile-actions {
    display: none;
}

.mobile-menu {
    display: none;
}

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

.mobile-menu-btn {
    background: none;

    border: none;

    outline: none;

    cursor: pointer;

    color: white;

    font-size: 24px;
}

.mobile-vps {
    text-decoration: none;

    color: white;

    font-weight: 700;
}

/* =========================================================
   GLOBAL MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        height: 72px;

        padding:
            0 18px;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-actions {
        display: flex;

        align-items: center;

        gap: 18px;

        margin-left: auto;
    }

    .mobile-menu {
        position: absolute;

        top: 88px;

        left: 15px;

        right: 15px;

        display: none;

        flex-direction: column;

        gap: 10px;

        padding: 18px;

        background:
            rgba(10, 10, 18, 0.98);

        backdrop-filter:
            blur(18px);

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

        border:
            1px solid
            rgba(139, 92, 246, 0.22);

        border-radius: 18px;

        box-shadow:
            0 20px 45px
            rgba(0, 0, 0, 0.45);

        z-index: 99999;
    }

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

    .mobile-menu a {
        display: flex;

        align-items: center;

        gap: 12px;

        padding: 14px;

        text-decoration: none;

        color: white;

        border-radius: 12px;

        transition:
            background 0.25s ease;
    }

    .mobile-menu a:hover {
        background:
            rgba(139, 92, 246, 0.12);
    }

    .hero {
        padding-top: 140px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;

        align-items: center;
    }

    .btn,
    .btn-outline {
        width: 260px;

        text-align: center;
    }

    .stats {
        gap: 25px;
    }

    .section {
        padding:
            80px 20px;
    }

    .section h2 {
        font-size: 36px;
    }

    .card {
        padding: 24px;
    }

    .trail-dot {
        display: none;
    }

    /* =========================
       COMBUSTION MOBILE
       ========================= */

    .combustion-page {
        min-height: 320vh;
    }

    .combustion-content-layer {
        min-height: 320vh;
    }

    .combustion-bg {
        width: 110%;

        left: -5%;

        object-position:
            center center;
    }

    .combustion-hero {
        min-height: 100vh;

        padding:
            145px 20px
            90px;
    }

    .hero-title {
        font-size:
            clamp(
                52px,
                14vw,
                78px
            );

        letter-spacing: -3px;
    }

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

        line-height: 1.75;
    }

    .combustion-transition {
        min-height: 85vh;

        padding:
            100px 20px;
    }

    .transition-label {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .transition-title {
        font-size:
            clamp(
                50px,
                15vw,
                78px
            );

        letter-spacing: -3px;
    }

    .transition-description {
        font-size: 16px;
    }

    .combustion-section {
        min-height: 105vh;

        padding:
            100px 20px;
    }

    .combustion-title {
        font-size:
            clamp(
                55px,
                15vw,
                85px
            );

        letter-spacing: -4px;
    }

    .combustion-title span {
        letter-spacing: 7px;

        margin-top: 20px;
    }

    .combustion-description {
        font-size: 16px;

        line-height: 1.75;
    }

    .try-us {
        padding:
            16px 36px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 500px) {

    .navbar {
        width: calc(100% - 24px);

        top: 12px;
    }

    .logo {
        font-size: 23px;
    }

    .logo i {
        font-size: 27px;
    }

    .combustion-bg {
        width: 125%;

        left: -12.5%;

        object-position:
            center center;
    }

    .limitless-badge {
        font-size: 11px;

        padding:
            8px 15px;
    }

    .hero-title {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .combustion-logo {
        width: 140px;

        height: 140px;
    }

    .brand-badge {
        font-size: 11px;

        padding:
            8px 14px;
    }

    .combustion-title {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .combustion-title span {
        font-size: 0.25em;

        letter-spacing: 5px;
    }

    .combustion-description {
        font-size: 15px;
    }

    .try-us {
        width: 220px;
    }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   FINAL GLOBAL SAFETY
   ========================================================= */

a {
    -webkit-user-drag: none;
}

button {
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

button:focus-visible,
a:focus-visible {
    outline:
        2px solid
        var(--purple-light);

    outline-offset: 3px;
}