/* ================================
   UNITED UMMAH
   Global Foundation
================================ */

:root {
    --bg-primary: #080808;
    --bg-secondary: #0f0f0f;
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --accent: #b11226;
    --accent-light: #d61f38;
    --border: rgba(255, 255, 255, 0.1);

    --container-width: 1200px;
    --section-padding: 100px;
}

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

html {
    --scrollbar-track: #050505;
    --scrollbar-rail: rgba(214, 31, 56, 0.18);
    --scrollbar-thumb: #b11226;
    --scrollbar-thumb-hover: #e02b43;

    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;

    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
    scrollbar-width: auto;
}

body {
    width: 100%;
    max-width: 100%;

    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;

    overflow-x: clip;

}

main {
    overflow-x: clip;
}

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

button,
input,
textarea {
    font: inherit;
}

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

/* =================================
   THEME-AWARE BROWSER SCROLLBAR
================================= */

html.scrollbar-gold {
    --scrollbar-track: #080704;
    --scrollbar-rail: rgba(215, 173, 85, 0.2);
    --scrollbar-thumb: #b9852c;
    --scrollbar-thumb-hover: #e0b75e;
}

html.scrollbar-university {
    --scrollbar-track: #050402;
    --scrollbar-rail: rgba(255, 179, 0, 0.22);
    --scrollbar-thumb: #e49a00;
    --scrollbar-thumb-hover: #ffc21c;
}

html::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}

html::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
    box-shadow: inset 0 0 0 1px var(--scrollbar-rail);
}

html::-webkit-scrollbar-thumb {
    min-height: 72px;
    border: 3px solid var(--scrollbar-track);
    border-radius: 999px;
    background: var(--scrollbar-thumb);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 0 14px var(--scrollbar-rail);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-thumb:active {
    border-width: 2px;
}

html::-webkit-scrollbar-corner {
    background: var(--scrollbar-track);
}

html::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

@media (max-width: 760px) {
    html::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    html::-webkit-scrollbar-thumb {
        min-height: 48px;
        border-width: 2px;
    }
}

.final-brand-flag {
    display: inline-block;
    width: 1.06em;
    height: 0.8em;
    margin-left: 0.1em;
    object-fit: contain;
    vertical-align: -0.08em;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}

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

.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;

    width: min(100% - 40px, var(--container-width));
    margin: 20px auto 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(14px, 2vw, 28px);

    padding: 16px 22px;

    background: rgba(15, 15, 15, 0.85);
    border: 1px solid var(--border);
    border-radius: 12px;

    backdrop-filter: blur(16px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex: 0 0 auto;
    min-width: 0;
}

.logo-img {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    object-fit: cover;
    border-radius: 50%;
}

.logo {
    display: block;

    color: var(--text-primary);

    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.7vw, 24px);

    margin-left: auto;

    list-style: none;
    min-width: 0;
}

.nav-links a {
    position: relative;

    color: var(--text-secondary);
    font-size: clamp(12px, 1.05vw, 14px);
    font-weight: 500;
    white-space: nowrap;

    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a[aria-current="page"] {
    color: var(--accent-light);
    font-weight: 700;
}

.journey-cursor-page .nav-links a[aria-current="page"] {
    color: #ff8795;
}

/* Underline */

.nav-links a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a[aria-current="page"]::after {
    width: 100%;
}

/* Join Button */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 15px;

    background: var(--accent);
    color: white !important;

    border-radius: 6px;

    font-weight: 700 !important;
    line-height: 1;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

@media (max-width: 1120px) and (min-width: 901px) {

    .navbar {
        width: min(100% - 24px, var(--container-width));
        padding: 14px 16px;
        gap: 14px;
    }

    .navbar-brand {
        gap: 9px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .logo {
        font-size: 15px;
        letter-spacing: 0.4px;
    }

    .nav-links {
        gap: 11px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-cta {
        padding: 8px 12px;
    }

}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* =================================
   REUSABLE BLACK + GOLD PAGE THEME
   Add .gold-page-theme to future pages in this theme family.
================================= */

.gold-page-theme {
    --bg-primary: #070604;
    --bg-secondary: #14110c;
    --text-primary: #f3ead6;
    --text-secondary: #aa9c82;
    --accent: #b9852c;
    --accent-light: #d7ad55;
    --border: rgba(215, 173, 85, 0.24);

    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: "DM Sans", Arial, sans-serif;
}

.gold-page-theme .navbar {
    background: rgba(8, 7, 4, 0.82);
    border-color: var(--border);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.gold-page-theme .logo,
.gold-page-theme .nav-links a:hover,
.gold-page-theme .nav-links a[aria-current="page"] {
    color: #ead399;
}

.gold-page-theme .nav-links a:not(.nav-cta)::after,
.gold-page-theme .nav-cta {
    background: var(--accent);
}

.gold-page-theme .nav-cta {
    color: var(--bg-primary) !important;
}

.gold-page-theme .nav-cta:hover {
    background: var(--accent-light);
}

.gold-page-theme .dropdown-menu {
    background: #0d0b07;
    border-color: var(--border);
}

.gold-page-theme .menu-toggle span {
    background: #ead399;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    min-width: 240px;

    padding: 10px;

    list-style: none;

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

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 12px;

    border-radius: 6px;
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;

    background: var(--text-primary);

    transition: 0.3s ease;
}

@media (max-width: 980px) {

    body {
        padding-top: 92px;
    }

    .navbar {
        position: fixed;
        top: 12px;
        left: 50%;
        right: auto;

        width: calc(100dvw - 28px);
        max-width: calc(100dvw - 28px);
        margin: 0;
        padding: 12px 14px;
        gap: 14px;

        border-radius: 10px;

        transform: translateX(-50%);
    }

    .navbar-brand {
        gap: 10px;
        min-width: 0;
        max-width: calc(100% - 54px);
    }

    .logo-img {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .logo {
        overflow: hidden;

        font-size: 16px;
        letter-spacing: 0.6px;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;

        width: 100%;

        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        padding: 14px;

        background: #0f0f0f;
        border: 1px solid var(--border);
        border-radius: 12px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);

        transition: 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links > li > a {
        display: block;
        padding: 10px 12px;
    }

    .nav-cta {
        width: 100%;
    }

    .dropdown-menu {
        position: static;

        min-width: 100%;

        margin-top: 6px;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;

        background: #151515;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 420px) {

    body {
        padding-top: 84px;
    }

    .navbar {
        top: 10px;
        width: calc(100dvw - 20px);
        max-width: calc(100dvw - 20px);
        padding: 10px 12px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 0.4px;
    }

}


/* ================================
   OUR JOURNEY HERO
================================ */

.journey-hero {
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding: 80px 0 110px;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 74% 28%,
            rgba(214, 31, 56, 0.42),
            rgba(177, 18, 38, 0.18) 26%,
            transparent 52%
        ),
        radial-gradient(
            circle at 16% 84%,
            rgba(177, 18, 38, 0.28),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.045),
            transparent 22%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        var(--bg-primary);
}

.journey-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(214, 31, 56, 0.105) 1px,
            transparent 1px
        ),
        linear-gradient(
            0deg,
            rgba(214, 31, 56, 0.075) 1px,
            transparent 1px
        );
    background-size: 54px 54px;

    opacity: 0.72;

    pointer-events: none;
}

.journey-hero::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 72% 34%,
            rgba(177, 18, 38, 0.24),
            transparent 38%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.18) 42%,
            rgba(0, 0, 0, 0.48)
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            transparent 48%,
            var(--bg-primary)
        );

    pointer-events: none;
}

