/* ============================================
   HOUSE THERAPY — DROP PAGE STYLES
   ============================================ */

/* === Color System (therapy amber/gold on black) === */
:root {
    --ht-gold: #c8a45a;
    --ht-gold-light: #d4b36a;
    --ht-amber: #e8872a;
    --ht-amber-dark: #b85a10;
    --ht-cream: #f0e6d2;
    --ht-bg: #0a0a0a;
    --ht-surface: #111111;
    --ht-surface-2: #1a1a1a;
    --ht-border: #2a2a2a;
    --ht-spotify: #1DB954;
}

/* === Hero === */

.ht-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.ht-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 164, 90, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(232, 135, 42, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #111 0%, #1a1a1a 50%, #111 100%);
    z-index: 0;
}

.ht-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200, 164, 90, 0.02) 2px, rgba(200, 164, 90, 0.02) 4px);
    z-index: 1;
}

.ht-hero-waves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ht-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.ht-hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid var(--ht-gold);
    color: var(--ht-gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ht-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 30%, var(--ht-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ht-hero-subtitle {
    font-size: 1.25rem;
    color: var(--ht-cream);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-style: italic;
}

.ht-hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ht-gold);
}

.ht-dot {
    width: 4px;
    height: 4px;
    background: var(--ht-amber);
    border-radius: 50%;
    display: inline-block;
}

.ht-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ht-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* === Manifesto === */

.ht-manifesto {
    padding: 6rem 0;
    background: var(--ht-bg);
}

.ht-manifesto-content {
    text-align: center;
}

.ht-manifesto-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ht-amber);
    margin-bottom: 1rem;
}

.ht-manifesto-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.ht-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.ht-manifesto-card {
    background: var(--ht-surface);
    border: 1px solid var(--ht-border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.ht-manifesto-card:hover {
    border-color: var(--ht-gold);
    transform: translateY(-4px);
}

.ht-manifesto-icon {
    color: var(--ht-gold);
    margin-bottom: 1rem;
}

.ht-manifesto-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.ht-manifesto-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.ht-manifesto-quote {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 3px solid var(--ht-gold);
    text-align: left;
}

.ht-manifesto-quote blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ht-cream);
    line-height: 1.7;
    font-style: italic;
}

/* === Collection === */

.ht-collection {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--ht-bg) 0%, #050505 100%);
}

.ht-collection-intro {
    text-align: center;
    color: #888;
    font-size: 1rem;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.6;
}

.ht-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ht-product-card {
    background: var(--ht-surface);
    border: 1px solid var(--ht-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ht-product-card:hover {
    border-color: var(--ht-gold);
    transform: translateY(-6px);
}

.ht-product-card.flagship {
    border-color: var(--ht-amber);
    grid-column: span 2;
}

.ht-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #111;
    overflow: hidden;
}

.ht-product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ht-product-card:hover .ht-product-image img {
    transform: scale(1.05);
}

.ht-product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: var(--ht-gold);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.ht-product-badge.flagship-badge {
    background: var(--ht-amber);
}

.ht-product-info {
    padding: 1.25rem;
}

.ht-product-front {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.ht-product-back {
    font-size: 0.8rem;
    color: var(--ht-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.ht-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ht-product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.ht-product-sizes {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

/* === Phases Timeline === */

.ht-phases {
    padding: 6rem 0;
    background: var(--ht-bg);
}

.ht-phases-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ht-phases-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--ht-gold) 0%, var(--ht-amber) 60%, var(--ht-gold) 100%);
    opacity: 0.3;
}

.ht-phase {
    position: relative;
    padding: 0 0 2.5rem 2.5rem;
}

.ht-phase::before {
    content: attr(data-phase);
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--ht-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #000;
}

.ht-phase-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.ht-phase-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.ht-phase-bpm {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid rgba(200, 164, 90, 0.3);
    color: var(--ht-gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.ht-phase-goal {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0.5rem;
}

.ht-phase-feeling {
    font-size: 0.85rem;
    color: var(--ht-amber);
    font-style: italic;
    margin-bottom: 1rem;
}

.ht-phase-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--ht-gold), var(--ht-amber));
    width: var(--phase-width);
    border-radius: 2px;
    opacity: 0.6;
}

/* === Event Section === */

.ht-event {
    padding: 6rem 0;
    background: linear-gradient(180deg, #050505 0%, var(--ht-bg) 100%);
}

.ht-event-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--ht-surface);
    border: 1px solid var(--ht-border);
    border-radius: 16px;
    overflow: hidden;
}

.ht-event-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(200, 164, 90, 0.1) 0%, transparent 70%),
        var(--ht-surface-2);
}

.ht-event-date-block {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.ht-event-day {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--ht-gold);
}

.ht-event-month {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--ht-cream);
}

