/* ============================================
   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: 90vh;
    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;
}

/* === Moroccan Vibe Section === */

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

.ht-moroccan-vibe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ht-gold), transparent);
}

.ht-moroccan-intro {
    text-align: center;
    color: #888;
    font-size: 1.05rem;
    max-width: 600px;
    margin: -0.5rem auto 3rem;
    line-height: 1.7;
    font-style: italic;
}

.ht-moroccan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

a.ht-moroccan-card,
.ht-moroccan-card {
    background: var(--ht-surface);
    border: 1px solid var(--ht-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ht-moroccan-card:hover {
    border-color: var(--ht-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(200, 164, 90, 0.08), 0 0 40px rgba(200, 164, 90, 0.04);
}

.ht-moroccan-image {
    position: relative;
    width: 100%;
    padding-top: 110%;
    background: #0a0a0a;
    overflow: hidden;
}

.ht-moroccan-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-moroccan-card:hover .ht-moroccan-image img {
    transform: scale(1.04);
}

.ht-moroccan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.9rem;
    background: rgba(200, 164, 90, 0.9);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.ht-moroccan-info {
    padding: 1.5rem;
}

.ht-moroccan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ht-moroccan-desc {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ht-moroccan-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ht-moroccan-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(200, 164, 90, 0.08);
    border: 1px solid rgba(200, 164, 90, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--ht-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .ht-moroccan-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* === 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-tagline {
    display: block;
    margin-top: 0.6rem;
    color: rgba(200,164,90,0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 1px;
}

/* Journey bar — emotional arc */
.ht-journey-bar {
    margin-bottom: 2rem;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, rgba(200,164,90,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(200,164,90,0.08);
    border-radius: 12px;
}

.ht-journey-states {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ht-journey-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 0.6rem;
}

.ht-journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.ht-journey-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ht-journey-feeling {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
}

.ht-journey-arrow {
    color: rgba(200,164,90,0.3);
    font-size: 1rem;
    margin: 0 0.1rem;
    align-self: center;
}

/* Phase header — with feeling subtitle */
.ht-result-phase-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ht-result-phase-feeling {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-style: italic;
    color: #777;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.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;
}

/* Wave Graph */
.ht-wave-container {
    position: relative;
    margin-bottom: 2rem;
    border: 1px solid var(--ht-border);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.ht-wave-graph {
    display: block;
    width: 100%;
}

.ht-wave-tooltip {
    display: none;
    position: absolute;
    background: rgba(20,20,20,0.95);
    border: 1px solid var(--ht-gold);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.7rem;
    color: #ccc;
    line-height: 1.4;
    pointer-events: none;
    z-index: 10;
    max-width: 200px;
    white-space: nowrap;
}

.ht-wave-tooltip strong {
    color: var(--ht-gold);
}

/* Phase Stats */
.ht-phase-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.ht-phase-stat {
    font-size: 0.65rem;
    color: #666;
    background: rgba(255,255,255,0.04);
    padding: 2px 8px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
}

.ht-phase-stat.pass {
    color: #1DB954;
    background: rgba(29,185,84,0.08);
}

.ht-phase-stat.warn {
    color: #e6a817;
    background: rgba(230,168,23,0.08);
}

/* Track Detail Toggle */
.ht-result-track {
    cursor: pointer;
}

.ht-track-toggle {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.ht-track-toggle.open {
    transform: rotate(180deg);
}

.ht-track-toggle:hover {
    color: var(--ht-gold);
}

/* Track Detail Panel */
.ht-track-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 calc(20px + 40px + 1.5rem);
}

.ht-track-detail.open {
    max-height: 300px;
    padding: 0.5rem 0 0.75rem calc(20px + 40px + 1.5rem);
}

.ht-track-explain {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Metric Bars */
.ht-track-meters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
    margin-bottom: 0.5rem;
}

.ht-meter {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
}

.ht-meter-label {
    color: #666;
    width: 50px;
    flex-shrink: 0;
}

.ht-meter-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.ht-meter-fill {
    height: 100%;
    background: var(--ht-gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.ht-meter-val {
    color: #555;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* Track Tags */
.ht-track-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.ht-tag {
    font-size: 0.6rem;
    padding: 1px 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
    color: #777;
    font-family: 'Inter', sans-serif;
}

.ht-tag.pass {
    color: #1DB954;
    background: rgba(29,185,84,0.1);
}

.ht-tag.fail {
    color: #e74c3c;
    background: rgba(231,76,60,0.1);
}

@media (max-width: 600px) {
    .ht-track-detail.open {
        padding-left: 0;
    }
    .ht-track-meters {
        grid-template-columns: 1fr;
    }
    .ht-wave-tooltip {
        display: none !important;
    }
}

/* 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;
    }
}

/* ============ REFINE WITH AI ============ */

.btn-refine {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #6b4ce6, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-refine:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(107, 76, 230, 0.3);
}
.btn-refine:disabled {
    opacity: 0.7;
    cursor: wait;
}

@keyframes htSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.ht-spin { animation: htSpin 1.5s linear infinite; }

.ht-refine-result { margin-top: 1.5rem; }

.ht-refine-card {
    background: linear-gradient(135deg, rgba(107,76,230,0.06), rgba(139,92,246,0.03));
    border: 1px solid rgba(107, 76, 230, 0.15);
    border-radius: 12px;
    padding: 1.75rem;
}

.ht-refine-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ht-refine-ai-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ht-refine-grade {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.ht-refine-verdict-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ht-refine-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ht-refine-section:last-child { border-bottom: none; }

.ht-refine-section h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.ht-refine-section p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Phase reviews */
.ht-refine-phase {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ht-refine-phase:last-child { border-bottom: none; }

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

.ht-refine-phase-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.ht-refine-groove {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ht-refine-assessment {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.ht-refine-issues {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.4rem;
}
.ht-refine-issues span {
    font-size: 0.72rem;
    color: rgba(231, 76, 60, 0.7);
}

/* Track notes */
.ht-refine-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ht-refine-track {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.ht-refine-track:last-child { border-bottom: none; }

.ht-refine-verdict {
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    padding-top: 2px;
}

.ht-refine-track-info { flex: 1; }

.ht-refine-track-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.ht-refine-track-reason {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-top: 0.2rem;
}

.ht-refine-swap {
    margin-top: 0.4rem;
    padding: 0.4rem 0.6rem;
    background: rgba(107, 76, 230, 0.08);
    border-radius: 6px;
    border-left: 2px solid #8b5cf6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.ht-refine-swap-arrow {
    color: #8b5cf6;
    font-size: 0.8rem;
}

.ht-refine-swap-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8b5cf6;
}

.ht-refine-swap-reason {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
}

@media (max-width: 768px) {
    .ht-refine-card { padding: 1.25rem; }
    .ht-refine-grade { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ============ CAMELOT BADGES ============ */

.ht-camelot-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

/* ============ HARMONIC CONNECTION LINKS ============ */

.ht-harmonic-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 2px 0;
    opacity: 0.6;
}

.ht-harmonic-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ht-harmonic-line {
    flex: 1;
    max-width: 30px;
    height: 1px;
}

.ht-harmonic-label {
    font-size: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ht-harmonic-link.harmonic-same .ht-harmonic-dot,
.ht-harmonic-link.harmonic-compatible .ht-harmonic-dot { background: #1DB954; }
.ht-harmonic-link.harmonic-same .ht-harmonic-line,
.ht-harmonic-link.harmonic-compatible .ht-harmonic-line { background: #1DB954; }
.ht-harmonic-link.harmonic-same .ht-harmonic-label,
.ht-harmonic-link.harmonic-compatible .ht-harmonic-label { color: #1DB954; }

.ht-harmonic-link.harmonic-near .ht-harmonic-dot { background: #c69b52; }
.ht-harmonic-link.harmonic-near .ht-harmonic-line { background: #c69b52; }
.ht-harmonic-link.harmonic-near .ht-harmonic-label { color: #c69b52; }

.ht-harmonic-link.harmonic-clash .ht-harmonic-dot { background: #e74c3c; }
.ht-harmonic-link.harmonic-clash .ht-harmonic-line { background: #e74c3c; }
.ht-harmonic-link.harmonic-clash .ht-harmonic-label { color: #e74c3c; }

/* ============ GRAPHS ROW (wave + camelot wheel) ============ */

.ht-graphs-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.ht-graphs-row .ht-wave-container {
    flex: 1;
    min-width: 0;
}

.ht-camelot-container {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
}

.ht-camelot-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200,164,90,0.5);
    margin-bottom: 0.75rem;
}

.ht-camelot-wheel {
    display: block;
    margin: 0 auto;
}

/* ============ SHARE BUTTON ============ */

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #c69b52, #e8a53e);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-share:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(198, 155, 82, 0.3);
}

/* ============ SHARE MODAL ============ */

.ht-share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ht-share-modal {
    position: relative;
    background: #111;
    border: 1px solid rgba(200, 164, 90, 0.15);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.ht-share-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}
.ht-share-close:hover { color: #fff; }

.ht-share-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #c8a45a;
    margin-bottom: 0.25rem;
}

.ht-share-variants {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.ht-share-variant {
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(200,164,90,0.2);
    background: transparent;
    color: #888;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.ht-share-variant:hover {
    border-color: rgba(200,164,90,0.4);
    color: #c8a45a;
}

.ht-share-variant.active {
    background: rgba(200,164,90,0.15);
    border-color: rgba(200,164,90,0.5);
    color: #c8a45a;
}

.ht-share-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}

.ht-share-products {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,164,90,0.3) transparent;
}

.ht-share-product {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    padding: 6px;
    transition: border-color 0.2s;
}

.ht-share-product:hover {
    border-color: rgba(200, 164, 90, 0.3);
}

.ht-share-product.selected {
    border-color: #c8a45a;
}

.ht-share-product img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 4px;
}

.ht-share-product span {
    display: block;
    font-size: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #888;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ht-share-preview {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.ht-share-preview canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.ht-share-msg-container {
    margin-bottom: 1rem;
}

.ht-share-message {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    padding: 0.75rem;
    resize: none;
}

.ht-share-message:focus {
    outline: none;
    border-color: rgba(200, 164, 90, 0.3);
}

.ht-share-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
}

.ht-share-target {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 0.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: #aaa;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ht-share-target:hover {
    background: #222;
    color: #c8a45a;
    border-color: rgba(200, 164, 90, 0.2);
}

.ht-share-target svg {
    opacity: 0.7;
}
.ht-share-target:hover svg {
    opacity: 1;
}

/* ============ RESPONSIVE: Camelot + Share ============ */

@media (max-width: 768px) {
    .ht-graphs-row {
        flex-direction: column;
    }
    .ht-camelot-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .ht-camelot-badge {
        font-size: 0.55rem;
        min-width: 26px;
        padding: 1px 4px;
    }
    .ht-harmonic-link {
        padding: 1px 0;
    }
    .ht-harmonic-label {
        font-size: 0.5rem;
    }
    .ht-share-modal {
        padding: 1.25rem;
    }
    .ht-share-targets {
        grid-template-columns: repeat(3, 1fr);
    }
}
