/* =========================================================
   SQUAD FLUX
   FINAL MODERN NAVY / PURPLE WEBSITE UI
========================================================= */


/* ==============================
   ROOT COLORS
============================== */

:root {
    --bg-main: #11142d;
    --bg-deep: #0c1026;
    --bg-soft: #191d3c;

    --purple: #9c63ff;
    --purple-light: #c58cff;

    --pink: #ec73db;
    --cyan: #59d9ff;
    --blue: #5d9cff;

    --yellow: #ffd76a;
    --orange: #ff9d58;

    --white: #ffffff;
    --text-main: #f7f8ff;
    --text-soft: #bec5df;
    --text-muted: #9299b7;

    --line: rgba(255, 255, 255, 0.10);

    --glass: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.10);

    --shadow:
        0 28px 70px rgba(2, 5, 24, 0.38);

    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 32px;
}


/* ==============================
   RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    position: relative;

    min-height: 100vh;

    overflow-x: hidden;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text-main);

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(150, 84, 255, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 22%,
            rgba(61, 160, 255, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 70% 85%,
            rgba(236, 115, 219, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #10142d 0%,
            #151832 48%,
            #10142a 100%
        );

    background-attachment: fixed;
}


img {
    display: block;
    max-width: 100%;
}


a {
    text-decoration: none;
}


/* ==============================
   DECORATIVE BACKGROUND
============================== */

.bg-orb {
    position: fixed;

    border-radius: 50%;

    pointer-events: none;

    z-index: -5;

    filter: blur(60px);
}


.orb-one {
    width: 420px;
    height: 420px;

    left: -170px;
    top: 90px;

    background:
        rgba(170, 83, 255, 0.16);
}


.orb-two {
    width: 450px;
    height: 450px;

    right: -170px;
    bottom: 50px;

    background:
        rgba(45, 158, 255, 0.13);
}


/* Curved neon decorations */

.curve-line {
    position: fixed;

    pointer-events: none;

    z-index: -3;

    border-radius: 50%;
}


.curve-one {
    width: 220px;
    height: 220px;

    top: -130px;
    left: -80px;

    border: 9px solid transparent;

    border-right-color: var(--pink);
    border-bottom-color: var(--purple-light);

    transform: rotate(25deg);

    filter:
        drop-shadow(
            0 0 12px
            rgba(236, 115, 219, 0.35)
        );
}


.curve-two {
    width: 300px;
    height: 300px;

    bottom: -230px;
    right: 80px;

    border: 11px solid transparent;

    border-left-color: var(--yellow);
    border-top-color: var(--orange);

    transform: rotate(-25deg);

    filter:
        drop-shadow(
            0 0 12px
            rgba(255, 215, 106, 0.24)
        );
}


/* ==============================
   HEADER
============================== */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    padding: 14px 0;

    background:
        rgba(14, 17, 39, 0.76);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.nav-container {
    width: min(1180px, 91%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 28px;
}


/* ==============================
   BRAND
============================== */

.brand {
    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.nav-logo {
    width: 46px;
    height: 46px;

    border-radius: 12px;

    object-fit: cover;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.30);
}


.brand-name {
    color: var(--white);

    font-size: 20px;

    font-weight: 750;

    letter-spacing: -0.3px;
}


.brand-name strong {
    color: var(--cyan);
}


/* ==============================
   NAVIGATION
============================== */

.main-nav {
    display: flex;

    align-items: center;

    gap: 5px;
}


.main-nav a {
    padding:
        10px
        14px;

    border-radius: 10px;

    color: #c6cbe2;

    font-size: 13px;

    font-weight: 600;

    transition:
        0.25s ease;
}


.main-nav a:hover {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.07);
}


.main-nav a.active {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            rgba(156, 99, 255, 0.25),
            rgba(89, 217, 255, 0.13)
        );

    border:
        1px solid
        rgba(197, 140, 255, 0.20);
}


/* =========================================================
   NEW HOME PAGE
========================================================= */


