:root {
    --bsq-green-950: #08271f;
    --bsq-green-900: #0E3B2E;
    --bsq-green-800: #124b3a;
    --bsq-green-700: #176B4D;
    --bsq-gold: #C6A15B;
    --bsq-gold-light: #E1C889;
    --bsq-cream: #F7F4EC;
    --bsq-soft: #FBFAF6;
    --bsq-text: #18231F;
    --bsq-muted: #6B7280;
    --bsq-border: rgba(14, 59, 46, 0.12);
    --bsq-shadow: 0 22px 60px rgba(8, 39, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: var(--bsq-soft);
    color: var(--bsq-text);
    text-align: right;
}

a {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.bsq-navbar {
    background: rgba(8, 39, 31, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
}

.bsq-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bsq-gold), var(--bsq-gold-light));
    color: var(--bsq-green-950);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(198, 161, 91, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .brand-text strong {
        color: #fff;
        font-size: 1rem;
    }

    .brand-text small {
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.72rem;
        letter-spacing: 0.3px;
    }

.main-nav-links .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    padding-inline: 0.85rem !important;
}

    .main-nav-links .nav-link:hover {
        color: #fff;
    }

.btn-bsq-gold {
    background: linear-gradient(135deg, var(--bsq-gold), var(--bsq-gold-light));
    color: var(--bsq-green-950) !important;
    border: 0;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(198, 161, 91, 0.22);
}

    .btn-bsq-gold:hover {
        filter: brightness(1.03);
        transform: translateY(-1px);
    }

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    background: radial-gradient(circle at 18% 25%, rgba(198, 161, 91, 0.22), transparent 28%), radial-gradient(circle at 88% 18%, rgba(23, 107, 77, 0.38), transparent 34%), linear-gradient(135deg, var(--bsq-green-950), var(--bsq-green-900));
    color: #fff;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    opacity: 0.55;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bsq-gold-light);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 200, 137, 0.22);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1.7px;
    margin-bottom: 1.35rem;
}

    .hero-title span {
        color: var(--bsq-gold-light);
        display: block;
    }

.hero-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.16rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: 720px;
}

    .hero-trust-row > div {
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-trust-row strong {
        display: block;
        color: #fff;
        font-size: 0.96rem;
    }

    .hero-trust-row span {
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.85rem;
    }

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    padding: 1.2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1rem;
    padding-inline: 0.3rem;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #3ee083;
    border-radius: 50%;
    margin-left: 0.45rem;
    box-shadow: 0 0 0 6px rgba(62, 224, 131, 0.14);
}

.mini-badge {
    background: rgba(198, 161, 91, 0.16);
    color: var(--bsq-gold-light);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.75rem;
}

.suite-card {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1rem;
    margin-bottom: 0.9rem;
}

    .suite-card.active {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(225, 200, 137, 0.35);
    }

.suite-icon,
.feature-icon,
.module-icon-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.22), rgba(225, 200, 137, 0.12));
    color: var(--bsq-gold-light);
    border-radius: 18px;
}

.suite-icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
}

.suite-card h3 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.suite-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.88rem;
}

