.ticker-wrap {
    padding: 16px 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticker-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.ticker-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ticker-label { color: var(--muted); font-size: 15px; }
.ticker-value { font-size: 20px; font-weight: 800; }
.ticker-change { font-size: 14px; font-weight: 800; }

.hero-section { padding: 34px 0 16px; }
.hero-content {
    display: grid;
    gap: 24px;
}
.hero-copy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(232, 190, 97, 0.12);
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 14px;
}
.hero-copy h1 {
    margin: 0 0 12px;
    font-size: 56px;
    line-height: 1.2;
}
.hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.9;
}
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.hero-card { padding: 24px; }
.hero-card h2 { margin: 0 0 14px; font-size: 28px; }
.hero-card-value { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.hero-card-change { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #d9b15c, #b88a30);
    color: #091115;
    font-weight: 800;
}

.news-card { overflow: hidden; }
.news-thumb {
    height: 150px;
    background:
        linear-gradient(135deg, rgba(232, 190, 97, 0.35), rgba(12, 35, 43, 0.1)),
        linear-gradient(180deg, #31434b, #0a2027);
}
.news-body { padding: 18px; }
.news-body h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.6; }
.news-body span { color: var(--muted); font-size: 15px; }
.tool-card p { margin: 0 0 16px; color: var(--muted); line-height: 1.8; }
.tool-card a { color: var(--gold); font-weight: 800; }

@media (max-width: 980px) {
    .ticker-grid, .hero-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-copy h1 { font-size: 44px; }
    .hero-copy p { font-size: 20px; }
}

@media (max-width: 640px) {
    .ticker-grid, .hero-cards { grid-template-columns: 1fr; }
    .ticker-item { padding: 12px; }
    .ticker-value { font-size: 18px; }
    .hero-section { padding-top: 22px; }
    .hero-copy h1 { font-size: 34px; }
    .hero-copy p { font-size: 17px; }
    .hero-card { padding: 18px; }
    .hero-card h2 { font-size: 24px; }
    .hero-card-value { font-size: 34px; }
    .news-thumb { height: 130px; }
    .news-body h3 { font-size: 20px; }
}