/* ==============================
   HERO
============================== */

.hero-new {
    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    padding:
        85px 0
        80px;
}


.hero-new-container {
    width: min(1180px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(360px, 0.96fr);

    align-items: center;

    gap: 75px;
}


/* ==============================
   HERO LEFT
============================== */

.hero-left {
    max-width: 640px;
}


.hero-tag {
    display: inline-block;

    margin-bottom: 20px;

    padding:
        8px
        13px;

    border:
        1px solid
        rgba(197, 140, 255, 0.22);

    border-radius: 999px;

    color: #dccbff;

    background:
        rgba(156, 99, 255, 0.10);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.hero-left h1 {
    max-width: 650px;

    color: var(--white);

    font-size:
        clamp(47px, 5.4vw, 72px);

    font-weight: 820;

    letter-spacing: -3px;

    line-height: 1.03;
}


.hero-left h1 span {
    display: block;

    margin-top: 6px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #8fdcff 45%,
            #c491ff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.hero-left > p {
    max-width: 590px;

    margin-top: 24px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.8;
}


/* ==============================
   BUTTONS
============================== */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}


.primary-button,
.secondary-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0
        23px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 750;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.primary-button {
    color: #17172d;

    background:
        linear-gradient(
            135deg,
            #ffac53,
            #ffd76a
        );

    box-shadow:
        0 12px 30px
        rgba(255, 171, 82, 0.18);
}


.primary-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(255, 171, 82, 0.25);
}


.secondary-button {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.secondary-button:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255, 255, 255, 0.10);
}


/* ==============================
   MINI STATS
============================== */

.mini-stats {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 37px;
}


.mini-stat {
    min-width: 112px;

    padding:
        11px
        15px;

    border-left:
        2px solid
        var(--purple-light);

    background:
        linear-gradient(
            90deg,
            rgba(156, 99, 255, 0.09),
            transparent
        );
}


.mini-stat strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}


.mini-stat span {
    display: block;

    margin-top: 3px;

    color: var(--text-muted);

    font-size: 11px;
}


/* ==============================
   HERO RIGHT
============================== */

.hero-right {
    display: flex;

    justify-content: center;
}


.hero-image-card {
    position: relative;

    width: min(470px, 100%);

    padding:
        13px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.035)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    box-shadow:
        0 35px 80px
        rgba(2, 4, 20, 0.45);

    backdrop-filter: blur(15px);
}


.hero-image-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -75px;
    bottom: -60px;

    border-radius: 50%;

    background:
        rgba(156, 99, 255, 0.20);

    filter: blur(60px);

    z-index: -1;
}


.hero-top-bar {
    height: 29px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        0
        4px;
}


.hero-top-bar span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.36);
}


.hero-logo-wrap {
    overflow: hidden;

    border-radius: 15px;

    background:
        #0c1025;
}


.hero-logo-wrap img {
    width: 100%;

    aspect-ratio: 1 / 0.72;

    object-fit: cover;

    object-position: center;
}


.hero-card-content {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    align-items: center;

    gap: 20px;

    padding:
        20px
        10px
        10px;
}


.hero-card-text h3 {
    color: var(--white);

    font-size: 16px;
}


.hero-card-text p {
    max-width: 290px;

    margin-top: 6px;

    color: var(--text-muted);

    font-size: 11.5px;

    line-height: 1.55;
}


