/* =========================================================
 * CORE / GLOBAL STYLES (SHARED ACROSS ALL PAGES)
 * ========================================================= */

:root {
    --bg: #0f1117;
    --panel: #181c24;
    --panel-2: #202633;
    --panel-3: #11151c;

    --text: #f4f4f4;
    --muted: #b8c0cc;

    --line: rgba(255, 255, 255, 0.10);

    --accent: #ff7b00;
    --accent-2: #ff3c00;
    --accent-soft: rgba(255, 123, 0, 0.10);
    --accent-line: rgba(255, 123, 0, 0.25);

    --success: #28a745;
    --success-soft: rgba(40, 167, 69, 0.15);

    --warning: #ffc107;
    --warning-soft: rgba(255, 193, 7, 0.18);

    --danger: #dc3545;
    --danger-soft: rgba(220, 53, 69, 0.16);

    --info: #17a2b8;
    --info-soft: rgba(23, 162, 184, 0.16);

    --neutral: #6c757d;
    --neutral-soft: rgba(108, 117, 125, 0.18);

    --shadow: 0 14px 35px rgba(0, 0, 0, 0.30);

    --radius: 18px;
    --radius-sm: 10px;
    --radius-xs: 8px;

    --content-width: 1100px;
}

/* ==============================
 * RESET / BASE
 * ============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background:
    radial-gradient(circle at top, rgba(255, 110, 0, 0.09), transparent 30%),
    linear-gradient(180deg, #0d1016 0%, #11151d 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #ffb067;
    text-decoration: none;
}

a:hover {
    color: #ffd0a1;
}

main {
    width: 100%;
}

h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.2;
}

p,
ul {
    margin-top: 0;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
}

code {
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 6px;
}

/* ==============================
 * LAYOUT
 * ============================== */
.site-wrap {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    padding: 28px 0 48px;
}

/* ==============================
 * HERO (SHARED)
 * ============================== */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background:
    radial-gradient(circle at top, rgba(255, 123, 0, 0.16), transparent 32%),
    linear-gradient(180deg, #121722 0%, #0f131b 100%);
}

.full-hero,
.compact-hero {
    width: 100%;
    padding: 28px 20px;
}

.full-hero {
    min-height: 260px;
}

.compact-hero {
    min-height: 140px;
}

.hero-inner {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
}

.full-hero .hero-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
}

.compact-hero .hero-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 200px;
    max-height: 180px;
}

.hero-copy {
    text-align: left;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb067;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: #fff;
}

.hero .lead {
    font-size: 1.06rem;
    color: #e8edf5;
}

.hero .sublead {
    font-size: 1rem;
    color: #ffcf9d;
    font-weight: 700;
}

/* ==============================
 * NAV
 * ============================== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 21, 28, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
}

.nav-item {
    padding: 9px 14px;
    border-radius: 999px;
    color: #dce4ef;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.nav-item.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
}

/* ==============================
 * CARDS
 * ============================== */
.status-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.status-card h2 {
    margin-bottom: 14px;
}

/* ==============================
 * STATUS BADGES
 * ============================== */
.status-pill,
.badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pill.open {
    background: rgba(255, 123, 0, 0.14);
    color: #ffb067;
}

.badge.paid {
    background: var(--success-soft);
    color: #8ff0a8;
}

.badge.pending {
    background: var(--warning-soft);
    color: #ffe28a;
}

/* ==============================
 * BUTTONS
 * ============================== */
.action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.action-btn:hover {
    transform: translateY(-1px);
}

/* ==============================
 * FOOTER
 * ============================== */
.site-footer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
    linear-gradient(
        180deg,
        rgba(10, 13, 19, 0.92),
                    rgba(6, 8, 12, 0.98)
    );
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 80, 0, 0),
                                rgba(255, 120, 0, 0.85),
                                rgba(255, 190, 80, 0.95),
                                rgba(255, 120, 0, 0.85),
                                rgba(255, 80, 0, 0)
    );
    box-shadow:
    0 0 10px rgba(255, 100, 0, 0.45),
    0 0 20px rgba(255, 140, 0, 0.28);
}

.footer-inner {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.separator {
    color: rgba(255, 255, 255, 0.25);
}

.neon-icon {
    color: #ffb347;
    text-shadow:
    0 0 6px rgba(255, 170, 70, 0.65),
    0 0 14px rgba(255, 120, 0, 0.40);
}

/* specifically restore the fire */
.bi-fire,
.flame-flicker {
    color: #ff7a00 !important;
    text-shadow:
    0 0 6px rgba(255, 120, 0, 0.95),
    0 0 14px rgba(255, 80, 0, 0.72),
    0 0 22px rgba(255, 180, 70, 0.40);
}

/* animated flicker */
@keyframes flameFlicker {
    0% {
        transform: rotate(-2deg) scale(1);
        opacity: 0.96;
    }
    25% {
        transform: rotate(2deg) scale(1.06);
        opacity: 1;
    }
    50% {
        transform: rotate(-1deg) scale(0.98);
        opacity: 0.92;
    }
    75% {
        transform: rotate(1deg) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: rotate(-2deg) scale(1);
        opacity: 0.97;
    }
}

.flame-flicker {
    display: inline-block;
    animation: flameFlicker 1.15s ease-in-out infinite;
    transform-origin: center bottom;
}

.brand-link {
    color: #ffb067;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.brand-link:hover {
    color: #ffffff;
    text-shadow:
    0 0 8px rgba(255, 140, 0, 0.35),
    0 0 16px rgba(255, 100, 0, 0.22);
}

.neon-tm {
    font-size: 0.72em;
    vertical-align: super;
    color: #ffb067;
}

/* ==============================
 * MOBILE
 * ============================== */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .action-btn {
        width: 100%;
    }
}
