:root {
    --bg0: #070B14;
    --bg1: #0A1020;
    --panel: rgba(10, 16, 32, .78);
    --stroke: rgba(140, 200, 255, .18);
    --text: #EAF2FF;
    --muted: rgba(234, 242, 255, .72);
    --blue: #2AA9FF;
    --yellow: #FFD84D;
    --shadow: 0 22px 70px rgba(0, 0, 0, .52);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --max: 1100px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: rgb(3, 6, 15);
    overflow-x: hidden;

}

.divider {
    margin: 100px 0;
    height: 1px;
}

/* Dynamic radial gradient effect */
.gradient-layer {
    position: fixed;
    /* stays fixed on screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-size: 150% 150%;
    filter: blur(60px);
    mix-blend-mode: screen;
    z-index: -1;
    /* pushes it behind all content */
    transition: background 0.2s ease-out;
}


a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid rgba(255, 216, 77, .75);
    outline-offset: 3px;
    border-radius: 10px;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

/* HEADER - no background, no blur, no border */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    margin: 30px 0;
}

.bar {
    display: flex;
    background: transparent !important;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    /* increased gap for more spacing */
    padding: 30px 0;
    /* increased vertical padding */
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    /* increased gap */
    min-width: 220px;
}

.mark img {
    width: 50px;
    height: 50px;
}

.brand h1 {
    margin: 0;
    font-family: Oxanium, Inter, sans-serif;
    letter-spacing: .04em;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .02em;
    font-weight: 500;
}

/* Desktop nav */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
    /* increased gap */
    justify-content: flex-end;
    padding: 0 2px;
    /* added horizontal padding */
}

.tab,
.cta {
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    padding: 14px 10px;
    /* increased padding */
    font-weight: 600;
    letter-spacing: .02em;
    font-size: 14px;
    /* slightly larger font */
    color: rgba(234, 242, 255, .88);
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    margin: 0 1px;
    /* horizontal margin between buttons */
}

.tab:hover {
    transform: translateY(-1px);
    background: rgba(42, 169, 255, .10);
    border-color: rgba(42, 169, 255, .24);
    color: var(--text);
}

.tab[aria-current="page"] {
    background: linear-gradient(135deg, rgba(42, 169, 255, .18), rgba(255, 216, 77, .12));
    border-color: rgba(255, 216, 77, .22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    color: var(--text);
}

/* Fast Travel button with yellow dot */
.cta {
    margin-left: 6px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 216, 77, .92), rgba(255, 216, 77, .72));
    color: #1A1B1F;
    font-weight: 800;
    border: 1px solid rgba(255, 232, 139, .55);
    box-shadow: 0 18px 45px rgba(255, 216, 77, .14);
    position: relative;
}



.cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 216, 77, .5), rgba(255, 216, 77, .1));
    color: rgba(255, 216, 77);
}

.cta.whatsapp-link svg {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.tab:active,
.cta:active {
    transform: translateY(0) scale(.98);
}

/* Burger */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(140, 200, 255, .22);
    background: rgba(10, 16, 32, .35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    cursor: pointer;
}

.burgerLines {
    width: 18px;
    height: 12px;
    margin: 0 auto;
    position: relative;
}

.burgerLines span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(234, 242, 255, .92);
    transition: transform .22s var(--ease), top .22s var(--ease), opacity .18s var(--ease);
}

.burgerLines span:nth-child(1) {
    top: 0;
}

.burgerLines span:nth-child(2) {
    top: 5px;
}

.burgerLines span:nth-child(3) {
    top: 10px;
}

.burger[aria-expanded="true"] .burgerLines span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.burger[aria-expanded="true"] .burgerLines span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] .burgerLines span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

main {
    padding: 22px 0 58px;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.section {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 16, 32, .74), rgba(10, 16, 32, .52));
    border: 1px solid rgba(140, 200, 255, .14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .34);
    padding: clamp(18px, 3.2vw, 30px);
    position: relative;
    overflow: hidden;
}

.section:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(800px 220px at 15% 0%, rgba(42, 169, 255, .18), transparent 55%),
        radial-gradient(700px 240px at 85% 10%, rgba(255, 216, 77, .14), transparent 55%);
    pointer-events: none;
    opacity: .9;
}

.section>* {
    position: relative;
    z-index: 1;
}

.kicker {
    margin: 0 0 10px 0;
    font-family: Oxanium, Inter, sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: rgba(118, 215, 255, .92);
}

.title {
    margin: 0 0 10px 0;
    font-family: Oxanium, Inter, sans-serif;
    letter-spacing: .02em;
    line-height: 1.06;
    font-size: clamp(26px, 3.2vw, 38px);
}

.lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
}

/* Mobile overlay nav: uses [data-open] attribute, not .active */
@media (max-width: 920px) {
    .brand {
        min-width: auto;
    }

    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        display: none;
        /* hidden by default on mobile */
    }

    nav[data-open="true"] {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        /* remove bottom stretch */
        padding: 24px 24px 24px;
        background: rgba(7, 11, 20, .72);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(140, 200, 255, .12);
        z-index: 100;
        max-height: 100vh;
        overflow-y: auto;
    }


    nav .tab,
    nav .cta {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        border-radius: 14px;
        background: rgba(10, 16, 32, .45);
        border-color: rgba(140, 200, 255, .16);
        margin: 8px 0;
        font-size: 16px;
    }

    nav .cta {
        background: linear-gradient(135deg, rgba(255, 216, 77, .92), rgba(255, 216, 77, .72));
        color: #17181C;
        border-color: rgba(255, 232, 139, .55);
        position: relative;
    }

    /* Yellow dot on mobile cta */
    nav .cta::before {
        content: "";
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #FFD84D;
        box-shadow: 0 0 8px #FFD84D;
    }

    nav .cta {
        padding-left: 48px;
    }
}