.hero-badge {
    padding-left: 18px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.hero-badge span,
.hero-badge strong {
    display: block;
}


.hero-badge span {
    color: var(--text-muted);

    font-size: 10px;
}


.hero-badge strong {
    margin-top: 3px;

    color: var(--cyan);

    font-size: 12px;
}


/* ==============================
   INTRO STRIP
============================== */

.intro-strip {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    background:
        rgba(255, 255, 255, 0.025);
}


.intro-strip-container {
    width: min(1180px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}


.intro-item {
    padding:
        27px
        30px;
}


.intro-item + .intro-item {
    border-left:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.intro-item strong {
    display: block;

    margin-bottom: 6px;

    color: var(--white);

    font-size: 14px;
}


.intro-item span {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.5;
}


/* ==============================
   HOME ABOUT
============================== */

.home-about {
    padding:
        100px 0;
}


.home-about-container {
    width: min(1080px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        0.78fr
        1.22fr;

    align-items: center;

    gap: 80px;
}


.home-about-image {
    position: relative;
}


.home-about-image::before {
    content: "";

    position: absolute;

    width: 78%;

    height: 78%;

    left: -15px;

    bottom: -15px;

    border:
        1px solid
        rgba(236, 115, 219, 0.24);

    border-radius: 28px;

    z-index: -1;
}


.home-about-image img {
    width: 100%;

    max-width: 340px;

    border-radius: 27px;

    box-shadow: var(--shadow);
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.home-about-text h2 {
    max-width: 600px;

    color: var(--white);

    font-size:
        clamp(31px, 4vw, 45px);

    letter-spacing: -1.6px;

    line-height: 1.12;
}


.home-about-text p {
    max-width: 620px;

    margin-top: 20px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;
}


.text-link {
    display: inline-block;

    margin-top: 25px;

    color: #d5b9ff;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;
}


.text-link:hover {
    color: var(--white);

    transform:
        translateX(4px);
}


/* ==============================
   CTA CLEAN
============================== */

.cta-clean {
    width: min(1080px, 91%);

    margin:
        0 auto
        95px;
}


.cta-clean-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        42px
        46px;

    border-radius: 25px;

    background:
        linear-gradient(
            110deg,
            rgba(156, 99, 255, 0.13),
            rgba(89, 217, 255, 0.06)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.cta-clean-box::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    border:
        13px solid
        rgba(255, 215, 106, 0.20);
}


.cta-clean-box h2 {
    max-width: 600px;

    color: var(--white);

    font-size:
        clamp(27px, 3vw, 39px);

    letter-spacing: -1.2px;
}


.cta-clean-box p {
    max-width: 580px;

    margin-top: 11px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


.cta-clean-box .primary-button {
    position: relative;

    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   EXISTING FEATURES / ABOUT PAGE STYLES
========================================================= */

.hero {
    padding:
        85px 0
        80px;
}


.hero-content {
    width: min(1180px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(340px, 0.96fr);

    align-items: center;

    gap: 70px;
}


.hero-text {
    max-width: 640px;
}


.hero-label {
    display: inline-block;

    margin-bottom: 20px;

    padding:
        8px
        13px;

    border-radius: 999px;

    color: #dccbff;

    background:
        rgba(156, 99, 255, 0.10);

    border:
        1px solid
        rgba(197, 140, 255, 0.20);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.hero-text h1 {
    color: var(--white);

    font-size:
        clamp(45px, 5vw, 67px);

    line-height: 1.04;

    letter-spacing: -2.7px;
}


.hero-text h1 span {
    display: block;

    color: var(--cyan);
}


.hero-description {
    margin-top: 22px;

    color: var(--text-soft);

    font-size: 15.5px;

    line-height: 1.8;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;
}


.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}


.info-item {
    padding:
        10px
        14px;

    border-left:
        2px solid
        var(--purple-light);
}


.info-item strong {
    display: block;

    color: var(--white);

    font-size: 13px;
}


.info-item span {
    display: block;

    margin-top: 3px;

    color: var(--text-muted);

    font-size: 10px;
}


.hero-image {
    display: flex;

    justify-content: center;
}


.logo-card {
    width: min(390px, 100%);

    padding: 13px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    box-shadow: var(--shadow);
}


.logo-card img {
    width: 100%;

    border-radius: 17px;
}


/* ==============================
   COMMON SECTIONS
============================== */

.section-container {
    width: min(1180px, 91%);

    margin: auto;
}


.section-heading {
    max-width: 680px;

    margin:
        0 auto
        48px;

    text-align: center;
}


.section-heading > span,
.section-small-title {
    display: inline-block;

    margin-bottom: 11px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.section-heading h2,
.about-text h2,
.cta-box h2 {
    color: var(--white);

    font-size:
        clamp(30px, 3.6vw, 44px);

    letter-spacing: -1.5px;

    line-height: 1.15;
}


.section-heading p {
    margin-top: 15px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}


/* ==============================
   FEATURE CARDS
============================== */

.experience-section {
    padding:
        90px 0;

    background:
        rgba(255, 255, 255, 0.022);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.feature-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.feature-card {
    padding: 28px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border 0.3s ease;
}


.feature-card:hover {
    transform:
        translateY(-6px);

    background:
        rgba(255, 255, 255, 0.085);

    border-color:
        rgba(197, 140, 255, 0.24);
}


.feature-icon {
    width: 49px;
    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 13px;

    color: #17172d;

    background:
        linear-gradient(
            135deg,
            #b58aff,
            #70dcff
        );

    font-size: 20px;
}


.feature-card h3 {
    color: var(--white);

    font-size: 18px;

    margin-bottom: 10px;
}


.feature-card p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ==============================
   ABOUT PREVIEW OLD PAGES
============================== */

.about-preview {
    padding:
        95px 0;
}


.about-grid {
    display: grid;

    grid-template-columns:
        0.82fr
        1.18fr;

    align-items: center;

    gap: 75px;
}


.about-logo {
    display: flex;

    justify-content: center;
}


.about-logo-box {
    width: min(340px, 100%);

    padding: 12px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    box-shadow: var(--shadow);
}


.about-logo-box img {
    width: 100%;

    border-radius: 16px;
}


.about-text > p {
    margin-top: 17px;

    color: var(--text-soft);

    font-size: 14.5px;

    line-height: 1.8;
}


.about-points {
    display: grid;

    gap: 12px;

    margin-top: 25px;
}


.point {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.point > span {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #10142d;

    background: var(--cyan);

    font-size: 11px;

    font-weight: 800;
}


.point p {
    padding-top: 2px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.55;
}


.learn-more {
    display: inline-block;

    margin-top: 27px;

    color: #d5b9ff;

    font-size: 13px;

    font-weight: 700;
}


/* ==============================
   OLD CTA
============================== */

.cta-section {
    width: min(1080px, 91%);

    margin:
        0 auto
        90px;
}


.cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        40px
        44px;

    border-radius: 24px;

    background:
        linear-gradient(
            110deg,
            rgba(156, 99, 255, 0.12),
            rgba(89, 217, 255, 0.055)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.cta-box div > span {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.cta-box p {
    max-width: 600px;

    margin-top: 11px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


/* ==============================
   FOOTER
============================== */

.site-footer {
    padding-top: 55px;

    background:
        rgba(7, 10, 27, 0.56);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.footer-container {
    width: min(1180px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.6fr
        0.7fr
        0.7fr;

    gap: 60px;

    padding-bottom: 45px;
}


.footer-about {
    max-width: 440px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}


.footer-brand img {
    width: 46px;
    height: 46px;

    object-fit: cover;

    border-radius: 12px;
}


.footer-brand strong {
    color: var(--white);

    font-size: 18px;
}


.footer-about > p {
    margin-top: 15px;

    color: var(--text-muted);

    font-size: 12.5px;

    line-height: 1.7;
}


.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-links h4 {
    margin-bottom: 6px;

    color: var(--white);

    font-size: 13px;
}


.footer-links a {
    color: var(--text-muted);

    font-size: 12.5px;

    transition: 0.25s ease;
}


.footer-links a:hover {
    color: var(--cyan);

    transform:
        translateX(3px);
}


.footer-bottom {
    width: min(1180px, 91%);

    margin: auto;

    padding:
        18px 0;

    text-align: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.footer-bottom p {
    color: #777e9a;

    font-size: 11px;
}


/* ==============================
   SCROLLBAR
============================== */

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {
    background: #10132a;
}


::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background:
        linear-gradient(
            var(--purple),
            var(--blue)
        );
}


/* ==============================
   TEXT SELECTION
============================== */

::selection {
    color: var(--white);

    background: var(--purple);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .nav-container {
        flex-direction: column;

        gap: 12px;
    }


    .main-nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }


    .hero-new {
        padding-top: 65px;
    }


    .hero-new-container,
    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-left,
    .hero-text {
        max-width: 720px;

        margin: auto;

        text-align: center;
    }


    .hero-left > p,
    .hero-description {
        margin-left: auto;

        margin-right: auto;
    }


    .hero-actions,
    .hero-buttons,
    .mini-stats,
    .hero-info {
        justify-content: center;
    }


    .hero-image-card {
        max-width: 460px;
    }


    .intro-strip-container {
        grid-template-columns: 1fr;
    }


    .intro-item {
        text-align: center;
    }


    .intro-item + .intro-item {
        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.07);
    }


    .home-about-container,
    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .home-about-image {
        display: flex;

        justify-content: center;
    }


    .home-about-text,
    .about-text {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }


    .about-points {
        max-width: 580px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }


    .feature-cards {
        grid-template-columns:
            1fr
            1fr;
    }


    .footer-container {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .site-header {
        position: relative;
    }


    .nav-container {
        width: 92%;
    }


    .brand-name {
        font-size: 18px;
    }


    .nav-logo {
        width: 42px;
        height: 42px;
    }


    .main-nav {
        gap: 2px;
    }


    .main-nav a {
        padding:
            8px
            9px;

        font-size: 11px;
    }


    .hero-new,
    .hero {
        min-height: auto;

        padding:
            50px 0
            60px;
    }


    .hero-new-container,
    .hero-content {
        width: 92%;

        gap: 42px;
    }


    .hero-left h1,
    .hero-text h1 {
        font-size:
            clamp(39px, 12vw, 52px);

        letter-spacing: -2px;
    }


    .hero-left > p,
    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-actions,
    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .primary-button,
    .secondary-button {
        width: 100%;
    }


    .mini-stats {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        width: 100%;
    }


    .mini-stat {
        min-width: 0;

        padding:
            10px
            8px;

        text-align: center;

        border-left: 0;

        border-top:
            2px solid
            var(--purple-light);
    }


    .hero-image-card {
        width: min(360px, 100%);
    }


    .hero-card-content {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-badge {
        padding:
            14px
            0
            0;

        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .home-about {
        padding:
            70px 0;
    }


    .home-about-container {
        width: 92%;
    }


    .home-about-image img {
        max-width: 280px;
    }


    .home-about-text h2 {
        font-size: 31px;
    }


    .cta-clean {
        width: 92%;

        margin-bottom: 70px;
    }


    .cta-clean-box,
    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding:
            30px
            24px;
    }


    .cta-clean-box .primary-button,
    .cta-box .primary-button {
        width: 100%;
    }


    .feature-cards {
        grid-template-columns: 1fr;
    }


    .experience-section,
    .about-preview {
        padding:
            70px 0;
    }


    .footer-container {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 32px;
    }


    .footer-bottom {
        width: 92%;
    }


    .curve-one {
        width: 150px;
        height: 150px;

        left: -80px;

        top: -95px;
    }


    .curve-two {
        width: 200px;
        height: 200px;

        right: -80px;

        bottom: -160px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .main-nav a {
        font-size: 10px;

        padding:
            7px
            6px;
    }


    .hero-left h1,
    .hero-text h1 {
        font-size: 37px;
    }


    .mini-stats {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   COMPACT HOME PAGE
========================================= */

.hero-new {
    min-height: auto;
    padding: 45px 0 50px;
}

.hero-new-container {
    gap: 45px;
}

.hero-left h1 {
    font-size: clamp(40px, 4.5vw, 58px);
}

.hero-left > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 24px;
}

.mini-stats {
    margin-top: 27px;
}

.hero-image-card {
    width: min(390px, 100%);
}

.intro-item {
    padding: 20px 25px;
}

.home-about {
    padding: 65px 0;
}

.home-about-container {
    gap: 55px;
}

.home-about-image img {
    max-width: 285px;
}

.cta-clean {
    margin-bottom: 65px;
}

.cta-clean-box {
    padding: 32px 38px;
}
/* =========================================
   HEADER + TEXT VISIBILITY FIX
========================================= */

.site-header {
    background: rgba(12, 16, 38, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.brand-name {
    color: #ffffff !important;
}

.brand-name strong {
    color: #55d8ff !important;
}

.main-nav a {
    color: #dce4ff !important;
    font-weight: 650;
}

.main-nav a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10);
}

.main-nav a.active {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #7358d8,
        #4c86d9
    ) !important;
}

/* Main website headings */
.hero-left h1,
.hero-text h1,
.home-about-text h2,
.section-heading h2,
.about-text h2,
.cta-clean-box h2,
.cta-box h2 {
    color: #ffffff !important;
}

/* Normal paragraph visibility */
.hero-left p,
.hero-description,
.home-about-text p,
.section-heading p,
.about-text p {
    color: #cbd3eb !important;
}
/* =========================================================
   HOME PAGE EXTRA CONTENT SECTIONS
========================================================= */


/* ==============================
   GAME HIGHLIGHTS
============================== */

.game-highlights {
    padding: 85px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.015),
            rgba(156, 99, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.highlight-item {
    position: relative;

    padding: 28px 30px;

    border-radius: 20px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.highlight-item:hover {
    transform: translateY(-5px);

    border-color:
        rgba(197, 140, 255, 0.28);

    background:
        rgba(255, 255, 255, 0.075);
}


.highlight-number {
    margin-bottom: 18px;

    color: #7edfff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.highlight-item h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 20px;
}


.highlight-item p {
    color: #aeb6d0;

    font-size: 13.5px;

    line-height: 1.7;
}


.highlight-item::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    background:
        rgba(156, 99, 255, 0.08);
}


/* ==============================
   WHY SQUAD FLUX
============================== */

.why-section {
    padding: 95px 0;
}


.why-container {
    width: min(1080px, 91%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    align-items: center;

    gap: 75px;
}


.why-content {
    max-width: 620px;
}


.why-content h2 {
    color: #ffffff;

    font-size:
        clamp(31px, 4vw, 46px);

    line-height: 1.12;

    letter-spacing: -1.7px;
}


.why-content > p {
    margin-top: 19px;

    color: #bec5df;

    font-size: 14.5px;

    line-height: 1.8;
}


.why-list {
    display: grid;

    gap: 14px;

    margin-top: 28px;
}


.why-row {
    display: flex;

    gap: 14px;

    padding: 16px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.why-row > span {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #11142d;

    background:
        linear-gradient(
            135deg,
            #74dfff,
            #b88cff
        );

    font-size: 12px;

    font-weight: 900;
}


.why-row strong {
    color: #ffffff;

    font-size: 14px;
}


.why-row p {
    margin-top: 4px;

    color: #9299b7;

    font-size: 12.5px;

    line-height: 1.6;
}


/* Why Visual */

.why-visual {
    display: flex;

    justify-content: center;
}


.why-logo-frame {
    width: min(330px, 100%);

    padding: 12px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.03)
        );

    border:
        1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.32);
}


.why-logo-frame img {
    width: 100%;

    border-radius: 17px;
}


.why-caption {
    padding:
        17px
        7px
        6px;
}


.why-caption span {
    display: block;

    color: #8cdfff;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.why-caption strong {
    display: block;

    margin-top: 5px;

    color: #ffffff;

    font-size: 15px;
}


/* ==============================
   EXPERIENCE DETAILS
============================== */

.experience-details {
    padding:
        85px 0
        95px;

    background:
        rgba(255, 255, 255, 0.018);

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


.experience-row {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.experience-detail {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding:
        23px
        21px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.07);
}


.experience-detail > span {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: #17172d;

    background:
        linear-gradient(
            135deg,
            #b68bff,
            #6ddcff
        );

    font-size: 18px;
}


.experience-detail h3 {
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 16px;
}


.experience-detail p {
    color: #969eb9;

    font-size: 12.5px;

    line-height: 1.6;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 900px) {

    .highlight-grid {
        grid-template-columns: 1fr;
    }


    .why-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .why-content {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }


    .why-list {
        max-width: 600px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }


    .experience-row {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .game-highlights,
    .why-section,
    .experience-details {
        padding:
            65px 0;
    }


    .highlight-item {
        padding: 23px;
    }


    .why-container {
        width: 92%;
    }


    .why-content h2 {
        font-size: 31px;
    }


    .why-logo-frame {
        max-width: 280px;
    }


    .experience-detail {
        padding: 20px;
    }

}
/* =========================================
   PRIVACY POLICY DARK THEME FIX
========================================= */

.privacy-hero {
    padding: 65px 0 38px !important;
    text-align: center !important;
}

.privacy-hero-content {
    width: min(900px, 90%) !important;
    margin: 0 auto !important;
}

.privacy-hero h1 {
    color: #ffffff !important;
    font-size: clamp(38px, 5vw, 58px) !important;
    font-weight: 800 !important;
    letter-spacing: -1.8px !important;
    line-height: 1.1 !important;
}

.privacy-section {
    padding: 15px 0 90px !important;
}

.privacy-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.025)
    ) !important;

    border: 1px solid rgba(255, 255, 255, 0.09) !important;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
}

.privacy-card .updated {
    background: rgba(89, 217, 255, 0.10) !important;
    color: #73ddff !important;
}

.privacy-card h2 {
    color: #ffffff !important;
}

.privacy-card p {
    color: #bec5df !important;
}

.privacy-card a {
    color: #73ddff !important;
}
/* HOME HERO TEXT POSITION */

.hero-left {
    transform: translateX(70px);
}

/* Mobile/Tablet par normal position */
@media (max-width: 950px) {
    .hero-left {
        transform: translateX(0);
    }
}
/* =========================================
   SHOW LOGO ONLY ON HOME HERO
========================================= */

/* Header logo remove */
.nav-logo {
    display: none !important;
}

/* Footer logo remove */
.footer-brand img {
    display: none !important;
}

/* Features / About page logos remove */
.logo-card,
.about-logo-box {
    display: none !important;
}

/* Contact page logo remove */
.contact-logo {
    display: none !important;
}

/* Home page main hero logo remains visible */
.hero-logo-wrap img {
    display: block !important;
}
/* =========================================
   INNER PAGE DATA PANELS
========================================= */

.page-data-panel {
    width: 100%;
    max-width: 430px;
    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}


.panel-label {
    display: block;

    margin-bottom: 10px;

    color: #6edfff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.page-data-panel h3 {
    color: #ffffff;

    font-size: 27px;

    line-height: 1.2;

    margin-bottom: 16px;
}


.page-data-panel > p {
    color: #b5bdd6;

    font-size: 13.5px;

    line-height: 1.75;

    margin-bottom: 22px;
}


.panel-list {
    display: grid;

    gap: 10px;
}


.panel-list > div {
    padding: 14px 15px;

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.06);
}


.panel-list strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}


.panel-list span {
    display: block;

    margin-top: 4px;

    color: #929bb7;

    font-size: 11.5px;

    line-height: 1.5;
}


.panel-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.panel-stats > div {
    padding: 15px;

    border-left:
        2px solid #a77cff;

    background:
        linear-gradient(
            90deg,
            rgba(156, 99, 255, 0.10),
            transparent
        );
}


.panel-stats strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}


.panel-stats span {
    display: block;

    margin-top: 4px;

    color: #929bb7;

    font-size: 10.5px;
}


@media (max-width: 650px) {

    .page-data-panel {
        padding: 22px;
        max-width: 100%;
    }

    .panel-stats {
        grid-template-columns: 1fr;
    }

}