.journey-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container-width);

    margin-inline: auto;
    padding-right: clamp(310px, 34vw, 460px);
}

.journey-hero-visual {
    position: absolute;
    top: 50%;
    right: max(28px, calc((100vw - var(--container-width)) / 2));
    z-index: 2;

    width: clamp(260px, 27vw, 390px);
    aspect-ratio: 0.78;

    transform: translateY(-50%);

    border: 1px solid rgba(214, 31, 56, 0.38);
    border-radius: 42px;

    overflow: hidden;

    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.52),
        0 0 42px rgba(177, 18, 38, 0.18);
}

.journey-hero-visual::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.34)
        ),
        radial-gradient(
            circle at 50% 18%,
            transparent,
            rgba(0, 0, 0, 0.32) 76%
        );

    pointer-events: none;
}

.journey-hero-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.page-label {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--accent-light);

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

    letter-spacing: 4px;
}

.journey-hero h1 {
    max-width: 760px;

    font-size: clamp(70px, 9.5vw, 145px);

    line-height: 0.84;

    letter-spacing: -6px;

    font-weight: 700;
}

.journey-hero h1 span {
    color: var(--accent);
}

.journey-hero p {
    max-width: 700px;

    margin-top: 35px;

    color: var(--text-secondary);

    font-size: 18px;

    line-height: 1.8;
}

.journey-hero-line {
    width: 90px;
    height: 2px;

    margin-top: 40px;

    background: var(--accent);
}

.journey-hero .journey-question {
    margin-top: 20px;

    color: var(--text-primary);

    font-size: 22px;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 768px) {

    .journey-hero {
        min-height: 100svh;

        padding: 90px 0 70px;

        background:
            radial-gradient(
                circle at 82% 24%,
                rgba(214, 31, 56, 0.36),
                transparent 46%
            ),
            radial-gradient(
                circle at 10% 82%,
                rgba(177, 18, 38, 0.22),
                transparent 38%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.025),
                transparent 20%,
                rgba(0, 0, 0, 0.45) 100%
            ),
            var(--bg-primary);
    }

    .journey-hero::before {
        background-size: 38px 38px;
        opacity: 0.62;
    }

    .journey-hero h1 {
        font-size: clamp(48px, 15vw, 72px);

        letter-spacing: -2px;
    }

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

    .journey-hero .journey-question {
        font-size: 19px;
    }
}


/* ================================
   JOURNEY STRATEGY SECTION
================================ */