.module-status {
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

    .module-status.enabled {
        background: rgba(62, 224, 131, 0.13);
        color: #8af2b4;
    }

    .module-status.soon {
        background: rgba(255, 255, 255, 0.11);
        color: rgba(255, 255, 255, 0.72);
    }

.ai-policy-box {
    display: flex;
    gap: 0.85rem;
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(8, 39, 31, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .ai-policy-box i {
        color: var(--bsq-gold-light);
        font-size: 1.5rem;
    }

    .ai-policy-box strong {
        display: block;
        color: #fff;
        margin-bottom: 0.25rem;
    }

    .ai-policy-box p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.75;
        font-size: 0.9rem;
    }

.section-block {
    padding: 5.5rem 0;
}

.section-soft {
    background: var(--bsq-cream);
}

.section-heading {
    margin-bottom: 2.5rem;
}

    .section-heading span {
        display: inline-block;
        color: var(--bsq-gold);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.7rem;
    }

    .section-heading h2 {
        color: var(--bsq-green-950);
        font-size: clamp(1.8rem, 3.4vw, 3rem);
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 0.8rem;
    }

    .section-heading p {
        max-width: 760px;
        margin: auto;
        color: var(--bsq-muted);
        line-height: 1.95;
        font-size: 1.05rem;
    }

    .section-heading.light h2,
    .section-heading.light p {
        color: #fff;
    }

    .section-heading.light p {
        color: rgba(255, 255, 255, 0.72);
        margin: 0;
    }

.feature-card,
.module-showcase-card,
.timeline-card {
    background: #fff;
    border: 1px solid var(--bsq-border);
    border-radius: 28px;
    padding: 1.7rem;
    min-height: 100%;
    box-shadow: 0 18px 50px rgba(8, 39, 31, 0.06);
    transition: 0.25s ease;
}

    .feature-card:hover,
    .module-showcase-card:hover,
    .timeline-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--bsq-shadow);
    }

.feature-icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
    color: var(--bsq-green-900);
    background: rgba(198, 161, 91, 0.16);
    margin-bottom: 1.2rem;
}

.feature-card h3,
.module-showcase-card h3,
.timeline-card h3 {
    color: var(--bsq-green-950);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p,
.module-showcase-card p,
.timeline-card p {
    color: var(--bsq-muted);
    line-height: 1.9;
    margin-bottom: 0;
}

.module-showcase-card {
    padding: 2rem;
}

    .module-showcase-card.main-module {
        border-color: rgba(198, 161, 91, 0.45);
    }

.module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.module-icon-lg {
    width: 68px;
    height: 68px;
    background: var(--bsq-green-900);
    color: var(--bsq-gold-light);
    font-size: 1.7rem;
}

.module-chip {
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(8, 39, 31, 0.06);
    color: var(--bsq-green-900);
    font-weight: 900;
    font-size: 0.8rem;
}

    .module-chip.active {
        background: rgba(198, 161, 91, 0.18);
        color: #8a6729;
    }

.clean-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.75rem;
}

    .clean-list li {
        color: var(--bsq-green-900);
        font-weight: 700;
    }

    .clean-list i {
        color: var(--bsq-gold);
        margin-left: 0.45rem;
    }

.dark-section {
    background: radial-gradient(circle at 15% 15%, rgba(198, 161, 91, 0.16), transparent 26%), linear-gradient(135deg, var(--bsq-green-950), var(--bsq-green-900));
    color: #fff;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.governance-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.35rem;
}

    .governance-item i {
        color: var(--bsq-gold-light);
        font-size: 1.55rem;
        margin-bottom: 0.9rem;
        display: inline-block;
    }

    .governance-item strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    .governance-item span {
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.7;
    }

.timeline-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-card span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--bsq-green-900);
    color: var(--bsq-gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 1rem;
}

.bsq-footer {
    background: var(--bsq-green-950);
    color: rgba(255, 255, 255, 0.72);
    padding: 2rem 0;
}

.footer-brand {
    color: #fff;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.footer-pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(198, 161, 91, 0.13);
    color: var(--bsq-gold-light);
    padding: 0.65rem 1rem;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0 4rem;
    }

    .hero-trust-row,
    .timeline-row {
        grid-template-columns: 1fr;
    }

    .governance-grid {
        grid-template-columns: 1fr;
    }

    .navbar-actions {
        margin-top: 1rem;
        align-items: stretch !important;
    }

        .navbar-actions .btn {
            width: 100%;
        }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .suite-card {
        grid-template-columns: 52px 1fr;
    }

    .module-status {
        grid-column: 1 / -1;
        width: fit-content;
    }

    .section-block {
        padding: 4rem 0;
    }
}