.ht-event-year {
    display: block;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

.ht-event-info {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ht-event-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.8rem;
    background: rgba(232, 135, 42, 0.15);
    border: 1px solid var(--ht-amber);
    color: var(--ht-amber);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ht-event-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.ht-event-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ht-event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ht-event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #bbb;
}

.ht-event-detail svg {
    color: var(--ht-gold);
    flex-shrink: 0;
}

/* === Playlist Generator === */

.ht-generator {
    padding: 6rem 0;
    background: var(--ht-bg);
}

.ht-generator-intro {
    text-align: center;
    color: #888;
    font-size: 1rem;
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.6;
}

.ht-generator-flow {
    max-width: 800px;
    margin: 0 auto;
}

.ht-gen-step {
    background: var(--ht-surface);
    border: 1px solid var(--ht-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ht-gen-step.active {
    border-color: var(--ht-gold);
}

.ht-gen-step.completed {
    border-color: var(--ht-spotify);
    opacity: 0.7;
}

.ht-gen-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
}

.ht-gen-step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ht-gold);
    letter-spacing: 1px;
}

.ht-gen-step-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.ht-gen-step-content {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.ht-gen-step.active .ht-gen-step-content {
    display: block;
}

.ht-gen-step-content p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ht-gen-note {
    font-size: 0.8rem !important;
    color: #555 !important;
    margin-top: 1rem;
}

/* Spotify Button */
.btn-spotify {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: var(--ht-spotify);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: scale(1.02);
}

/* Playlists Grid */
.ht-playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.ht-playlist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--ht-surface-2);
    border: 1px solid var(--ht-border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ht-playlist-item:hover {
    border-color: var(--ht-gold);
}

.ht-playlist-item.selected {
    border-color: var(--ht-spotify);
    background: rgba(29, 185, 84, 0.1);
}

.ht-playlist-img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: #222;
}

.ht-playlist-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.3;
}

.ht-playlist-tracks {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.15rem;
}

/* Result */
.ht-result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ht-result-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ht-gold);
    margin-bottom: 0.5rem;
}

.ht-result-header p {
    color: #888;
    font-size: 0.9rem;
}

.ht-result-phases {
    margin-bottom: 2rem;
}

.ht-result-phase {
    margin-bottom: 1.5rem;
}

.ht-result-phase-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--ht-border);
}

.ht-result-phase-num {
    width: 24px;
    height: 24px;
    background: var(--ht-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.ht-result-phase-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ht-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ht-result-phase-bpm {
    margin-left: auto;
    font-size: 0.7rem;
    color: #666;
}

.ht-result-track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.ht-result-track-num {
    color: #444;
    font-size: 0.75rem;
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

.ht-result-track-art {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: #222;
}

.ht-result-track-info {
    flex: 1;
    min-width: 0;
}

.ht-result-track-name {
    color: var(--color-white);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ht-result-track-artist {
    color: #666;
    font-size: 0.75rem;
}

.ht-result-track-bpm {
    color: #555;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.ht-result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Generating animation */
.ht-generating {
    text-align: center;
    padding: 3rem 1rem;
}

.ht-generating-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--ht-border);
    border-top-color: var(--ht-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ht-generating h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--ht-gold);
    margin-bottom: 0.5rem;
}

.ht-generating p {
    color: #666;
    font-size: 0.85rem;
}

/* === Responsive === */

@media (max-width: 768px) {
    .ht-hero {
        padding: 100px 1rem 3rem;
    }

    .ht-hero-tagline {
        gap: 0.5rem;
        font-size: 0.7rem;
    }

    .ht-manifesto-grid {
        grid-template-columns: 1fr;
    }

    .ht-collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ht-product-card.flagship {
        grid-column: span 2;
    }

    .ht-event-card {
        grid-template-columns: 1fr;
    }

    .ht-event-visual {
        padding: 2rem;
    }

    .ht-event-info {
        padding: 2rem;
    }

    .ht-playlists-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ht-collection-grid {
        grid-template-columns: 1fr;
    }

    .ht-product-card.flagship {
        grid-column: span 1;
    }

    .ht-event-day {
        font-size: 3.5rem;
    }
}

/* ============================================
   CHALLENGE / SCORE UI
   ============================================ */

.btn-challenge {
    background: transparent;
    border: 2px solid #c69b52;
    color: #c69b52;
    padding: 0.75rem 2rem;
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-challenge:hover {
    background: #c69b52;
    color: #0a0a0a;
}

.ht-challenge-result {
    margin-top: 2rem;
}

.ht-challenge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 155, 82, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.ht-challenge-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-challenge-grade {
    width: 80px;
    height: 80px;
    border: 3px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-size: 2.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.ht-challenge-meta {
    flex: 1;
}

.ht-challenge-score-num {
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.ht-challenge-verdict {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.ht-challenge-global {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(231, 76, 60, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

.ht-challenge-global span {
    color: #e74c3c;
    font-size: 0.8rem;
}

.ht-challenge-phases {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ht-challenge-phase {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ht-challenge-phase-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ht-challenge-phase-name {
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.ht-challenge-phase-score {
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 1.1rem;
}

.ht-challenge-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.ht-challenge-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.ht-challenge-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.ht-challenge-check {
    font-size: 0.75rem;
    font-weight: 500;
}

.ht-challenge-check small {
    opacity: 0.6;
    margin-left: 0.15rem;
}

.ht-challenge-issues {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ht-challenge-issues span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.ht-challenge-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.ht-challenge-pass {
    font-family: var(--ht-font-heading, 'Space Grotesk', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1DB954;
}

@media (max-width: 768px) {
    .ht-challenge-card {
        padding: 1.25rem;
    }
    .ht-challenge-grade {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .ht-challenge-checks {
        gap: 0.35rem 0.75rem;
    }
}
