/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.main-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

/* HEADER & LOGO */
.header {
    margin-bottom: 60px;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

/* "NETWORK" Subtitle Styling */
.network-text {
    font-size: 14px;
    letter-spacing: 8px; /* Wide spacing for that cinematic look */
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    margin-left: 8px; /* Offset slightly to visually center due to letter-spacing */
    opacity: 0.9;
}

/* GRID LAYOUT */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two Equal Columns */
    gap: 24px;
    align-items: start;
}

/* Mobile: Stack columns */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* PANELS (Grey Bordered Boxes) */
.panel {
    border: 1px solid #333333; /* Subtle grey border */
    border-radius: 4px; /* Slight rounding, keep it mostly boxy */
    padding: 30px;
    text-align: left;
    height: 100%;
    background-color: transparent; /* Keeping it clean/black */
    transition: border-color 0.3s ease;
}

.panel:hover {
    border-color: #555555; /* Slightly brighter on hover */
}

.panel-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888; /* Grey text for headers */
    margin-bottom: 25px;
    font-weight: 600;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BUTTONS */
.button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Solid White Button (Right To Work) */
.button-solid {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.button-solid:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Ghost Button (Operations) */
.button-ghost {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff; /* Thin white outline */
}

.button-ghost:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
