*{box-sizing:border-box}body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;background:#fffaf3;color:#21180f}.container{width:min(1120px,92%);margin:auto}.site-header{position:relative;overflow:hidden;color:white;background:linear-gradient(135deg,#3b0764,#7c2d12 55%,#f59e0b)}.header-bg{position:absolute;inset:0;background:radial-gradient(circle at 15% 20%,rgba(255,255,255,.25),transparent 30%),radial-gradient(circle at 85% 10%,rgba(251,191,36,.35),transparent 28%);opacity:.9}.navbar{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;padding:18px 0}.brand{display:flex;gap:12px;align-items:center;text-decoration:none;color:inherit}.brand-icon{display:grid;place-items:center;width:46px;height:46px;border-radius:16px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);font-size:26px;box-shadow:0 12px 30px rgba(0,0,0,.18)}.brand strong{font-size:22px;display:block}.brand small{font-size:12px;opacity:.85}.nav-links{display:flex;align-items:center;gap:18px}.nav-links a{color:white;text-decoration:none;font-weight:700}.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:11px 18px;text-decoration:none;font-weight:800;border:0;cursor:pointer}.btn-light{background:white;color:#581c87!important}.btn-primary{background:linear-gradient(135deg,#7c3aed,#d97706);color:white}.nav-toggle{display:none;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.25);color:white;border-radius:12px;padding:9px 12px;font-size:20px}.hero{position:relative;z-index:1;padding:54px 0 70px}.eyebrow{text-transform:uppercase;letter-spacing:.16em;font-size:12px;font-weight:800;color:#fde68a}.hero h1{font-size:clamp(34px,6vw,64px);line-height:1;margin:10px 0 14px}.hero p{font-size:18px;max-width:720px;opacity:.92}.page-content{padding:38px 0 60px}.card{background:white;border:1px solid #f0dfc8;border-radius:24px;padding:26px;box-shadow:0 18px 45px rgba(88,28,135,.08);margin-bottom:22px}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.field{margin-bottom:16px}.field label{display:block;font-weight:800;margin-bottom:7px;color:#3b2a1a}.input,select,textarea{width:100%;border:1px solid #e7d4ba;border-radius:14px;padding:13px 14px;font:inherit;background:#fffdf9}textarea{min-height:140px}.alert{padding:14px 16px;border-radius:16px;margin-bottom:18px}.alert-error{background:#fee2e2;color:#7f1d1d}.table{width:100%;border-collapse:collapse;background:white;border-radius:18px;overflow:hidden}.table th,.table td{text-align:left;padding:14px;border-bottom:1px solid #f2e4d2}.table th{background:#fff1d6}.muted{color:#6b5b4b}.small{font-size:13px}.site-footer{background:#1c130d;color:white;padding:46px 0 20px}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:28px}.site-footer a{display:block;color:#fef3c7;text-decoration:none;margin:8px 0}.copyright{border-top:1px solid rgba(255,255,255,.12);margin-top:26px;padding-top:18px;color:#cbbda9}@media(max-width:780px){.nav-toggle{display:block}.nav-links{display:none;position:absolute;top:74px;right:0;left:0;background:#3b0764;border-radius:18px;padding:18px;flex-direction:column;align-items:flex-start}.nav-links.open{display:flex}.grid,.grid-2,.footer-grid{grid-template-columns:1fr}.hero{padding:36px 0 46px}}
/* Mobile app style bottom nav */
.mobile-bottom-nav {
    display: none;
}
/* ==========================================
   MOBILE APP NAVIGATION
   ========================================== */

.mobile-bottom-nav {
    display: none;
}

@media screen and (max-width: 780px) {

    body {
        padding-bottom: 95px !important;
    }

    /* Hide website footer on mobile */
    .site-footer,
    .footer {
        display: none !important;
    }

    /* Hide top navigation links */
    .nav-links {
        display: none;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        height: 72px;

        display: grid !important;
        grid-template-columns: 1fr 1fr 72px 1fr 1fr;
        align-items: center;

        z-index: 99999;

        background: rgba(28,19,13,.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        border-radius: 26px;
        border: 1px solid rgba(255,255,255,.12);

        box-shadow:
            0 20px 45px rgba(0,0,0,.35),
            0 4px 12px rgba(0,0,0,.15);
    }

    .mobile-bottom-nav a {
        text-decoration: none;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        color: #fef3c7;
        font-size: 11px;
        font-weight: 700;
    }

    .mobile-bottom-nav .nav-item span {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .mobile-bottom-nav .main-action {
        width: 62px;
        height: 62px;

        margin: -28px auto 0;

        border-radius: 22px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: white;

        background: linear-gradient(
            135deg,
            #7c3aed,
            #f59e0b
        );

        box-shadow:
            0 15px 35px rgba(124,58,237,.55);

        font-size: 34px;
        font-weight: 900;
    }

    .mobile-bottom-nav .main-action span {
        margin: 0;
        line-height: 1;
    }

    /* App-like cards */
    .card {
        border-radius: 20px;
    }

    .hero {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 15px;
    }
}
.mobile-app-nav {
    display: none !important;
}

@media screen and (max-width: 780px) {
    .site-footer,
    .desktop-footer {
        display: none !important;
    }

    body {
        padding-bottom: 95px !important;
    }

    .mobile-app-nav {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        height: 72px !important;
        z-index: 999999 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr 76px 1fr 1fr !important;
        align-items: center !important;
        background: rgba(28,19,13,.97) !important;
        border: 1px solid rgba(255,255,255,.16) !important;
        border-radius: 28px !important;
        box-shadow: 0 20px 50px rgba(0,0,0,.38) !important;
    }

    .mobile-app-nav a {
        text-decoration: none !important;
    }

    .nav-tab {
        height: 72px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        color: #fef3c7 !important;
        font-weight: 900 !important;
    }

    .nav-icon {
        font-size: 21px !important;
        line-height: 1 !important;
    }

    .nav-text {
        font-size: 11px !important;
        line-height: 1 !important;
    }

    .nav-center {
        width: 64px !important;
        height: 64px !important;
        margin: -30px auto 0 !important;
        border-radius: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        background: linear-gradient(135deg,#7c3aed,#f59e0b) !important;
        box-shadow: 0 16px 34px rgba(124,58,237,.55) !important;
        font-size: 38px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }
}

@media screen and (min-width: 781px) {
    .mobile-app-nav {
        display: none !important;
    }
}
/* Fix hamburger showing on laptop/desktop */
.hamburger,
.menu-btn,
.nav-toggle {
    display: none !important;
}

.desktop-nav,
.nav-links {
    display: flex !important;
}

@media screen and (max-width: 780px) {
    .hamburger,
    .menu-btn,
    .nav-toggle {
        display: block !important;
    }

    .desktop-nav,
    .nav-links {
        display: none !important;
    }
}