/* CryptoTree info page */
.ct-info {
    background: transparent;
    color: #f2f5f8;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.ct-info::before {
    content: none;
}

.ct-info > section {
    position: relative;
    z-index: 1;
}

.ct-hero {
    padding: 90px 0 50px;
}

.ct-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.ct-hero-copy h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #ffffff;
}

.ct-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ct-lead {
    font-size: 16px;
    color: rgba(240, 245, 255, 0.78);
    margin-bottom: 24px;
}

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ct-hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ct-hero-icon {
    width: min(360px, 85vw);
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
}

.ct-hero-note {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(80, 200, 120, 0.18);
    color: #baf0d3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-stats {
    padding: 20px 0 40px;
}

.ct-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.ct-stat {
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.ct-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ed0ff;
    margin-bottom: 12px;
}

.ct-stat-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.ct-stat-text {
    color: rgba(240, 245, 255, 0.7);
    font-size: 13px;
}

.ct-section {
    padding: 40px 0;
}

.ct-section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ct-section-header p {
    color: rgba(240, 245, 255, 0.75);
    max-width: 760px;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ct-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ct-card {
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
}

.ct-card-tight {
    padding: 20px;
}

.ct-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #c5a7ff;
}

.ct-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ct-card p {
    color: rgba(240, 245, 255, 0.74);
}

.ct-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
    color: rgba(240, 245, 255, 0.7);
}

.ct-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ct-card ul li::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.55);
}

.ct-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    text-decoration: none;
}

.ct-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.ct-alt {
    background: rgba(10, 14, 18, 0.6);
}

.ct-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.ct-pill {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ct-center {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.ct-cta {
    padding: 40px 0 80px;
}

.ct-cta-card {
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ct-cta-card h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.ct-cta-card p {
    color: rgba(240, 245, 255, 0.75);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ct-hero {
        padding: 70px 0 40px;
    }

    .ct-hero-copy h1 {
        font-size: 34px;
    }

    .ct-cta-card {
        text-align: center;
        justify-content: center;
    }
}
