/* Bloomberg Editorial Design System */
:root {
    --bb-blue: #0057D9;
    --bb-black: #000000;
    --bb-gray-light: #F2F2F2;
    --bb-gray-border: #E0E0E0;
    --bb-text-muted: #555555;
    --bb-spacing: 40px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: var(--bb-black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.monospaced {
    font-family: 'Courier New', Courier, monospace;
}

.serif-header {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

/* Grid Layout */
.nav-container,
.hero-grid,
.stats-row,
.detail-split,
.privacy-container,
.footer-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--bb-spacing);
}

/* Navigation */
.bloomberg-nav {
    border-bottom: 2px solid var(--bb-black);
    padding: 24px 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -2px;
}

.nav-links a {
    text-decoration: none;
    color: var(--bb-black);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 24px;
    letter-spacing: 0.5px;
}

.btn-download {
    background: var(--bb-black);
    color: white !important;
    padding: 8px 16px;
}

/* Hero */
.editorial-hero {
    border-bottom: 1px solid var(--bb-gray-border);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ticker {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--bb-blue);
    display: block;
    margin-bottom: 16px;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.hero-text-block p {
    font-size: 1.4rem;
    color: var(--bb-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 90%;
}

.editorial-actions {
    display: flex;
    gap: 20px;
}

.btn-primary-sharp {
    background: var(--bb-black);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid var(--bb-black);
}

.btn-secondary-sharp {
    border: 1px solid var(--bb-black);
    color: var(--bb-black);
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 0.9rem;
}

.terminal-mock {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Stats Row */
.editorial-stats {
    border-bottom: 1px solid var(--bb-gray-border);
    padding: 60px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--bb-gray-border);
}

.stat-item {
    padding: 0 40px;
    border-right: 1px solid var(--bb-gray-border);
}

.stat-item .label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--bb-text-muted);
    margin-bottom: 12px;
}

.stat-item .value {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--bb-text-muted);
}

/* Editorial Detail */
.editorial-detail {
    border-bottom: 1px solid var(--bb-gray-border);
    padding: 100px 0;
}

.detail-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
}

h2.serif-header {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.article-body p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.editorial-list {
    list-style: none;
}

.editorial-list li {
    padding: 16px 0;
    border-top: 1px solid var(--bb-gray-border);
    font-weight: 700;
    font-size: 1rem;
}

.editorial-list li::before {
    content: "// ";
    color: var(--bb-blue);
}

.sidebar-box {
    background: var(--bb-gray-light);
    padding: 24px;
    border: 1px solid var(--bb-gray-border);
}

.analysis-stats {
    list-style: none;
    margin: 20px 0;
}

.analysis-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.analysis-stats .lbl {
    color: var(--bb-text-muted);
}

.analysis-stats .val {
    color: var(--bb-blue);
}

.sidebar-footnote {
    font-size: 0.7rem;
    color: var(--bb-text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Deep Dive Grid */
.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.dive-box h4 {
    font-size: 0.85rem;
    font-weight: 900;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--bb-black);
    display: inline-block;
}

.dive-box p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    color: var(--bb-text-muted);
}

/* Privacy Overhaul */
.privacy-overhaul {
    padding: 120px 0;
    background: #000;
    color: white;
}

.privacy-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.privacy-visual {
    flex: 1;
    text-align: center;
}

.secure-img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    filter: drop-shadow(0 20px 40px rgba(0, 87, 217, 0.3));
}

.privacy-content {
    flex: 1;
}

.privacy-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    margin-bottom: 24px;
}

.privacy-content p {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 32px;
}

.security-badges span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #333;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: 12px;
    color: var(--bb-blue);
}

/* Footer */
.editorial-footer {
    padding: 100px 0 40px;
}

.footer-cta {
    text-align: center;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--bb-gray-border);
}

.footer-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bb-text-muted);
}

.footer-links a {
    text-decoration: none;
    color: var(--bb-text-muted);
    margin-left: 24px;
}