/* ─── CUSTOM FONT ──────────────────────────────────────────── */
@font-face {
    font-family: 'FuturaCondensed';
    src: url('../fonts/FuturaCondensedExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ─── CSS VARIABLES ────────────────────────────────────────── */
:root {
    --accent: #BEFE00;
    --bg: #0a0c0a;
    --white: #ffffff;
    --card-bg: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --text-muted: rgba(255,255,255,0.45);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── BASE ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
}

.nav-logo {
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

/* ─── NAV QR CODE (desktop only) ───────────────────────────── */
.nav-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    position: relative;
}
.nav-qr-box {
    background: #fff;
    border-radius: 10px;
    padding: 7px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.nav-qr-box canvas,
.nav-qr-box img {
    width: 54px !important;
    height: 54px !important;
    display: block;
}
.nav-qr-label {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

/* ─── NAV PILL ─────────────────────────────────────────────── */
.nav-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 100px;
    padding: 10px 11px;
}

.nav-pill-link {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 9px 22px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.nav-pill-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.nav-pill-link--active {
    color: var(--white);
    background: rgba(255,255,255,0.10);
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── MOBILE HAMBURGER ─────────────────────────────────────── */
.nav-hamburger {
    display: none;
    background: rgba(10,12,10,0.72);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(10,12,10,0.85); }
.nav-hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
    background: rgba(10,12,10,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 84px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background 0.2s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,0.05); }
.mobile-menu-cta {
    background: var(--accent);
    color: #000;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
}
.mobile-menu-cta:hover { background: var(--accent); opacity: 0.88; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer-outer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 56px 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 64px;
}
.footer-logo-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-logo { text-decoration: none; }
.footer-logo img { height: 28px; width: auto; display: block; }
.footer-cols {
    display: flex;
    gap: 80px;
}
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}
.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-link {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.footer-legal-link {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.7); }
.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}
.social-icon {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon:hover { color: var(--white); }
.social-icon svg { display: block; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    nav { padding: 12px 32px; }
    .nav-pill { padding: 8px 9px; gap: 1px; }
    .nav-pill-link { font-size: 14px; padding: 8px 18px; }
    .btn-primary { padding: 9px 20px; font-size: 14px; }
    .footer-main { flex-direction: column; gap: 40px; }
    .footer-cols { gap: 50px; flex-wrap: wrap; }
    footer { padding: 50px 40px 0; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-pill { display: none; }
    .nav-qr { display: none; }
    .nav-hamburger { display: inline-flex; }
    .footer-cols { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
    nav { padding: 10px 16px; }
    .nav-logo img { height: 30px; }
    .btn-primary { padding: 10px 16px; font-size: 13px; }
    footer { padding: 30px 16px 0; }
    .footer-col-title { font-size: 13px; margin-bottom: 12px; }
    .footer-col-links { gap: 10px; }
    .footer-link { font-size: 13px; }
    .footer-bottom { padding: 16px 0; }
    .footer-copy { font-size: 11px; }
    .footer-legal-link { font-size: 11px; }
}
