@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #183650;
    background: #f4f8fb;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================
   HEADER
========================= */

.site-header {
    width: min(1180px, calc(100% - 32px));
    height: 66px;

    margin: 14px auto;

    padding: 0 20px;

    position: sticky;
    top: 10px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.93);

    border: 1px solid rgba(208, 225, 238, 0.9);

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(48, 77, 105, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 42px;
    height: 42px;

    object-fit: cover;

    border-radius: 11px;
}

.brand span {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 17px;
    font-weight: 800;

    color: #17334c;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 9px 12px;

    border-radius: 10px;

    color: #516a80;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #087db8;
    background: #e7f4fb;
}

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    cursor: pointer;
}

.menu-btn span {
    display: block;

    width: 23px;
    height: 2px;

    margin: 5px 0;

    border-radius: 20px;

    background: #173650;
}


/* =========================
   IMAGE HERO
========================= */

.rogue-hero {
    width: min(1260px, calc(100% - 24px));

    margin: 0 auto;

    overflow: hidden;

    border-radius: 0 0 34px 34px;
}

.rogue-hero-image {
    width: 100%;
    min-height: 570px;

    background-image:
        linear-gradient(
            rgba(240, 248, 255, 0.05),
            rgba(240, 248, 255, 0.12)
        ),
        url("../assets/rogue-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================
   INTRO
========================= */

.rogue-intro {
    width: min(760px, calc(100% - 40px));

    margin: 0 auto;

    padding: 80px 0 70px;

    text-align: center;
}

.small-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #1686bd;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.rogue-intro h1 {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(31px, 4vw, 47px);

    line-height: 1.15;

    letter-spacing: -1.4px;

    color: #17334c;
}

.rogue-intro p {
    max-width: 650px;

    margin: 16px auto 0;

    color: #657d91;

    font-size: 13px;

    line-height: 1.8;
}

.rogue-btn {
    min-height: 47px;

    margin-top: 25px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #118bc3,
            #356fc0
        );

    color: white;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 12px 24px rgba(32, 115, 169, 0.20);

    transition: 0.25s ease;
}

.rogue-btn:hover {
    transform: translateY(-2px);
}


/* =========================
   NON-BOX FEATURES
========================= */

.rogue-features {
    width: min(1000px, calc(100% - 40px));

    margin: 0 auto;

    padding: 10px 0 65px;
}

.rogue-row {
    min-height: 150px;

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    align-items: center;

    padding: 26px 10px;

    border-bottom: 1px solid #d7e3eb;
}

.rogue-row:nth-child(even) {
    grid-template-columns: 1fr 90px;
}

.rogue-row:nth-child(even) .rogue-number {
    grid-column: 2;
    grid-row: 1;

    text-align: right;
}

.rogue-row:nth-child(even) div {
    grid-column: 1;
    grid-row: 1;

    text-align: right;
}

.rogue-number {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 38px;
    font-weight: 800;

    color: #b8d8e8;
}

.rogue-row h2 {
    margin-bottom: 7px;

    font-family: "Plus Jakarta Sans", sans-serif;

    color: #183a56;

    font-size: 23px;
}

.rogue-row p {
    max-width: 610px;

    color: #698195;

    font-size: 12px;

    line-height: 1.8;
}

.rogue-row:nth-child(even) p {
    margin-left: auto;
}


/* =========================
   CTA
========================= */

.rogue-cta {
    width: min(1050px, calc(100% - 40px));

    margin: 10px auto 65px;

    padding: 36px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            #e4f4fb,
            #edf0fb,
            #f4edf5
        );
}

.rogue-cta h2 {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(23px, 3vw, 31px);

    color: #193851;
}

.rogue-cta .rogue-btn {
    margin-top: 0;

    flex-shrink: 0;
}


/* =========================
   FOOTER
========================= */

.rogue-footer,
footer {
    width: min(1080px, calc(100% - 40px));

    margin: 0 auto 24px;

    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #d8e4ec;

    color: #5f7689;
}

.rogue-footer strong,
footer strong {
    color: #1b3a53;

    font-size: 13px;
}

.rogue-footer div,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.rogue-footer a,
.footer-links a {
    color: #657b8e;

    font-size: 10px;
    font-weight: 600;
}


/* =========================
   OTHER PAGES
========================= */

.inner-hero {
    width: min(900px, calc(100% - 40px));

    margin: auto;

    padding: 75px 0 45px;

    text-align: center;
}

.inner-hero h1 {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    color: #17344d;
}

.inner-hero p {
    max-width: 620px;

    margin: 13px auto 0;

    color: #687f92;

    font-size: 12px;

    line-height: 1.8;
}

.section {
    width: min(1050px, calc(100% - 40px));

    margin: auto;

    padding: 50px 0;
}

.section-heading {
    max-width: 650px;

    margin: 0 auto 35px;

    text-align: center;
}

