.page-home {
    --accent: #42f2a9;
    --accent-2: #44c4ff;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
    gap: clamp(22px, 4vw, 44px);
    align-items: stretch;
    min-height: 430px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(139, 231, 220, 0.18);
    border-radius: 16px;
    background:
        radial-gradient(circle at 78% 22%, rgba(123, 255, 231, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(19, 31, 51, 0.98), rgba(7, 10, 20, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.hero-copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

.hero-copy h1 {
    /* max-width: 680px; */
    margin: 0;
    font-size: clamp(2.35rem, 3vw, 4.8rem);
    font-weight: 800;
    line-height: 1;
}

.hero-copy h1 span {
    display: block;
}

.hero-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--soft);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.65;
    margin-top: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 9px;
    font-weight: 800;
}

.primary-action {
    color: #06100d;
    background: var(--accent);
}

.secondary-action {
    border: 1px solid var(--line-strong);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.market-board {
    display: grid;
    align-content: space-between;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(139, 231, 220, 0.16);
    border-radius: 14px;
    background:
        radial-gradient(circle at 45% 12%, rgba(123, 255, 231, 0.26), transparent 11rem),
        linear-gradient(180deg, rgba(12, 19, 36, 0.2), rgba(8, 12, 24, 0.88)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px),
        rgba(5, 9, 18, 0.78);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.board-top,
.board-stat {
    display: grid;
    gap: 5px;
}

.board-top span,
.board-stat span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.board-top strong,
.board-stat strong {
    font-size: 1.2rem;
}

.spark-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: end;
    gap: 8px;
    height: 190px;
    padding-top: 32px;
}

.spark-grid span {
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #7cf4e6, rgba(71, 220, 198, 0.18));
    box-shadow: 0 0 22px rgba(124, 244, 230, 0.2);
}

.spark-grid span:nth-child(1) { height: 44%; }
.spark-grid span:nth-child(2) { height: 68%; }
.spark-grid span:nth-child(3) { height: 52%; }
.spark-grid span:nth-child(4) { height: 86%; }
.spark-grid span:nth-child(5) { height: 63%; }
.spark-grid span:nth-child(6) { height: 78%; }
.spark-grid span:nth-child(7) { height: 38%; }
.spark-grid span:nth-child(8) { height: 59%; }

@media (max-width: 980px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .market-board {
        min-height: 260px;
    }
}
/* Footer */
.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 50px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-content h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-links a,
.footer-social a {
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #4f9cff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* End */