/* ========================================
   Phone Mockup (Hero)
   ======================================== */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(0, 240, 255, 0.14) 0%,
        rgba(124, 58, 237, 0.07) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

.phone {
    width: 260px;
    height: 580px;
    background: #000;
    border-radius: 44px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    position: relative;
    padding: 10px;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 240, 255, 0.08);
    animation: float 6s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 13px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 12px 16px;
    gap: 8px;
}

.mock-keyframe {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    line-height: 0;
}

.mock-keyframe img {
    width: 100%;
    height: 120px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.mock-badge-card {
    background: var(--surface);
    border: 1.5px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.12);
    flex-shrink: 0;
}

.mock-tier {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mock-badge-card--silver {
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 0 16px rgba(192, 192, 192, 0.12);
}

.mock-tier--silver { color: #C0C0C0; }
.mock-score-value.mock-score-value--silver { color: #C0C0C0 !important; }

.mock-trick-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.1;
}

.mock-score-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.mock-score-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.mock-score-max {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.mock-breakdown {
    display: flex;
    justify-content: space-between;
    gap: 2px;
}

.mock-breakdown-item {
    flex: 1;
    text-align: center;
}

.mock-breakdown-value {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 2px;
}

.mock-breakdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mock-proximity {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: var(--cyan);
    text-align: center;
    padding: 6px 8px;
    background: rgba(0, 240, 255, 0.06);
    border-radius: 6px;
    flex-shrink: 0;
}

.mock-mantra-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.mock-mantra-explanation {
    font-family: 'Inter', sans-serif;
    font-size: 7.5px;
    color: var(--text-secondary);
    line-height: 1.35;
}

.mock-rider-context {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--text-tertiary);
}

.mock-feedback-item {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    flex-shrink: 0;
}

.mock-feedback-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.mock-feedback-dot--green { background: #10B981; }
.mock-feedback-dot--orange { background: #F59E0B; }

.mock-feedback-content {
    flex: 1;
    min-width: 0;
}

.mock-feedback-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 1px;
}

.mock-feedback-text {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.mock-drill {
    background: var(--surface);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 7px 9px;
    flex-shrink: 0;
}

.mock-drill-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--text-tertiary);
    margin-bottom: 2px;
}

.mock-drill-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mock-drill-focus {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--cyan);
    line-height: 1.3;
}

/* ========================================
   Phone Mockup Responsive
   ======================================== */
@media (max-width: 900px) {
    .phone {
        width: 240px;
        height: 530px;
    }

    .mock-keyframe img {
        height: 100px;
    }

    .hero-glow {
        width: 360px;
        height: 360px;
    }
}
