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

body {
    font-family: 'Inter', sans-serif;
    background: #080B0F;
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 14px;
}

h1, h2, h3 {
    font-family: 'Exo 2', sans-serif;
    color: #E2E8F0;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    background: #0C1117;
    display: flex;
    flex-direction: column;
    padding: 48px 64px;
    position: relative;
    overflow: hidden;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 0.5s ease 3.5s forwards;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #E2E8F0;
}

.brand-sub {
    font-size: 14px;
    color: #94A3B8;
    letter-spacing: 0.02em;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 8px;
}

.indicator-dot.green {
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

.indicator-dot.blue {
    background: #3B82F6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: pulse-dot 2s ease-in-out infinite 0.5s;
}

.indicator-dot.amber {
    background: #F59E0B;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: pulse-dot 2s ease-in-out infinite 1s;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 500;
    color: #10B981;
}

.stat-desc {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* World Map */
.world-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-svg {
    width: 80%;
    max-width: 800px;
    height: auto;
}

.continent {
    fill: none;
    stroke: #1E293B;
    stroke-width: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawPath 3s ease forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.market-dot {
    fill: #3B82F6;
    opacity: 0;
    animation: dotAppear 0.3s ease-out forwards, pulse-glow 3s ease-in-out infinite;
}

.market-dot:nth-child(7) { animation-delay: 3s, 3.3s; }
.market-dot:nth-child(8) { animation-delay: 3.1s, 3.4s; }
.market-dot:nth-child(9) { animation-delay: 3.2s, 3.5s; }
.market-dot:nth-child(10) { animation-delay: 3.3s, 3.6s; }
.market-dot:nth-child(11) { animation-delay: 3.4s, 3.7s; }

@keyframes dotAppear {
    from { opacity: 0; r: 0; }
    to { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6)); }
    50% { filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.9)); }
}

/* Panels Grid */
.panels-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 16px 64px 48px;
    background: #080B0F;
}

.panel {
    background: rgba(12, 17, 23, 0.8);
    border: 1px solid #1E293B;
    border-radius: 4px;
    padding: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.panel-corner {
    position: absolute;
    width: 12px;
    height: 12px;
}

.panel-corner.tl {
    top: -10px;
    left: -10px;
    border-top: 2px solid #3B82F6;
    border-left: 2px solid #3B82F6;
}

.panel-corner.tr {
    top: -10px;
    right: -10px;
    border-top: 2px solid #3B82F6;
    border-right: 2px solid #3B82F6;
}

.panel-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.panel-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.1em;
}

/* Charts */
.chart-area {
    position: relative;
    height: 220px;
}

.chart-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    height: 1px;
    background: #1E293B;
    opacity: 0.5;
}

.line-chart {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: #10B981;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

.chart-fill {
    fill: url(#chartGrad);
}

.chart-labels {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748B;
    font-family: 'JetBrains Mono', monospace;
}

/* Bar Chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-row {
    display: grid;
    grid-template-columns: 60px 1fr 70px;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #94A3B8;
}

.bar-track {
    height: 8px;
    background: #151D27;
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #6366F1);
    border-radius: 2px;
    transition: width 1.2s ease;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.bar-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #E2E8F0;
    text-align: right;
}

/* Policy List */
.policy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-item {
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #151D27;
    align-items: center;
}

.policy-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #64748B;
}

.policy-name {
    font-size: 13px;
    color: #CBD5E1;
}

.policy-impact {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
}

.policy-impact.positive { color: #10B981; }
.policy-impact.negative { color: #EF4444; }

/* Signals */
.signals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.signal-card {
    background: #151D27;
    border: 1px solid #1E293B;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signal-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signal-value {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.signal-value.high { color: #10B981; }
.signal-value.medium { color: #F59E0B; }
.signal-value.low { color: #EF4444; }

/* Footer */
.site-footer {
    background: #0C1117;
    border-top: 1px solid #1E293B;
    padding: 24px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E2E8F0;
    letter-spacing: 0.06em;
}

.footer-copy {
    font-size: 12px;
    color: #64748B;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { padding: 32px; }
    .panels-grid { padding: 16px 32px 32px; grid-template-columns: 1fr; }
    .site-footer { padding: 24px 32px; }
}

@media (max-width: 640px) {
    .hero { padding: 20px; }
    .hero-header { flex-direction: column; gap: 20px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-stat { align-items: flex-start; }
    .panels-grid { padding: 12px 16px 24px; gap: 12px; }
    .panel { padding: 16px; }
    .policy-item { grid-template-columns: 1fr; gap: 4px; }
    .bar-row { grid-template-columns: 50px 1fr 60px; }
    .site-footer { flex-direction: column; gap: 8px; padding: 16px; text-align: center; }
}
