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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: linear-gradient(180deg, #E8F0F8 0%, #C8D8E8 100%);
    color: #3A4A5A;
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #1A3A5C;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.skyline-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.skyline {
    width: 100%;
    height: auto;
    display: block;
}

.hero-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 48px 64px;
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: fadeInGlass 0.8s ease 0.5s forwards;
    box-shadow: 0 8px 32px rgba(26, 58, 92, 0.08);
}

.site-title {
    font-size: 56px;
    font-weight: 700;
    color: #1A3A5C;
    letter-spacing: -0.5px;
}

.site-subtitle {
    font-size: 18px;
    color: #5A9ABE;
    margin-top: 8px;
    font-weight: 400;
}

@keyframes fadeInGlass {
    from { opacity: 0; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
}

/* News Stream */
.news-stream {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 2;
}

.news-card {
    margin-bottom: 32px;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.news-card.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.glass-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(26, 58, 92, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 40px rgba(26, 58, 92, 0.1);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #2E7D6A;
    background: rgba(46, 125, 106, 0.1);
    padding: 3px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #7A8A9A;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #3A4A5A;
    margin-bottom: 16px;
}

.card-data {
    display: flex;
    gap: 24px;
    padding-top: 12px;
    border-top: 1px solid rgba(90, 154, 190, 0.2);
}

.data-point {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #7A8A9A;
}

.data-num {
    font-size: 18px;
    font-weight: 400;
    color: #1A3A5C;
}

.trend-up { color: #2E7D6A; }
.trend-down { color: #B85A5A; }

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    padding: 32px;
    text-align: center;
}

.glass-footer {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-brand {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A3A5C;
    display: block;
    margin-bottom: 4px;
}

.footer-copy {
    font-size: 13px;
    color: #7A8A9A;
}

/* Palette refs: #F0E6D2 #5A9ABE #B85A5A #C8D8E8 */

@media (max-width: 768px) {
    .hero-glass {
        padding: 32px 24px;
        margin: 0 16px;
    }
    .site-title { font-size: 36px; }
    .news-stream { padding: 32px 16px; }
    .glass-card { padding: 24px 20px; }
    .card-title { font-size: 22px; }
    .card-data { flex-direction: column; gap: 8px; }
}