.section-heading h2 {
    font-family: "Plus Jakarta Sans", sans-serif;

    color: #173650;

    font-size: clamp(27px, 3vw, 37px);
}

.section-heading p {
    margin-top: 10px;

    color: #6a8092;

    font-size: 12px;

    line-height: 1.8;
}


/* old inner page feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 24px 5px;

    background: transparent;

    border: none;

    border-bottom: 1px solid #d6e3ec;

    border-radius: 0;

    box-shadow: none;
}

.feature-icon {
    margin-bottom: 15px;

    color: #1682b9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.feature-card h3 {
    margin-bottom: 8px;

    font-family: "Plus Jakarta Sans", sans-serif;

    color: #1b3b55;

    font-size: 17px;
}

.feature-card p {
    color: #6b8193;

    font-size: 11px;

    line-height: 1.8;
}


/* privacy */

.policy-wrapper {
    width: min(900px, calc(100% - 40px));

    margin: auto;

    padding: 20px 0 70px;
}

.policy-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;

    padding: 24px 0;

    border-bottom: 1px solid #d9e4eb;
}

.policy-number {
    color: #1685bc;

    font-size: 11px;
    font-weight: 800;
}

.policy-content h2 {
    margin-bottom: 7px;

    color: #1b3b55;

    font-size: 16px;
}

.policy-content p,
.policy-content li {
    color: #687f92;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        padding: 12px;

        display: none;

        flex-direction: column;

        background: rgba(255, 255, 255, 0.98);

        border-radius: 16px;

        box-shadow:
            0 15px 35px rgba(42, 70, 96, 0.12);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        width: 100%;

        text-align: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .site-header {
        width: calc(100% - 18px);
        height: 59px;

        margin: 8px auto;

        padding: 0 13px;

        top: 7px;

        border-radius: 15px;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

    .brand span {
        font-size: 14px;
    }


    /* background image */

    .rogue-hero {
        width: 100%;

        border-radius: 0 0 22px 22px;
    }

    .rogue-hero-image {
        min-height: 340px;

        background-size: cover;

        background-position: center;
    }


    /* intro */

    .rogue-intro {
        width: calc(100% - 30px);

        padding: 48px 0 44px;
    }

    .rogue-intro h1 {
        font-size: 30px;
    }

    .rogue-intro p {
        font-size: 12px;
    }


    /* rows */

    .rogue-features {
        width: calc(100% - 30px);

        padding-bottom: 45px;
    }

    .rogue-row,
    .rogue-row:nth-child(even) {
        min-height: auto;

        padding: 24px 0;

        display: block;

        text-align: left;
    }

    .rogue-row:nth-child(even) div {
        text-align: left;
    }

    .rogue-number,
    .rogue-row:nth-child(even) .rogue-number {
        display: block;

        margin-bottom: 10px;

        text-align: left;

        font-size: 27px;
    }

    .rogue-row h2 {
        font-size: 19px;
    }

    .rogue-row p,
    .rogue-row:nth-child(even) p {
        margin-left: 0;

        font-size: 11px;
    }


    /* CTA */

    .rogue-cta {
        width: calc(100% - 30px);

        margin-bottom: 45px;

        padding: 26px 20px;

        flex-direction: column;

        text-align: center;
    }

    .rogue-cta h2 {
        font-size: 24px;
    }


    /* other pages */

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px 4px;
    }

    .inner-hero {
        padding: 45px 0 30px;
    }

    .inner-hero h1 {
        font-size: 31px;
    }

    .policy-item {
        grid-template-columns: 40px 1fr;

        gap: 10px;
    }

    .rogue-footer,
    footer {
        flex-direction: column;

        text-align: center;
    }

    .rogue-footer div,
    .footer-links {
        justify-content: center;
    }
}
/* ==========================================
   ROGUE EXIT - FULL PAGE IMAGE + NO BOXES
========================================== */

/* Home page full background */
.home-page {
    background:
        linear-gradient(
            rgba(239, 247, 253, 0.72),
            rgba(239, 247, 253, 0.86)
        ),
        url("../assets/rogue-bg.png") center top / cover fixed no-repeat !important;
}


/* Hero ka white box / side gap remove */
.rogue-hero {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    border-radius: 0 !important;

    overflow: hidden;
}


