/* Minimal Neutral Theme */

body {
    background-color: #F9FAFB; /* Light neutral background */
    color: #111827; /* Near-black ink */
    font-family: "Athletics", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Flat Neutral Background */
.sci-fi-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: #F9FAFB;
}

/* Subtle Ambient Glow */
.sci-fi-sun {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 60vh;
    max-width: 1200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.035) 0%, rgba(249, 250, 251, 0) 70%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}


/* Interface Cards */
.scifi-card {
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 12px 24px -12px rgba(17, 24, 39, 0.10);
    color: #111827;
}

/* Button */
.scifi-btn {
    background-color: #111827;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.scifi-btn:hover {
    background-color: #1F2937;
    box-shadow: 0 10px 20px -8px rgba(17, 24, 39, 0.45);
    transform: translateY(-1px);
}

.scifi-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(17, 24, 39, 0.3);
}

/* Secondary / outline button */
.scifi-btn-outline {
    background-color: #FFFFFF;
    color: #111827;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scifi-btn-outline:hover {
    background-color: #F9FAFB;
    border-color: rgba(17, 24, 39, 0.2);
}

/* Icon tile (used for KPI / feature icons) */
.icon-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(17, 24, 39, 0.05);
    color: #111827;
    flex-shrink: 0;
}

/* Status / meta pills */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

/* Typography */
.massive-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111827;
}

/* Custom Data Visualization Boxes */
.data-box {
    background: #F9FAFB;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 4px;
    padding: 1.5rem;
    transition: background 0.2s ease;
}

.data-box:hover {
    background: rgba(17, 24, 39, 0.05);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}
