/* ══════════════════════════════════════════════
   YOU SHINE GLOBAL — black-navy & gold theme
══════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #05070D;
    --navy: #0A0F1E;
    --navy-2: #0F172B;
    --gold: #F2B705;
    --gold-light: #FFD54A;
    --gold-deep: #C8920A;
    --gold-grad: linear-gradient(135deg, #FFE27A 0%, #F2B705 45%, #C8920A 100%);
    --gold-text: linear-gradient(180deg, #FFE27A 0%, #F2B705 55%, #D39A06 100%);
    --text: rgba(255,255,255,0.8);
    --muted: rgba(255,255,255,0.6);
    --line: rgba(242,183,5,0.18);
    --card: linear-gradient(160deg, rgba(22,32,58,0.85) 0%, rgba(10,15,30,0.92) 100%);
    --ink: #0A0F1E;
    --ink-muted: #4B5263;
    --head: "Montserrat", "Poppins", sans-serif;
    --body: "Poppins", "Segoe UI", sans-serif;
    --radius: 16px;
    --pad-x: clamp(1.25rem, 5vw, 4.5rem);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
}

::selection {
    background: rgba(242,183,5,0.4);
    color: #fff;
}

.gold {
    background: var(--gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-family: var(--head);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    color: var(--ink);
    background: var(--gold-grad);
    box-shadow: 0 8px 26px rgba(242,183,5,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .btn .arrow {
        transition: transform 0.25s ease;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(242,183,5,0.48), inset 0 1px 0 rgba(255,255,255,0.5);
    }

        .btn:hover .arrow {
            transform: translateX(4px);
        }

.btn-sm {
    padding: 0.62rem 1.5rem;
    font-size: 0.82rem;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(242,183,5,0.6);
    box-shadow: none;
}

    .btn-outline:hover {
        background: rgba(242,183,5,0.12);
        box-shadow: none;
    }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.65rem var(--pad-x);
    background: rgba(5,7,13,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

    nav.nav-top {
        background: linear-gradient(180deg, rgba(5,7,13,0.9) 0%, rgba(5,7,13,0) 100%);
        border-bottom-color: transparent;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .nav-logo img {
        width: 118px;
        height: auto;
        filter: drop-shadow(0 0 12px rgba(242,183,5,0.25));
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    list-style: none;
}

    .nav-links a {
        position: relative;
        text-decoration: none;
        color: rgba(255,255,255,0.9);
        font-family: var(--head);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.4rem 0;
        transition: color 0.2s ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -4px;
            width: 0;
            height: 2px;
            border-radius: 2px;
            background: var(--gold-grad);
            transform: translateX(-50%);
            transition: width 0.25s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }

            .nav-links a:hover::after,
            .nav-links a.active::after {
                width: 100%;
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 9px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(600px 400px at 50% 0%, rgba(242,183,5,0.14), transparent 70%), rgba(5,7,13,0.98);
    z-index: 300;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu > a {
        font-family: var(--head);
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }

        .mobile-menu > a:hover,
        .mobile-menu > a.active {
            color: var(--gold);
        }

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    cursor: pointer;
    color: var(--gold);
    font-size: 1.2rem;
}

.mobile-menu-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── SHARED TYPE ── */
section {
    position: relative;
    padding: 5.5rem var(--pad-x);
}

.eyebrow {
    font-family: var(--head);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.9rem;
}

.title {
    font-family: var(--head);
    font-size: clamp(1.8rem, 2.9vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
}

.lead {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    max-width: 480px;
}

/* ══ IMAGE SLIDER ══ */
.slider {
    position: relative;
    padding: 0;
    margin-top: var(--nav-h, 126px);
    background: var(--bg);
    overflow: hidden;
}

.slides {
    position: relative;
    aspect-ratio: 2048 / 768;
}

.slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    .slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(242,183,5,0.5);
    background: rgba(5,7,13,0.55);
    color: var(--gold);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease, color 0.2s ease;
}

    .slider:hover .slider-arrow,
    .slider-arrow:focus-visible {
        opacity: 1;
    }

    .slider-arrow:hover {
        background: var(--gold);
        color: var(--ink);
    }

    .slider-arrow svg {
        width: 22px;
        height: 22px;
    }

    .slider-arrow.prev {
        left: 1.25rem;
    }

    .slider-arrow.next {
        right: 1.25rem;
    }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    z-index: 5;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

    .dot.active {
        width: 30px;
        background: var(--gold-grad);
        box-shadow: 0 0 10px rgba(242,183,5,0.6);
    }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── FEATURE BAR ── */