.journey-strategy {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.journey-strategy h2 {
    max-width: 900px;

    margin-top: 10px;

    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}

.strategy-content {
    max-width: 760px;

    margin-top: 50px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strategy-content p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.strategy-highlight {
    color: var(--text-primary) !important;

    padding-left: 22px;

    border-left: 3px solid var(--accent);

    font-size: 22px !important;
    font-weight: 700;
}


/* ================================
   PALESTINE DEFENCE BILL SECTION
================================ */

.journey-bill {
    padding: 130px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bill-header h2 {
    margin-top: 10px;

    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.94;

    letter-spacing: -4px;
    font-weight: 900;
}

.bill-header h2 span {
    color: var(--accent);
}

.bill-content {
    max-width: 760px;

    margin-top: 55px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bill-content p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.bill-intro {
    color: var(--text-primary) !important;

    font-size: 24px !important;
    font-weight: 700;
}

.bill-statement {
    margin-top: 15px;

    padding: 28px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

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

.bill-statement span {
    display: block;

    margin-bottom: 12px;

    color: var(--accent-light);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.bill-statement p {
    margin: 0;

    color: var(--text-primary);

    font-size: 21px;
    font-weight: 700;
    line-height: 1.6;
}


/* ================================
   ISTIFTA & FATAWA SECTION
================================ */

.journey-fatwa {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.journey-fatwa h2 {
    margin-top: 10px;

    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.94;

    letter-spacing: -4px;
    font-weight: 900;
}

.journey-fatwa h2 span {
    color: var(--accent);
}

.fatwa-content {
    max-width: 820px;

    margin-top: 55px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fatwa-content p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.fatwa-lead {
    color: var(--text-primary) !important;

    font-size: 24px !important;
    font-weight: 700;
}

.fatwa-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 12px;
}

.fatwa-card {
    padding: 28px;

    background: var(--bg-secondary);

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

.fatwa-card span {
    display: block;

    margin-bottom: 16px;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.fatwa-card h3 {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
}

.fatwa-closing {
    margin-top: 8px;

    padding-left: 22px;

    border-left: 3px solid var(--accent);

    color: var(--text-primary) !important;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 700px) {

    .fatwa-results {
        grid-template-columns: 1fr;
    }

}

.fatwa-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 12px;
}

.evidence-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

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

    color: var(--text-primary);

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

    transition: 0.3s ease;
}

.evidence-link:hover {
    border-color: var(--accent);
    background: rgba(177, 18, 38, 0.08);
}


/* ================================
   NATIONAL PRESSURE SECTION
================================ */

.journey-pressure {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.journey-pressure h2 {
    margin-top: 10px;

    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.94;

    letter-spacing: -4px;
    font-weight: 900;
}

.journey-pressure h2 span {
    color: var(--accent);
}

.pressure-content {
    max-width: 820px;

    margin-top: 55px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pressure-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.pressure-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* Petition Block */

.petition-block {
    margin-top: 20px;

    padding: 42px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.petition-label {
    display: block;

    margin-bottom: 10px;

    color: var(--accent-light);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.petition-number {
    font-size: clamp(60px, 9vw, 110px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -5px;

    color: var(--text-primary);
}

.petition-block p {
    max-width: 500px;

    margin-top: 12px;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.7;
}

.petition-link {
    display: inline-flex;

    margin-top: 24px;

    padding: 12px 20px;

    background: var(--accent);

    color: #fff;

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

    transition: 0.3s ease;
}

.petition-link:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 700px) {

    .petition-block {
        padding: 28px 22px;
    }

    .petition-number {
        letter-spacing: -3px;
    }

}


/* ================================
   THE BREAKING POINT
================================ */

.journey-breaking-point {
    padding: 130px 0;
    border-bottom: 1px solid var(--border);
}

.breaking-grid {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;

    align-items: start;
}


/* Story side */

.breaking-story {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.breaking-point-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;

    padding: 20px 0;

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

.breaking-point-item:first-child {
    border-top: 1px solid var(--border);
}

.breaking-point-item span {
    color: var(--accent-light);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.breaking-point-item p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.75;
}


/* Question side */

.breaking-questions {
    padding: 32px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breaking-questions p {
    color: var(--text-primary);

    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.breaking-questions span {
    color: #777;

    font-size: 15px;
    line-height: 1.6;
}


/* Founder Origin */

.founder-origin {
    margin-top: 70px;

    padding-top: 30px;

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

    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
}

.founder-origin span {
    color: var(--accent-light);

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

    letter-spacing: 3px;
}

.founder-origin p {
    max-width: 720px;

    color: var(--text-primary);

    font-size: 20px;
    line-height: 1.7;

    font-weight: 600;
}


/* Mobile */

@media (max-width: 800px) {

    .breaking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .breaking-questions {
        padding: 25px 20px;
    }

    .founder-origin {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


/* ================================
   GLOBAL SUMUD FLOTILLA SECTION
================================ */

.journey-flotilla {
    padding: 130px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(177, 18, 38, 0.04),
            transparent 35%
        );

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

.journey-flotilla h2 {
    margin-top: 10px;

    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.94;

    letter-spacing: -4px;
    font-weight: 900;
}

.journey-flotilla h2 span {
    color: var(--accent);
}

.flotilla-content {
    max-width: 840px;

    margin-top: 55px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.flotilla-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* United Ummah Role */

.flotilla-role {
    margin-top: 10px;

    padding: 30px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.flotilla-role span {
    display: block;

    margin-bottom: 14px;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.flotilla-role p {
    color: var(--text-primary);

    font-size: 19px;
    line-height: 1.75;
}


/* Lesson */

.flotilla-lesson {
    margin-top: 18px;

    padding-top: 35px;

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

.flotilla-lesson p {
    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.8;
}

.flotilla-lesson h3 {
    max-width: 760px;

    margin-top: 18px;

    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;

    font-weight: 800;
    letter-spacing: -1px;
}

.flotilla-lesson h3:last-child {
    color: var(--accent-light);
}


/* Mobile */

@media (max-width: 700px) {

    .flotilla-role {
        padding: 24px 20px;
    }

}


/* ================================
   THE LIMIT OF PRESSURE
================================ */

.journey-limit {
    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            rgba(177, 18, 38, 0.03),
            transparent 30%
        );

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

.journey-limit h2 {
    margin-top: 10px;

    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.94;

    letter-spacing: -4px;
    font-weight: 900;
}

.journey-limit h2 span {
    color: var(--accent);
}

.limit-content {
    max-width: 860px;

    margin-top: 55px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.limit-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.limit-turn {
    color: var(--text-primary) !important;

    font-size: 24px !important;
    font-weight: 800;
}


/* Authority Call */

.authority-block {
    margin-top: 10px;

    padding: 32px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    background: var(--bg-secondary);
}

.authority-block span {
    display: block;

    margin-bottom: 14px;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.authority-block p {
    color: var(--text-primary);

    font-size: 19px;
    line-height: 1.7;
}

.authority-block p + p {
    margin-top: 14px;
}


/* Painful Truth */

.limit-truth {
    margin-top: 20px;

    padding: 40px 0;

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

.limit-truth > span {
    display: block;

    margin-bottom: 24px;

    color: #777;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.limit-truth h3 {
    max-width: 760px;

    margin-top: 12px;

    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;

    font-weight: 900;
    letter-spacing: -2px;
}

.limit-truth h3:nth-of-type(2) {
    color: var(--accent-light);
}

.limit-truth p {
    max-width: 700px;

    margin-top: 24px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Ummah Condition */

.limit-highlight {
    color: var(--text-primary) !important;

    font-size: 24px !important;
    font-weight: 800;
}

.condition-list {
    border-top: 1px solid var(--border);
}

.condition-list > div {
    display: grid;
    grid-template-columns: 70px 1fr;

    gap: 18px;

    padding: 22px 0;

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

.condition-list span {
    color: var(--accent-light);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.condition-list p {
    color: var(--text-primary);

    font-size: 19px;
    line-height: 1.6;

    font-weight: 600;
}

.limit-ending {
    margin-top: 15px;

    color: var(--accent-light) !important;

    font-size: 22px !important;
    font-weight: 800;
}


/* Mobile */

@media (max-width: 700px) {

    .authority-block {
        padding: 25px 20px;
    }

    .condition-list > div {
        grid-template-columns: 45px 1fr;
    }

    .limit-truth h3 {
        letter-spacing: -1px;
    }

}

/* ================================
   THE QUESTION BECAME BIGGER
================================ */

.journey-question-bigger {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.journey-question-bigger::before {
    content: "";

    position: absolute;
    top: 0;
    right: -120px;

    width: 420px;
    height: 420px;

    background: radial-gradient(
        circle,
        rgba(177, 18, 38, 0.08),
        transparent 70%
    );

    pointer-events: none;
}


/* Intro */

.question-bigger-intro {
    max-width: 980px;
}

.question-bigger-intro > p {
    max-width: 650px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.question-bigger-intro h2 {
    margin-top: 22px;

    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.92;

    letter-spacing: -4px;
    font-weight: 900;
}

.question-bigger-intro h2 span {
    color: var(--accent);
}


/* Questions Grid */

.bigger-questions {
    margin-top: 70px;

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

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

.bigger-question-item {
    min-height: 190px;

    padding: 28px;

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

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.bigger-question-item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.bigger-question-item > span {
    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.bigger-question-item h3 {
    max-width: 430px;

    margin-top: 40px;

    color: var(--text-primary);

    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.25;

    font-weight: 800;
    letter-spacing: -1px;
}


/* Shift To Preparation */

.preparation-shift {
    max-width: 850px;

    margin-top: 80px;
    margin-left: auto;

    padding: 40px;

    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.preparation-shift > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.preparation-shift > p + p {
    margin-top: 18px;
}

.preparation-lines {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
}

.preparation-lines span {
    padding: 18px 0;

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

    color: var(--text-primary);

    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.4;

    font-weight: 800;
}

.preparation-lines span:last-child {
    color: var(--accent-light);
}


/* Mobile */

@media (max-width: 760px) {

    .bigger-questions {
        grid-template-columns: 1fr;
    }

    .bigger-question-item {
        min-height: 160px;
    }

    .preparation-shift {
        padding: 28px 22px;
    }

}


/* ================================
   MADRASSA TUL TAKWEYAT
================================ */

.journey-takweyat {
    padding: 140px 0;

    background: var(--bg-secondary);

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

    position: relative;
    overflow: hidden;
}

.journey-takweyat::after {
    content: "GAZA";

    position: absolute;
    right: -20px;
    bottom: -80px;

    font-size: clamp(150px, 25vw, 360px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -12px;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}


/* Layout */

.takweyat-layout {
    margin-top: 30px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: start;

    position: relative;
    z-index: 1;
}


/* Heading */

.takweyat-heading {
    position: sticky;
    top: 130px;
}

.takweyat-heading h2 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.95;

    letter-spacing: -4px;
    font-weight: 900;
}

.takweyat-heading h2 span {
    color: var(--accent);
}


/* Content */

.takweyat-content {
    padding-top: 10px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.takweyat-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Realization Block */

.takweyat-realization {
    margin-top: 20px;

    padding: 35px 0;

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

.takweyat-realization > span {
    display: block;

    margin-bottom: 20px;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.takweyat-realization > p {
    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.8;
}

.takweyat-realization h3 {
    margin-top: 16px;

    color: var(--text-primary);

    font-size: clamp(26px, 3vw, 38px);

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -1px;
}

.takweyat-realization h3:last-child {
    color: var(--accent-light);
}


/* Mobile */

@media (max-width: 850px) {

    .takweyat-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .takweyat-heading {
        position: static;
    }

    .journey-takweyat::after {
        bottom: -20px;
        font-size: 150px;
    }

}



/* ================================
   THE HOSTAGE CAMPAIGN
================================ */

.journey-hostage {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.journey-hostage::before {
    content: "";

    position: absolute;
    left: -120px;
    top: 120px;

    width: 360px;
    height: 360px;

    background: radial-gradient(
        circle,
        rgba(177, 18, 38, 0.08),
        transparent 70%
    );

    pointer-events: none;
}


/* Header */

.hostage-header {
    max-width: 1000px;
    margin-top: 20px;
}

.hostage-header h2 {
    font-size: clamp(52px, 7vw, 94px);
    line-height: 0.93;

    letter-spacing: -4px;
    font-weight: 900;
}

.hostage-header h2 span {
    color: var(--accent);
}


/* Main Content */

.hostage-content {
    max-width: 860px;

    margin-top: 60px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hostage-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Petition Milestone */

.hostage-petition {
    margin-top: 18px;

    padding: 38px;

    background: var(--bg-secondary);

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

.hostage-petition > span {
    display: block;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hostage-number {
    margin-top: 14px;

    font-size: clamp(64px, 9vw, 115px);
    line-height: 0.95;

    font-weight: 900;
    letter-spacing: -5px;
}

.hostage-petition p {
    max-width: 520px;

    margin-top: 14px;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.7;
}


/* Lesson */

.hostage-lesson {
    margin-top: 25px;

    padding-top: 40px;

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

.hostage-lesson > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.hostage-lesson > p + p {
    margin-top: 14px;
}

.hostage-lesson h3 {
    margin-top: 28px;

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

    font-weight: 900;
    letter-spacing: -2px;

    color: var(--text-primary);
}


/* Weakness Grid */

.weakness-list {
    margin-top: 35px;

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

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

.weakness-list span {
    padding: 22px 24px;

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

    color: var(--text-primary);

    font-size: 18px;
    font-weight: 700;

    transition: 0.3s ease;
}

.weakness-list span:hover {
    background: rgba(177, 18, 38, 0.06);
    color: var(--accent-light);
}


/* Mobile */

@media (max-width: 700px) {

    .hostage-petition {
        padding: 28px 22px;
    }

    .weakness-list {
        grid-template-columns: 1fr;
    }

}


/* ================================
   THE FINAL REALIZATION
================================ */

.journey-final-realization {
    padding: 150px 0;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(177, 18, 38, 0.08),
            transparent 40%
        );

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


/* Large background word */

.journey-final-realization::after {
    content: "REACTION";

    position: absolute;

    left: 50%;
    bottom: -55px;

    transform: translateX(-50%);

    font-size: clamp(120px, 20vw, 300px);

    font-weight: 900;
    line-height: 1;

    letter-spacing: -10px;

    color: rgba(255, 255, 255, 0.015);

    white-space: nowrap;

    pointer-events: none;
}


/* Layout */

.final-realization-layout {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    align-items: start;

    position: relative;
    z-index: 1;
}


/* Heading */

.final-realization-heading h2 {
    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}

.final-realization-heading h2 span {
    color: var(--accent);
}


/* Content */

.final-realization-content {
    padding-top: 10px;

    display: flex;
    flex-direction: column;

    gap: 24px;
}

.final-realization-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Main Realization */

.final-realization-main {
    padding: 24px 0;

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

    color: var(--text-primary) !important;

    font-size: 27px !important;
    line-height: 1.4 !important;

    font-weight: 900;
}


/* Break The Cycle */

.break-cycle {
    margin-top: 20px;

    padding: 34px;

    background: var(--accent);

    position: relative;
}

.break-cycle p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.7;
}

.break-cycle h3 {
    margin-top: 10px;

    color: #fff;

    font-size: clamp(28px, 3.5vw, 44px);

    line-height: 1.1;

    font-weight: 900;
    letter-spacing: -1px;
}


/* Mobile */

@media (max-width: 850px) {

    .final-realization-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journey-final-realization::after {
        bottom: -15px;
        font-size: 110px;
    }

    .break-cycle {
        padding: 28px 22px;
    }

}



/* ================================
   FROM CAMPAIGNS TO PREPARATION
================================ */

.journey-preparation {
    padding: 150px 0;
    border-bottom: 1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.015),
            transparent 40%
        );

    position: relative;
    overflow: hidden;
}


/* Intro Layout */

.preparation-layout {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    gap: 90px;

    align-items: start;
}


/* Heading */

.preparation-heading {
    position: sticky;
    top: 130px;
}

.preparation-heading h2 {
    font-size: clamp(52px, 6.5vw, 92px);

    line-height: 0.9;

    letter-spacing: -5px;
    font-weight: 900;
}

.preparation-heading h2 span {
    color: var(--accent);
}


/* Main Content */

.preparation-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.preparation-content > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* What The Plan Is NOT */

.preparation-not {
    border-top: 1px solid var(--border);
}

.preparation-not p {
    padding: 18px 0;

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

    color: #777;

    font-size: 18px;
    line-height: 1.6;
}

.preparation-not p::before {
    content: "×";

    display: inline-block;

    margin-right: 14px;

    color: var(--accent);

    font-size: 22px;
    font-weight: 900;
}


/* Main Definition */

.preparation-main {
    padding: 30px !important;

    background: var(--accent);

    color: #fff !important;

    font-size: 23px !important;
    line-height: 1.55 !important;

    font-weight: 800;
}


/* Clarification */

.preparation-clarity {
    padding: 30px;

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

    background: var(--bg-secondary);
}

.preparation-clarity p {
    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.8;
}

.preparation-clarity p + p {
    margin-top: 14px;
}

.preparation-clarity p:last-child {
    color: var(--text-primary);
    font-weight: 600;
}


/* Training System */

.preparation-system {
    padding: 35px 0;

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

.preparation-system p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.preparation-system p + p {
    margin-top: 18px;
}

.preparation-system p:nth-child(2) {
    color: var(--accent-light);

    font-size: 22px;
    font-weight: 800;
}


/* Practical Fronts */

.preparation-fronts {
    margin-top: 10px;
}

.preparation-fronts > span {
    display: block;

    margin-bottom: 16px;

    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.preparation-fronts > p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}

.preparation-front-list {
    margin-top: 24px;

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

    gap: 10px;
}

.preparation-front-list a {
    position: relative;

    padding: 22px 24px 22px 58px;

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

    background: rgba(255, 255, 255, 0.02);

    color: var(--text-primary);

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

    transition: 0.3s ease;
}

.preparation-front-list a::before {
    content: "";

    position: absolute;

    left: 24px;
    top: 50%;

    transform: translateY(-50%);

    width: 10px;
    height: 10px;

    background: var(--accent);
}

.preparation-front-list a:hover {
    transform: translateX(6px);
    border-color: rgba(177, 18, 38, 0.6);
}


/* Mobile */

@media (max-width: 850px) {

    .preparation-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .preparation-heading {
        position: static;
    }

    .preparation-main {
        padding: 24px 20px !important;
    }

    .preparation-clarity {
        padding: 25px 20px;
    }

}


/* ================================
   THE WORK HAS ENTERED EXECUTION
================================ */

.journey-execution {
    padding: 150px 0;

    background:
        linear-gradient(
            180deg,
            rgba(177, 18, 38, 0.05),
            transparent 35%
        );

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

    position: relative;
    overflow: hidden;
}


/* Header */

.execution-header {
    max-width: 1050px;
    margin-top: 22px;
}

.execution-header h2 {
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.9;

    letter-spacing: -5px;
    font-weight: 900;
}

.execution-header h2 span {
    color: var(--accent);
}


/* Main Content */

.execution-content {
    margin-top: 65px;
}

.execution-lead {
    max-width: 800px;

    color: var(--text-primary);

    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.4;

    font-weight: 800;
}

.execution-content > p:not(.execution-lead) {
    max-width: 760px;

    margin-top: 18px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Front Cards */

.execution-fronts {
    margin-top: 60px;

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

    gap: 1px;

    background: var(--border);

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

.execution-front {
    min-height: 390px;

    padding: 32px;

    background: var(--bg-primary);

    display: flex;
    flex-direction: column;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.execution-front:hover {
    background: var(--bg-secondary);
    transform: translateY(-6px);
}

.execution-front > span {
    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.execution-front h3 {
    margin-top: 30px;

    font-size: 28px;
    line-height: 1.15;

    font-weight: 900;
    letter-spacing: -1px;
}

.execution-front p {
    margin-top: auto;
    padding-top: 30px;

    color: var(--text-secondary);

    font-size: 16px;
    line-height: 1.7;
}


/* Journey Progression */

.execution-transition {
    margin-top: 90px;

    display: grid;
    grid-template-columns: 180px 1fr;

    gap: 50px;

    padding-top: 35px;

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

.execution-transition > span {
    color: var(--accent-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.execution-steps {
    display: flex;
    flex-direction: column;
}

.execution-steps p {
    padding: 18px 0;

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

    color: var(--text-primary);

    font-size: clamp(21px, 2.5vw, 30px);
    line-height: 1.3;

    font-weight: 800;
}

.execution-steps p:last-child {
    color: var(--accent-light);
}


/* Ending */

.execution-ending {
    max-width: 850px;

    margin-top: 80px;
    margin-left: auto;

    padding: 40px;

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

    background: var(--bg-secondary);
}

.execution-ending p {
    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.execution-ending p + p {
    margin-top: 10px;
}

.execution-ending h3 {
    margin-top: 25px;

    color: var(--text-primary);

    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.15;

    font-weight: 900;
    letter-spacing: -2px;
}


/* Mobile */

@media (max-width: 900px) {

    .execution-fronts {
        grid-template-columns: 1fr;
    }

    .execution-front {
        min-height: 320px;
    }

    .execution-transition {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .execution-ending {
        padding: 28px 22px;
    }

}


/* ================================
   FOLLOW THE WORK
================================ */

.journey-follow {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);

    position: relative;
    overflow: hidden;

    background: var(--bg-primary);
}


/* Layout */

.follow-layout {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


/* Left Side */

.follow-heading {
    position: sticky;
    top: 130px;
}

.follow-heading h2 {
    font-size: clamp(52px, 6.5vw, 92px);

    line-height: 0.9;
    letter-spacing: -5px;

    font-weight: 900;
}

.follow-heading h2 span {
    color: var(--accent);
}

.follow-heading p {
    max-width: 430px;

    margin-top: 30px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.8;
}


/* Social Links */

.follow-links {
    border-top: 1px solid var(--border);
}

.follow-link {
    min-height: 115px;

    padding: 22px 10px;

    display: grid;
    grid-template-columns: 55px 1fr 45px;

    gap: 20px;

    align-items: center;

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

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


/* Number */

.follow-number {
    color: #666;

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

    letter-spacing: 2px;
}


/* Platform Area */

.follow-platform {
    display: flex;
    align-items: center;

    gap: 20px;
}


/* Icon Container */

.follow-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

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

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

    background: rgba(255, 255, 255, 0.025);

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


/* Actual SVG Logo */

.follow-icon iconify-icon {
    font-size: 23px;

    color: var(--text-primary);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Text */

.follow-link small {
    display: block;

    color: var(--accent-light);

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

    letter-spacing: 2px;
}

.follow-link h3 {
    margin-top: 5px;

    color: var(--text-primary);

    font-size: clamp(23px, 2.5vw, 31px);

    line-height: 1.1;

    font-weight: 800;
    letter-spacing: -1px;
}


/* Arrow */

.follow-link > strong {
    color: var(--text-secondary);

    font-size: 24px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* Hover */

.follow-link:hover {
    padding-left: 24px;
    padding-right: 24px;

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

.follow-link:hover .follow-icon {
    border-color: rgba(177, 18, 38, 0.5);

    background: rgba(177, 18, 38, 0.08);

    transform: scale(1.05);
}

.follow-link:hover .follow-icon iconify-icon {
    color: var(--accent-light);

    transform: scale(1.08);
}

.follow-link:hover > strong {
    transform: translate(4px, -4px);

    color: var(--accent-light);
}


/* Founder Links */

.founder-link {
    background: rgba(177, 18, 38, 0.025);
}

.founder-link small {
    color: #999;
}


/* Mobile */

@media (max-width: 850px) {

    .follow-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .follow-heading {
        position: static;
    }

    .follow-link {
        grid-template-columns: 38px 1fr 28px;

        gap: 12px;

        padding: 20px 5px;
    }

    .follow-platform {
        gap: 14px;
    }

    .follow-icon {
        width: 44px;
        height: 44px;
    }

    .follow-icon iconify-icon {
        font-size: 20px;
    }

    .follow-link:hover {
        padding-left: 5px;
        padding-right: 5px;
    }

}

@media (max-width: 520px) {

    .follow-number {
        display: none;
    }

    .follow-link {
        grid-template-columns: 1fr 25px;
    }

    .follow-link h3 {
        font-size: 20px;
    }

}


/* ================================
   THE JOURNEY CONTINUES
================================ */

.journey-continues {
    padding: 160px 0 180px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 65%,
            rgba(177, 18, 38, 0.11),
            transparent 35%
        ),
        var(--bg-primary);
}


/* Huge Background Text */

.journey-continues::before {
    content: "UNITED";

    position: absolute;

    left: 50%;
    bottom: -70px;

    transform: translateX(-50%);

    font-size: clamp(140px, 26vw, 380px);

    line-height: 1;

    font-weight: 900;
    letter-spacing: -14px;

    color: rgba(255, 255, 255, 0.018);

    white-space: nowrap;

    pointer-events: none;
}


/* Main Layout */

.journey-continues-layout {
    margin-top: 45px;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 100px;

    align-items: start;

    position: relative;
    z-index: 1;
}


/* Left Journey Progress */

.journey-continues-story {
    border-top: 1px solid var(--border);
}

.journey-continues-story p {
    padding: 20px 0;

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

    color: #777;

    font-size: 17px;
    line-height: 1.5;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.journey-continues-story p:last-child {
    color: var(--text-primary);
    font-weight: 800;
}

.journey-continues-story p:hover {
    padding-left: 10px;
    color: var(--text-primary);
}


/* Right Call */

.journey-continues-call > p {
    max-width: 760px;

    color: var(--text-secondary);

    font-size: 19px;
    line-height: 1.8;
}


/* Final Statements */

.journey-final-lines {
    margin-top: 60px;
}

.journey-final-lines h2 {
    padding: 32px 0;

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

    font-size: clamp(46px, 6.5vw, 90px);

    line-height: 0.92;

    letter-spacing: -5px;

    font-weight: 900;
}

.journey-final-lines h2:first-child {
    color: var(--text-primary);
}

.journey-final-lines h2:last-child {
    color: var(--accent);

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


/* Final Brand Statement */

.journey-final-brand {
    width: min(100%, 760px);
    margin-top: 64px;
    padding: 28px 0 30px 28px;
    border-left: 3px solid var(--accent);
    border-block: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background: linear-gradient(90deg, rgba(177, 18, 38, 0.08), transparent 72%);
}

.journey-final-brand > span {
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.journey-final-brand strong {
    width: 100%;
    margin-top: 14px;
    color: var(--text-primary);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.journey-final-brand .journey-final-name {
    min-width: 0;
    color: inherit;
}

.journey-final-brand .journey-final-flag-wrap {
    position: relative;
    width: clamp(132px, 12vw, 160px);
    aspect-ratio: 1.42;
    overflow: hidden;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

.journey-final-brand .final-brand-flag {
    position: absolute;
    top: -2%;
    left: -18%;
    width: 130%;
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
}

/* Small Accent Line */

.journey-final-brand::after {
    content: "";

    width: 110px;
    height: 4px;

    margin-top: 28px;

    background: var(--accent);
}

@media (max-width: 620px) {
    .journey-final-brand {
        margin-top: 48px;
        padding: 24px 20px 28px;
        border-left-width: 2px;
    }

    .journey-final-brand strong {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 18px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.05;
    }

    .journey-final-brand .journey-final-flag-wrap {
        width: clamp(136px, 44vw, 168px);
    }

    .journey-final-brand::after {
        width: 76px;
        margin-top: 24px;
    }
}


/* Mobile */

@media (max-width: 850px) {

    .journey-continues {
        padding: 120px 0 140px;
    }

    .journey-continues-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .journey-final-lines {
        margin-top: 45px;
    }

    .journey-final-lines h2 {
        letter-spacing: -3px;
    }

    .journey-continues::before {
        bottom: -25px;

        font-size: 130px;

        letter-spacing: -6px;
    }

}


/* =================================
   JOURNEY HERO — MOBILE FIX
================================= */

@media (max-width: 768px) {

    .journey-hero {
        min-height: auto;

        padding: 75px 0 85px;

        display: block;
    }


    .journey-hero-content {
        width: calc(100% - 48px);

        max-width: none;

        margin-inline: auto;
        padding-right: 0;
    }

    .journey-hero-visual {
        position: relative;
        top: auto;
        right: auto;

        width: calc(100% - 48px);
        max-width: 390px;
        aspect-ratio: 0.9;

        margin: 42px auto 0;

        transform: none;
        border-radius: 30px;
    }


    /* Small Label */

    .journey-hero .page-label {
        display: block;

        margin-bottom: 28px;

        font-size: 11px;
        line-height: 1;

        letter-spacing: 4px;
    }


    /* Main Heading */

    .journey-hero h1 {
        max-width: 100%;

        margin: 0;

        font-size: clamp(48px, 12vw, 62px);

        line-height: 0.92;

        letter-spacing: -3px;

        font-weight: 900;
    }

    .journey-hero h1 span {
        display: inline-block;

        color: var(--accent);
    }


    /* Intro Paragraph */

    .journey-hero > .journey-hero-content > p:not(.journey-question) {
        max-width: 100%;

        margin-top: 34px;

        color: var(--text-secondary);

        font-size: 16px;
        line-height: 1.75;
    }


    /* Accent Line */

    .journey-hero-line {
        width: 65px;
        height: 3px;

        margin-top: 35px;

        background: var(--accent);
    }


    /* Final Question */

    .journey-hero .journey-question {
        max-width: 330px;

        margin-top: 20px;

        color: var(--text-primary);

        font-size: 20px;
        line-height: 1.35;

        font-weight: 800;
    }


    .journey-hero::before {
        inset: 0;
        opacity: 0.62;
    }

}

@media (max-width: 430px) {

    .journey-hero {
        padding: 65px 0 75px;
    }

    .journey-hero-content {
        width: calc(100% - 36px);
    }

    .journey-hero-visual {
        width: calc(100% - 36px);
        border-radius: 24px;
    }

    .journey-hero h1 {
        font-size: clamp(43px, 13vw, 54px);

        line-height: 0.94;

        letter-spacing: -2.5px;
    }

    .journey-hero > .journey-hero-content > p:not(.journey-question) {
        margin-top: 28px;

        font-size: 15.5px;
        line-height: 1.7;
    }

    .journey-hero .journey-question {
        font-size: 19px;
    }

}

/* =================================
   GLOBAL SCROLL PROGRESS
================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 100dvw;
    height: 3px;

    z-index: 99999;

    pointer-events: none;
}

.scroll-progress-bar {
    width: 100%;
    height: 100%;

    background: var(--accent-light);

    transform: scaleX(0);
    transform-origin: left center;

    will-change: transform;

    box-shadow:
        0 0 10px rgba(214, 31, 56, 0.45),
        0 0 20px rgba(214, 31, 56, 0.15);
}



.journey-hero h1,
.journey-hero-content,
.journey-hero-line {
    will-change: transform, opacity;
}

/* .breaking-point-item,
.breaking-questions,
.founder-origin {
    will-change: transform, opacity;
} */

.journey-strategy h2,
.strategy-content > p,
.strategy-highlight {
    will-change: transform, opacity;
}

.journey-bill h2,
.bill-content > p,
.bill-statement {
    will-change: transform, opacity;
}

.journey-fatwa h2,
.fatwa-content > p,
.fatwa-card,
.fatwa-links .evidence-link {
    will-change: transform, opacity;
}


.journey-pressure h2,
.pressure-content > p,
.pressure-highlight,
.journey-pressure .evidence-link,
.petition-block,
.petition-number {
    will-change: transform, opacity;
}


.journey-pressure .evidence-link {
    opacity: 1;
    visibility: visible;
}

.journey-limit h2,
.authority-block,
.limit-truth,
.condition-list > *,
.limit-condition-list > *,
.limit-ending,
.limit-conclusion {
    will-change: transform, opacity;
}


.journey-hostage .page-label,
.hostage-header h2,
.hostage-content > p,
.hostage-petition,
.hostage-number,
.hostage-lesson,
.weakness-list span {
    opacity: 1;
    visibility: visible;
}

.hostage-header h2,
.hostage-petition,
.hostage-number,
.hostage-lesson,
.weakness-list span {
    will-change: transform, opacity;
}

.journey-final-realization .page-label,
.final-realization-heading h2,
.final-realization-content > p,
.final-realization-main,
.break-cycle {
    opacity: 1;
    visibility: visible;
}

.final-realization-heading h2,
.final-realization-main,
.break-cycle {
    will-change: transform, opacity;
}


.journey-final-realization .page-label,
.final-realization-heading h2,
.final-realization-content > p,
.final-realization-main,
.break-cycle {
    opacity: 1;
    visibility: visible;
}

.final-realization-heading h2,
.final-realization-main,
.break-cycle {
    will-change: transform, opacity;
}

.journey-preparation .page-label,
.preparation-heading h2,
.preparation-content > p,
.preparation-not p,
.preparation-main,
.preparation-clarity,
.preparation-system,
.preparation-fronts > span,
.preparation-fronts > p,
.preparation-front-list a {
    opacity: 1;
    visibility: visible;
}

.preparation-heading h2,
.preparation-main,
.preparation-clarity,
.preparation-system,
.preparation-front-list a {
    will-change: transform, opacity;
}

.journey-execution .page-label,
.execution-header h2,
.execution-lead,
.execution-content > p,
.execution-front,
.execution-transition,
.execution-steps p,
.execution-ending {
    opacity: 1;
    visibility: visible;
}

.execution-header h2,
.execution-front,
.execution-transition,
.execution-ending {
    will-change: transform, opacity;
}

.journey-follow .page-label,
.follow-heading h2,
.follow-heading p,
.follow-link {
    opacity: 1;
    visibility: visible;
}

.follow-heading h2,
.follow-link {
    will-change: transform, opacity;
}


.journey-continues .page-label,
.journey-continues-story p,
.journey-continues-call > p,
.journey-final-lines h2,
.journey-final-brand {
    opacity: 1;
    visibility: visible;
}

.journey-continues-story p,
.journey-final-lines h2,
.journey-final-brand {
    will-change: transform, opacity;
}

/* Journey footer */

.journey-cursor-page .journey-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 194, 28, 0.28);
    color: var(--text-primary);
    background: #050504;
}

.journey-cursor-page .journey-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.journey-cursor-page .journey-footer-brand .logo {
    color: var(--text-primary);
    letter-spacing: 0;
}

.journey-cursor-page .journey-footer-brand .logo-img {
    border: 1px solid rgba(255, 194, 28, 0.45);
}

.journey-cursor-page .journey-back-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.journey-cursor-page .journey-back-top:hover {
    color: var(--text-primary);
}

.journey-cursor-page .journey-back-top iconify-icon {
    font-size: 16px;
}

@media (max-width: 520px) {
    .journey-cursor-page .journey-footer .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

