:root {
            --bg-color: #121d16;
            --text-color: #E5E5E5;
            --beak-yellow: #FFB300;
            --border-color: rgba(255, 179, 0, 0.2);
            --panel-bg: rgba(255, 255, 255, 0.02);
            --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
        }

        /* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    color: inherit;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .logo {
    display: inline-block;
    max-height: 60px; /* limit logo height */
}
nav {
    display: inline-block;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--slate-white);
    transition: color 0.3s ease;
    color: #E5E5E5 !important;
}

nav ul li a:visited {
    color: #E5E5E5 !important;
}

nav ul li a:hover {
    color: #E5E5E5 !important;
}

nav ul li a:active {
    color: #E5E5E5 !important;
}

header a {
    text-decoration: none;
    color: inherit;
}

header a:hover {
    color: var(--beak-yellow);
}
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-mono);
            margin: 0;
            line-height: 1.6;
            font-size: 18px;
        }

  /*      .container {
            max-width: 1200px;
            margin: 0 auto;
        }*/

        /* --- HEADER --- */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            font-size: 12px;
            color: var(--text-color);
            opacity: 0.8;
        }

        .top-bar .logo {
            color: var(--beak-yellow);
            font-weight: bold;  
            font-size: 16px;
            letter-spacing: 1px;
        }
        .brief-container {
            max-width: 860px;
            padding: 40px 20px;
            padding-top: 120px;
            margin: 0 auto;
        }
        
        .brief-container a {
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            color:var(--beak-yellow) !important;
        }
        
        .brief-container a:hover {
            color: var(--slate-white) !important;
        }

        .brief-header h4 {
            color: var(--text-color);
            text-transform: uppercase;
            font-weight: normal;
            margin: 0 0 10px 0;
            letter-spacing: 1px;
            font-size: 12px;
            opacity: 0.8;
        }

        .brief-header h1 {
            color: var(--beak-yellow);
            font-size: 28px;
            text-transform: uppercase;
            font-weight: normal;
            margin: 0 0 40px 0;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        /* --- MAIN GRID --- */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .section-title {
            color: var(--beak-yellow);
            font-size: 20px;
            margin-top: 0;
            margin-bottom: 15px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 8px;
        }

        .sub-title {
            color: var(--beak-yellow);
            text-transform: uppercase;
            margin-bottom: 10px;
            font-size: 16px;
            margin-top: 25px;
        }

        .brief-section {
            margin-bottom: 40px;
        }

        .brief-section p {
            margin-bottom: 15px;
        }

        /* Data Table */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            font-size: 18px;
        }

        .data-table th, .data-table td {
            text-align: left;
            padding: 12px 10px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: top;
        }

        .data-table th {
            color: var(--beak-yellow);
            font-weight: normal;
            background-color: rgba(255, 179, 0, 0.05);
        }

        /* Strategy List */
        .strategy-list {
            list-style: none;
            padding: 0;
        }

        .strategy-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            text-indent: -20px;
        }

        .strategy-list li::before {
            content: "•";
            color: var(--beak-yellow);
            display: inline-block;
            width: 20px;
        }

        /* --- RIGHT COLUMN (WIDGETS) --- */
        .widget-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            position: sticky;
            top: 40px;
        }

        .widget-panel {
            background-color: var(--panel-bg);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            text-align: center;
        }

        .widget-panel.large {
            grid-column: span 2;
        }

        .widget-title {
            font-size: 12px;
            color: var(--text-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            align-self: flex-start;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 5px;
            width: 100%;
            text-align: left;
        }

        /* Chart Placeholders */
        .placeholder-radar {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(255,179,0,0.2) 0%, rgba(255,179,0,0) 70%);
            border: 1px dashed rgba(255, 179, 0, 0.4);
            border-radius: 50%;
            margin-top: 10px;
        }

        .placeholder-bar-chart {
            display: flex;
            gap: 5px;
            height: 80px;
            align-items: flex-end;
            margin-top: 20px;
        }

        .bar {
            width: 15px;
            background-color: var(--beak-yellow);
            opacity: 0.8;
        }

        .nest-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }

        .nest-container img {
            max-width: 100%;
            opacity: 0.9;
        }

        /* --- FOOTER --- */
        .footer-metadata {
            margin-top: 20px;
            text-align: right;
            font-size: 10px;
            color: var(--text-color);
            opacity: 0.6;
            line-height: 1.6;
            grid-column: span 2;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .widget-grid {
                position: static;
            }
        }
    .professional-footer {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background-color: black;
}

.contact-line a {
color: var(--slate-white);
text-decoration: none;
}