﻿
:root {
    --ivory: #FBF6EC;
    --paper: #FFFFFF;
    --ink: #1B1B1B;
    --sapphire: #16305A;
    --sapphire-soft: #2C4A7C;
    --gold: #C7973F;
    --gold-soft: #E9C88A;
    --rose: #8C3B4A;
    --rose-soft: #C97B87;
    --emerald: #2F5D50;
    --emerald-soft: #6FA491;
    --line: rgba(27,27,27,0.1);
    --muted: #6b6459;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--ink);
    
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    
    font-weight: 700;
    letter-spacing: 0.005em;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;
    line-height: 1;
}

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

::selection {
    background: var(--gold-soft);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--sapphire);
    outline-offset: 3px;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;G80
    padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e12004;
    font-weight: 700;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: #e12004;
        display: inline-block;
    }

/* ---------- nav ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,246,236,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

    .topbar .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.brandmark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sapphire);
}

    .brandmark .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--gold);
    }

.topbar nav {
    display: none;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.topbar a.cta-mini {
    background: var(--sapphire);
    color: var(--ivory);
    padding: 0.6rem 1.3rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .topbar a.cta-mini:hover {
        background: var(--rose);
    }

@media (min-width:820px) {
    .topbar nav {
        display: flex;
    }
}

/* ---------- hero ---------- */
.hero {
    padding: 100px 30px 30px;
    position: relative;
    overflow: hidden;
    background: url('../../images/bg/black.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

    .hero .wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: center;
    }

@media (min-width:900px) {
    .hero .wrap {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.4rem);
    color: #ffffff;
    margin-top: 1rem;
    line-height: 1.05;
}

    .hero h1 em {
        font-style: italic;
        /* color: #ffcf33; */
        font-size: 110px;
    }
.ms-banner__bg-title {
    margin-bottom: 0px;
}
.hero p.lede {
    margin-top: 1.3rem;
    font-size: 16PX;
    /* color: #ffffff; */
    /* max-width: 42ch; */
}

.hero .actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffcf33;
    color: #000000;
    padding: 0.95rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}
    .btn-primary:hover {
        background: var(--rose);
        transform: translateY(-2px);
    }

.btn-ghost {
    border: 1.5px solid #ffcf33;
    color: #ffcf33;
    padding: 0.9rem 1.7rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.3s ease, color 0.3s ease;
}

    .btn-ghost:hover {
        background: var(--sapphire);
        color: var(--ivory);
    }

/* hero visual: faceted gem illustration built from CSS/SVG */
.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-visual svg {
        width: 100%;
        height: 100%;
    }

    .hero-visual .badge {
        position: absolute;
        bottom: 6%;
        left: 6%;
        background: var(--paper);
        border-radius: 16px;
        padding: 0.9rem 1.1rem;
        box-shadow: 0 14px 34px rgba(22,48,90,0.14);
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--sapphire);
    }

        .hero-visual .badge .material-symbols-outlined {
            color: var(--gold);
            font-size: 22px;
        }

/* ---------- section shell ---------- */
section {
    padding: 30px 0px;
    background: url('../../images/bg/black.jpg');
    background-size:cover;
    background-repeat:no-repeat;
}

.section-head {
    margin-bottom:20px;
}

    .section-head h2 {
        font-size: clamp(2rem,4.2vw,2.7rem);
        color: #ffffff;
        margin-top: 0.8rem;
    }

    .section-head p {
        margin-top: 0.9rem;
        color: #ffffff;
        /* max-width: 52ch; */
    }

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- intro band ---------- */
.intro-band {
    background: var(--sapphire);
    color: #000;
    border-radius: 28px;
    padding: 20px;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    /* background-image: url('../../images/bg/gold.png'); */
    background-color: #ffffffb5;
}