.feature-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(180deg, var(--navy) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.fb-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.4rem 1.5rem;
}

    .fb-item + .fb-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(242,183,5,0.45), transparent);
    }

    .fb-item svg {
        width: 46px;
        height: 46px;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 12px rgba(242,183,5,0.45));
        transition: transform 0.3s ease;
    }

    .fb-item:hover svg {
        transform: translateY(-4px) scale(1.06);
    }

    .fb-item h3 {
        font-family: var(--head);
        font-size: 1.02rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.45rem;
    }

    .fb-item p {
        font-size: 0.85rem;
        color: var(--muted);
        max-width: 220px;
    }

/* ── POWER OF CRYPTO ── */
.power {
    display: flex;
    align-items: center;
    min-height: 520px;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(90deg, #05070D 0%, rgba(5,7,13,0.85) 30%, rgba(5,7,13,0) 50%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 22%), url('../img/home-bg1.jpg') right -80px center / auto 100% no-repeat #05070D;
}

.power-copy {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.coin-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 0 var(--pad-x) 4.5rem;
    background: #05070D;
}

.coin-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.6rem;
    padding: 1rem 1.1rem 0.9rem;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .coin-card:hover {
        transform: translateY(-4px);
        border-color: rgba(242,183,5,0.5);
        box-shadow: 0 0 24px rgba(242,183,5,0.12);
    }

    .coin-card > svg:first-child {
        width: 34px;
        height: 34px;
    }

.coin-name {
    font-family: var(--head);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

    .coin-name small {
        display: block;
        font-family: var(--body);
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--muted);
        letter-spacing: 0.04em;
    }

.spark {
    grid-column: 1 / -1;
    width: 100%;
    height: 34px;
}

/* ── FULL-WIDTH IMAGE BANNER ── */
.image-banner {
    padding: 0;
    line-height: 0;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .image-banner img {
        display: block;
        width: 100%;
        height: auto;
    }

/* ── PLATFORM ── */
.platform {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(5,7,13,0) 0%, rgba(5,7,13,0) 54%, rgba(5,7,13,0.82) 66%, #05070D 82%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 14%), linear-gradient(180deg, #05070D 0%, rgba(5,7,13,0) 12%), url('../img/home-bg2.jpg') min(0px, calc(100vw - 1500px)) center / auto 100% no-repeat #05070D;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.platform-copy {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.store-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.3rem 0.6rem 1rem;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .store-btn:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(242,183,5,0.2);
    }

    .store-btn svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .store-btn span {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
        font-family: var(--head);
        font-size: 1.15rem;
        font-weight: 600;
    }

    .store-btn small {
        font-family: var(--body);
        font-size: 0.62rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
    }

/* ── WHY CHOOSE (light) ── */
.why {
    text-align: center;
    background: radial-gradient(900px 260px at 50% 0%, rgba(242,183,5,0.10), transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #EEF1F6 100%);
}

    .why .eyebrow {
        color: #3B4252;
    }

    .why .title {
        color: var(--ink);
        margin-bottom: 2.8rem;
    }

        .why .title .gold {
            background: linear-gradient(180deg, #E8AA00 0%, #B8860B 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2.2rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F6FB 100%);
    border: 1px solid rgba(10,15,30,0.06);
    box-shadow: 0 14px 36px rgba(10,15,30,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        border-color: rgba(242,183,5,0.55);
        box-shadow: 0 22px 50px rgba(10,15,30,0.14);
    }

    .why-card svg {
        width: 52px;
        height: 52px;
        margin-bottom: 1.1rem;
    }

    .why-card h3 {
        font-family: var(--head);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 0.5rem;
    }

    .why-card p {
        font-size: 0.9rem;
        color: var(--ink-muted);
        line-height: 1.6;
    }

/* ── COMMUNITY ── */
.community {
    display: grid;
    grid-template-columns: 1fr 1.3fr auto;
    gap: 2rem;
    align-items: center;
    min-height: 560px;
    overflow: hidden;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background: linear-gradient(90deg, #05070D 0%, rgba(5,7,13,0.8) 24%, rgba(5,7,13,0) 42%, rgba(5,7,13,0) 72%, rgba(5,7,13,0.85) 86%, #05070D 100%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 18%), linear-gradient(180deg, #05070D 0%, rgba(5,7,13,0) 14%), url('../img/home-bg3.jpg') center / cover no-repeat #05070D;
}

    .community .lead {
        max-width: 340px;
        margin-bottom: 2rem;
    }

.world {
    min-height: 380px;
}

.community-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(242,183,5,0.25);
}

    .community-list li {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-family: var(--head);
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
    }

    .community-list svg {
        width: 34px;
        height: 34px;
        filter: drop-shadow(0 0 10px rgba(242,183,5,0.4));
    }

/* ── CTA ── */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: clamp(400px, 33vw, 640px);
    padding: clamp(3.5rem, 6vw, 5.5rem) var(--pad-x) 5rem;
    background: radial-gradient(ellipse 38% 34% at 50% 24%, rgba(255,255,255,0.45), rgba(255,255,255,0) 70%), linear-gradient(0deg, rgba(5,7,13,0.55) 0%, rgba(5,7,13,0) 22%), url('../img/home-bg4.jpg') center / cover no-repeat #1B2A4A;
}

    .cta h2 {
        font-family: var(--head);
        font-size: clamp(1.4rem, 2.4vw, 2rem);
        font-weight: 800;
        text-transform: uppercase;
        color: var(--ink);
        margin-bottom: 0.6rem;
        text-shadow: 0 1px 16px rgba(255,255,255,0.7);
    }

    .cta p {
        font-size: 1.05rem;
        font-weight: 500;
        color: #1B2438;
        margin-bottom: 2rem;
        text-shadow: 0 1px 12px rgba(255,255,255,0.75);
    }

    .cta .btn {
        box-shadow: 0 10px 30px rgba(120,80,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
    }

/* ── FOOTER ── */
footer {
    background: var(--bg);
    padding: 2.8rem var(--pad-x) 1.8rem;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(242,183,5,0.6), transparent) 1;
}

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

    .footer-top img {
        width: 120px;
        filter: drop-shadow(0 0 12px rgba(242,183,5,0.25));
    }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

    .footer-links li + li::before {
        content: "|";
        color: rgba(255,255,255,0.25);
        margin: 0 1rem;
    }

    .footer-links a {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.social {
    display: flex;
    gap: 0.9rem;
}

    .social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

        .social a:hover {
            color: var(--ink);
            background: var(--gold-grad);
            box-shadow: 0 0 16px rgba(242,183,5,0.45);
        }

    .social svg {
        width: 19px;
        height: 19px;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

    .footer-bottom .tagline {
        color: var(--gold);
    }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .coin-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

        .fb-item:nth-child(3)::before {
            display: none;
        }

        .fb-item:nth-child(n+3) {
            border-top: 1px solid rgba(242,183,5,0.12);
        }

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

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

    .community-list {
        flex-direction: row;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid rgba(242,183,5,0.25);
        padding: 1.5rem 0 0;
    }

        .community-list li {
            align-items: center;
            text-align: center;
        }
}

@media (max-width: 768px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .nav-logo img {
        width: 96px;
    }

    .nav-actions .btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.78rem;
    }

    .coin-row {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 3.5rem;
    }

    .footer-links li + li::before {
        margin: 0 0.6rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .nav-actions {
        display: none;
    }

    .feature-bar,
    .why-grid {
        grid-template-columns: 1fr;
    }

        .fb-item::before {
            display: none;
        }

        .fb-item + .fb-item {
            border-top: 1px solid rgba(242,183,5,0.12);
        }

    .fb-item {
        padding: 1.8rem 1.25rem;
    }

    .power .btn,
    .community .btn {
        width: 100%;
    }

    .store-row {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    .community-list li {
        font-size: 0.72rem;
        white-space: normal;
    }
}

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

/* ══════════════════════════════════════════════
   SLIDER & CTA — small screens
══════════════════════════════════════════════ */
@media (hover: none) {
    .slider-arrow {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .slider,
    .image-banner {
        padding: 0;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
    }

        .slider-arrow svg {
            width: 16px;
            height: 16px;
        }

        .slider-arrow.prev {
            left: 0.5rem;
        }

        .slider-arrow.next {
            right: 0.5rem;
        }

    .slider-dots {
        bottom: 0.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

        .dot.active {
            width: 22px;
        }

    .cta {
        min-height: 440px;
        background-position: center, center, 38% center;
    }
}

/* ══════════════════════════════════════════════
   POWER SECTION — small screens
══════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .power {
        background: linear-gradient(90deg, #05070D 0%, rgba(5,7,13,0.9) 38%, rgba(5,7,13,0.2) 70%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 22%), url('../img/home-bg1.jpg') right -80px center / auto 100% no-repeat #05070D;
    }
}

@media (max-width: 1024px) {
    .power {
        min-height: 480px;
        background: linear-gradient(90deg, rgba(5,7,13,0.94) 0%, rgba(5,7,13,0.75) 55%, rgba(5,7,13,0.35) 100%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 25%), url('../img/home-bg1.jpg') 70% center / cover no-repeat #05070D;
    }
}

@media (max-width: 768px) {
    .power {
        min-height: 0;
        padding-bottom: 17rem;
        background: linear-gradient(180deg, #05070D 0%, rgba(5,7,13,0.85) 55%, rgba(5,7,13,0.1) 80%, #05070D 100%), url('../img/home-bg1.jpg') 72% bottom / auto 280px no-repeat #05070D;
    }
}

/* ══════════════════════════════════════════════
   PLATFORM & COMMUNITY — small screens
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .platform {
        background: linear-gradient(90deg, rgba(5,7,13,0.2) 0%, rgba(5,7,13,0.55) 40%, rgba(5,7,13,0.92) 60%, #05070D 80%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 14%), url('../img/home-bg2.jpg') left center / auto 100% no-repeat #05070D;
    }
}

@media (max-width: 1024px) {
    .community {
        grid-template-columns: 1fr;
        min-height: 0;
        background: linear-gradient(180deg, #05070D 0%, #0A0F1E 100%);
    }

    .world {
        min-height: 0;
        aspect-ratio: 2.2 / 1;
        border-radius: 18px;
        border: 1px solid rgba(242,183,5,0.25);
        background: url('../img/home-bg3.jpg') center / cover no-repeat;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(242,183,5,0.12);
    }
}

@media (max-width: 768px) {
    .platform {
        display: block;
        min-height: 0;
        padding-bottom: 17rem;
        background: linear-gradient(180deg, #05070D 0%, rgba(5,7,13,0.9) 55%, rgba(5,7,13,0.1) 78%, #05070D 100%), url('../img/home-bg2.jpg') 22% bottom / auto 280px no-repeat #05070D;
    }

    .world {
        aspect-ratio: 1.6 / 1;
    }
}

/* ══════════════════════════════════════════════
   INNER PAGES — shared
══════════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 11rem var(--pad-x) 5.5rem;
    overflow: hidden;
    background: linear-gradient(90deg, #05070D 0%, rgba(5,7,13,0.85) 35%, rgba(5,7,13,0.15) 65%), linear-gradient(0deg, #05070D 0%, rgba(5,7,13,0) 35%), url('../img/home-bg1.jpg') right center / auto 100% no-repeat #05070D;
    border-bottom: 1px solid var(--line);
}

    .page-hero h1 {
        font-family: var(--head);
        font-size: clamp(2.3rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.05;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 1rem;
        animation: rise 0.8s ease both;
    }

    .page-hero p {
        max-width: 520px;
        font-size: 1.02rem;
        color: var(--text);
        animation: rise 0.9s ease 0.1s both;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    margin-bottom: 1.2rem;
    font-family: var(--head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb li + li::before {
        content: "/";
        margin-right: 0.6rem;
        color: rgba(242,183,5,0.6);
    }

    .breadcrumb li:last-child {
        color: var(--gold);
    }

.center {
    text-align: center;
}

    .center .lead {
        margin-left: auto;
        margin-right: auto;
    }

/* ── ABOUT: intro ── */
.about-intro {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
    align-items: center;
    background: radial-gradient(700px 420px at 90% 50%, rgba(242,183,5,0.1), transparent 70%), var(--bg);
}

    .about-intro .lead + .lead {
        margin-top: 1.1rem;
    }

.about-quote {
    margin-top: 1.8rem;
    padding: 1.1rem 1.4rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, rgba(242,183,5,0.12), rgba(242,183,5,0));
    font-family: var(--head);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

.about-media {
    position: relative;
}

.about-photo {
    aspect-ratio: 4 / 3.4;
    border-radius: 22px;
    border: 1px solid rgba(242,183,5,0.35);
    background: linear-gradient(180deg, rgba(5,7,13,0) 40%, rgba(5,7,13,0.8) 100%), url('../img/stock/city-night.jpg') center / cover no-repeat;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(242,183,5,0.14);
}

.about-badge {
    position: absolute;
    left: -1.5rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.3rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(22,32,58,0.92), rgba(5,7,13,0.92));
    border: 1px solid rgba(242,183,5,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: bob 6s ease-in-out infinite;
}

    .about-badge svg {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .about-badge strong {
        display: block;
        font-family: var(--head);
        font-size: 0.95rem;
        color: #fff;
    }

    .about-badge span {
        font-size: 0.78rem;
        color: var(--gold);
    }

/* ── ABOUT: mission / vision / values ── */
.mvv {
    background: linear-gradient(180deg, #0A0F1E 0%, #05070D 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.mvv-card {
    position: relative;
    padding: 2.4rem 2rem;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid rgba(242,183,5,0.18);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .mvv-card::after {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(242,183,5,0.18), transparent 70%);
    }

    .mvv-card:hover {
        transform: translateY(-6px);
        border-color: rgba(242,183,5,0.55);
        box-shadow: 0 0 30px rgba(242,183,5,0.14);
    }

    .mvv-card svg {
        width: 46px;
        height: 46px;
        margin-bottom: 1.2rem;
        filter: drop-shadow(0 0 10px rgba(242,183,5,0.4));
    }

    .mvv-card h3 {
        font-family: var(--head);
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 0.7rem;
    }

    .mvv-card p {
        font-size: 0.93rem;
        color: var(--muted);
        line-height: 1.75;
    }

/* ── CONTACT ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
    align-items: stretch;
    background: radial-gradient(700px 420px at 10% 30%, rgba(242,183,5,0.08), transparent 70%), var(--bg);
}

.contact-card {
    padding: 2.6rem;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid rgba(242,183,5,0.2);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

    .contact-card .title {
        font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    }

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    margin-top: 1.8rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        font-family: var(--head);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.75);
    }

    .field input,
    .field textarea {
        width: 100%;
        padding: 0.9rem 1.1rem;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(5,7,13,0.6);
        color: #fff;
        font-family: var(--body);
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .field textarea {
        min-height: 150px;
        resize: vertical;
    }

        .field input::placeholder,
        .field textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .field input:focus,
        .field textarea:focus {
            border-color: var(--gold);
            background: rgba(5,7,13,0.85);
            box-shadow: 0 0 0 3px rgba(242,183,5,0.18);
        }

.contact-form .btn {
    justify-self: start;
    margin-top: 0.4rem;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.start-card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 2.4rem;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(242,183,5,0.35);
    background: linear-gradient(180deg, rgba(5,7,13,0.1) 0%, rgba(5,7,13,0.75) 50%, rgba(5,7,13,0.97) 100%), url('../img/home-bg1.jpg') 68% center / cover no-repeat #05070D;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(242,183,5,0.1);
}

    .start-card h3 {
        font-family: var(--head);
        font-size: 1.6rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 0.7rem;
    }

    .start-card p {
        color: var(--text);
        margin-bottom: 1.6rem;
        max-width: 440px;
    }

    .start-card .btn {
        align-self: flex-start;
    }

.community-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.6rem 2rem;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid rgba(242,183,5,0.2);
}

    .community-card h3 {
        font-family: var(--head);
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
    }

    .community-card p {
        font-size: 0.85rem;
        color: var(--muted);
    }

    .community-card .social a {
        border: 1px solid rgba(242,183,5,0.35);
    }

/* ── INNER PAGES — responsive ── */
@media (max-width: 1024px) {
    .about-intro,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-badge {
        left: 1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 8.5rem;
        padding-bottom: 4rem;
        background: linear-gradient(180deg, rgba(5,7,13,0.8) 0%, rgba(5,7,13,0.92) 100%), url('../img/home-bg1.jpg') 70% center / cover no-repeat #05070D;
    }

    .contact-card,
    .start-card {
        padding: 1.8rem 1.4rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

        .contact-form .btn {
            width: 100%;
        }

    .community-card {
        padding: 1.4rem;
    }
}
