#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: #000;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.heroH1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 22px;
    color: #fff;
}

.heroH1 span {
    display: block;
}

.hero-p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 440px;
}

.heroButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.heroStats {
    display: flex;
    gap: 0;
    align-items: center;
}

.heroStat {
    padding: 0 30px;
    text-align: center;
}

.heroStat:first-child {
    padding-left: 0;
}

.heroStatNumber {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.heroStatLabel {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-trans);
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.heroRight {
    position: relative;
}

.hero-card-main {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(10,10,16,0.95)100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.hero-card-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,113,227,0.06) 0%, rgba(0,194,168,0.06) 100%);
    pointer-events: none;
    border-radius: inherit;
}

.hc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,194,168,0.1);
    border: 1px solid rgba(0, 194, 168, 0.2);
    border-radius: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 219, 188, 0.9);
    margin-bottom: 24px;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 20px;
}

.hc-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00C2A8;
    animation: pulseEffect 1.8s ease-in-out infinite;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.card-sub {
    font-size: 13px;
    color: var(--text-trans);
    margin-bottom: 30px;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    transition: 0.3s ease;
    cursor: pointer;
}

.track:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.track-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.track-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.0.85);
    flex: 1;
}

.track-arrow {
    font-size: 14px;
    color: var(--text-trans);
}

.card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}   

.cardFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cardFooterStat {
    text-align: center;
}

.cardFooterStat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.cardFooterStat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-trans);
    margin-top: 3px;
}

.heroFloat {
    position: absolute;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.heroFloat-1 {
    bottom: -20px;
    left: -30px;
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(0, 194, 168, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.heroFloat-2 {
    top: -20px;
    right: -25px;
    background: rgba(15,15,20, 0.95);
    border: 1px solid rgba(0,113,227, 0.2);
    text-align: center;
    min-width: 110px;
}




.credit-tab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 340px;
    max-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-tab:hover {
    max-width: 420px;
    max-height: 190px;
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    white-space: normal;
    border-color: rgba(0,194,168,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 32px rgba(0,194,168,0.12);
}

.credit-text {
    display: block;
}

.credit-tab:hover .credit-text {
    display: none;
}

.credit-expanded {
    display: none;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

.credit-tab:hover .credit-expanded {
    display: flex;
}

.credit-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-hover);
    flex-shrink: 0;
}

.credit-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.credit-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.credit-role {
    font-size: 11px;
    font-weight: 500;
    color: var(--teal);
    line-height: 1.5;
    margin: 0;
}

.credit-bio {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.credit-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.credit-socials a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.credit-socials a:hover {
    color: var(--teal);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}