@media (min-width:760px) {
    .intro-band {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.intro-band h2 {
    color: #000000;
    font-size: clamp(1.8rem,3.6vw,2.3rem);
}

.intro-band p {
    color: rgb(0 0 0);
    font-size: 1.05rem;
}

/* ---------- tiers ---------- */
.tiers {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr;
}

@media (min-width:760px) {
    .tiers {
        grid-template-columns: 1.15fr 1fr;
    }
}

.tier {
    border-radius: 22px;
    padding: clamp(2rem,5vw,2.8rem);
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(27,27,27,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .tier:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 54px rgba(27,27,27,0.09);
    }

    .tier.featured {
        background: linear-gradient(150deg, #9a0700, #e20e02);
        color: var(--ivory);
        border: none;
        background-image: url(../../images/bg/black.jpg);
    }

.tier-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--sapphire);
    margin-bottom: 1.1rem;
    background-image: url(../../images/bg/gold.png);
}

.tier.featured .tier-icon {
    background: var(--gold);
    color: var(--sapphire);
    background-image: url(../../images/bg/gold.png);
}

.tier h3 {
    font-size: clamp(1.5rem,3vw,2rem);
}

.tier.featured h3 {
    color: var(--ivory);
}

.tier .tag {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 700;
}

.tier.featured .tag {
    color: var(--gold-soft);
}

.tier p {
    margin-top: 0rem;
    color: var(--muted);
    max-width: 48ch;
}

.tier.featured p {
    color: rgba(251,246,236,0.82);
}

/* ---------- categories ---------- */
.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width:640px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:960px) {
    .categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: url('../../images/bg/red.png');
    background: linear-gradient(150deg, #9a0700, #e20e02);
}

    .category:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 34px rgba(27,27,27,0.08);
        border-color: transparent;
    }

    .category .icon-circle {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--paper);
        position: absolute;
        background-image: url(../../images/bg/gold.png) !important;
    }

        .category .icon-circle .material-symbols-outlined {
            font-size: 22px;
        }

    .category .label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #ffffff;
        padding-left: 60px;
    }

    /* jewel-tone rotation for icon circles */
    .category:nth-child(7n+1) .icon-circle {
        background: var(--gold);
    }

    .category:nth-child(7n+2) .icon-circle {
        background: var(--sapphire);
    }

    .category:nth-child(7n+3) .icon-circle {
        background: var(--rose);
    }

    .category:nth-child(7n+4) .icon-circle {
        background: var(--emerald);
    }

    .category:nth-child(7n+5) .icon-circle {
        background: var(--sapphire-soft);
    }

    .category:nth-child(7n+6) .icon-circle {
        background: var(--rose-soft);
    }

    .category:nth-child(7n+7) .icon-circle {
        background: var(--emerald-soft);
    }

/* ---------- why partner ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}
@media (max-width: 1024px) {
    section {
        padding: 30px 15px;
    }
}
@media (max-width: 767px) {
    .categories {
        grid-template-columns: repeat(1, 1fr);
    }
    .hero h1 em {
        font-size: 80px;
    }
    .hero h1 {
        font-size: 35px;
    }
}
    @media (min-width:760px) {
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .why-card {
        background: var(--paper);
        border-radius: 18px;
        padding: 1.6rem 1.5rem;
        border: 1px solid var(--line);
        display: flex;
        gap: 1rem;
        align-items: center;
    }

        .why-card .num {
            font-weight: 700;
            font-style: italic;
            color: #c68012;
            font-size: 1.6rem;
            flex-shrink: 0;
            width: 2rem;
        }

        .why-card p {
            font-weight: 500;
            color: var(--ink);
        }

    /* ---------- closing ---------- */
    .closing {
        background: linear-gradient(150deg, var(--rose), #6c2c39);
        border-radius: 28px;
        padding: clamp(3rem,8vw,5rem) clamp(1.6rem,6vw,3rem);
        text-align: center;
        color: var(--ivory);
    }

        .closing h2 {
            font-size: clamp(2.1rem,5vw,3.1rem);
            color: var(--ivory);
            max-width: 18ch;
            margin: 0 auto;
        }

        .closing p {
            margin-top: 1.1rem;
            color: rgba(251,246,236,0.85);
            max-width: 44ch;
            margin-left: auto;
            margin-right: auto;
        }

        .closing .btn-primary {
            background: var(--ivory);
            color: var(--rose);
            margin-top: 2rem;
        }

            .closing .btn-primary:hover {
                background: var(--gold-soft);
                color: var(--ink);
            }

    footer {
        text-align: center;
        padding: 2.5rem 1.5rem 3rem;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        color: var(--muted);
    }

    .bg-red {
        background: url(../../images/bg/red.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-gold {
        background: url(../../images/bg/gold.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }

        .reveal {
            opacity: 1;
            transform: none;
        }
    }


