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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(
            circle at top right,
            rgba(35, 97, 255, 0.25),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(112, 72, 255, 0.15),
            transparent 35%
        ),
        #050812;

    color: #ffffff;
    min-height: 100vh;
}

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

/* NAVIGATION */

.navbar {
    width: 100%;
    min-height: 78px;
    padding: 0 7%;

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

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(5, 8, 18, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;

    background: linear-gradient(
        90deg,
        #4da3ff,
        #8b5cff
    );

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

.navbar nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar nav a {
    color: #cdd5e6;
    font-size: 14px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ffffff;
}

.nav-button {
    padding: 12px 20px;
    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #246bfd,
        #7255ff
    );

    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

/* HERO SECTION */

.hero {
    min-height: 100vh;
    padding: 150px 7% 80px;

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

    text-align: center;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1050px;
}

.network-label {
    display: inline-block;

    margin-bottom: 25px;
    padding: 9px 16px;

    border: 1px solid rgba(75, 156, 255, 0.4);
    border-radius: 50px;

    color: #69afff;
    background: rgba(31, 93, 202, 0.12);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 18px;

    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.95;
    letter-spacing: -5px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #80bdff,
        #8d72ff
    );

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

.hero h2 {
    max-width: 800px;
    margin: 0 auto 22px;

    color: #e6ebf5;

    font-size: clamp(24px, 4vw, 43px);
    line-height: 1.2;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto;

    color: #9da9bd;

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

/* BUTTONS */

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

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-button,
.secondary-button {
    min-width: 175px;
    padding: 15px 24px;

    border-radius: 12px;

    font-weight: 700;
    transition: 0.3s;
}

.primary-button {
    background: linear-gradient(
        90deg,
        #246bfd,
        #7255ff
    );
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.primary-button:hover,
.secondary-button:hover,
.nav-button:hover {
    transform: translateY(-3px);
}

/* TOKEN INFORMATION */

.token-information {
    margin-top: 70px;
    padding: 25px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.token-information div {
    padding: 10px;
}

.token-information span {
    display: block;

    margin-bottom: 8px;

    color: #7f8ca3;

    font-size: 13px;
}

.token-information strong {
    font-size: 16px;
}

/* TABLET */

@media screen and (max-width: 900px) {

    .navbar nav {
        display: none;
    }

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

    .hero h1 {
        letter-spacing: -2px;
    }
}

/* MOBILE */

@media screen and (max-width: 500px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-button {
        padding: 10px 13px;
        font-size: 12px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

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

    .token-information {
        grid-template-columns: 1fr;
    }

    
    /* ========================================
   ABOUT BMR SECTION
======================================== */

.about-section {}
    position: relative;
    padding: 120px 7%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(56, 108, 255, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 50%,
            rgba(117, 77, 255, 0.10),
            transparent 35%
        ),
        #070a14;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 15px;

    border: 1px solid rgba(83, 145, 255, 0.35);
    border-radius: 50px;

    color: #6daeff;
    background: rgba(50, 104, 220, 0.10);

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

.section-heading h2 {
    margin-bottom: 22px;

    color: #ffffff;
    font-size: clamp(32px, 5vw, 55px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading > p:not(.section-label) {
    max-width: 700px;
    margin: 0 auto;

    color: #98a5bb;
    font-size: 18px;
    line-height: 1.7;
}

/* ABOUT CARDS */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-card {
    position: relative;
    min-height: 280px;
    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

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

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

    border-color: rgba(91, 145, 255, 0.35);

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

.card-number {
    margin-bottom: 45px;

    color: #659cff;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-card h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.2;
}

.about-card p {
    color: #98a5bb;

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

/* ABOUT RESPONSIVE */

@media screen and (max-width: 900px) {

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

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

@media screen and (max-width: 500px) {

    .about-section {
        padding: 90px 5%;
    }

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

    .section-heading h2 {
        letter-spacing: -1px;
    }

    .section-heading > p:not(.section-label) {
        font-size: 16px;
    }

    .about-card {
        padding: 28px;
    }
}

/* =========================
   TOKENOMICS SECTION
========================= */

.tokenomics-section {
    padding: 100px 8%;
    background: #070914;
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-section .section-label {
    color: #5b8cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tokenomics-section h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.tokenomics-description {
    max-width: 800px;
    color: #a8b0c5;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 45px;
}

.tokenomics-supply-box {
    background: linear-gradient(135deg, #111525, #0c0f1c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.tokenomics-supply-box .supply-label {
    color: #8d96ad;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.tokenomics-supply-box .supply-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.tokenomics-supply-box .supply-symbol {
    color: #6f7cff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tokenomics-card {
    background: #101321;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 140, 255, 0.5);
}

.tokenomics-card .card-number {
    color: #5b8cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.tokenomics-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.tokenomics-card p {
    color: #a8b0c5;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .tokenomics-section {
        padding: 70px 5%;
    }

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

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

    .tokenomics-supply-box .supply-number {
        font-size: 40px;
    }
}

/* =========================
   ROADMAP SECTION
========================= */

.roadmap-section {
    padding: 100px 8%;
    background:
        radial-gradient(circle at top left, rgba(82, 92, 255, 0.14), transparent 35%),
        #070914;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-heading {
    max-width: 820px;
    margin-bottom: 50px;
}

.roadmap-heading .section-label {
    display: inline-block;
    color: #6f9cff;
    border: 1px solid rgba(111, 156, 255, 0.45);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.roadmap-heading h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 18px;
}

.roadmap-heading > p:last-child {
    color: #a8b0c5;
    font-size: 18px;
    line-height: 1.7;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.roadmap-card {
    position: relative;
    min-height: 260px;
    padding: 34px;
    background: linear-gradient(145deg, #111526, #0d101d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.roadmap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(#4f8cff, #7657ff);
}

.roadmap-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 140, 255, 0.55);
}

.roadmap-number {
    display: block;
    color: #6f9cff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.roadmap-status {
    display: inline-block;
    color: #ffffff;
    background: rgba(91, 140, 255, 0.14);
    border: 1px solid rgba(91, 140, 255, 0.3);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.roadmap-card h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 14px;
}

.roadmap-card > p:last-child {
    color: #a8b0c5;
    font-size: 16px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .roadmap-section {
        padding: 75px 5%;
    }

    .roadmap-heading h2 {
        font-size: 36px;
    }

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

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

/* =========================
   TRANSPARENCY SECTION
========================= */

.transparency-section {
    padding: 100px 8%;
    background:
        radial-gradient(circle at top right, rgba(111, 87, 255, 0.14), transparent 35%),
        #070914;
}

.transparency-container {
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-heading {
    max-width: 850px;
    margin-bottom: 50px;
}

.transparency-heading .section-label {
    display: inline-block;
    color: #6f9cff;
    border: 1px solid rgba(111, 156, 255, 0.45);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.transparency-heading h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 18px;
}

.transparency-heading > p:last-child {
    color: #a8b0c5;
    font-size: 18px;
    line-height: 1.7;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.transparency-card {
    position: relative;
    min-height: 230px;
    padding: 34px;
    background: linear-gradient(145deg, #111526, #0d101d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 140, 255, 0.55);
}

.transparency-number {
    display: block;
    color: #6f9cff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.transparency-card h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 14px;
}

.transparency-card p {
    color: #a8b0c5;
    font-size: 16px;
    line-height: 1.7;
}

/* MOBILE */
@media screen and (max-width: 768px) {
    .transparency-section {
        padding: 75px 5%;
    }

    .transparency-heading h2 {
        font-size: 36px;
    }

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

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

/* =========================
   WHITEPAPER SECTION
========================= */

.whitepaper-section {
    padding: 110px 8%;
    background:
        radial-gradient(circle at bottom left, rgba(82, 92, 255, 0.16), transparent 38%),
        #070914;
}

.whitepaper-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.whitepaper-content .section-label {
    display: inline-block;
    color: #6f9cff;
    border: 1px solid rgba(111, 156, 255, 0.45);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.whitepaper-content h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.whitepaper-description {
    color: #a8b0c5;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 680px;
}

.whitepaper-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.whitepaper-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #3478ff, #7657ff);
    border: 1px solid transparent;
}

.secondary-btn {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.secondary-btn:hover {
    border-color: rgba(111, 156, 255, 0.7);
}

.whitepaper-card {
    position: relative;
    padding: 40px;
    min-height: 390px;
    background: linear-gradient(145deg, #13172a, #0d101d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    overflow: hidden;
}

.whitepaper-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(91, 100, 255, 0.15);
    filter: blur(10px);
}

.document-label {
    display: inline-block;
    color: #6f9cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.whitepaper-card h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 18px;
}

.whitepaper-card > p {
    color: #a8b0c5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.document-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.document-info div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.document-info span {
    color: #747e98;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.document-info strong {
    color: #ffffff;
    font-size: 14px;
    text-align: right;
}

/* MOBILE */
@media screen and (max-width: 768px) {
    .whitepaper-section {
        padding: 75px 5%;
    }

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

    .whitepaper-content h2 {
        font-size: 38px;
    }

    .whitepaper-card {
        min-height: auto;
        padding: 30px;
    }

    .whitepaper-buttons {
        flex-direction: column;
    }

    .whitepaper-btn {
        width: 100%;
    }
}

/* Logo BMR trên thanh menu */
.logo img {
    width: 150px;
    height: 55px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

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

.site-footer {
    background: linear-gradient(180deg, #090d1c 0%, #0d1228 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 8% 30px;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #ffffff;
}

.footer-brand p {
    margin: 0;
    color: #a8b0c5;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-links a {
    color: #a8b0c5;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6f9cff;
}

.footer-contract {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-contract span {
    color: #7f8aa8;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contract a {
    color: #6f9cff;
    text-decoration: none;
    font-size: 15px;
    word-break: break-all;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #7f8aa8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    max-width: 600px;
    text-align: right;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 45px 5% 25px;
    }

    .footer-links {
        gap: 15px 20px;
    }

    .footer-contract {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }
}

/* ========================================
   FOUNDER SECTION
======================================== */

.founder-section {
    padding: 100px 24px;
    background:
        radial-gradient(circle at 15% 20%, rgba(43, 110, 255, 0.15), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(123, 78, 255, 0.12), transparent 35%),
        #050916;
    color: #ffffff;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.founder-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(78, 156, 255, 0.5);
    border-radius: 50px;
    color: #65b5ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.founder-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(36px, 4.8vw, 60px);
white-space: nowrap;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #d8e9ff, #6fa8ff, #8b6cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-subtitle {
    margin: 0;
    color: #aebbd1;
    font-size: 20px;
}

/* Founder introduction */

.founder-intro {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
    padding: 30px;
    border: 1px solid rgba(125, 155, 220, 0.18);
    border-radius: 28px;
    background: rgba(17, 27, 55, 0.72);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 22px;
    background: #10182e;
}

.founder-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(5, 9, 22, 0.35),
        transparent 40%
    );
}

.founder-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
}

.founder-intro-content {
    padding: 20px 20px 20px 0;
}

.founder-year {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 15px;
    border-radius: 50px;
    background: linear-gradient(90deg, #2677ff, #744fff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.founder-intro-content h3 {
    margin: 0 0 22px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    color: #ffffff;
}

.founder-intro-content p {
    margin: 0 0 18px;
    color: #b8c4d9;
    font-size: 17px;
    line-height: 1.8;
}

/* Founder timeline cards */

.founder-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.founder-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(125, 155, 220, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(20, 33, 68, 0.92),
            rgba(9, 15, 34, 0.96)
        );
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    border-color: rgba(87, 142, 255, 0.55);
    box-shadow: 0 20px 55px rgba(22, 73, 180, 0.18);
}

.founder-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2677ff, #744fff);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.founder-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
}

.founder-card h4 {
    margin: 0 0 20px;
    color: #72aaff;
    font-size: 15px;
    font-weight: 600;
}

.founder-card p {
    margin: 0 0 16px;
    color: #aebbd1;
    font-size: 16px;
    line-height: 1.75;
}

.founder-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Founder Section */

@media screen and (max-width: 900px) {
    .founder-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-image-wrapper {
        min-height: 460px;
    }

    .founder-image {
        height: 460px;
    }

    .founder-intro-content {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .founder-section {
        padding: 75px 18px;
    }

    .founder-heading {
        margin-bottom: 40px;
    }

    .founder-heading h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .founder-intro {
        padding: 18px;
        border-radius: 20px;
    }

    .founder-image-wrapper {
        min-height: 380px;
        border-radius: 16px;
    }

    .founder-image {
        height: 380px;
    }

    .founder-timeline {
        grid-template-columns: 1fr;
    }

    .founder-card {
        padding: 26px;
    }

    .founder-card h3 {
        font-size: 23px;
    }
}

/* FIX MOBILE FOUNDER TITLE & LOGO */

@media screen and (max-width: 768px) {
    .founder-heading h2 {
        font-size: 34px;
        line-height: 1.15;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        padding: 0 10px;
    }

    .logo img {
        width: 105px;
        height: auto;
    }
}

/* ========================================
   SWAP SECTION
======================================== */

.swap-section {
    padding: 100px 24px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(38, 119, 255, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(116, 79, 255, 0.14),
            transparent 35%
        ),
        #070c1d;
    color: #ffffff;
}

.swap-container {
    max-width: 1050px;
    margin: 0 auto;
}

.swap-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.swap-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(78, 156, 255, 0.5);
    border-radius: 50px;
    color: #65b5ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.swap-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    background: linear-gradient(
        90deg,
        #d8e9ff,
        #6fa8ff,
        #8b6cff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.swap-heading p {
    margin: 0;
    color: #aebbd1;
    font-size: 18px;
    line-height: 1.7;
}

.swap-card {
    padding: 42px;
    border: 1px solid rgba(125, 155, 220, 0.22);
    border-radius: 28px;
    background: rgba(17, 27, 55, 0.88);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.swap-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
}

.swap-token {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    padding: 25px;
    border: 1px solid rgba(125, 155, 220, 0.2);
    border-radius: 20px;
    background: rgba(7, 13, 32, 0.65);
}

.swap-token-symbol {
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
}

.swap-token-name {
    color: #93a3bd;
    font-size: 14px;
}

.swap-arrow {
    color: #72aaff;
    font-size: 38px;
    font-weight: 800;
}

.swap-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.swap-information > div {
    padding: 20px;
    border: 1px solid rgba(125, 155, 220, 0.16);
    border-radius: 16px;
    background: rgba(7, 13, 32, 0.5);
}

.swap-information span {
    display: block;
    margin-bottom: 7px;
    color: #8493ad;
    font-size: 13px;
}

.swap-information strong {
    color: #ffffff;
    font-size: 16px;
}

.swap-contract {
    grid-column: 1 / -1;
}

.swap-contract strong {
    overflow-wrap: anywhere;
    color: #72aaff;
}

.swap-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border-radius: 15px;
    background: linear-gradient(90deg, #2677ff, #744fff);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.swap-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(56, 104, 255, 0.3);
}

.swap-warning {
    margin: 20px 0 0;
    color: #8190aa;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .swap-section {
        padding: 75px 18px;
    }

    .swap-card {
        padding: 24px 18px;
    }

    .swap-pair {
        gap: 12px;
    }

    .swap-token {
        min-width: 0;
        width: 42%;
        padding: 20px 10px;
    }

    .swap-token-symbol {
        font-size: 23px;
    }

    .swap-arrow {
        font-size: 28px;
    }

    .swap-information {
        grid-template-columns: 1fr;
    }

    .swap-contract {
        grid-column: auto;
    }
}

/* ==============================
   SWAP BMR SECTION
============================== */

.swap-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #07152f 0%, #0c1235 100%);
}

.swap-container {
    max-width: 1060px;
    margin: 0 auto;
}

.swap-label {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #2f70c9;
    border-radius: 50px;
    color: #65b4ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.swap-container h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 18px;
}

.swap-container p {
    color: #b7c0d8;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.swap-button {
    display: block;
    width: 100%;
    padding: 18px 24px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(90deg, #2878ff, #764cff);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.swap-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.swap-contract {
    margin-top: 14px;
    color: #ffffff;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.swap-contract span {
    margin-right: 5px;
}

.swap-contract strong {
    color: #62afff;
}

/* Mobile */
@media (max-width: 768px) {
    .swap-section {
        padding: 70px 20px;
    }

    .swap-container h2 {
        font-size: 28px;
    }

    .swap-container p {
        font-size: 16px;
    }

    .swap-button {
        font-size: 16px;
        padding: 16px 18px;
    }

    .swap-contract {
        font-size: 14px;
    }
}