/* Image poori screen width/height par */
.rogue-hero-image {
    width: 100% !important;

    min-height: calc(100vh - 90px) !important;

    background-image: url("../assets/rogue-bg.png") !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* Neeche sections transparent */
.rogue-intro,
.rogue-features {
    background: transparent !important;
}


/* Intro ko clean text section banao */
.rogue-intro {
    width: min(860px, calc(100% - 34px)) !important;

    padding: 85px 20px !important;

    text-align: center;
}


/* Purane box effect bilkul nahi */
.rogue-row {
    background: transparent !important;

    border: none !important;
    border-bottom: 1px solid rgba(48, 91, 125, 0.22) !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    padding-top: 34px !important;
    padding-bottom: 34px !important;
}


/* Feature numbers */
.rogue-number {
    color: #1687c0 !important;

    font-size: 42px !important;
}


/* Feature headings */
.rogue-row h2 {
    color: #123957 !important;

    font-size: 25px !important;
}


/* Feature description */
.rogue-row p {
    color: #4f6d83 !important;

    font-size: 13px !important;
}


/* CTA ka box bhi simple karo */
.rogue-cta {
    background: transparent !important;

    border-radius: 0 !important;

    border-top: 1px solid rgba(48, 91, 125, 0.22);
    border-bottom: 1px solid rgba(48, 91, 125, 0.22);

    box-shadow: none !important;
}


/* ==========================================
   PRIVACY POLICY - ONLY TEXT SIZE
   CONTENT/Wording WILL NOT CHANGE
========================================== */

.policy-content h2 {
    font-size: 19px !important;
}

.policy-content p,
.policy-content li,
.policy-intro-text {
    font-size: 14px !important;
    line-height: 1.85 !important;
}

.policy-number {
    font-size: 12px !important;
}


/* MOBILE */
@media (max-width: 600px) {

    .home-page {
        background-attachment: scroll !important;
    }

    .rogue-hero-image {
        min-height: 440px !important;

        background-size: cover !important;
        background-position: center !important;
    }

    .rogue-intro {
        padding: 55px 16px !important;
    }

    .rogue-row h2 {
        font-size: 20px !important;
    }

    .rogue-row p {
        font-size: 12px !important;
    }

    .rogue-number {
        font-size: 30px !important;
    }

    .policy-content p,
    .policy-content li,
    .policy-intro-text {
        font-size: 13px !important;
    }

    .policy-content h2 {
        font-size: 17px !important;
    }
}
/* =========================================
   BACKGROUND SAME - ONLY VISIBILITY CONTROL
========================================= */

/* Background ko change nahi karta,
   sirf uske upar light transparent layer deta hai */
body {
    position: relative;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(235, 247, 255, 0.82),
        rgba(247, 245, 252, 0.84),
        rgba(255, 238, 242, 0.82)
    );

    pointer-events: none;
    z-index: 0;
}

/* Saara website content layer ke upar */
body > header,
body > main,
body > footer {
    position: relative;
    z-index: 1;
}


/* ===============================
   TEXT BIGGER + CLEARER
================================ */

.rogue-intro h1,
.inner-hero h1 {
    font-size: clamp(38px, 4.5vw, 54px) !important;
    color: #123752 !important;
}

.rogue-intro p,
.inner-hero p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #425f75 !important;
}


/* Feature text */

.rogue-row h2 {
    font-size: 28px !important;
    color: #123a58 !important;
}

.rogue-row p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #425f74 !important;
}

.rogue-number {
    font-size: 45px !important;
}


/* Labels */

.small-label {
    font-size: 12px !important;
}


/* ===============================
   PRIVACY POLICY
   ONLY FONT SIZE - TEXT SAME
================================ */

.policy-content h2 {
    font-size: 21px !important;
}

.policy-content p,
.policy-content li,
.policy-intro-text {
    font-size: 15px !important;
    line-height: 1.9 !important;
}


/* Mobile */

@media (max-width: 600px) {

    body::before {
        background: linear-gradient(
            135deg,
            rgba(235, 247, 255, 0.87),
            rgba(255, 239, 243, 0.87)
        );
    }

    .rogue-intro h1,
    .inner-hero h1 {
        font-size: 32px !important;
    }

    .rogue-intro p,
    .inner-hero p,
    .rogue-row p {
        font-size: 14px !important;
    }

    .rogue-row h2 {
        font-size: 22px !important;
    }

    .policy-content p,
    .policy-content li {
        font-size: 14px !important;
    }
}
body::before {
    background: rgba(245, 248, 255, 0.62) !important;
}
/* Header ke peechay wali strip remove */
.home-page .site-header {
    position: absolute !important;
    top: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 1000 !important;
}

/* Hero image bilkul top se start */
.home-page .rogue-hero {
    margin-top: 0 !important;
}
/* FINAL HOME TOP FIX */

.home-page .site-header {
    background: #eef7fd !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.home-page .rogue-hero-image {
    min-height: 100vh !important;
}
.home-page .site-header {
    position: fixed !important;
    top: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin: 0 !important;

    transition: none !important;
    animation: none !important;

    z-index: 9999 !important;
}
.home-page .site-header {
    position: absolute !important;
    top: 12px !important;
    left: 4% !important;
    right: 4% !important;

    width: 92% !important;
    margin: 0 !important;

    transform: none !important;
    transition: none !important;
    animation: none !important;

    z-index: 9999 !important;
}