/* ============================================
   Guest List Now — Design System
   ============================================ */

:root {
    --midnight-black: 240 20% 4%;
    --deep-indigo: 240 30% 12%;
    --electric-purple: 271 75% 59%;
    --neon-pink: 334 100% 50%;
    --gold-accent: 45 93% 58%;
}

/* Selection */
::selection {
    background-color: #9d4edd;
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shared Pills */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.pill-xs { padding: 0.28rem 0.6rem; font-size: 0.625rem; }
.pill-sm { padding: 0.38rem 0.8rem; font-size: 0.75rem; }
.pill-md { padding: 0.48rem 0.95rem; font-size: 0.875rem; }
.pill-lg { padding: 0.58rem 1.1rem; font-size: 1rem; }

.pill-neutral {
    background: #e5e7eb;
    border-color: #9ca3af;
    color: #374151;
}
.pill-purple {
    background: #ddd6fe;
    border-color: #8b5cf6;
    color: #6d28d9;
}
.pill-brand-purple {
    background: rgba(157, 78, 221, 0.2);
    border-color: rgba(157, 78, 221, 0.65);
    color: #f3e8ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 0 1px rgba(157, 78, 221, 0.08);
}
.pill-blue {
    background: #bfdbfe;
    border-color: #3b82f6;
    color: #1d4ed8;
}
.pill-green {
    background: #a7f3d0;
    border-color: #10b981;
    color: #047857;
}
.pill-amber {
    background: #fde68a;
    border-color: #f59e0b;
    color: #b45309;
}
.pill-red {
    background: #fca5a5;
    border-color: #ef4444;
    color: #b91c1c;
}
.pill-pink {
    background: #fbcfe8;
    border-color: #ec4899;
    color: #be185d;
}
.pill-slate {
    background: #cbd5e1;
    border-color: #64748b;
    color: #334155;
}

.perk-pill-list .pill {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

/* Tier Badge Colors */
.tier-starter { background: #e5e7eb; border-color: #9ca3af; color: #374151; }
.tier-trendsetter { background: #bfdbfe; border-color: #3b82f6; color: #1d4ed8; }
.tier-tastemaker { background: #ddd6fe; border-color: #8b5cf6; color: #6d28d9; }
.tier-influencer { background: #fbcfe8; border-color: #ec4899; color: #be185d; }
.tier-icon { background: #fde68a; border-color: #f59e0b; color: #b45309; }
.tier-suspended { background: #fecaca; border-color: #ef4444; color: #b91c1c; }

/* Status Badge Colors */
.status-active,
.status-approved,
.status-complete,
.status-content_approved,
.status-published,
.status-resolved {
    background: #a7f3d0;
    border-color: #10b981;
    color: #047857;
}
.status-pending,
.status-pending_review,
.status-content_rejected,
.status-open {
    background: #fde68a;
    border-color: #f59e0b;
    color: #b45309;
}
.status-rejected,
.status-suspended,
.status-disputed,
.status-banned {
    background: #fecaca;
    border-color: #ef4444;
    color: #b91c1c;
}
.status-draft,
.status-closed,
.status-voided {
    background: #cbd5e1;
    border-color: #64748b;
    color: #334155;
}
.status-content_submitted,
.status-submitted,
.status-under_review {
    background: #bfdbfe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.5rem;
    line-height: 1;
}
.star-rating .star {
    cursor: pointer;
    opacity: 0.28;
    filter: grayscale(1) brightness(0.7);
    transition: transform 0.15s, filter 0.15s, opacity 0.15s;
    user-select: none;
}
.star-rating .star:hover { transform: translateY(-1px) scale(1.08); }
.star-rating .star.active,
.star-rating .star.hovered {
    opacity: 1;
    filter: none;
}
.star-rating.readonly .star { cursor: default; }
.star-rating.readonly .star:hover { transform: none; }

/* Star display (read-only inline) */
.stars-display {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    font-size: 0.9rem;
    line-height: 1;
}
.stars-display .star-filled {
    opacity: 1;
    filter: none;
}
.stars-display .star-empty {
    opacity: 0.28;
    filter: grayscale(1) brightness(0.58);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.rating-badge-compact {
    gap: 0.28rem;
}
.rating-badge-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    min-width: 0;
}
.rating-badge-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}
.rating-badge-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-transform: uppercase;
}
.rating-badge-compact .stars-display {
    font-size: 0.82rem;
}
.rating-badge-compact .rating-badge-value {
    font-size: 0.84rem;
}
.rating-badge-compact .rating-badge-label {
    font-size: 0.58rem;
}

.review-rating-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(157, 78, 221, 0.04));
    transition: border-color 0.2s, transform 0.2s, background-color 0.2s;
}

.review-flow-hero,
/* Image Drop Zone — drag-and-drop upload */
.image-drop-zone {
    position: relative;
    border-radius: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.image-drop-zone--active,
.image-drop-zone:hover {
    border-color: rgba(157, 78, 221, 0.4);
    background: rgba(157, 78, 221, 0.04);
}

.image-drop-zone__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    min-height: 14rem;
}

.image-drop-zone__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(157, 78, 221, 0.12);
    color: #c084fc;
    margin-bottom: 1rem;
}

.image-drop-zone__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.image-drop-zone__title {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

.image-drop-zone__subtitle {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

.image-drop-zone__browse {
    color: #c084fc;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.image-drop-zone__browse:hover {
    color: #d8b4fe;
}

.image-drop-zone__specs {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.image-drop-zone__preview {
    position: relative;
    min-height: 14rem;
}

.image-drop-zone__img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 0.85rem;
}

.image-drop-zone__remove {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease;
    backdrop-filter: blur(8px);
}

.image-drop-zone__remove:hover {
    background: rgba(239, 68, 68, 0.7);
}

/* Field Guide — inline contextual help callouts */
.field-guide {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0.5rem 0;
    padding: 0.65rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(157, 78, 221, 0.16);
    border-left: 3px solid rgba(157, 78, 221, 0.5);
    background: rgba(157, 78, 221, 0.05);
}

.field-guide__title {
    color: #c084fc;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.field-guide__body {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    line-height: 1.55;
    margin-top: 0.15rem;
}

.field-guide__dismiss {
    flex-shrink: 0;
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.field-guide__dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
}

/* Venue Onboarding Wizard */
.onboarding-shell {
    background:
        radial-gradient(ellipse at top, rgba(157, 78, 221, 0.06) 0%, transparent 50%),
        hsl(240 20% 4%);
}

.onboarding-header {
    text-align: center;
    margin-bottom: 2rem;
}

.onboarding-header__title {
    color: #fff;
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0.85rem;
}

.onboarding-header__copy {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 0.55rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-registered {
    margin-bottom: 1.5rem;
    padding: 1.1rem 1.25rem;
}

.onboarding-registered__label {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.onboarding-registered__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.onboarding-registered__key {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.74rem;
    font-weight: 600;
}

.onboarding-registered__val {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 0.1rem;
}

.onboarding-form-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.onboarding-form-card__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.onboarding-form-card--cta {
    text-align: center;
}

.onboarding-cta-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(157, 78, 221, 0.15);
    color: #c084fc;
}

.onboarding-cta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.onboarding-cta-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.onboarding-cta-copy {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 0.35rem;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-skip-btn {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem;
    transition: color 0.15s ease;
    cursor: pointer;
}

.onboarding-skip-btn:hover {
    color: rgba(255, 255, 255, 0.65);
}

.onboarding-tips {
    padding: 1.25rem;
}

.onboarding-tips__label {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.onboarding-tips__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.onboarding-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.onboarding-tip__num {
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    background: rgba(157, 78, 221, 0.12);
    color: #c084fc;
    font-size: 0.58rem;
    font-weight: 800;
}

.onboarding-tip__title {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.onboarding-tip__copy {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.76rem;
    line-height: 1.5;
    margin-top: 0.1rem;
}

@media (max-width: 480px) {
    .onboarding-header__title {
        font-size: 1.4rem;
    }

    .onboarding-registered__grid {
        grid-template-columns: 1fr;
    }
}

/* Review History — creator reviews page + profile inline */
.review-history__summary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-history__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.review-history__score {
    margin-top: 0.35rem;
}

.review-history__score .rating-badge-value {
    font-size: 1.8rem;
}

.review-history__count {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.review-history__breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.review-history__breakdown-label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.review-history__breakdown-grid {
    display: grid;
    gap: 0.6rem;
}

.review-history__cat-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.review-history__cat-key {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 600;
}

.review-history__cat-score {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
}

.review-history__cat-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.review-history__cat-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.85), rgba(251, 191, 36, 0.85));
}

.review-history__feed {
    display: flex;
    flex-direction: column;
}

.review-history__card-shell {
    border-radius: 1.2rem;
}

.review-history__card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.review-history__card-eyebrow {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.review-history__card-event {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.review-history__card-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.review-history__card-body {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.65;
}

.review-history__card-meta {
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.26);
    font-size: 0.72rem;
}

/* Inline review cards on profile page */
.review-history__card-inline {
    padding: 0.85rem 0;
}

.review-history__card-inline-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.review-history__card-inline-venue {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-history__card-inline-event {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.review-history__card-inline-body {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-flow-panel {
    position: relative;
    padding: 1.25rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.97);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(4, 3, 12, 0.2);
}

.review-flow-hero {
    padding: 1.45rem;
    overflow: visible;
}

.review-flow-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-flow-hero__eyebrow,
.review-flow-guide__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.review-flow-hero__title {
    margin-top: 0.3rem;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.06;
}

.review-flow-hero__venue {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

.review-flow-hero__message,
.review-flow-guide__copy,
.review-flow-submit__note {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.65;
}

.review-flow-hero .campaign-priority-grid {
    margin-top: 1.15rem;
}

.review-flow-guide {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.review-flow-submit {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.35rem;
}

.review-rating-card:hover {
    border-color: rgba(245, 158, 11, 0.18);
    transform: translateY(-1px);
}
.review-rating-heading {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.review-rating-kicker {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.review-rating-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}
.review-rating-desc {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 34rem;
}
.review-overall-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}
.review-overall-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
}

.detail-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.detail-label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.detail-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
}

.detail-surface {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 0.95rem 1rem;
}

.detail-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.recurring-campaign-card {
    border-color: rgba(157, 78, 221, 0.42) !important;
    background:
        linear-gradient(180deg, rgba(157, 78, 221, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(20, 18, 37, 0.96);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(4, 3, 12, 0.26);
}

.intersecting-pill-shell,
.recurring-campaign-tag {
    position: absolute;
    top: 0;
    right: 1.25rem;
    transform: translateY(-50%);
    z-index: 2;
}

.intersecting-pill-shell .pill,
.recurring-campaign-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.96), rgba(255, 0, 110, 0.88));
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.92),
        0 12px 26px rgba(73, 23, 92, 0.35);
}

.intersecting-pill-shell .pill {
    padding: 0.55rem 1rem;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.92),
        0 12px 26px rgba(6, 8, 15, 0.35);
}

.application-activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.applications-filter-shell {
    padding: 0.9rem 0.95rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.13), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.97);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 30px rgba(4, 3, 12, 0.14);
}

.applications-filter-shell__header {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.applications-filter-shell__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.applications-filter-shell__title {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.15;
}

.applications-filter-shell__summary {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.applications-filter-list {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.applications-filter-btn {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.48rem;
    min-height: 2.2rem;
    padding: 0.44rem 0.72rem;
    border-radius: 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.applications-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-1px);
}

.applications-filter-btn--active {
    border-color: rgba(157, 78, 221, 0.34);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18), rgba(255, 255, 255, 0.04));
    color: #e9d5ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.applications-filter-btn__label {
    display: inline-flex;
    align-items: center;
}

.applications-filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    min-height: 1.5rem;
    padding: 0 0.38rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.applications-filter-btn--active .applications-filter-btn__count {
    background: rgba(157, 78, 221, 0.28);
    color: #f5f3ff;
}

.application-activity-card {
    position: relative;
    display: block;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 14, 25, 0.92)),
        rgba(20, 18, 37, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(3, 3, 12, 0.18);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.application-activity-card.campaign-detail-hero {
    margin-bottom: 0;
    padding: 1.5rem;
}

.application-activity-card:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 78, 221, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 52px rgba(3, 3, 12, 0.26);
}

.application-activity-card__status-shell {
    right: 1.15rem;
}

.application-activity-card__hero-headline {
    padding-right: 9rem;
}

.application-activity-card__hero-copy {
    min-width: 0;
}

.application-activity-card__hero-title {
    margin-top: 0.85rem;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.04;
}

.application-activity-card__hero-venue {
    max-width: 38rem;
}

.application-activity-card__hero-applied {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    line-height: 1.5;
}

.application-activity-card__hero-support {
    max-width: 18rem;
}

.application-activity-card__support-surface {
    min-width: 0;
}

.application-activity-card__priority-grid {
    margin-top: 1.2rem;
}

.application-activity-card__hero-meta-grid {
    margin-top: 1.2rem;
}

.application-activity-card__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.application-activity-card__title-block {
    min-width: 0;
}

.application-activity-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.application-activity-card__state-pill {
    letter-spacing: 0.14em;
}

.application-activity-card__state-pill--floating {
    min-width: 9.5rem;
    justify-content: center;
    padding: 0.58rem 0.95rem;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.94),
        0 12px 30px rgba(15, 23, 42, 0.34);
}

.application-activity-card__status-shell .application-activity-card__state-pill--upload-required,
.application-activity-card__state-pill--upload-required {
    background: rgba(254, 202, 202, 0.96);
    border-color: rgba(248, 113, 113, 0.95);
    color: #991b1b;
}

.application-activity-card__status-shell .application-activity-card__state-pill--upcoming,
.application-activity-card__state-pill--upcoming {
    background: rgba(191, 219, 254, 0.96);
    border-color: rgba(96, 165, 250, 0.96);
    color: #1d4ed8;
}

.application-activity-card__status-shell .application-activity-card__state-pill--content-pending,
.application-activity-card__state-pill--content-pending {
    background: rgba(253, 230, 138, 0.96);
    border-color: rgba(245, 158, 11, 0.96);
    color: #92400e;
}

.application-activity-card__status-shell .application-activity-card__state-pill--leave-review,
.application-activity-card__state-pill--leave-review {
    background: rgba(233, 213, 255, 0.96);
    border-color: rgba(168, 85, 247, 0.92);
    color: #7e22ce;
}

.application-activity-card__status-shell .application-activity-card__state-pill--completed,
.application-activity-card__state-pill--completed {
    background: rgba(167, 243, 208, 0.96);
    border-color: rgba(16, 185, 129, 0.96);
    color: #047857;
}

.application-activity-card__status-shell .application-activity-card__state-pill--pending,
.application-activity-card__state-pill--pending {
    background: rgba(253, 230, 138, 0.96);
    border-color: rgba(245, 158, 11, 0.96);
    color: #92400e;
}

.application-activity-card__status-shell .application-activity-card__state-pill--rejected,
.application-activity-card__state-pill--rejected {
    background: rgba(254, 226, 226, 0.96);
    border-color: rgba(248, 113, 113, 0.9);
    color: #991b1b;
}

.application-activity-card__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
}

.application-activity-card__venue {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.95rem;
    line-height: 1.5;
}

.application-activity-card__status-panel {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.application-activity-card__countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(127, 29, 29, 0.34);
    color: #fecaca;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.application-activity-card__countdown--late {
    border-color: rgba(252, 165, 165, 0.6);
    background: rgba(127, 29, 29, 0.52);
    color: #fff1f2;
}

.application-activity-card__supporting-copy {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
    line-height: 1.5;
}

.application-activity-card__meta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.application-activity-card__meta-item {
    min-width: 0;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.application-activity-card__meta-item--perk {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.03));
}

.application-activity-card__meta-item--deliverables {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0.03));
}

.application-activity-card__meta-label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-activity-card__meta-value {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.4;
}

.application-activity-card__meta-support {
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.55;
}

.application-activity-card__perk-preview {
    margin-top: 0.6rem;
}

.application-activity-card__empty {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    line-height: 1.5;
}

.application-activity-card__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.application-activity-card__action-copy {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-activity-card--upload-required {
    border-color: rgba(239, 68, 68, 0.38);
    background:
        linear-gradient(180deg, rgba(127, 29, 29, 0.24), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-activity-card--upload-required:hover {
    border-color: rgba(248, 113, 113, 0.62);
}

.application-activity-card--upload-required .application-activity-card__action-copy {
    color: rgba(254, 202, 202, 0.72);
}

.application-activity-card--upcoming {
    border-color: rgba(59, 130, 246, 0.22);
    background:
        linear-gradient(180deg, rgba(29, 78, 216, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

.application-activity-card--content-pending {
    border-color: rgba(245, 158, 11, 0.24);
    background:
        linear-gradient(180deg, rgba(180, 83, 9, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

.application-activity-card--leave-review {
    border-color: rgba(168, 85, 247, 0.22);
    background:
        linear-gradient(180deg, rgba(109, 40, 217, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

.application-activity-card--completed {
    border-color: rgba(16, 185, 129, 0.26);
    background:
        linear-gradient(180deg, rgba(4, 120, 87, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

.application-activity-card--pending,
.application-activity-card--rejected {
    border-color: rgba(100, 116, 139, 0.22);
}

.application-activity-card--rejected {
    background:
        linear-gradient(180deg, rgba(71, 85, 105, 0.14), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

@media (min-width: 1024px) {
    .applications-filter-shell__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .applications-filter-shell__title {
        font-size: 1.02rem;
    }

    .application-activity-card {
        padding: 1.5rem;
    }

    .application-activity-card__hero-headline {
        padding-right: 0;
    }

    .application-activity-card__title-block {
        padding-right: 15.5rem;
    }

    .application-activity-card__header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .application-activity-card__status-panel {
        min-width: 13.5rem;
        align-items: flex-end;
        text-align: right;
    }

    .application-activity-card__meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .application-activity-card__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.application-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.application-detail-layout__side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.application-detail-hero {
    position: relative;
    overflow: visible;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 20px 48px rgba(4, 3, 12, 0.24);
}

.application-detail-hero__status-shell {
    right: 1.35rem;
}

.application-detail-hero__status-pill {
    min-width: 10.75rem;
    justify-content: center;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.92),
        0 12px 26px rgba(6, 8, 15, 0.35);
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--upload-required {
    background: rgba(254, 202, 202, 0.96);
    border-color: rgba(248, 113, 113, 0.95);
    color: #991b1b;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--upcoming {
    background: rgba(191, 219, 254, 0.96);
    border-color: rgba(96, 165, 250, 0.96);
    color: #1d4ed8;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--content-pending {
    background: rgba(253, 230, 138, 0.96);
    border-color: rgba(245, 158, 11, 0.96);
    color: #92400e;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--leave-review {
    background: rgba(233, 213, 255, 0.96);
    border-color: rgba(168, 85, 247, 0.92);
    color: #7e22ce;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--completed {
    background: rgba(167, 243, 208, 0.96);
    border-color: rgba(16, 185, 129, 0.96);
    color: #047857;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--pending {
    background: rgba(253, 230, 138, 0.96);
    border-color: rgba(245, 158, 11, 0.96);
    color: #92400e;
}

.intersecting-pill-shell.application-detail-hero__status-shell .application-detail-hero__status-pill--rejected {
    background: rgba(254, 226, 226, 0.96);
    border-color: rgba(248, 113, 113, 0.9);
    color: #991b1b;
}

.application-detail-hero--upload-required {
    border-color: rgba(248, 113, 113, 0.34);
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(127, 29, 29, 0.18), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-detail-hero--upcoming {
    border-color: rgba(59, 130, 246, 0.24);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(29, 78, 216, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-detail-hero--content-pending {
    border-color: rgba(245, 158, 11, 0.24);
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(180, 83, 9, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-detail-hero--leave-review {
    border-color: rgba(168, 85, 247, 0.24);
    background:
        radial-gradient(circle at top right, rgba(192, 132, 252, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(109, 40, 217, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-detail-hero--completed {
    border-color: rgba(16, 185, 129, 0.24);
    background:
        radial-gradient(circle at top right, rgba(52, 211, 153, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(4, 120, 87, 0.12), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
}

.application-detail-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.campaign-detail-hero__media-shell,
.application-detail-hero__media-shell,
.venue-detail-hero__media-shell {
    position: relative;
    overflow: hidden;
    min-height: 17.5rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(76, 29, 149, 0.7));
}

.campaign-detail-hero__media-image,
.application-detail-hero__media-image,
.venue-detail-hero__media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-detail-hero__media-image--fallback,
.application-detail-hero__media-image--fallback,
.venue-detail-hero__media-image--fallback {
    background:
        radial-gradient(circle at top left, rgba(192, 132, 252, 0.3), transparent 30%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(88, 28, 135, 0.76));
}

.venue-detail-hero__media-image--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 4rem;
    font-weight: 800;
}

.campaign-detail-hero__media-overlay,
.application-detail-hero__media-overlay,
.venue-detail-hero__media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 12, 0.1) 0%, rgba(5, 7, 12, 0.42) 38%, rgba(5, 7, 12, 0.84) 100%),
        linear-gradient(90deg, rgba(5, 7, 12, 0.68) 0%, rgba(5, 7, 12, 0.22) 48%, rgba(5, 7, 12, 0.58) 100%);
}

.campaign-detail-hero__media-content,
.application-detail-hero__media-content,
.venue-detail-hero__media-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    padding: 1rem 1rem 1.15rem;
}

.campaign-detail-hero__media-content .campaign-detail-hero__venue,
.application-detail-hero__media-content .application-detail-hero__venue {
    color: rgba(255, 255, 255, 0.82);
}

.campaign-detail-hero__media-content .campaign-detail-hero__eyebrow,
.application-detail-hero__media-content .application-detail-hero__eyebrow,
.venue-detail-hero__media-content .venue-detail-hero__eyebrow {
    color: rgba(255, 255, 255, 0.52);
}

.campaign-detail-hero__media-content .campaign-detail-hero__support-surface {
    background: rgba(9, 10, 18, 0.4);
    backdrop-filter: blur(14px);
}

.campaign-detail-hero--cinema,
.venue-detail-hero--cinema,
.application-detail-hero--cinema {
    padding: 0;
    margin-bottom: 0 !important;
    border: none;
    background: none;
    box-shadow: none;
}

.campaign-detail-hero--cinema .campaign-detail-hero__media-shell,
.venue-detail-hero--cinema .venue-detail-hero__media-shell,
.application-detail-hero--cinema .application-detail-hero__media-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(22rem, 54vw, 35rem);
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.campaign-detail-hero--cinema .campaign-detail-hero__media-content,
.venue-detail-hero--cinema .venue-detail-hero__media-content,
.application-detail-hero--cinema .application-detail-hero__media-content {
    padding-top: 1.4rem;
    padding-right: max(1rem, calc((100vw - 80rem) / 2 + 1.5rem));
    padding-bottom: 1.8rem;
    padding-left: max(1rem, calc((100vw - 80rem) / 2 + 1.5rem));
}

.campaign-detail-hero--cinema .campaign-detail-hero__headline,
.venue-detail-hero--cinema .venue-detail-hero__headline,
.application-detail-hero--cinema .application-detail-hero__headline {
    align-items: flex-end;
}

.campaign-detail-hero--cinema .campaign-detail-hero__copy,
.venue-detail-hero--cinema .venue-detail-hero__copy,
.application-detail-hero--cinema .application-detail-hero__copy {
    max-width: min(100%, 56rem);
}

.campaign-detail-hero--cinema .campaign-detail-hero__title,
.venue-detail-hero--cinema .venue-detail-hero__title {
    margin-top: 0.55rem;
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.94;
    text-wrap: balance;
}

.campaign-detail-hero__meta-line,
.campaign-detail-hero__review-line,
.venue-detail-hero__meta-line,
.venue-detail-hero__review-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
}

.campaign-detail-hero__review-line,
.venue-detail-hero__review-line {
    margin-top: 0.8rem;
}

.campaign-detail-hero__meta-line,
.venue-detail-hero__meta-line {
    margin-top: 0.95rem;
}

.campaign-detail-hero__score,
.venue-detail-hero__score {
    display: inline-flex;
    align-items: center;
}

.campaign-detail-hero__meta-copy,
.campaign-detail-hero__review-copy,
.venue-detail-hero__meta-copy,
.venue-detail-hero__review-copy {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.65;
}

.campaign-detail-hero__review-copy,
.venue-detail-hero__review-copy,
.application-detail-hero__review {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.55;
}

.campaign-detail-hero__meta-copy .venue-inline-link,
.campaign-detail-hero__review-copy .venue-inline-link,
.venue-detail-hero__meta-copy .venue-inline-link,
.venue-detail-hero__review-copy .venue-inline-link,
.application-detail-hero__review .venue-inline-link,
.application-detail-hero__venue .venue-inline-link {
    color: rgba(255, 255, 255, 0.88);
}

.campaign-detail-hero__meta-copy .venue-inline-link:hover,
.campaign-detail-hero__review-copy .venue-inline-link:hover,
.venue-detail-hero__meta-copy .venue-inline-link:hover,
.venue-detail-hero__review-copy .venue-inline-link:hover,
.application-detail-hero__review .venue-inline-link:hover,
.application-detail-hero__venue .venue-inline-link:hover {
    color: #fff;
}

.campaign-detail-hero__meta-copy .venue-inline-link--maps,
.venue-detail-hero__meta-copy .venue-inline-link--maps,
.application-detail-hero__venue .venue-inline-link--maps {
    color: rgba(191, 219, 254, 0.92);
}

.campaign-detail-hero__review-copy .venue-inline-link--review,
.venue-detail-hero__review-copy .venue-inline-link--review,
.application-detail-hero__review .venue-inline-link--review {
    color: rgba(196, 181, 253, 0.96);
}

.campaign-detail-hero--cinema .campaign-detail-hero__message,
.venue-detail-hero--cinema .venue-detail-hero__message,
.application-detail-hero--cinema .application-detail-hero__message {
    max-width: 44rem;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.78);
}

.venue-detail-hero--cinema .campaign-detail-hero__chips {
    margin-top: 0;
}

.venue-detail-hero__media-content .venue-detail-hero__subcopy {
    color: rgba(255, 255, 255, 0.78);
}

.venue-detail-hero__media-content .venue-detail-hero__support-surface {
    background: rgba(9, 10, 18, 0.4);
    backdrop-filter: blur(14px);
}

.application-detail-hero__media-content .application-detail-hero__support-note {
    background: rgba(9, 10, 18, 0.42);
    backdrop-filter: blur(14px);
}

.application-detail-hero__copy {
    min-width: 0;
}

.application-detail-hero__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.application-detail-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.8rem;
    margin-bottom: 0.95rem;
}

.application-detail-hero__title {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.application-detail-hero__review {
    margin-top: 0.65rem;
}

.application-detail-hero__venue {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.55;
}

.application-detail-hero__subtle-copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    line-height: 1.35;
}

.application-detail-hero__message {
    margin-top: 0.8rem;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    line-height: 1.45;
}

.application-detail-hero__support {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.application-detail-hero__support-note {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.7rem 0.95rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.application-detail-hero__support-copy {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    line-height: 1.35;
}

.application-detail-hero__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.3rem;
}

.application-detail-meta-card {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
}

.application-detail-meta-card__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-detail-meta-card__value {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.application-detail-hero__alert {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(248, 113, 113, 0.22);
    background: rgba(127, 29, 29, 0.26);
}

.application-detail-hero__alert-label {
    color: #fecaca;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-detail-hero__alert-copy {
    margin-top: 0.45rem;
    color: #fff1f2;
    font-size: 0.9rem;
    line-height: 1.65;
}

.application-detail-next-step {
    margin-top: 1.15rem;
}

.application-detail-next-step__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1.2rem;
    border: 1px solid rgba(167, 139, 250, 0.14);
    border-radius: 1.25rem;
    background:
        linear-gradient(135deg, rgba(56, 44, 112, 0.42), rgba(23, 20, 42, 0.9)),
        rgba(20, 18, 37, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 40px rgba(8, 6, 20, 0.22);
}

.application-detail-next-step__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-detail-next-step__title {
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.application-detail-next-step__body {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.65;
}

.application-detail-next-step__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.application-detail-action-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(110, 231, 183, 0.28);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(6, 95, 70, 0.22));
    color: #d1fae5;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: not-allowed;
    opacity: 0.92;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.application-detail-review-complete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(110, 231, 183, 0.24);
    background: rgba(16, 185, 129, 0.14);
    color: #a7f3d0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.application-detail-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.application-detail-panel--main {
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
}

.application-detail-panel__header {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.application-detail-panel__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-detail-panel__title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.application-detail-panel__subcopy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.6;
}

.application-detail-panel__stack {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-top: 1.15rem;
}

.application-detail-panel__surface {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.application-detail-panel__surface-label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.application-detail-panel__body {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.7;
}

.application-detail-panel__muted {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

.application-detail-pills-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.campaign-priority-grid.application-detail-panel__priority-grid {
    grid-template-columns: minmax(0, 1fr);
}

.application-detail-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
}

.application-detail-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.application-detail-cta__actions .browse-primary-cta,
.application-detail-cta__actions .browse-secondary-cta {
    width: 100%;
}

@media (min-width: 640px) {
    .application-detail-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .application-detail-cta__actions {
        flex-direction: row;
        flex-shrink: 0;
        width: auto;
    }

    .application-detail-cta__actions .browse-primary-cta,
    .application-detail-cta__actions .browse-secondary-cta {
        width: auto;
        min-width: 10rem;
    }
}

/* ── Applicant Banner ─────────────────────────────────── */

.applicant-banner {
    margin-top: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(147, 130, 220, 0.2);
    background: linear-gradient(135deg, rgba(30, 27, 50, 0.95), rgba(40, 30, 65, 0.85));
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.applicant-banner:hover {
    border-color: rgba(157, 78, 221, 0.45);
    box-shadow: 0 4px 24px rgba(157, 78, 221, 0.15);
    transform: translateY(-1px);
}

.applicant-banner--has-pending {
    border-color: rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, rgba(40, 25, 65, 0.95), rgba(55, 25, 75, 0.85));
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(157, 78, 221, 0.15), 0 0 0 0 rgba(157, 78, 221, 0); }
    50% { box-shadow: 0 0 20px rgba(157, 78, 221, 0.3), 0 0 40px rgba(255, 0, 110, 0.08); }
}

.applicant-banner__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    gap: 1rem;
}

.applicant-banner__content {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
    flex: 1;
}

.applicant-banner__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.25), rgba(255, 0, 110, 0.15));
}

.applicant-banner__icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(200, 160, 255, 0.9);
}

.applicant-banner__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.applicant-banner__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

.applicant-banner__subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.125rem;
}

.applicant-banner__badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.applicant-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.applicant-banner__badge--pending {
    background: rgba(157, 78, 221, 0.2);
    color: rgba(200, 160, 255, 1);
    border: 1px solid rgba(157, 78, 221, 0.35);
}

.applicant-banner__badge--approved {
    background: rgba(16, 185, 129, 0.15);
    color: rgba(110, 231, 183, 1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.applicant-banner__ping {
    position: relative;
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
}

.applicant-banner__ping::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(200, 160, 255, 1);
}

.applicant-banner__ping::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 9999px;
    background: rgba(157, 78, 221, 0.6);
    animation: pingDot 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingDot {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2.2); opacity: 0; }
}

.applicant-banner__chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease, transform 0.2s ease;
}

.applicant-banner:hover .applicant-banner__chevron {
    color: rgba(200, 160, 255, 0.8);
    transform: translateX(2px);
}

@media (max-width: 480px) {
    .applicant-banner__badges {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }
}

.application-detail-perk-banner {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.03));
}

.application-detail-perk-banner__copy {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.65;
}

.application-detail-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.application-detail-timeline__item {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.application-detail-timeline__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.application-detail-timeline__value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .application-detail-hero {
        padding: 1.35rem;
    }

    .application-detail-hero__media-content {
        padding: 1.35rem 1.35rem 1.45rem;
    }

    .application-detail-hero__headline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .application-detail-hero__support {
        align-items: flex-end;
        text-align: right;
        min-width: 14rem;
    }

    .application-detail-next-step__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .application-detail-next-step__copy {
        max-width: 38rem;
    }

    .application-detail-panel__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .campaign-priority-grid.application-detail-panel__priority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .application-detail-layout {
        grid-template-columns: minmax(0, 1.55fr) minmax(22rem, 0.95fr);
        align-items: start;
    }

    .application-detail-hero__meta-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .application-detail-pills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.dashboard-hero-shell {
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 48px rgba(4, 3, 12, 0.2);
}

.dashboard-hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dashboard-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-hero__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.dashboard-hero__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    object-fit: cover;
    border: 2px solid rgba(157, 78, 221, 0.45);
    box-shadow: 0 12px 28px rgba(24, 24, 48, 0.3);
}

.dashboard-hero__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.24), rgba(255, 0, 110, 0.18));
    color: #f5f3ff;
    font-size: 1.6rem;
    font-weight: 800;
}

.dashboard-hero__identity {
    min-width: 0;
}

.dashboard-hero__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dashboard-hero__name {
    margin-top: 0.35rem;
    color: #fff;
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.dashboard-hero__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.dashboard-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.dashboard-hero__aside-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.94rem;
    line-height: 1.6;
}

.dashboard-hero__aside-note {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-hero__progress {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-hero__progress-head {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dashboard-hero__progress-label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.dashboard-hero__progress-copy {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.84rem;
    line-height: 1.6;
}

.dashboard-hero__progress-value {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    font-weight: 700;
}

.dashboard-hero__progress-track {
    height: 0.75rem;
    margin-top: 0.9rem;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-hero__progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.96), rgba(255, 0, 110, 0.96));
    box-shadow: 0 0 24px rgba(157, 78, 221, 0.28);
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.dashboard-stat-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 24px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.dashboard-stat-card__inner {
    display: flex;
    flex-direction: column;
}

.dashboard-stat-card__label {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.dashboard-stat-card__value {
    color: rgba(255, 255, 255, 0.96);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.dashboard-stat-card__detail {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    line-height: 1.6;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-stat-card__value .rating-badge-value {
    font-size: 1.35rem;
}

.dashboard-stat-card__value .rating-badge-label {
    color: rgba(255, 255, 255, 0.32);
}

.dashboard-stat-card--purple {
    border-color: rgba(157, 78, 221, 0.24);
    background:
        radial-gradient(ellipse at top left, rgba(157, 78, 221, 0.1) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
}

.dashboard-stat-card--purple::before {
    background: linear-gradient(90deg, rgba(192, 132, 252, 0.65), transparent 70%);
}

.dashboard-stat-card--purple .dashboard-stat-card__value {
    color: #c084fc;
}

.dashboard-stat-card--green {
    border-color: rgba(16, 185, 129, 0.24);
    background:
        radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.09) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
}

.dashboard-stat-card--green::before {
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.65), transparent 70%);
}

.dashboard-stat-card--green .dashboard-stat-card__value {
    color: #4ade80;
}

.dashboard-stat-card--gold {
    border-color: rgba(245, 158, 11, 0.24);
    background:
        radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.09) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
}

.dashboard-stat-card--gold::before {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.65), transparent 70%);
}

.dashboard-stat-card--blue {
    border-color: rgba(59, 130, 246, 0.24);
    background:
        radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.09) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
}

.dashboard-stat-card--blue::before {
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.65), transparent 70%);
}

.dashboard-stat-card--blue .dashboard-stat-card__value {
    color: #60a5fa;
}

.dashboard-stat-card--amber {
    border-color: rgba(245, 158, 11, 0.24);
    background:
        radial-gradient(ellipse at top left, rgba(245, 158, 11, 0.09) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.97)),
        rgba(20, 18, 37, 0.97);
}

.dashboard-stat-card--amber::before {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.65), transparent 70%);
}

.dashboard-stat-card--amber .dashboard-stat-card__value {
    color: #fbbf24;
}

.dashboard-note {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
}

.dashboard-note--warning {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.18);
}

.creator-profile-ig-grid {
    display: flex;
    flex-direction: column;
}

.creator-profile-ig-grid > div:last-child {
    border-bottom: none;
}

.dashboard-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dashboard-section-header__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-section-header__title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.dashboard-section-header__link {
    color: #c084fc;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.dashboard-section-header__link:hover {
    color: #fff;
}

.venue-dashboard-hero-shell {
    position: relative;
    overflow: visible;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(157, 78, 221, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 48px rgba(5, 6, 15, 0.24);
}

.venue-dashboard-hero {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.venue-dashboard-hero__status-shell {
    right: 1.35rem;
}

.venue-dashboard-hero__support-surface {
    min-height: 100%;
}

.venue-dashboard-hero__support-surface--cool {
    border-color: rgba(59, 130, 246, 0.18);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0.03));
}

.venue-dashboard-hero__summary-banner {
    margin-top: 0.15rem;
}

.venue-dashboard-action-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.venue-dashboard-action-card {
    position: relative;
    display: block;
    overflow: visible;
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(4, 3, 12, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.venue-dashboard-action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 78, 221, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 48px rgba(4, 3, 12, 0.24);
}

.venue-dashboard-action-card--purple {
    border-color: rgba(157, 78, 221, 0.2);
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-action-card--blue {
    border-color: rgba(59, 130, 246, 0.18);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-action-card--green {
    border-color: rgba(16, 185, 129, 0.18);
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-action-card__badge-shell {
    right: 1.2rem;
}

.venue-dashboard-action-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 100%;
}

.venue-dashboard-action-card__eyebrow {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.venue-dashboard-action-card__title {
    margin-top: 0.55rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
}

.venue-dashboard-action-card__copy {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 26rem;
}

.venue-dashboard-action-card__link-copy {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.venue-dashboard-collab-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-dashboard-collab-card {
    position: relative;
    display: block;
    overflow: visible;
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(4, 3, 12, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.venue-dashboard-collab-card:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 48px rgba(4, 3, 12, 0.24);
}

.venue-dashboard-collab-card--active {
    border-color: rgba(157, 78, 221, 0.2);
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-collab-card--content-submitted {
    border-color: rgba(59, 130, 246, 0.18);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-collab-card--content-approved {
    border-color: rgba(16, 185, 129, 0.18);
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-collab-card--content-rejected {
    border-color: rgba(245, 158, 11, 0.2);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.venue-dashboard-collab-card--complete {
    border-color: rgba(148, 163, 184, 0.18);
}

.venue-dashboard-collab-card__status-shell {
    right: 1.2rem;
}

.venue-dashboard-collab-card__state-pill {
    letter-spacing: 0.14em;
    min-width: 10rem;
    justify-content: center;
    padding: 0.58rem 0.95rem;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.94),
        0 12px 30px rgba(15, 23, 42, 0.34);
}

.intersecting-pill-shell.venue-dashboard-collab-card__status-shell .venue-dashboard-collab-card__state-pill--active {
    background: rgba(191, 219, 254, 0.96);
    border-color: rgba(96, 165, 250, 0.96);
    color: #1d4ed8;
}

.intersecting-pill-shell.venue-dashboard-collab-card__status-shell .venue-dashboard-collab-card__state-pill--content-submitted {
    background: rgba(253, 230, 138, 0.96);
    border-color: rgba(245, 158, 11, 0.96);
    color: #92400e;
}

.intersecting-pill-shell.venue-dashboard-collab-card__status-shell .venue-dashboard-collab-card__state-pill--content-approved {
    background: rgba(233, 213, 255, 0.96);
    border-color: rgba(168, 85, 247, 0.92);
    color: #7e22ce;
}

.intersecting-pill-shell.venue-dashboard-collab-card__status-shell .venue-dashboard-collab-card__state-pill--content-rejected {
    background: rgba(254, 202, 202, 0.96);
    border-color: rgba(248, 113, 113, 0.95);
    color: #991b1b;
}

.intersecting-pill-shell.venue-dashboard-collab-card__status-shell .venue-dashboard-collab-card__state-pill--complete {
    background: rgba(167, 243, 208, 0.96);
    border-color: rgba(16, 185, 129, 0.96);
    color: #047857;
}

.venue-dashboard-collab-card__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-dashboard-collab-card__identity {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.venue-dashboard-collab-card__avatar {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 20px rgba(4, 3, 12, 0.22);
}

.venue-dashboard-collab-card__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.22), rgba(59, 130, 246, 0.16));
    color: #f5f3ff;
    font-size: 1rem;
    font-weight: 800;
}

.venue-dashboard-collab-card__copy {
    min-width: 0;
}

.venue-dashboard-collab-card__eyebrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.venue-dashboard-collab-card__title {
    margin-top: 0.4rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.15;
}

.venue-dashboard-collab-card__subcopy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
    line-height: 1.6;
}

.venue-dashboard-collab-card__date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.venue-dashboard-collab-card__meta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    margin-top: 1rem;
}

.venue-dashboard-collab-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.venue-dashboard-collab-card__footer-copy {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.65;
}

.venue-dashboard-collab-card__action-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.browse-filter-panel-shell,
.browse-venue-shell-card,
.browse-empty-shell {
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(4, 3, 12, 0.18);
}

.browse-filter-panel {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.browse-filter-panel__header {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.browse-filter-panel__header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.browse-filter-panel__week-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.browse-filter-panel__eyebrow,
.browse-filter-group__label,
.browse-summary-card__eyebrow,
.browse-section-header__eyebrow,
.browse-venue-shell__eyebrow,
.browse-surface__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.browse-filter-panel__title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.browse-filter-panel__copy {
    margin-top: 0.45rem;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.92rem;
    line-height: 1.65;
}

.browse-filter-panel__header-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.7rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.browse-filter-panel__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.browse-filter-panel__toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.browse-filter-panel__toggle--open {
    border-color: rgba(157, 78, 221, 0.34);
    background: rgba(157, 78, 221, 0.16);
    color: #d8b4fe;
}

.browse-filter-panel__toggle-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.browse-filter-panel__toggle--open .browse-filter-panel__toggle-icon {
    transform: rotate(180deg);
}

.browse-filter-panel__body {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.browse-filter-panel__body[hidden] {
    display: none;
}

.browse-filter-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.browse-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.browse-filter-field__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 600;
}

.browse-filter-field__control {
    width: 100%;
    min-height: 3.75rem;
    border-radius: 1.15rem;
    padding: 0 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.96rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.browse-filter-field__control::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.browse-filter-field__control--select {
    appearance: none;
    cursor: pointer;
}

.browse-filter-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.browse-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.browse-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.browse-toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.browse-toggle-btn {
    min-height: 3rem;
    padding: 0.75rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.browse-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-1px);
}

.browse-toggle-btn--active {
    background: rgba(157, 78, 221, 0.18);
    border-color: rgba(157, 78, 221, 0.34);
    color: #c084fc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.browse-summary-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(20, 18, 37, 0.94)),
        rgba(20, 18, 37, 0.96);
}

.browse-summary-card__title {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
}

.browse-summary-card__body {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.9rem;
    line-height: 1.65;
}

.browse-summary-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.browse-summary-card__reset {
    min-height: 2.2rem;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.browse-summary-card__reset:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.browse-empty-state {
    padding: 1rem 0.25rem;
    text-align: center;
}

.browse-empty-state__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.browse-empty-state__body {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.92rem;
    line-height: 1.65;
}

.browse-empty-state__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.browse-empty-state__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    min-width: min(100%, 15rem);
    padding: 0.8rem 1.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(167, 139, 250, 0.32);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(168, 85, 247, 0.28));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    color: #f5f3ff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.browse-empty-state__cta:hover {
    transform: translateY(-1px);
    border-color: rgba(196, 181, 253, 0.48);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.34);
}

/* Cooldown toggle + campaign card */
.browse-cooldown-toggle {
    padding: 0.65rem 0 0;
}

.browse-cooldown-toggle__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.browse-cooldown-toggle__btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
}

.browse-cooldown-toggle__btn--active {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.08);
    color: rgba(255, 255, 255, 0.72);
}

.browse-cooldown-toggle__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 1;
}

.browse-cooldown-toggle__btn--active .browse-cooldown-toggle__check {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.browse-cooldown-toggle__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.62rem;
    font-weight: 800;
}

.browse-cooldown-toggle__note {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    line-height: 1.5;
}

.browse-campaign-card--cooldown {
    opacity: 0.55;
    border-color: rgba(245, 158, 11, 0.15);
}

.browse-campaign-card--cooldown:hover {
    opacity: 0.72;
}

.browse-cta--cooldown {
    pointer-events: none;
    opacity: 0.5;
}

.browse-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.browse-section-header__title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
}

.browse-section-header__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.browse-campaign-card {
    position: relative;
    overflow: visible;
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(4, 3, 12, 0.18);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.browse-campaign-card:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 78, 221, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 48px rgba(4, 3, 12, 0.24);
}

.browse-campaign-card:focus-visible {
    outline: none;
    border-color: rgba(157, 78, 221, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 2px rgba(157, 78, 221, 0.18),
        0 22px 48px rgba(4, 3, 12, 0.24);
}

.browse-campaign-card__header,
.browse-venue-tile__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.browse-campaign-card__copy,
.browse-venue-tile__copy {
    min-width: 0;
}

.browse-campaign-card__chips,
.browse-venue-tile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.pill--campaign-chip {
    padding: 0.12rem 0.55rem;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0.07em;
}

.browse-campaign-card__title,
.browse-venue-tile__title {
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.08;
}

.browse-venue-tile__title {
    font-size: 1.15rem;
}

.browse-venue-tile__timing,
.browse-campaign-card__aside-copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.95rem;
    line-height: 1.6;
}

.browse-campaign-card__aside,
.browse-venue-shell__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.browse-campaign-card__aside:empty {
    display: none;
}

.browse-campaign-card__rating,
.browse-venue-shell__rating {
    display: inline-flex;
    align-items: center;
}

.browse-campaign-card__rating--under-title {
    margin-top: 0.6rem;
}

.browse-campaign-card__meta-grid,
.browse-campaign-card__detail-grid,
.browse-venue-tile__detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
}

.browse-campaign-card__meta-grid,
.browse-venue-tile__detail-grid {
    margin-top: 1rem;
}

.browse-campaign-card__detail-grid {
    margin-top: 0.9rem;
}

.browse-campaign-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.browse-campaign-card__footer-copy {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.65;
}

.browse-campaign-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.browse-campaign-card--applied,
.browse-venue-tile--applied {
    padding-top: 1.7rem;
}

.browse-campaign-card__applied-panel,
.browse-venue-tile__applied-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.browse-campaign-card__applied-meta {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.browse-campaign-card__inline-link {
    color: #c084fc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.browse-surface {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.browse-surface--blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 0.03));
}

.browse-surface--purple {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(255, 255, 255, 0.03));
}

.browse-surface--green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.03));
}

.browse-surface--amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.03));
}

.browse-surface__body {
    margin-top: 0.55rem;
}

.browse-surface__value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.5;
}

.browse-surface .deliverable-pill-list {
    gap: 0.5rem;
}

.browse-surface__muted {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    line-height: 1.65;
}

.campaign-priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.85rem;
}

.campaign-priority-card {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.campaign-priority-card--date {
    border-color: rgba(157, 78, 221, 0.18);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-priority-card--venue {
    border-color: rgba(59, 130, 246, 0.18);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0.03));
}

.campaign-priority-card--deliverables {
    border-color: rgba(16, 185, 129, 0.18);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.03));
}

.campaign-priority-card--focus {
    border-color: rgba(245, 158, 11, 0.18);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-priority-card--perk {
    border-color: rgba(34, 197, 94, 0.18);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-priority-card__label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.campaign-priority-card__value {
    margin-top: 0.45rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.campaign-priority-card__support {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.6;
}

.campaign-priority-card__support--compact {
    margin-top: 0.4rem;
    max-width: 15rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
    line-height: 1.3;
}

.campaign-priority-card__body {
    margin-top: 0.7rem;
}

.campaign-priority-card__body--perk {
    display: grid;
    gap: 0.65rem;
}

.campaign-perk-preview-row {
    display: grid;
    gap: 0.45rem;
}

.campaign-perk-preview-row__tier {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.campaign-perk-preview-row__badge-shell {
    min-width: 0;
}

.campaign-perk-preview-row__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 100%;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.campaign-perk-preview-row__badge--unlocked {
    border-color: rgba(52, 211, 153, 0.28);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(255, 255, 255, 0.04));
    color: #d1fae5;
}

.campaign-perk-preview-row__badge--locked {
    border-color: rgba(148, 163, 184, 0.22);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.28), rgba(255, 255, 255, 0.04));
    color: rgba(226, 232, 240, 0.92);
}

.campaign-perk-preview-row__badge-copy {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.campaign-perk-preview-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
}

.campaign-perk-preview-row__icon-svg {
    width: 1rem;
    height: 1rem;
}

.browse-venue-shell {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.browse-venue-shell__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.browse-venue-shell__profile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.browse-venue-shell__avatar {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browse-venue-shell__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    font-weight: 800;
}

.browse-venue-shell__identity {
    min-width: 0;
}

.browse-venue-shell__title {
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.15;
}

.browse-venue-shell__copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.6;
}

.browse-venue-shell__formats {
    margin-top: 0.75rem;
}

.browse-venue-shell__campaigns {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.browse-venue-tile {
    position: relative;
    overflow: visible;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.browse-venue-tile__link {
    color: #c084fc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.browse-venue-tile__link:hover {
    color: #fff;
}

@media (min-width: 640px) {
    .dashboard-stat-grid {
        gap: 1rem;
    }

    .venue-dashboard-action-grid,
    .venue-dashboard-collab-card__meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .browse-campaign-card__meta-grid,
    .browse-campaign-card__detail-grid,
    .browse-venue-tile__detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .dashboard-hero__headline,
    .dashboard-section-header,
    .browse-filter-panel__header,
    .browse-summary-card,
    .browse-section-header,
    .browse-venue-shell__header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .dashboard-hero__aside {
        align-items: flex-end;
        text-align: right;
    }

    .venue-dashboard-collab-card__header,
    .venue-dashboard-collab-card__footer {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .venue-dashboard-collab-card__date {
        text-align: right;
        min-width: 10rem;
    }

    .dashboard-hero__progress-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .browse-filter-panel__header-note {
        align-self: flex-start;
    }

    .browse-filter-panel__header-actions {
        justify-content: flex-end;
        align-self: flex-start;
    }

    .review-flow-hero__headline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .browse-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .browse-campaign-card,
    .browse-venue-tile {
        padding: 1.35rem;
    }

    .browse-campaign-card__header,
    .browse-venue-tile__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .browse-campaign-card__aside,
    .browse-venue-shell__actions {
        justify-content: flex-end;
    }

    .browse-campaign-card__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .browse-campaign-card__footer-copy {
        max-width: 38rem;
    }
}

@media (min-width: 1024px) {
    .dashboard-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .venue-dashboard-action-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-filter-panel__grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.7fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
    }

    .browse-campaign-card__meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.campaign-detail-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.campaign-detail-layout__main,
.campaign-detail-layout__side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.campaign-detail-panel--primary {
    position: relative;
    overflow: visible;
}

.page-shell--detail-offset {
    padding-top: 6.25rem !important;
}

.page-shell--hero-bleed {
    padding-top: 0 !important;
}

.page-shell__hero-body {
    padding-top: 0.85rem;
}

.page-shell__hero-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
    margin-bottom: 1.25rem;
}

.campaign-detail-back-shell,
.application-detail-back-shell,
.venue-detail-back-shell {
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: auto;
    z-index: 2;
    display: inline-flex;
    transform: translateY(-50%);
}

.campaign-detail-back-button,
.application-detail-back-button,
.venue-detail-back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1.15rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.96), rgba(255, 0, 110, 0.88));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.92),
        0 12px 26px rgba(6, 8, 15, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.campaign-detail-back-button:hover,
.application-detail-back-button:hover,
.venue-detail-back-button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 4px rgba(14, 13, 23, 0.92),
        0 16px 30px rgba(6, 8, 15, 0.42);
}

.campaign-detail-back-button__icon,
.application-detail-back-button__icon,
.venue-detail-back-button__icon {
    font-size: 0.92rem;
    line-height: 1;
    letter-spacing: 0;
}

.campaign-detail-back-button__label,
.application-detail-back-button__label,
.venue-detail-back-button__label {
    line-height: 1;
}

.application-detail-hero {
    position: relative;
}

.campaign-detail-hero {
    position: relative;
    overflow: visible;
    padding: 1.15rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 48px rgba(5, 6, 15, 0.28);
    margin-bottom: 1.5rem;
}

.campaign-detail-hero--recurring {
    border-color: rgba(157, 78, 221, 0.28);
}

.campaign-detail-hero__status-shell {
    right: 1.35rem;
}

.campaign-detail-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.campaign-detail-hero__copy {
    min-width: 0;
}

.venue-detail-hero__copy {
    min-width: 0;
}

.campaign-detail-hero__eyebrow,
.venue-detail-hero__eyebrow,
.venue-detail-section-header__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.campaign-detail-hero__chips,
.venue-detail-campaign-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.campaign-detail-hero__title,
.venue-detail-hero__title {
    margin-top: 0.85rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.02;
}

.campaign-detail-hero__venue,
.venue-detail-hero__subcopy {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 1rem;
    line-height: 1.6;
}

.campaign-detail-hero__message,
.venue-detail-hero__message {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    line-height: 1.45;
    max-width: 38rem;
}

.campaign-detail-hero__rating-corner,
.venue-detail-hero__rating-corner {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: calc(100% - 7rem);
}

.venue-inline-link {
    display: inline-flex;
    align-items: center;
    color: #d8b4fe;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.venue-inline-link:hover {
    color: #fff;
}

.venue-inline-link--maps {
    color: #bfdbfe;
}

.venue-inline-link--review {
    color: rgba(196, 181, 253, 0.96);
}

.venue-inline-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.venue-inline-rating__value {
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.98rem;
    font-weight: 700;
}

.venue-inline-rating__stars {
    display: inline-flex;
    align-items: center;
}

.venue-inline-separator {
    color: rgba(255, 255, 255, 0.32);
}

.campaign-detail-hero__support,
.venue-detail-hero__support {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.campaign-detail-hero__support-surface,
.venue-detail-hero__support-surface,
.venue-detail-hero__formats {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.campaign-detail-hero__support-surface--selector {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.09), rgba(255, 255, 255, 0.03));
    border-color: rgba(157, 78, 221, 0.18);
}

.campaign-detail-hero__support-note,
.venue-detail-hero__support-note {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.campaign-detail-hero__support-copy,
.venue-detail-hero__support-copy {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.8rem;
    line-height: 1.4;
}

.campaign-detail-hero__support-rating,
.venue-detail-hero__support-rating {
    margin-top: 0.55rem;
}

.campaign-detail-hero__selector {
    width: 100%;
    min-height: 3rem;
    margin-top: 0.55rem;
    padding: 0 0.95rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 10, 21, 0.72);
    color: #fff;
    cursor: pointer;
    appearance: none;
}

.campaign-detail-hero__meta-grid,
.venue-detail-hero__meta-grid,
.venue-detail-campaign-card__meta-grid,
.venue-detail-campaign-card__detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
}

.campaign-detail-hero__meta-grid,
.venue-detail-hero__meta-grid {
    margin-top: 1.35rem;
}

.venue-detail-hero__formats {
    margin-top: 1rem;
}

.campaign-detail-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.campaign-detail-panel--perk {
    background:
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.campaign-detail-panel--sticky {
    position: relative;
}

.campaign-detail-summary-banner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.campaign-detail-summary-banner--purple {
    border-color: rgba(157, 78, 221, 0.2);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-detail-summary-banner--green {
    border-color: rgba(16, 185, 129, 0.18);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-detail-summary-banner--amber {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-detail-summary-banner--blue {
    border-color: rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(255, 255, 255, 0.03));
}

.campaign-detail-summary-banner--slate {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), rgba(255, 255, 255, 0.03));
}

.campaign-detail-summary-banner__title,
.campaign-detail-empty-note__title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}

.campaign-detail-summary-banner__copy,
.campaign-detail-empty-note__body {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.65;
}

.campaign-detail-summary-banner__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.campaign-detail-perk-ladder {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.campaign-detail-empty-note {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.campaign-detail-empty-note--danger {
    border-color: rgba(248, 113, 113, 0.18);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.26), rgba(255, 255, 255, 0.03));
}

.campaign-detail-empty-note--info {
    border-color: rgba(59, 130, 246, 0.18);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(255, 255, 255, 0.03));
}

.campaign-apply-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-apply-form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.campaign-apply-form__check span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
}

.campaign-apply-form__actions,
.venue-detail-campaign-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.campaign-apply-form__actions--stack {
    flex-direction: column;
}

.campaign-apply-form__actions--stack > * {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.campaign-detail-mobile-apply {
    display: none;
}

.campaign-detail-mobile-apply__intro {
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-detail-hero {
    position: relative;
    overflow: visible;
    padding: 1.55rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(157, 78, 221, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 48px rgba(5, 6, 15, 0.24);
}

.campaign-detail-hero.campaign-detail-hero--cinema,
.venue-detail-hero.venue-detail-hero--cinema,
.application-detail-hero.application-detail-hero--cinema {
    padding: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

.venue-detail-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.venue-detail-hero__media-shell {
    margin-bottom: 1.35rem;
}

.venue-detail-section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.venue-detail-section-header__title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0.45rem;
}

.venue-detail-section-header__copy {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 46rem;
}

.venue-detail-campaign-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-detail-campaign-card {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.venue-detail-campaign-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.venue-detail-campaign-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.venue-detail-campaign-card__title {
    margin-top: 0.85rem;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.15;
}

.venue-detail-campaign-card__timing {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    line-height: 1.6;
}

.venue-detail-campaign-card__meta-grid,
.venue-detail-campaign-card__detail-grid {
    margin-top: 1rem;
}

.venue-detail-campaign-card__context-banner {
    margin-top: 1rem;
}

.venue-detail-campaign-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.venue-detail-campaign-card__footer-copy {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 48rem;
}

@media (min-width: 1024px) {
    .campaign-detail-hero,
    .venue-detail-hero {
        padding: 1.35rem;
    }

    .campaign-detail-hero__media-content,
    .venue-detail-hero__media-content {
        padding: 1.35rem 1.35rem 1.45rem;
    }

    .campaign-detail-hero--cinema .campaign-detail-hero__media-content,
    .venue-detail-hero--cinema .venue-detail-hero__media-content,
    .application-detail-hero--cinema .application-detail-hero__media-content {
        padding-top: 1.6rem;
        padding-bottom: 2rem;
    }

    .campaign-detail-hero__copy--with-rating,
    .venue-detail-hero__copy--with-rating {
        padding-right: 11rem;
    }

    .campaign-detail-hero__headline,
    .venue-detail-hero__headline,
    .venue-detail-section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .campaign-detail-hero__support,
    .venue-detail-hero__support {
        min-width: 16rem;
    }

    .campaign-detail-hero__meta-grid,
    .venue-detail-hero__meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .venue-detail-campaign-card__meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .venue-detail-campaign-card__detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .venue-detail-campaign-card__footer {
        justify-content: flex-end;
        align-items: center;
    }

    .venue-detail-campaign-card__footer-copy {
        max-width: 40rem;
    }
}

@media (max-width: 1023px) {
    .page-shell--detail-offset {
        padding-top: 6.75rem !important;
    }

    .page-shell__hero-body {
        padding-top: 0.7rem;
    }

    .application-activity-card,
    .browse-campaign-card,
    .browse-venue-tile,
    .campaign-detail-hero,
    .venue-detail-hero,
    .application-detail-hero {
        padding: 1.1rem;
    }

    .dashboard-hero-shell,
    .dashboard-stat-card,
    .browse-filter-panel-shell,
    .browse-venue-shell-card,
    .browse-empty-shell,
    .application-detail-panel,
    .campaign-detail-panel,
    .venue-detail-campaign-card {
        padding: 1rem;
    }

    .application-detail-layout,
    .application-detail-layout__side,
    .campaign-detail-layout,
    .campaign-detail-layout__main,
    .campaign-detail-layout__side,
    .venue-detail-campaign-list,
    .application-activity-feed,
    .dashboard-stat-grid {
        gap: 1rem;
    }

    .application-detail-panel__stack,
    .browse-filter-panel,
    .browse-filter-panel__body,
    .browse-venue-shell,
    .campaign-detail-perk-ladder,
    .applications-filter-list {
        gap: 0.8rem;
    }

    .campaign-detail-back-shell,
    .application-detail-back-shell,
    .venue-detail-back-shell {
        left: 0.9rem;
    }

    .campaign-detail-back-button,
    .application-detail-back-button,
    .venue-detail-back-button {
        padding: 0.68rem 1rem;
        font-size: 0.68rem;
    }

    .campaign-detail-perk-timeline {
        flex-direction: column;
        gap: 0.85rem;
    }

    .perk-timeline-step {
        padding-top: 0;
        padding-left: 1.6rem;
    }

    .perk-timeline-step__rail {
        top: 0;
        bottom: -0.85rem;
        left: 0;
        right: auto;
        width: 1rem;
        height: auto;
    }

    .perk-timeline-step__node {
        top: 1rem;
        left: 0.05rem;
    }

    .perk-timeline-step__connector {
        top: 1.95rem;
        bottom: -0.85rem;
        left: 0.46rem;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(148, 163, 184, 0.38), rgba(148, 163, 184, 0.12));
    }

    .perk-timeline-step--past .perk-timeline-step__connector {
        background: linear-gradient(180deg, rgba(148, 163, 184, 0.34), rgba(148, 163, 184, 0.12));
    }

    .perk-timeline-step--current .perk-timeline-step__connector {
        background: linear-gradient(180deg, rgba(110, 231, 183, 0.88), rgba(245, 158, 11, 0.55));
    }

    .perk-timeline-step--active .perk-timeline-step__connector {
        background: linear-gradient(180deg, rgba(52, 211, 153, 0.42), rgba(52, 211, 153, 0.14));
    }

    .perk-timeline-step--next .perk-timeline-step__connector {
        background: linear-gradient(180deg, rgba(245, 158, 11, 0.52), rgba(148, 163, 184, 0.16));
    }

    .application-detail-panel__stack,
    .campaign-detail-hero__meta-grid,
    .venue-detail-hero__meta-grid,
    .application-detail-hero__meta-grid,
    .browse-campaign-card__meta-grid,
    .browse-campaign-card__detail-grid,
    .browse-venue-tile__detail-grid,
    .venue-detail-campaign-card__meta-grid,
    .venue-detail-campaign-card__detail-grid,
    .application-activity-card__meta-grid,
    .application-detail-pills-grid {
        margin-top: 0.95rem;
        gap: 0.75rem;
    }

    .application-detail-next-step__inner,
    .browse-campaign-card__footer,
    .venue-detail-campaign-card__footer {
        margin-top: 0.95rem;
        gap: 0.8rem;
    }

    .application-detail-next-step__inner {
        margin-top: 0;
        padding: 1rem;
    }

    .campaign-detail-mobile-apply {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .campaign-detail-panel--hide-on-mobile {
        display: none;
    }

    .browse-section-header {
        margin-bottom: 0.8rem;
    }

    .campaign-detail-hero--cinema .campaign-detail-hero__media-shell,
    .venue-detail-hero--cinema .venue-detail-hero__media-shell,
    .application-detail-hero--cinema .application-detail-hero__media-shell {
        min-height: 23rem;
    }

    .campaign-detail-hero--cinema .campaign-detail-hero__media-content,
    .venue-detail-hero--cinema .venue-detail-hero__media-content,
    .application-detail-hero--cinema .application-detail-hero__media-content {
        padding: 1rem 1rem 1.35rem;
    }

    .campaign-detail-hero--cinema .campaign-detail-hero__title,
    .venue-detail-hero--cinema .venue-detail-hero__title {
        max-width: 9ch;
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .campaign-detail-hero__meta-copy,
    .venue-detail-hero__meta-copy {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

@media (min-width: 1024px) {
    .campaign-detail-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(21rem, 0.95fr);
    }

    .campaign-detail-hero__meta-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .venue-detail-hero__meta-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Chip input */
.deliverable-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.deliverable-pill-list--prominent {
    gap: 0.65rem;
}

.deliverable-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.deliverable-pill__icon {
    display: inline-flex;
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
}

.deliverable-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.deliverable-pill--custom {
    border-style: dashed;
}

.chip-input-shell {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.chip-input-shell:focus-within {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 0 1px rgba(157, 78, 221, 0.2);
}
.chip-input-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}
.chip-input-field {
    flex: 1 1 10rem;
    min-width: 9rem;
    height: 1.75rem;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
}
.chip-input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.chip-input-token {
    gap: 0.4rem;
}
.chip-input-token-remove {
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.75;
}
.chip-input-token-remove:hover {
    opacity: 1;
}
.chip-input-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.chip-input-suggestions--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.75rem;
}
.chip-input-suggestion {
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s, filter 0.15s;
}
.chip-input-suggestion--card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.96);
    color: #fff;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.chip-input-suggestion:hover:not(:disabled) {
    transform: translateY(-1px);
}
.chip-input-suggestion:disabled,
.chip-input-suggestion-disabled {
    opacity: 0.45;
    cursor: default;
}
.chip-input-suggestion__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(157, 78, 221, 0.18);
    background: rgba(157, 78, 221, 0.14);
    color: #d8b4fe;
    flex-shrink: 0;
}

.chip-input-suggestion__copy {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.chip-input-suggestion__label {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.chip-input-suggestion__description {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
}

/* Animations */
.fade-in { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.toast-enter { animation: toastIn 0.35s ease-out; }
.toast-exit { animation: toastOut 0.3s ease-in forwards; }
@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(20px); }
}

/* ============================================
   Site Navigation
   ============================================ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.7rem 1rem;
    background: rgba(7, 7, 14, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(157, 78, 221, 0.55) 25%,
        rgba(255, 0, 110, 0.45) 75%,
        transparent 100%);
    pointer-events: none;
}
.site-nav--scrolled {
    background: rgba(5, 5, 11, 0.96);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.38);
}

.nav-logo {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: white;
    line-height: 1;
    text-decoration: none;
}

.venue-product-badge {
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.78rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.54);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.venue-product-badge:hover {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.venue-product-badge__copy {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.venue-product-badge__logo {
    width: auto;
    height: 1.05rem;
    opacity: 0.96;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.72rem;
    border-radius: 0.58rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.52);
    border: 1px solid transparent;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
}
.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}
.nav-link--active {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18), rgba(255, 0, 110, 0.09));
    border-color: rgba(157, 78, 221, 0.24);
}
.nav-link--active:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.24), rgba(255, 0, 110, 0.13));
    border-color: rgba(157, 78, 221, 0.32);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1.1rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #9d4edd, #ec4899);
    color: white;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 0 18px rgba(157, 78, 221, 0.32), 0 0 36px rgba(255, 0, 110, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(157, 78, 221, 0.48), 0 0 52px rgba(255, 0, 110, 0.22);
}

.nav-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.58rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.nav-icon-btn:hover {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
}
.nav-icon-btn--active {
    color: white;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.68rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    font-weight: 500;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    cursor: pointer;
}
.nav-user-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.92);
}

/* Nav dropdown */
.nav-dropdown { display: none; }
.nav-dropdown.open { display: block; }

.nav-dropdown-menu {
    background: rgba(8, 8, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.nav-dropdown-item {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 0.55rem;
    margin: 0.2rem 0.3rem;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: calc(100% - 0.6rem);
    text-align: left;
}

.nav-dropdown-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    vertical-align: -0.12rem;
}

.nav-dropdown-item__icon svg {
    width: 100%;
    height: 100%;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

.nav-dropdown-item--upgrade {
    color: #f8d77d;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 220, 120, 0.05);
}

.nav-dropdown-item--upgrade:hover {
    color: #fff0bf;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(251, 191, 36, 0.14));
    border-color: rgba(251, 191, 36, 0.34);
}

.nav-dropdown-item--danger { color: rgba(252, 129, 129, 0.9); }
.nav-dropdown-item--danger:hover {
    color: rgb(254, 162, 162);
    background: rgba(248, 113, 113, 0.08);
}

/* Form focus */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #9d4edd !important;
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

/* File upload zone */
.upload-zone {
    border: 2px dashed #333;
    transition: border-color 0.2s, background-color 0.2s;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: #9d4edd;
    background-color: rgba(157, 78, 221, 0.05);
}

/* Data tables */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.875rem;
}
.data-table tbody tr:hover td {
    background-color: rgba(255,255,255,0.02);
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Number input spinners hidden */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] { -moz-appearance: textfield; }

/* Password strength */
.strength-bar { height: 4px; border-radius: 2px; transition: width 0.3s, background-color 0.3s; }

/* Locked perk styling */
.perk-locked {
    opacity: 0.5;
    border-style: dashed;
}

/* ============================================
   Perk Progression Components
   ============================================ */

/* Full-width perk timeline */
.campaign-detail-perk-timeline {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}

.perk-timeline-step {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    padding-top: 1.85rem;
}

.perk-timeline-step__rail {
    position: absolute;
    top: 0;
    left: 0;
    right: -0.5rem;
    height: 1rem;
}

.perk-timeline-step__node {
    position: absolute;
    top: 0.12rem;
    left: 1rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 9999px;
    border: 2px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 0 0 5px rgba(15, 23, 42, 0.55);
}

.perk-timeline-step__connector {
    position: absolute;
    top: 0.52rem;
    left: 1.9rem;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.38), rgba(148, 163, 184, 0.12));
}

.perk-timeline-step__card {
    height: 100%;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(14, 13, 28, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.perk-timeline-step__status {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.perk-timeline-step__tier {
    margin-top: 0.7rem;
}

.perk-timeline-step__perks {
    margin-top: 0.85rem;
}

.perk-timeline-step__perks .flex {
    gap: 0.45rem;
}

.perk-timeline-step__caption {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    line-height: 1.45;
}

.perk-timeline-step--past .perk-timeline-step__card {
    border-color: rgba(148, 163, 184, 0.12);
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), rgba(11, 15, 24, 0.96));
}

.perk-timeline-step--past .perk-timeline-step__node {
    border-color: rgba(148, 163, 184, 0.48);
    background: #94a3b8;
}

.perk-timeline-step--past .perk-timeline-step__connector {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.34), rgba(148, 163, 184, 0.12));
}

.perk-timeline-step--past .perk-timeline-step__status,
.perk-timeline-step--past .perk-timeline-step__caption {
    color: rgba(226, 232, 240, 0.42);
}

.perk-timeline-step--past .pill {
    background: rgba(226, 232, 240, 0.1) !important;
    border-color: rgba(148, 163, 184, 0.28) !important;
    color: rgba(226, 232, 240, 0.66) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.perk-timeline-step--current .perk-timeline-step__card {
    border-color: rgba(157, 78, 221, 0.28);
    background:
        radial-gradient(circle at top right, rgba(110, 231, 183, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(157, 78, 221, 0.16), rgba(255, 0, 110, 0.09));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 36px rgba(10, 8, 24, 0.18);
}

.perk-timeline-step--current .perk-timeline-step__node {
    border-color: rgba(110, 231, 183, 0.9);
    background: #6ee7b7;
    box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.12);
}

.perk-timeline-step--current .perk-timeline-step__connector {
    background: linear-gradient(90deg, rgba(110, 231, 183, 0.88), rgba(245, 158, 11, 0.55));
}

.perk-timeline-step--current .perk-timeline-step__status {
    color: rgba(167, 243, 208, 0.86);
}

.perk-timeline-step--active .perk-timeline-step__card {
    border-color: rgba(52, 211, 153, 0.2);
    background:
        radial-gradient(circle at top right, rgba(110, 231, 183, 0.1), transparent 40%),
        linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(7, 23, 21, 0.96));
}

.perk-timeline-step--active .perk-timeline-step__node {
    border-color: rgba(52, 211, 153, 0.75);
    background: #34d399;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.08);
}

.perk-timeline-step--active .perk-timeline-step__connector {
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.42), rgba(52, 211, 153, 0.14));
}

.perk-timeline-step--active .perk-timeline-step__status {
    color: rgba(167, 243, 208, 0.72);
}

.perk-timeline-step--next .perk-timeline-step__card {
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(23, 18, 10, 0.96));
}

.perk-timeline-step--next .perk-timeline-step__node {
    border-color: rgba(251, 191, 36, 0.9);
    background: #fbbf24;
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.1);
}

.perk-timeline-step--next .perk-timeline-step__connector {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.52), rgba(148, 163, 184, 0.16));
}

.perk-timeline-step--next .perk-timeline-step__status {
    color: rgba(252, 211, 77, 0.9);
}

.perk-timeline-step--future .perk-timeline-step__card {
    border-style: dashed;
    border-color: rgba(148, 163, 184, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 10, 18, 0.96));
}

.perk-timeline-step--future .perk-timeline-step__node {
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.98);
}

.perk-timeline-step--future .perk-timeline-step__status {
    color: rgba(203, 213, 225, 0.42);
}

.perk-timeline-step--future .pill {
    background: rgba(148, 163, 184, 0.08) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    color: rgba(226, 232, 240, 0.5) !important;
    box-shadow: none;
}

.perk-timeline-step--last .perk-timeline-step__connector {
    display: none;
}

/* Progression card overall */
.perk-progression-card {
    position: relative;
    overflow: hidden;
}
/* ============================================
   Glassmorphism Panel
   ============================================ */
.glass-panel {
    background: rgba(22, 22, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
}

/* ============================================
   Creator Landing Page — /join
   ============================================ */

.landing-shell {
    --landing-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --landing-motion-duration-sm: 0.62s;
    --landing-motion-duration-md: 0.82s;
    --landing-motion-duration-lg: 1.08s;
    --landing-motion-duration-xl: 1.92s;
    --landing-motion-loop-duration: 3s;
    position: relative;
    background:
        radial-gradient(circle at 10% 0%, rgba(157, 78, 221, 0.24), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(255, 0, 110, 0.16), transparent 28%),
        linear-gradient(180deg, #06060b 0%, #0a0a0f 38%, #07070d 100%);
}

.landing-section-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.landing-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    line-height: 1;
}

/* Hero gradient overlay */
.landing-hero {
    position: relative;
    overflow: visible;
}
.landing-hero::before {
    display: none;
}
.landing-hero::after {
    display: none;
}



.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.25rem;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.landing-scroll-down-btn {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-50%);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
    animation: landingScrollButtonFloat 2.2s ease-in-out infinite;
    will-change: transform;
}
.landing-scroll-down-btn:hover,
.landing-scroll-down-btn:focus-visible {
    color: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    animation: none;
    transform: translateX(-50%) translateY(-2px);
}
.landing-scroll-down-btn:focus-visible {
    outline: 2px solid rgba(192, 132, 252, 0.72);
    outline-offset: 3px;
}
.landing-scroll-down-btn--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none;
    transform: translateX(-50%) translateY(8px);
}

@keyframes landingScrollButtonFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    25% {
        transform: translateX(-50%) translateY(-3px);
    }
    75% {
        transform: translateX(-50%) translateY(3px);
    }
}

.landing-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    padding: 0.9rem 1.45rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}
.landing-secondary-btn:hover {
    color: white;
    border-color: rgba(157, 78, 221, 0.35);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.landing-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}
.landing-proof-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-proof-card {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
}
.landing-proof-value {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
}
.landing-proof-label {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 600;
}
.landing-proof-copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.8rem;
    line-height: 1.45;
}

.landing-showcase {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    isolation: isolate;
    padding: 4.75rem 2.75rem;
}

.landing-showcase-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(12px);
    opacity: 0.95;
    pointer-events: none;
}
.landing-showcase-orb--purple {
    top: 0;
    left: 1rem;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.26) 0%, transparent 70%);
}
.landing-showcase-orb--pink {
    right: 0;
    bottom: 2rem;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.22) 0%, transparent 72%);
}

.landing-showcase-card {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    padding: 1rem;
    background: rgba(14, 14, 30, 0.8);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.landing-tier-progress {
    overflow: hidden;
}

.landing-tier-progress__timeline {
    isolation: isolate;
}

.landing-tier-progress__track,
.landing-tier-progress__fill {
    border-radius: 9999px;
    pointer-events: none;
}

.landing-tier-progress__track {
    background: rgba(255, 255, 255, 0.12);
}

.landing-tier-progress__fill {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.24) 0%,
        rgba(255, 255, 255, 0.24) 30%,
        #9d4edd 62%,
        #f59e0b 100%);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0.45;
    transition:
        transform var(--landing-motion-duration-xl) var(--landing-motion-ease),
        opacity var(--landing-motion-duration-sm) ease;
}

.landing-tier-progress__dot {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    opacity: 0.58;
    transform: scale(0.72);
    transition:
        transform var(--landing-motion-duration-sm) ease,
        opacity var(--landing-motion-duration-sm) ease,
        background var(--landing-motion-duration-sm) ease,
        border-color var(--landing-motion-duration-sm) ease,
        box-shadow var(--landing-motion-duration-sm) ease;
    transition-delay: calc((var(--progress-order) * 180ms) + 160ms);
}

.landing-tier-progress__step {
    position: relative;
    overflow: hidden;
    opacity: 0.44;
    filter: grayscale(1) saturate(0.3) brightness(0.82);
    transform: translateY(16px);
    transition:
        opacity var(--landing-motion-duration-md) ease,
        filter var(--landing-motion-duration-md) ease,
        transform var(--landing-motion-duration-md) var(--landing-motion-ease),
        box-shadow var(--landing-motion-duration-md) ease;
    transition-delay: calc((var(--progress-order) * 180ms) + 220ms);
}

.landing-tier-progress__step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 18%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.02) 82%,
        transparent 100%);
    opacity: 0;
    transform: translateX(-130%);
    pointer-events: none;
}

.landing-tier-progress.is-visible .landing-tier-progress__fill {
    transform: scaleX(1);
    opacity: 1;
}

.landing-tier-progress.is-visible .landing-tier-progress__dot {
    opacity: 1;
    transform: scale(1);
}

.landing-tier-progress.is-visible .landing-tier-progress__dot--current {
    background: #9d4edd;
    border-color: rgba(192, 132, 252, 0.8);
    box-shadow: 0 0 16px rgba(157, 78, 221, 0.6);
}

.landing-tier-progress.is-visible .landing-tier-progress__dot--next {
    background: #fbbf24;
    border-color: rgba(253, 230, 138, 0.7);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.52);
}

.landing-tier-progress.is-visible .landing-tier-progress__step {
    opacity: 1;
    filter: none;
    transform: translateY(0);
}

.landing-tier-progress.is-visible .landing-tier-progress__step::after {
    animation: landingTierSweep var(--landing-motion-duration-lg) ease-out forwards;
    animation-delay: calc((var(--progress-order) * 180ms) + 200ms);
}

.landing-tier-progress.is-visible .landing-tier-progress__step--current {
    box-shadow: 0 0 28px rgba(157, 78, 221, 0.14);
}

.landing-tier-progress.is-visible .landing-tier-progress__step--next {
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.12);
}

@keyframes landingTierSweep {
    0% {
        opacity: 0;
        transform: translateX(-130%);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(130%);
    }
}

/* ───── Venue Showcase: card-hand layout ───── */

.venue-showcase-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.venue-showcase-layout {
    display: grid;
    gap: 2rem;
}

.venue-showcase-copy__bullets {
    margin-top: 0.5rem;
}

/* ── Venue card (shared base) ── */

.venue-card {
    width: min(82vw, 320px);
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 15, 28, 0.94), rgba(8, 8, 16, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    position: absolute;
    left: 50%;
    top: 0;
    opacity: 0;
    transform: translate(-50%, 1.4rem);
    transition:
        opacity 0.52s var(--landing-motion-ease),
        transform 0.52s var(--landing-motion-ease),
        filter 0.52s ease,
        box-shadow 0.52s ease;
    transition-delay: var(--landing-entry-delay, 0s);
    will-change: opacity, transform;
    touch-action: pan-y;
    user-select: none;
}

.venue-card.is-visible {
    opacity: 1;
}

/* ── Stacked card positions ── */

.venue-card[data-pos="front"] {
    z-index: 3;
    transform: translate(-50%, 0);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    filter: brightness(1);
}
.venue-card[data-pos="back-left"] {
    z-index: 1;
    transform: translate(calc(-50% - 16px), 10px) rotate(-5deg) scale(0.94);
    filter: brightness(0.68);
    pointer-events: none;
}
.venue-card[data-pos="back-right"] {
    z-index: 2;
    transform: translate(calc(-50% + 16px), 10px) rotate(5deg) scale(0.94);
    filter: brightness(0.68);
    pointer-events: none;
}

/* Disable transitions while finger is down */
.venue-hand.is-dragging .venue-card {
    transition: none !important;
}

.venue-card__head {
    position: relative;
    min-height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 1.25rem;
}

.venue-card__head::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3.25rem;
    background: linear-gradient(180deg, rgba(16, 15, 27, 0) 0%, rgba(16, 15, 27, 0.92) 100%);
    pointer-events: none;
}

.venue-card__head > * {
    position: relative;
    z-index: 1;
}

/* Per-venue hero images */
.venue-card__head--finns {
    background:
        linear-gradient(180deg, rgba(8,8,16,0.12) 0%, rgba(8,8,16,0.34) 44%, rgba(8,8,16,0.82) 100%),
        radial-gradient(circle at top right, rgba(157,78,221,0.18) 0%, transparent 46%),
        url('../../images/venues/finns.jpg') center 28% / cover no-repeat;
}
.venue-card__head--luna {
    background:
        linear-gradient(180deg, rgba(8,8,16,0.12) 0%, rgba(8,8,16,0.34) 44%, rgba(8,8,16,0.82) 100%),
        radial-gradient(circle at top right, rgba(236,72,153,0.18) 0%, transparent 46%),
        url('../../images/venues/luna.jpg') center 28% / cover no-repeat;
}
.venue-card__head--sol {
    background:
        linear-gradient(180deg, rgba(8,8,16,0.12) 0%, rgba(8,8,16,0.34) 44%, rgba(8,8,16,0.82) 100%),
        radial-gradient(circle at top right, rgba(245,158,11,0.18) 0%, transparent 46%),
        url('../../images/venues/sol.jpg') center 28% / cover no-repeat;
}

.venue-card__body {
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(18, 17, 30, 0.96), rgba(9, 9, 16, 0.98));
}

/* ── Hand container ── */

.venue-hand {
    position: relative;
}

.venue-hand__track {
    position: relative;
    min-height: 420px;
    overflow: visible;
}

.venue-hand__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.venue-hand__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.venue-hand__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: pointer;
    transition: background 0.22s, transform 0.22s;
}
.venue-hand__dot.is-active {
    background: rgba(157, 78, 221, 0.9);
    transform: scale(1.3);
}

.venue-hand__swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.venue-hand__swipe-hint svg {
    opacity: 0.45;
}

@keyframes venueSwipeNudge {
    0%, 100% { transform: translateX(0); }
    30%  { transform: translateX(4px); }
    60%  { transform: translateX(-4px); }
}
.venue-hand__swipe-hint--animated {
    animation: venueSwipeNudge 2.4s ease-in-out 1.5s 3;
}

/* ── Desktop: Hearthstone-style card hand ── */

@media (min-width: 1024px) {
    .venue-showcase-section {
        overflow: visible;
    }

    .venue-showcase-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        align-items: center;
        gap: 3rem;
    }

    .venue-hand__track {
        min-height: 480px;
        padding: 3rem 1rem 2rem;
    }

    .venue-card {
        width: 300px;
        /* Arc pivot: cards fan from a point far below the hand */
        transform-origin: center 180%;
        /* Override data-pos driven styles */
        filter: none !important;
        pointer-events: auto !important;
        /* Smooth, floaty transition */
        transition:
            transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
            box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1),
            filter 0.32s ease,
            opacity 0.52s var(--landing-motion-ease) !important;
        transition-delay: 0s !important;
    }

    /* ── Arc positions: fanned from bottom center ── */

    .venue-card:nth-child(1) {
        left: 50%;
        top: 18px;
        z-index: 1;
        transform: translate(-50%, 0) rotate(-7deg) translateX(-140px) !important;
    }
    .venue-card:nth-child(2) {
        left: 50%;
        top: 0;
        z-index: 2;
        transform: translate(-50%, 0) rotate(0deg) !important;
    }
    .venue-card:nth-child(3) {
        left: 50%;
        right: auto;
        top: 18px;
        z-index: 1;
        transform: translate(-50%, 0) rotate(7deg) translateX(140px) !important;
    }

    /* ── Hover: float up, straighten, glow ── */

    .venue-card:hover {
        z-index: 10 !important;
        transform: translate(-50%, -38px) scale(1.08) rotate(0deg) !important;
        box-shadow:
            0 32px 60px rgba(0, 0, 0, 0.42),
            0 0 0 1px rgba(157, 78, 221, 0.22),
            0 0 40px rgba(157, 78, 221, 0.10);
    }
    /* Left card hover — keep its X offset */
    .venue-card:nth-child(1):hover {
        transform: translate(-50%, -38px) scale(1.08) rotate(0deg) translateX(-140px) !important;
    }
    /* Right card hover — keep its X offset */
    .venue-card:nth-child(3):hover {
        transform: translate(-50%, -38px) scale(1.08) rotate(0deg) translateX(140px) !important;
    }

    /* Fade siblings when one is hovered — soft focus effect */
    .venue-hand__track:hover .venue-card:not(:hover) {
        filter: brightness(0.68) saturate(0.7) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .venue-hand__swipe-hint,
    .venue-hand__controls {
        display: none;
    }
}

/* ── Venue rail: crossfade stack for venue signup ── */

.venue-rail {
    position: relative;
}

.venue-rail__item {
    display: none;
    animation: venueRailIn 0.45s ease both;
}
.venue-rail__item.is-active {
    display: block;
}

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

.venue-rail__dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    padding-bottom: 0.75rem;
}

.venue-rail__dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.venue-rail__dot.is-active {
    background: rgba(157, 78, 221, 0.85);
    transform: scale(1.35);
}

/* ── Perks section ── */

.perks-section {
    position: relative;
    isolation: isolate;
}

.perks-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(157, 78, 221, 0.06) 0%, transparent 100%);
    pointer-events: none;
}

.landing-window-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0.4rem 0.95rem;
}
.landing-window-dots {
    display: flex;
    gap: 0.35rem;
}
.landing-window-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.18);
}
.landing-window-title {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.77rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 0.9rem;
}
.landing-dashboard-main,
.landing-dashboard-side {
    display: grid;
    gap: 0.9rem;
}

.landing-dashboard-stat,
.landing-dashboard-panel,
.landing-dashboard-feed {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
}
.landing-dashboard-panel--muted {
    background: rgba(255, 255, 255, 0.02);
}

.landing-dashboard-stat__label,
.landing-dashboard-panel__label {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.landing-dashboard-stat__value,
.landing-dashboard-panel__value {
    margin-top: 0.45rem;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
}
.landing-dashboard-stat__copy,
.landing-dashboard-panel__copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
    line-height: 1.45;
}

.landing-dashboard-feed {
    display: grid;
    gap: 0.75rem;
}
.landing-dashboard-feed__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-dashboard-feed__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.landing-dashboard-feed__title {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}
.landing-dashboard-feed__meta {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    line-height: 1.4;
}

.landing-progress-track {
    margin-top: 0.8rem;
    width: 100%;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.landing-progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #9d4edd, #ff006e);
}

.landing-progress-bar--reveal {
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
    transition: transform var(--landing-motion-duration-xl) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.16s;
}

.landing-story-panel.is-visible .landing-progress-bar--reveal {
    transform: scaleX(var(--progress-scale, 1));
}

.landing-floating-card {
    --float-card-delay: 0.18s;
    position: absolute;
    z-index: 3;
    width: min(100%, 220px);
    padding: 0.95rem 1rem;
    overflow: hidden;
    isolation: isolate;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 24, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    animation: landingFloatingCardEnter var(--landing-motion-duration-md) var(--landing-motion-ease) forwards;
    animation-delay: var(--float-card-delay);
}
.landing-floating-card::before {
    content: '';
    position: absolute;
    inset: -30% -70%;
    z-index: 0;
    background: linear-gradient(110deg,
        transparent 34%,
        rgba(255, 255, 255, 0.04) 42%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.05) 58%,
        transparent 66%);
    transform: translateX(-135%) skewX(-18deg);
    opacity: 0;
    animation: landingFloatingCardShine var(--landing-motion-duration-lg) ease-out forwards;
    animation-delay: calc(var(--float-card-delay) + 0.18s);
    pointer-events: none;
}
.landing-floating-card > * {
    position: relative;
    z-index: 1;
}
.landing-floating-card--approval {
    --float-card-delay: 0.18s;
    top: 2.6rem;
    right: 0.4rem;
}
.landing-floating-card--tier {
    --float-card-delay: 0.34s;
    bottom: 2rem;
    left: 0.4rem;
}
.landing-floating-card__eyebrow {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.landing-floating-card__title {
    margin-top: 0.35rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}
.landing-floating-card__copy {
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    line-height: 1.45;
}

@keyframes landingFloatingCardEnter {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes landingFloatingCardShine {
    0% {
        opacity: 0;
        transform: translateX(-135%) skewX(-18deg);
    }
    20% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translateX(135%) skewX(-18deg);
    }
}

.landing-section-header {
    margin-bottom: 1.4rem;
}

.landing-scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0) scale(0.985);
    will-change: opacity, transform;
    transition:
        opacity var(--landing-motion-duration-md) ease,
        transform var(--landing-motion-duration-md) var(--landing-motion-ease);
    transition-delay: var(--landing-entry-delay, 0s);
}

.landing-scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.landing-story-panel {
    display: grid;
    grid-template-columns: minmax(320px, 1.04fr) minmax(0, 0.96fr);
    gap: 1.8rem;
    align-items: center;
    padding: 0;
    margin-bottom: 1.6rem;
}

.landing-story-panel--reverse .landing-story-panel__visual {
    order: 2;
}

.landing-story-panel--reverse .landing-story-panel__copy {
    order: 1;
}

.landing-story-panel__visual,
.landing-story-panel__copy {
    min-width: 0;
}

.landing-story-panel__copy {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.landing-story-panel__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.landing-story-panel__title {
    font-family: Poppins, system-ui, sans-serif;
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: white;
}

.landing-story-panel__body {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    max-width: 34rem;
}

.landing-story-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 1.6rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(14, 14, 24, 0.98), rgba(14, 14, 24, 0.88)),
        rgba(14, 14, 24, 0.92);
}

.landing-story-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.landing-story-visual-card--purple {
    border-color: rgba(157, 78, 221, 0.22);
    background:
        radial-gradient(circle at top left, rgba(157, 78, 221, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(14, 14, 24, 0.98), rgba(14, 14, 24, 0.9));
}

.landing-story-visual-card--purple::before {
    background: linear-gradient(90deg, #9d4edd, #c084fc);
}

.landing-story-visual-card--pink {
    border-color: rgba(255, 0, 110, 0.2);
    background:
        radial-gradient(circle at top right, rgba(255, 0, 110, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(14, 14, 24, 0.98), rgba(14, 14, 24, 0.9));
}

.landing-story-visual-card--pink::before {
    background: linear-gradient(90deg, #ec4899, #ff006e);
}

.landing-story-visual-card--gold {
    border-color: rgba(245, 158, 11, 0.2);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(14, 14, 24, 0.98), rgba(14, 14, 24, 0.9));
}

.landing-story-visual-card--gold::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.landing-story-visual-card__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.landing-story-visual-card__line {
    flex: 1;
    height: 1px;
    opacity: 0.75;
}

.landing-story-visual-card--purple .landing-story-visual-card__line {
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.7), rgba(157, 78, 221, 0.05));
}

.landing-story-visual-card--pink .landing-story-visual-card__line {
    background: linear-gradient(90deg, rgba(255, 0, 110, 0.7), rgba(255, 0, 110, 0.05));
}

.landing-story-visual-card--gold .landing-story-visual-card__line {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.7), rgba(245, 158, 11, 0.05));
}

.landing-story-visual-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-story-visual-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.landing-story-visual-card--purple .landing-story-visual-card__icon {
    background: rgba(157, 78, 221, 0.14);
    color: #c084fc;
    border-color: rgba(157, 78, 221, 0.3);
}

.landing-story-visual-card--pink .landing-story-visual-card__icon {
    background: rgba(255, 0, 110, 0.12);
    color: #ff4d94;
    border-color: rgba(255, 0, 110, 0.28);
}

.landing-story-visual-card--gold .landing-story-visual-card__icon {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.28);
}

.landing-story-visual-card__body {
    position: relative;
    z-index: 1;
    min-height: 235px;
    display: grid;
}

.landing-story-ticket {
    align-self: start;
    max-width: 330px;
}

.landing-story-ticket-note {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: min(100%, 220px);
    padding: 0.9rem 1rem;
    overflow: hidden;
    isolation: isolate;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 9, 16, 0.88);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.985);
    transition:
        opacity var(--landing-motion-duration-md) ease,
        transform var(--landing-motion-duration-md) var(--landing-motion-ease);
    transition-delay: 0.18s;
}

.landing-story-ticket-note::before {
    content: '';
    position: absolute;
    inset: -35% -60%;
    z-index: 0;
    background: linear-gradient(112deg,
        transparent 36%,
        rgba(255, 255, 255, 0.06) 44%,
        rgba(255, 255, 255, 0.34) 50%,
        rgba(255, 255, 255, 0.06) 56%,
        transparent 64%);
    transform: translateX(-165%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.landing-story-ticket-note > * {
    position: relative;
    z-index: 1;
}

.landing-story-panel.is-visible .landing-story-ticket-note {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.landing-story-panel.is-visible .landing-story-ticket-note::before {
    animation: landingFloatingCardShine var(--landing-motion-duration-lg) ease-out 0.3s forwards;
}

.landing-story-ticket-note__title {
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
}

.landing-story-ticket-note__copy {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.8rem;
    line-height: 1.5;
}

.landing-story-rep-card,
.landing-story-brief-card {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    align-self: stretch;
}

.landing-story-rep-card__chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.landing-story-rep-card__stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.landing-story-rep-card__label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-story-rep-card__stat strong {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
}

.landing-story-rep-card__list,
.landing-story-brief-card__rows {
    display: grid;
    gap: 0.8rem;
}

.landing-story-visual-card--pink .landing-mini-shot__dot {
    background: #ff4d94;
}

.landing-story-visual-card--gold .landing-mini-shot__dot {
    background: #fbbf24;
}

.landing-story-brief-card__row {
    --brief-complete-delay: 0.2s;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: flex-start;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color var(--landing-motion-duration-md) ease;
    transition-delay: var(--brief-complete-delay);
}

.landing-story-brief-card__row:first-child {
    padding-top: 0;
    border-top: 0;
}

.landing-story-brief-card__row:nth-child(2) {
    --brief-complete-delay: 0.48s;
}

.landing-story-brief-card__row:nth-child(3) {
    --brief-complete-delay: 0.76s;
}

.landing-story-brief-card__time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 3.2rem;
    height: 2rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background var(--landing-motion-duration-md) ease,
        border-color var(--landing-motion-duration-md) ease,
        color var(--landing-motion-duration-md) ease,
        box-shadow var(--landing-motion-duration-md) ease;
    transition-delay: var(--brief-complete-delay);
}

.landing-story-brief-card__time::before {
    content: '';
    width: 0;
    height: 0.54rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0;
    transform: rotate(45deg) scale(0.68);
    transform-origin: center;
    transition:
        width var(--landing-motion-duration-sm) var(--landing-motion-ease),
        opacity var(--landing-motion-duration-sm) ease,
        transform var(--landing-motion-duration-sm) var(--landing-motion-ease);
    transition-delay: var(--brief-complete-delay);
}

.landing-story-brief-card__title {
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color var(--landing-motion-duration-md) ease;
    transition-delay: var(--brief-complete-delay);
}

.landing-story-brief-card__copy {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.84rem;
    line-height: 1.5;
    transition: color var(--landing-motion-duration-md) ease;
    transition-delay: var(--brief-complete-delay);
}

.landing-story-panel.is-visible .landing-story-visual-card--gold .landing-story-brief-card__row {
    border-top-color: rgba(34, 197, 94, 0.24);
}

.landing-story-panel.is-visible .landing-story-visual-card--gold .landing-story-brief-card__time {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.42);
    color: #bbf7d0;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.14);
}

.landing-story-panel.is-visible .landing-story-visual-card--gold .landing-story-brief-card__time::before {
    width: 0.38rem;
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.landing-story-panel.is-visible .landing-story-visual-card--gold .landing-story-brief-card__title {
    color: #dcfce7;
}

.landing-story-panel.is-visible .landing-story-visual-card--gold .landing-story-brief-card__copy {
    color: rgba(187, 247, 208, 0.66);
}

.landing-product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: 1.5rem;
    padding: 1.6rem;
    align-items: center;
    background: rgba(20, 20, 36, 0.82);
}
.landing-product-copy {
    display: grid;
    gap: 0.9rem;
}
.landing-product-label {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.landing-product-title,
.landing-side-surface__title {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: white;
}
.landing-product-body,
.landing-side-surface__copy {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
}

.landing-bullet-list {
    display: grid;
    gap: 0.65rem;
}
.landing-bullet-item,
.landing-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}
.landing-bullet-item::before,
.landing-benefit-row__dot {
    display: inline-block;
    width: 0.65rem;
    height: 0.65rem;
    margin-top: 0.38rem;
    border-radius: 9999px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    box-shadow: 0 0 14px rgba(157, 78, 221, 0.3);
}
.landing-bullet-item::before {
    content: '';
}

.landing-product-shot {
    position: relative;
    min-height: 280px;
    padding: 1.15rem;
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 110, 0.18), transparent 38%),
        linear-gradient(160deg, rgba(157, 78, 221, 0.18), rgba(10, 10, 15, 0.25) 45%, rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.landing-product-shot--primary::after {
    content: '';
    position: absolute;
    inset: auto -2rem -3rem auto;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.22) 0%, transparent 72%);
}

.landing-ui-card {
    position: relative;
    z-index: 1;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 18, 0.75);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}
.landing-ui-card__header,
.landing-ui-avatars,
.landing-mini-shot__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.landing-ui-card__title {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}
.landing-ui-card__meta {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
}

.landing-ui-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.65rem;
    padding: 0.18rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.landing-ui-chip--purple {
    background: rgba(157, 78, 221, 0.18);
    border-color: rgba(157, 78, 221, 0.35);
    color: #f3e8ff;
}
.landing-ui-chip--pink {
    background: rgba(255, 0, 110, 0.16);
    border-color: rgba(255, 0, 110, 0.32);
    color: #ffe4f1;
}
.landing-ui-chip--gold {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.3);
    color: #ffefcc;
}

.landing-ui-line {
    height: 0.55rem;
    margin-top: 0.65rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.82), rgba(255, 0, 110, 0.4));
}
.landing-ui-avatar {
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0.9rem;
    border-radius: 9999px;
    border: 2px solid rgba(12, 12, 22, 0.9);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.92), rgba(255, 0, 110, 0.72));
}
.landing-ui-avatar--pink {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.9), rgba(255, 91, 146, 0.78));
}
.landing-ui-avatar--gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.92), rgba(255, 214, 10, 0.7));
}

.landing-product-float {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(100%, 190px);
    padding: 0.85rem 0.95rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 11, 22, 0.84);
    z-index: 1;
}
.landing-product-float__title {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
}
.landing-product-float__copy {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    line-height: 1.45;
}

.landing-side-surface {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    background: rgba(20, 20, 34, 0.76);
}

.landing-mini-shot {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}
.landing-mini-shot--purple {
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.16), rgba(255, 255, 255, 0.03));
}
.landing-mini-shot--pink {
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.12), rgba(255, 255, 255, 0.03));
}
.landing-mini-shot--gold {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.03));
}

.landing-mini-shot__row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.45;
}
.landing-mini-shot__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.86);
}
.landing-mini-shot--purple .landing-mini-shot__dot { background: #c084fc; }
.landing-mini-shot--pink .landing-mini-shot__dot { background: #ff4d94; }
.landing-mini-shot--gold .landing-mini-shot__dot { background: #fbbf24; }


/* ---- Redesigned flow section v2 ---- */

.landing-gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-section-kicker--bar {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}
.landing-section-kicker--bar::before {
    content: '';
    width: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, #9d4edd, #ff006e);
    border-radius: 9999px;
    flex-shrink: 0;
}

.landing-flow-section {
    position: relative;
}
.landing-flow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(157, 78, 221, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.landing-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    position: relative;
}
.landing-flow-grid::after {
    content: '';
    position: absolute;
    top: 3.1rem;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(157, 78, 221, 0.45) 0%,
        rgba(96, 165, 250, 0.45) 50%,
        rgba(255, 0, 110, 0.45) 100%);
    pointer-events: none;
}

.landing-flow-card-v2 {
    --landing-flow-flash-rgb: 255, 255, 255;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.75rem;
    border-radius: 1.5rem;
    background: rgba(14, 14, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.landing-flow-card-v2:hover {
    transform: translateY(-6px);
}

.landing-flow-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1.5rem 1.5rem 0 0;
}

.landing-flow-card-v2--reveal {
    opacity: 0;
    transform: translate3d(0, 1.75rem, 0) scale(0.985);
    will-change: opacity, transform;
}
.landing-flow-card-v2--reveal.is-visible {
    animation: landingFlowCardReveal var(--landing-motion-duration-md) var(--landing-motion-ease) forwards;
    animation-delay: var(--landing-entry-delay, 0s);
}
.landing-flow-card-v2--reveal::after {
    content: '';
    position: absolute;
    inset: -35%;
    border-radius: inherit;
    background: linear-gradient(112deg,
        transparent 34%,
        rgba(255, 255, 255, 0.03) 42%,
        rgba(var(--landing-flow-flash-rgb), 0.78) 50%,
        rgba(255, 255, 255, 0.18) 56%,
        transparent 66%);
    opacity: 0;
    transform: translate3d(-120%, 12%, 0) skewX(-18deg);
    pointer-events: none;
    mix-blend-mode: screen;
}
.landing-flow-card-v2--reveal.is-visible::after {
    animation: landingFlowCardFlash var(--landing-motion-duration-sm) var(--landing-motion-ease) forwards;
    animation-delay: calc(var(--landing-entry-delay, 0s) + var(--landing-motion-duration-md));
}

@keyframes landingFlowCardReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 1.75rem, 0) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes landingFlowCardFlash {
    0% {
        opacity: 0;
        transform: translate3d(-120%, 12%, 0) skewX(-18deg);
    }
    30% {
        opacity: 0.36;
    }
    52% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate3d(120%, -12%, 0) skewX(-18deg);
    }
}

.landing-flow-card-v2__ghost {
    position: absolute;
    top: -1.5rem;
    right: -0.5rem;
    font-size: 9rem;
    font-weight: 900;
    font-family: Poppins, system-ui, sans-serif;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    color: white;
    opacity: 0.04;
}

.landing-flow-card-v2__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-flow-card-v2__step {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.landing-flow-card-v2__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-flow-card-v2__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.landing-flow-card-v2__title {
    position: relative;
    z-index: 1;
    font-size: 1.28rem;
    font-weight: 800;
    font-family: Poppins, system-ui, sans-serif;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.landing-flow-card-v2__copy {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.65;
    flex: 1;
}

.landing-flow-card-v2__detail {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
}
.landing-flow-card-v2__detail::before {
    content: '';
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

/* Purple */
.landing-flow-card-v2--purple {
    --landing-flow-flash-rgb: 192, 132, 252;
    border-color: rgba(157, 78, 221, 0.22);
    background:
        radial-gradient(ellipse at top right, rgba(157, 78, 221, 0.12) 0%, transparent 55%),
        rgba(14, 14, 24, 0.92);
}
.landing-flow-card-v2--purple::before {
    background: linear-gradient(90deg, #9d4edd, #c084fc);
}
.landing-flow-card-v2--purple:hover {
    border-color: rgba(157, 78, 221, 0.38);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(157, 78, 221, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.landing-flow-card-v2--purple .landing-flow-card-v2__icon {
    background: rgba(157, 78, 221, 0.16);
    border-color: rgba(157, 78, 221, 0.32);
    color: #c084fc;
}
.landing-flow-card-v2--purple .landing-flow-card-v2__detail::before { background: #c084fc; }

/* Blue */
.landing-flow-card-v2--blue {
    --landing-flow-flash-rgb: 96, 165, 250;
    border-color: rgba(59, 130, 246, 0.22);
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.1) 0%, transparent 55%),
        rgba(14, 14, 24, 0.92);
}
.landing-flow-card-v2--blue::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.landing-flow-card-v2--blue:hover {
    border-color: rgba(59, 130, 246, 0.38);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(59, 130, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.landing-flow-card-v2--blue .landing-flow-card-v2__icon {
    background: rgba(59, 130, 246, 0.16);
    border-color: rgba(59, 130, 246, 0.32);
    color: #60a5fa;
}
.landing-flow-card-v2--blue .landing-flow-card-v2__detail::before { background: #60a5fa; }

/* Pink */
.landing-flow-card-v2--pink {
    --landing-flow-flash-rgb: 255, 77, 143;
    border-color: rgba(255, 0, 110, 0.22);
    background:
        radial-gradient(ellipse at top right, rgba(255, 0, 110, 0.1) 0%, transparent 55%),
        rgba(14, 14, 24, 0.92);
}
.landing-flow-card-v2--pink::before {
    background: linear-gradient(90deg, #ec4899, #ff006e);
}
.landing-flow-card-v2--pink:hover {
    border-color: rgba(255, 0, 110, 0.38);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(255, 0, 110, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.landing-flow-card-v2--pink .landing-flow-card-v2__icon {
    background: rgba(255, 0, 110, 0.16);
    border-color: rgba(255, 0, 110, 0.32);
    color: #ff4d8f;
}
.landing-flow-card-v2--pink .landing-flow-card-v2__detail::before { background: #ff4d8f; }

/* ---- end redesigned flow section v2 ---- */

.landing-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.7rem 1.9rem;
    background:
        radial-gradient(circle at top left, rgba(157, 78, 221, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.landing-auth-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.88fr);
}
.landing-auth-grid--wide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
}

.landing-join-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: clamp(5rem, 8vh, 7rem);
    padding-bottom: clamp(3rem, 6vh, 5rem);
}

.landing-aside-card,
.landing-auth-card {
    height: 100%;
    padding: 2rem;
    background: rgba(14, 14, 28, 0.78);
}

.landing-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    box-shadow:
        0 18px 40px rgba(157, 78, 221, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.landing-brand-mark--success {
    background: linear-gradient(135deg, #9d4edd, #22c55e);
}

.landing-inline-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 1.5rem;
}

.landing-note-stack {
    display: grid;
    gap: 0.85rem;
}
.landing-note-card {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}
.landing-note-card__title,
.landing-requirement-list__label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.landing-note-card__copy {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
    line-height: 1.55;
}

.landing-requirement-list {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}
.landing-requirement-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.45;
    padding-top: 0.7rem;
    margin-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-requirement-row__tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 9999px;
    background: rgba(157, 78, 221, 0.18);
    border: 1px solid rgba(157, 78, 221, 0.34);
    color: #f3e8ff;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Glowing CTA button */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #9d4edd, #ff006e);
    box-shadow: 0 0 24px rgba(157, 78, 221, 0.35), 0 0 48px rgba(255, 0, 110, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-glow:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(157, 78, 221, 0.5), 0 0 64px rgba(255, 0, 110, 0.25);
}
.btn-glow:active {
    transform: translateY(0);
}

/* Pulsing glow ring animation */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 24px rgba(157, 78, 221, 0.35), 0 0 48px rgba(255, 0, 110, 0.15); }
    50% { box-shadow: 0 0 36px rgba(157, 78, 221, 0.5), 0 0 72px rgba(255, 0, 110, 0.25); }
}
.btn-glow-pulse {
    overflow: hidden;
    isolation: isolate;
    animation: pulseGlow var(--landing-motion-loop-duration) ease-in-out infinite;
}
.btn-glow-pulse::after {
    content: '';
    position: absolute;
    inset: -35% -60%;
    z-index: 0;
    background: linear-gradient(112deg,
        transparent 36%,
        rgba(255, 255, 255, 0.08) 44%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0.08) 56%,
        transparent 64%);
    transform: translateX(-165%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    animation: btnGlowShine var(--landing-motion-loop-duration) ease-in-out infinite;
}
.btn-glow-pulse > * {
    position: relative;
    z-index: 1;
}

@keyframes btnGlowShine {
    0%,
    70% {
        opacity: 0;
        transform: translateX(-165%) skewX(-18deg);
    }
    78% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translateX(165%) skewX(-18deg);
    }
}

/* Form card glow border */
@keyframes formGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(157, 78, 221, 0.3), 0 0 40px rgba(255, 0, 110, 0.12), inset 0 0 20px rgba(157, 78, 221, 0.05); }
    50% { box-shadow: 0 0 35px rgba(157, 78, 221, 0.45), 0 0 70px rgba(255, 0, 110, 0.2), inset 0 0 30px rgba(157, 78, 221, 0.08); }
}
.form-glow {
    border: 1px solid rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3), 0 0 40px rgba(255, 0, 110, 0.12), inset 0 0 20px rgba(157, 78, 221, 0.05);
    animation: formGlow var(--landing-motion-loop-duration) ease-in-out infinite;
}

/* Landing page section fade-in stagger */
.landing-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: landingFadeUp var(--landing-motion-duration-md) ease-out forwards;
}
.landing-fade-up:nth-child(2) { animation-delay: 0.1s; }
.landing-fade-up:nth-child(3) { animation-delay: 0.2s; }
@keyframes landingFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Step transition */
.landing-step-enter {
    animation: stepEnter var(--landing-motion-duration-sm) ease-out;
}
@keyframes stepEnter {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1100px) {
    .landing-hero-grid,
    .landing-product-card,
    .landing-story-panel,
    .landing-auth-grid,
    .landing-auth-grid--wide {
        grid-template-columns: 1fr;
    }

    .landing-auth-form-col {
        order: 1;
    }

    .landing-auth-copy-col {
        order: 2;
    }

    .landing-join-shell {
        justify-content: flex-start;
        padding-top: clamp(4.5rem, 10vw, 6rem);
        padding-bottom: 3rem;
    }

    .landing-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-showcase {
        min-height: 420px;
        padding: 4.25rem 2rem;
    }

    .landing-story-panel--reverse .landing-story-panel__visual,
    .landing-story-panel--reverse .landing-story-panel__copy {
        order: initial;
    }
}

@media (max-width: 1023px) {
    .landing-shell {
        background:
            radial-gradient(circle at 10% 0%, rgba(157, 78, 221, 0.13), transparent 32%),
            radial-gradient(circle at 88% 12%, rgba(255, 0, 110, 0.08), transparent 28%),
            linear-gradient(180deg, #06060b 0%, #0a0a0f 38%, #07070d 100%);
    }

    .landing-hero {
        display: flex;
        align-items: center;
    }

    .landing-hero > .max-w-7xl {
        width: 100%;
    }

    .landing-hero-grid {
        align-content: center;
        min-height: calc(100svh - 13rem);
    }

    .landing-scroll-down-btn {
        bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .landing-flow-grid {
        grid-template-columns: 1fr;
    }
    .landing-flow-grid::after {
        display: none;
    }

    .landing-proof-grid,
    .landing-proof-grid--compact,
    .landing-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .landing-showcase {
        min-height: auto;
        display: grid;
        gap: 1rem;
        padding: 1rem 0;
    }

    .landing-hero-showcase-wrap {
        display: none;
    }

    .landing-floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
    }

    .landing-product-card,
    .landing-story-panel,
    .landing-aside-card,
    .landing-auth-card {
        padding: 1.3rem;
    }

    .landing-secondary-btn {
        width: 100%;
    }

    .landing-window-chrome {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-story-visual-card {
        min-height: 290px;
        padding: 1.2rem;
    }

    .landing-story-ticket-note {
        position: relative;
        width: 100%;
        margin-top: 1rem;
    }

    .landing-story-visual-card__body {
        min-height: 0;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-fade-up,
    .landing-step-enter,
    .btn-glow-pulse,
    .landing-flow-card-v2--reveal,
    .landing-flow-card-v2--reveal::after,
    .landing-story-ticket-note::before,
    .landing-scroll-down-btn {
        animation: none;
    }

    .landing-flow-card-v2--reveal,
    .landing-scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .landing-flow-card-v2--reveal::after {
        opacity: 0;
    }

    .btn-glow-pulse::after {
        animation: none;
        opacity: 0;
    }

    .landing-tier-progress__fill,
    .landing-tier-progress__dot,
    .landing-tier-progress__step,
    .landing-tier-progress__step::after,
    .landing-progress-bar--reveal,
    .landing-story-ticket-note,
    .landing-story-brief-card__row,
    .landing-story-brief-card__time,
    .landing-story-brief-card__time::before,
    .landing-story-brief-card__title,
    .landing-story-brief-card__copy {
        animation: none;
        transition: none;
    }

    .landing-progress-bar--reveal {
        transform: scaleX(var(--progress-scale, 1));
    }

    .landing-story-ticket-note {
        opacity: 1;
        transform: none;
    }

    .landing-floating-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .landing-floating-card::before {
        animation: none;
        opacity: 0;
    }
}

.browse-week-nav {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 18, 37, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.browse-week-nav--inline {
    border: none;
    background: none;
    box-shadow: none;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
    border-radius: 0;
}

.browse-week-nav__header,
.browse-week-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.browse-week-nav__eyebrow,
.browse-campaign-card__venue-kicker,
.browse-campaign-card__event-label,
.browse-featured-card__label,
.browse-other-events__label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.browse-week-nav__title {
    color: #fff;
    font-size: clamp(1.35rem, 4vw, 1.8rem);
    font-weight: 800;
    line-height: 1.1;
}

.browse-week-nav__body,
.browse-week-nav__position {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.92rem;
}

.browse-week-nav__actions {
    align-items: stretch;
}

.browse-week-nav__button {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.85rem;
    padding: 0 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.browse-week-nav__button--sm {
    min-height: 2rem;
    padding: 0 0.75rem;
    font-size: 0.76rem;
    gap: 0.25rem;
}

.browse-week-nav__button--toolbar {
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    gap: 0.55rem;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.browse-week-nav__button--toolbar:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.browse-week-nav__button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 132, 252, 0.3);
}

.browse-week-nav__button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.browse-week-nav__days {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.browse-week-nav__day {
    padding: 0.85rem 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.browse-week-nav__day-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.browse-week-nav__day-value {
    margin-top: 0.4rem;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
}

.browse-week-nav__day-count {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.8rem;
}

.browse-campaign-card {
    overflow: hidden;
    padding: 0;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 14, 28, 0.98));
    box-shadow: 0 18px 42px rgba(4, 3, 12, 0.18);
}

.browse-campaign-card--with-progress,
.browse-campaign-card.recurring-campaign-card {
    position: relative;
    overflow: visible;
}

.browse-campaign-card--compact {
    min-width: 0;
}

.browse-campaign-card__media,
.browse-featured-card__media {
    position: relative;
    min-height: 15rem;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.65), rgba(17, 24, 39, 0.92));
}

.browse-campaign-card--with-progress .browse-campaign-card__media {
    overflow: hidden;
    border-radius: calc(1.5rem - 1px) calc(1.5rem - 1px) 0 0;
}

.browse-campaign-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.browse-campaign-card__image--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 3rem;
    font-weight: 800;
}

.browse-campaign-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 12, 0.12) 0%, rgba(5, 5, 12, 0.45) 45%, rgba(5, 5, 12, 0.82) 100%);
}

.browse-campaign-card__media-top,
.browse-featured-card__chips {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0;
}

.browse-campaign-card__media-top--end {
    justify-content: flex-end;
}

.browse-campaign-card__media-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: max-content;
}

.browse-campaign-card--with-progress .browse-campaign-card__media-aside {
    padding-top: 2.4rem;
}

.browse-campaign-card__media-copy {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
}

.browse-campaign-card__venue-name {
    margin-top: 0.5rem;
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 2.45rem);
    font-weight: 800;
    line-height: 0.98;
    text-wrap: balance;
}

.browse-campaign-card__venue-meta {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.5;
}

.browse-campaign-card__body,
.browse-featured-card__body {
    padding: 1.1rem;
}

.browse-campaign-card--compact .browse-campaign-card__body {
    padding: 1.5rem;
}

.browse-campaign-card__status-shell {
    right: 1.35rem;
    z-index: 3;
}

.browse-campaign-card__event-head {
    display: grid;
    gap: 0.4rem;
}

.browse-campaign-card__event-name,
.browse-featured-card__title {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.2;
}

.browse-campaign-card__timing,
.browse-featured-card__timing {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.55;
}

.browse-campaign-card__detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.browse-campaign-card__footer {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.browse-campaign-card__footer--actions-only {
    justify-items: start;
}

.browse-campaign-card__actions,
.browse-featured-card__actions,
.browse-empty-state__actions {
    width: 100%;
}

.browse-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    width: 100%;
    padding: 0.75rem 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.browse-primary-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.browse-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    width: 100%;
    padding: 0.75rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(37, 99, 235, 0.32));
    color: #dbeafe;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.browse-secondary-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(147, 197, 253, 0.38);
    background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(37, 99, 235, 0.42));
}

.browse-other-events {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.browse-other-events__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(11rem, 15rem);
    gap: 0.75rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
}

.browse-other-events__card {
    display: grid;
    gap: 0.35rem;
    min-height: 8rem;
    padding: 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.browse-other-events__card:hover {
    border-color: rgba(168, 85, 247, 0.35);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.browse-other-events__card--wide {
    min-height: 9rem;
}

.browse-other-events__date {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.browse-other-events__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.browse-other-events__meta,
.browse-other-events__cta {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.5;
}

.browse-other-events__cta {
    color: #d8b4fe;
    font-weight: 700;
}

.browse-featured-section {
    margin-top: 2rem;
    min-width: 0;
}

.browse-featured-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1rem;
    min-width: 0;
}

.browse-featured-card {
    display: grid;
    gap: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.browse-featured-card__actions {
    margin-top: 1rem;
}

.browse-featured-card__body {
    min-width: 0;
}

.browse-featured-card__chips {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
}

.browse-featured-card .browse-campaign-card__media-copy,
.browse-featured-card .browse-campaign-card__venue-name,
.browse-featured-card .browse-campaign-card__venue-meta {
    min-width: 0;
    max-width: 100%;
}

.browse-featured-card .browse-other-events__rail {
    max-width: 100%;
    overscroll-behavior-x: contain;
}

.browse-featured-card .browse-other-events__card {
    min-width: 0;
}

.browse-venue-tile__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(192, 132, 252, 0.24);
    background: rgba(168, 85, 247, 0.12);
    color: #fff;
    letter-spacing: 0.08em;
}

.browse-filter-panel__summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.browse-filter-panel__summary-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.browse-filter-panel__summary-row--pills-only {
    justify-content: flex-end;
}

.browse-filter-panel__summary-copy {
    min-width: 0;
}

@media (min-width: 640px) {
    .browse-week-nav__days,
    .browse-featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-campaign-card__detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .browse-filter-panel__summary-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .browse-week-nav__header,
    .browse-week-nav__actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .browse-week-nav__actions {
        align-items: center;
    }

    .browse-week-nav__days {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .browse-campaign-card__media,
    .browse-featured-card__media {
        min-height: 18rem;
    }

    .browse-campaign-card__body,
    .browse-featured-card__body {
        padding: 1.35rem;
    }

    .browse-campaign-card--with-progress .browse-campaign-card__media-aside {
        padding-top: 2.6rem;
    }

    .browse-campaign-card__footer {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .browse-campaign-card__footer--actions-only {
        grid-template-columns: minmax(0, 1fr);
    }

    .browse-campaign-card__actions,
    .browse-featured-card__actions,
    .browse-empty-state__actions {
        width: auto;
    }

    .browse-primary-cta {
        width: auto;
        min-width: 12rem;
    }

    .browse-other-events__rail {
        grid-auto-columns: minmax(12rem, 1fr);
    }
}

@media (min-width: 1024px) {
    .browse-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .browse-campaign-card__detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-week-nav__days {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

.page-shell__heading {
    min-width: 0;
}

.page-shell__eyebrow {
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-shell__context {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-shell__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.page-shell__actions--solo {
    justify-content: flex-end;
}

/* Review Banner — persistent, non-dismissable */
.review-banner {
    border-radius: 1.35rem;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background:
        radial-gradient(ellipse at top left, rgba(251, 191, 36, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.review-banner__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review-banner__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.review-banner__icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.review-banner__title {
    color: #fbbf24;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.review-banner__subtitle {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
    line-height: 1.55;
    margin-top: 0.2rem;
}

.review-banner__list {
    display: flex;
    flex-direction: column;
}

.review-banner__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.2rem;
    transition: background-color 0.15s ease;
}

.review-banner__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.review-banner__item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.review-banner__item-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.review-banner__item-event {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.76rem;
    margin-top: 0.15rem;
}

.review-banner__item-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.review-banner__countdown {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.review-banner__countdown--urgent {
    color: #fbbf24;
}

.review-banner__item-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.8rem;
    border-radius: 0.5rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.review-banner__item:hover .review-banner__item-cta {
    background: rgba(251, 191, 36, 0.22);
    border-color: rgba(251, 191, 36, 0.38);
}

@media (max-width: 480px) {
    .review-banner__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .review-banner__item-right {
        width: 100%;
        justify-content: space-between;
    }
}

.dashboard-attention-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-attention-strip__header {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.dashboard-attention-strip__eyebrow,
.form-section__eyebrow,
.admin-mobile-card__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-attention-strip__title,
.form-section__title,
.admin-mobile-card__title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.dashboard-attention-strip__copy,
.form-section__copy {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.88rem;
    line-height: 1.65;
}

.dashboard-attention-strip__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.85rem;
}

.dashboard-attention-card {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dashboard-attention-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.dashboard-attention-card--amber {
    border-color: rgba(245, 158, 11, 0.18);
}

.dashboard-attention-card--blue {
    border-color: rgba(59, 130, 246, 0.18);
}

.dashboard-attention-card__title {
    margin-top: 0.45rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.dashboard-attention-card__copy {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.84rem;
    line-height: 1.6;
}

.dashboard-attention-card__action,
.admin-mobile-card__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Attention Strip v2 — compact, streamlined */
.attention-strip {
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 18px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

.attention-strip--clear {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.15rem;
    border-color: rgba(16, 185, 129, 0.16);
    background:
        radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.attention-strip__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.55rem;
}

.attention-strip__icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.attention-strip__icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: #4ade80;
}

.attention-strip__content {
    min-width: 0;
}

.attention-strip__title {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.attention-strip__subtitle {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-top: 0.1rem;
}

.attention-strip__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.attention-strip__eyebrow {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.attention-strip__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
    font-size: 0.68rem;
    font-weight: 800;
}

.attention-strip__rows {
    display: flex;
    flex-direction: column;
}

.attention-strip__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.15rem;
    transition: background-color 0.15s ease;
}

.attention-strip__row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.attention-strip__row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.attention-strip__row-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.attention-strip__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
}

.attention-strip__count--amber {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}

.attention-strip__count--blue {
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
}

.attention-strip__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 500;
}

.attention-strip__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border-radius: 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.attention-strip__cta--amber {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
    color: #fbbf24;
}

.attention-strip__row:hover .attention-strip__cta--amber {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.35);
}

.attention-strip__cta--blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.22);
    color: #60a5fa;
}

.attention-strip__row:hover .attention-strip__cta--blue {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.35);
}

/* Collaboration Timeline — horizontal step indicator */
.collab-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.85rem 0;
    margin: 0.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.collab-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.collab-timeline__dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    transition: all 0.2s ease;
}

.collab-timeline__step--done .collab-timeline__dot {
    background: #4ade80;
    border-color: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}

.collab-timeline__step--active .collab-timeline__dot {
    background: #c084fc;
    border-color: #c084fc;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.collab-timeline__step--future .collab-timeline__dot {
    border-color: rgba(255, 255, 255, 0.12);
}

.collab-timeline__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.collab-timeline__step--done .collab-timeline__label {
    color: rgba(74, 222, 128, 0.7);
}

.collab-timeline__step--active .collab-timeline__label {
    color: #c084fc;
}

.collab-timeline__step--future .collab-timeline__label {
    color: rgba(255, 255, 255, 0.2);
}

.collab-timeline__step--rejected .collab-timeline__dot {
    background: #f87171;
    border-color: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.4);
}

.collab-timeline__step--rejected .collab-timeline__label {
    color: #f87171;
}

.collab-timeline__connector--rejected {
    background: rgba(248, 113, 113, 0.5);
}

.collab-timeline__connector {
    flex: 1;
    height: 2px;
    min-width: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0.15rem;
    margin-bottom: 1.1rem;
    border-radius: 1px;
}

.collab-timeline__connector--done {
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.5), rgba(74, 222, 128, 0.3));
}

@media (max-width: 480px) {
    .collab-timeline__label {
        font-size: 0.5rem;
    }

    .collab-timeline__dot {
        width: 0.55rem;
        height: 0.55rem;
    }
}

.form-section {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.form-section[open] {
    border-color: rgba(157, 78, 221, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-section__summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.2rem;
}

.form-section__summary::-webkit-details-marker {
    display: none;
}

.form-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.form-section__summary-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.form-section__badge {
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(157, 78, 221, 0.22);
    background: rgba(157, 78, 221, 0.1);
    color: #d8b4fe;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-section__icon {
    width: 0.85rem;
    height: 0.85rem;
    border-right: 2px solid rgba(255, 255, 255, 0.58);
    border-bottom: 2px solid rgba(255, 255, 255, 0.58);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.form-section[open] .form-section__icon {
    transform: rotate(225deg);
}

.form-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 0 1.2rem 1.35rem;
}

.venue-profile__desktop-actions,
.campaign-form__desktop-actions {
    display: flex;
    flex-wrap: wrap;
}

.venue-profile-layout {
    align-items: start;
}

.admin-mobile-card-list {
    display: grid;
    gap: 0.85rem;
}

.admin-mobile-card {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(4, 3, 12, 0.16);
}

.admin-mobile-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.admin-mobile-card__status {
    flex-shrink: 0;
}

.admin-mobile-card__body {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.95rem;
}

.admin-mobile-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-mobile-card__label {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-mobile-card__value,
.admin-mobile-card__meta {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: right;
}

.admin-mobile-card__meta {
    text-align: left;
}

.admin-mobile-empty {
    padding: 1.25rem;
    border-radius: 1.1rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
    font-size: 0.9rem;
}

.nav-venue-chip {
    max-width: 13rem;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(157, 78, 221, 0.28);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-venue-chip--mobile {
    display: inline-flex;
    max-width: 100%;
}

.mobile-bottom-nav {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
    z-index: 55;
    display: grid;
    gap: 0.3rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.5rem;
    background: rgba(7, 7, 14, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mobile-bottom-nav--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mobile-bottom-nav--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mobile-bottom-nav__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.55rem 0.3rem;
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.45);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-bottom-nav__item:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-bottom-nav__item--active {
    color: #fff;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(255, 0, 110, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 20px rgba(157, 78, 221, 0.12);
}

.mobile-bottom-nav__icon {
    display: inline-flex;
    width: 1.2rem;
    height: 1.2rem;
}

.mobile-bottom-nav__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.9;
}

.mobile-bottom-nav__label {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.browse-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(5, 6, 12, 0.7);
    backdrop-filter: blur(6px);
}

.browse-filter-drawer__header,
.browse-filter-drawer__footer {
    display: none;
}

.browse-filter-drawer__title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.browse-filter-drawer__close {
    padding: 0.55rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.browse-filter-drawer__apply {
    width: 100%;
    min-height: 3.2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.95), rgba(255, 0, 110, 0.92));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-sticky-action-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 6.2rem);
    z-index: 54;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.35rem;
    background: rgba(13, 13, 20, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 42px rgba(3, 4, 12, 0.34);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mobile-sticky-action-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
    visibility: hidden;
}

.mobile-sticky-action-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.mobile-sticky-action-bar__content--stacked {
    flex-direction: column;
    align-items: stretch;
}

.mobile-sticky-action-bar__copy {
    min-width: 0;
}

.mobile-sticky-action-bar__eyebrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-sticky-action-bar__title {
    margin-top: 0.32rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    line-height: 1.45;
}

.mobile-sticky-action-bar__button-row {
    display: flex;
    gap: 0.65rem;
}

.mobile-sticky-action-bar__primary,
.mobile-sticky-action-bar__secondary {
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-sticky-action-bar__primary {
    flex: 1 1 auto;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.95), rgba(255, 0, 110, 0.92));
    color: #fff;
}

.mobile-sticky-action-bar__secondary {
    flex: 1 1 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
}

.mobile-sticky-action-bar__secondary--warn {
    border-color: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.mobile-sticky-action-spacer {
    height: 11.5rem;
}

@media (max-width: 1024px) {
    .venue-dashboard-action-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 1023px) {
    .browse-week-nav__header,
    .browse-week-nav__actions {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding-top: 4.8rem;
        padding-bottom: 5rem;
    }

    body.has-mobile-nav .page-shell {
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 7rem);
    }

    body.has-mobile-sticky-actions .page-shell {
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 15.25rem);
    }

    .page-shell__header {
        margin-bottom: 1.35rem;
    }

    .dashboard-attention-strip__title,
    .form-section__title,
    .admin-mobile-card__title {
        font-size: 1rem;
    }

    .dashboard-attention-strip__grid {
        gap: 0.75rem;
    }

    .venue-dashboard-hero-shell {
        padding: 1.1rem;
    }

    .venue-dashboard-hero {
        gap: 1rem;
    }

    .page-shell__actions,
    .page-shell__actions--solo {
        justify-content: stretch;
    }

    .page-shell__actions > *,
    .page-shell__actions--solo > * {
        width: 100%;
        justify-content: center;
    }

    .browse-filter-panel-shell,
    .browse-venue-shell-card {
        border-radius: 1.15rem;
    }

    .form-section {
        border-radius: 1.15rem;
    }

    .form-section__summary {
        padding: 1rem;
    }

    .form-section__content {
        padding: 0 1rem 1rem;
    }

    .form-section__header,
    .admin-mobile-card__header,
    .admin-mobile-card__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section__summary-meta {
        width: 100%;
        justify-content: space-between;
    }

    .venue-profile-layout > :first-child {
        order: 2;
    }

    .venue-profile-layout > :last-child {
        order: 1;
    }

    .campaign-form__desktop-actions,
    .venue-profile__desktop-actions {
        display: none;
    }

    .browse-filter-panel {
        padding: 1rem;
    }

    .browse-filter-panel__title {
        font-size: 1.55rem;
        line-height: 1.08;
    }

    .browse-filter-panel__copy {
        margin-top: 0.35rem;
        font-size: 0.96rem;
        line-height: 1.4;
    }

    .browse-filter-panel__header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .browse-filter-panel__week-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 0.7rem;
    }

    .browse-filter-panel__toggle {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .browse-week-nav__button--toolbar {
        width: 100%;
        justify-content: center;
        min-width: 0;
        min-height: 2.45rem;
        padding: 0.6rem 0.7rem;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        gap: 0.35rem;
    }

    .browse-filter-panel__body[hidden] {
        display: none !important;
    }

    .browse-filter-drawer__header,
    .browse-filter-drawer__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .browse-filter-drawer__footer {
        margin-top: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .browse-filter-backdrop {
        display: none !important;
    }

    .browse-filter-panel__body {
        position: fixed;
        inset: 0;
        z-index: 60;
        max-height: none;
        overflow-y: auto;
        border: none;
        border-radius: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
        background: rgba(10, 10, 16, 0.99);
        box-shadow: none;
    }

    .browse-filter-panel__grid,
    .browse-filter-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.85rem;
    }

    .admin-mobile-card__value {
        text-align: left;
    }

    .mobile-bottom-nav__label {
        font-size: 0.58rem;
    }

    .mobile-sticky-action-bar__content {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .browse-filter-panel {
        padding: 0.9rem;
    }

    .browse-filter-panel__title {
        font-size: 1.4rem;
    }

    .browse-filter-panel__copy {
        font-size: 0.9rem;
    }

    .browse-filter-panel__week-actions {
        gap: 0.55rem;
    }

    .browse-week-nav__button--toolbar {
        min-height: 2.35rem;
        padding: 0.55rem 0.6rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-nav,
    .mobile-sticky-action-bar,
    .mobile-sticky-action-spacer,
    .browse-filter-backdrop {
        display: none !important;
    }
}

/* Tablet: accommodate mobile bottom-nav padding */
@media (min-width: 641px) and (max-width: 767px) {
    body.has-mobile-nav .page-shell {
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 7rem);
    }

    body.has-mobile-sticky-actions .page-shell {
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 15.25rem);
    }
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
    position: relative;
    background:
        radial-gradient(circle at 10% 0%, rgba(157, 78, 221, 0.18), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255, 0, 110, 0.12), transparent 24%),
        linear-gradient(180deg, #06060b 0%, #0a0a0f 48%, #07070d 100%);
}

.legal-page__inner {
    width: 100%;
}

.legal-hero,
.legal-document {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(20, 18, 37, 0.96)),
        rgba(20, 18, 37, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 48px rgba(4, 3, 12, 0.2);
}

.legal-hero {
    display: grid;
    gap: 1.25rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 1.25rem;
}

.legal-hero__copy {
    min-width: 0;
}

.legal-hero__title {
    margin: 0;
    color: #fff;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.legal-hero__date,
.legal-hero__subtitle {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.55;
}

.legal-hero__date {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-hero__subtitle {
    max-width: 42rem;
    margin-top: 0.45rem;
}

.legal-hero__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    width: max-content;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(157, 78, 221, 0.38);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.28), rgba(255, 0, 110, 0.16));
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.legal-hero__contact:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.38), rgba(255, 0, 110, 0.22));
    transform: translateY(-1px);
}

.legal-document {
    padding: 1.2rem;
}

.legal-meta-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-meta-item {
    min-width: 0;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.035);
}

.legal-meta-label {
    margin-bottom: 0.32rem;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.legal-meta-value {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.legal-document__content {
    display: grid;
    gap: 1.55rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.75;
}

.legal-section {
    min-width: 0;
}

.legal-section--note {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
    margin-bottom: 0.6rem;
    color: #fff;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
    margin-top: 0.75rem;
}

.legal-section ul {
    padding-left: 1.2rem;
    list-style-position: outside;
    list-style-type: disc;
}

.legal-section li + li {
    margin-top: 0.35rem;
}

.legal-section strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.legal-document a {
    color: #c084fc;
    font-weight: 700;
    text-decoration: none;
}

.legal-document a:hover {
    color: #f0abfc;
    text-decoration: underline;
}

@media (min-width: 640px) {
    .legal-hero {
        padding: 1.75rem;
    }

    .legal-hero__title {
        font-size: 2.45rem;
    }

    .legal-document {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .legal-hero {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .legal-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   Site Footer
   ============================================ */
.site-footer__panel {
    border-radius: 0;
    border-left: none;
    border-right: none;
    /* Extra bottom padding on mobile to clear the bottom nav (~90px) + safe area + offset + breathing room */
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 10rem) !important;
}

@media (min-width: 1024px) {
    .site-footer__panel {
        padding-bottom: 1.5rem !important;
    }
}

.site-footer__legal-link {
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-clubtech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-clubtech-badge:hover {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.footer-clubtech-badge__copy {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.footer-clubtech-badge__logo {
    width: auto;
    height: 1.15rem;
    opacity: 0.96;
}

/* ============================================
   Campaigns Page — Toolbar
   ============================================ */

.campaigns-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.campaigns-search-wrap {
    position: relative;
}

.campaigns-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.95rem;
    height: 0.95rem;
    color: rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.campaigns-search {
    width: 100%;
    height: 2.55rem;
    padding: 0 1rem 0 2.45rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.campaigns-search::placeholder {
    color: rgba(255, 255, 255, 0.26);
}

.campaigns-search:focus {
    outline: none;
    border-color: rgba(157, 78, 221, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

/* remove browser search cancel button */
.campaigns-search::-webkit-search-cancel-button { display: none; }

.campaigns-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.campaigns-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.campaigns-filter-tab {
    padding: 0.42rem 0.9rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.campaigns-filter-tab:hover {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
}

.campaigns-filter-tab--active {
    background: rgba(157, 78, 221, 0.18);
    border-color: rgba(157, 78, 221, 0.38);
    color: #d8b4fe;
}

.campaigns-filter-tab--active:hover {
    background: rgba(157, 78, 221, 0.24);
    color: #e9d5ff;
}

.campaigns-filter-tab--secondary {
    padding: 0.38rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.34);
    border-color: rgba(255, 255, 255, 0.05);
    background: transparent;
}

.campaigns-filter-tab--secondary:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.campaigns-filter-tab--secondary.campaigns-filter-tab--active {
    background: rgba(157, 78, 221, 0.14);
    border-color: rgba(157, 78, 221, 0.3);
    color: #c4b5fd;
}

.campaigns-sort-select {
    height: 2.1rem;
    padding: 0 0.8rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none;
}

.campaigns-sort-select:focus {
    outline: none;
    border-color: rgba(157, 78, 221, 0.38);
    color: rgba(255, 255, 255, 0.7);
}

.campaigns-sort-select option {
    background: #141225;
    color: #fff;
}

/* ============================================
   Campaigns Page — Status Strip
   ============================================ */

.campaigns-strip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
    padding: 0.7rem 0.95rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

.campaigns-strip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 9999px;
    background: rgba(74, 222, 128, 0.14);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
    flex-shrink: 0;
}

.campaigns-strip__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.7);
    flex-shrink: 0;
}

.campaigns-strip__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.campaigns-strip__text strong {
    color: #fff;
    font-weight: 700;
}

.campaigns-strip__sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.74rem;
}

.campaigns-strip--attention {
    background: rgba(245, 158, 11, 0.07);
    border-color: rgba(245, 158, 11, 0.22);
}

/* ============================================
   Campaigns Page — Empty State
   ============================================ */

.campaigns-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.25rem;
    gap: 0.75rem;
}

.campaigns-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.22);
    color: #c4b5fd;
    margin-bottom: 0.25rem;
}

.campaigns-empty__title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.campaigns-empty__body {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    max-width: 26rem;
    line-height: 1.5;
}

.campaigns-empty__cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.7rem;
    background: linear-gradient(90deg, #9d4edd, #ff006e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: opacity 0.15s ease;
}

.campaigns-empty__cta:hover {
    opacity: 0.9;
}

.campaigns-empty__muted {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.85rem;
}

/* ============================================
   Campaigns Page — Campaign Card
   ============================================ */

.campaign-card {
    position: relative;
    padding: 1.15rem 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.campaign-card:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 36px rgba(4, 3, 12, 0.22);
}

/* Touch: replace hover lift with tap feedback */
.campaign-card:active {
    transform: scale(0.995);
    border-color: rgba(157, 78, 221, 0.35);
}

/* Pending applicants state — the sole "alarm" signal on a card */
.campaign-card--pending {
    border-color: rgba(245, 158, 11, 0.28);
    background:
        radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.07), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(20, 18, 37, 0.98)),
        rgba(20, 18, 37, 0.98);
}

.campaign-card--pending:hover {
    border-color: rgba(245, 158, 11, 0.45);
}

/* Recurring accent — radius matches card so it fits without overflow clipping */
.campaign-card--recurring::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #9d4edd, #ff006e);
    border-radius: 1.2rem 0 0 1.2rem;
    pointer-events: none;
}

/* Draft / Closed — muted appearance */
.campaign-card--draft,
.campaign-card--closed {
    opacity: 0.82;
}

/* Pending banner at top of card */
.campaign-card__pending-row {
    margin-bottom: 0.9rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.campaign-card__pending-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.85rem 0.42rem 0.6rem;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.32);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    line-height: 1;
}

.campaign-card__pending-cta:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}

.campaign-card__pending-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #fbbf24;
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.85);
    flex-shrink: 0;
}

/* Card body */
.campaign-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.campaign-card__main {
    min-width: 0;
    flex: 1;
}

.campaign-card__side {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.campaign-card__name {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Single meta line: Recurring · Thu · 7-10pm · in 3 days */
.campaign-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.38rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.campaign-card__meta-sep {
    color: rgba(255, 255, 255, 0.2);
}

.campaign-card__meta-tag {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    background: rgba(157, 78, 221, 0.14);
    color: #c4b5fd;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.campaign-card__meta-when {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 600;
}

.campaign-card__meta-when--hot {
    color: #f87171;
}

.campaign-card__meta-when--warm {
    color: #fbbf24;
}

/* Fill bar */
.campaign-card__fill {
    margin-bottom: 0.6rem;
}

.campaign-card__fill-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.38rem;
    font-size: 0.76rem;
}

.campaign-card__fill-count {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.campaign-card__fill-awaiting {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.campaign-card__fill-slots {
    color: rgba(255, 255, 255, 0.3);
}

.campaign-card__fill-pct {
    color: rgba(255, 255, 255, 0.35);
}

.campaign-card__fill-track {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.campaign-card__fill-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #9d4edd, #ff006e);
    transition: width 0.4s ease;
    min-width: 0;
}

/* Secondary context */
.campaign-card__secondary {
    color: rgba(255, 255, 255, 0.26);
    font-size: 0.73rem;
    margin-top: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Kebab menu */
.campaign-card__menu {
    position: relative;
}

.campaign-card__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background-color 0.13s ease, color 0.13s ease, border-color 0.13s ease;
    -webkit-tap-highlight-color: transparent;
}

.campaign-card__menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.campaign-card__menu-btn:active {
    background: rgba(255, 255, 255, 0.14);
}

.campaign-card__menu--open .campaign-card__menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.campaign-card__menu-popover {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 30;
    min-width: 11rem;
    padding: 0.3rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1730;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    animation: campaign-card-menu-in 0.12s ease-out;
}

@keyframes campaign-card-menu-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.campaign-card__menu-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.7rem;
    border-radius: 0.45rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.1s ease, color 0.1s ease;
    white-space: nowrap;
}

.campaign-card__menu-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.campaign-card__menu-item--danger {
    color: rgba(248, 113, 113, 0.75);
}

.campaign-card__menu-item--danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* ============================================
   Campaigns Page — Responsive
   ============================================ */

@media (min-width: 640px) {
    .campaigns-toolbar {
        flex-direction: row;
        align-items: center;
    }

    .campaigns-search-wrap {
        flex: 1;
        max-width: 22rem;
    }

    .campaigns-toolbar-right {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .dashboard-stat-grid {
        gap: 0.55rem;
    }

    .dashboard-stat-card__value {
        font-size: 1.55rem;
    }

    .dashboard-stat-card__label {
        font-size: 0.58rem;
        margin-bottom: 0.5rem;
    }

    .dashboard-stat-card__detail {
        font-size: 0.7rem;
        padding-top: 0.45rem;
    }

    .campaigns-strip {
        padding: 0.6rem 0.75rem;
        font-size: 0.78rem;
    }

    /* Mobile touch targets */
    .campaign-card__menu-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .campaign-card__menu-item {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .campaign-card__menu-popover {
        min-width: 13rem;
    }

    /* On mobile, disable the hover lift — it lingers after tap on iOS */
    .campaign-card:hover {
        transform: none;
    }
}

/* ============================================
   Barter Agreement Dialog
   ============================================ */

.agreement-dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    transition: opacity 0.2s ease;
}

.agreement-dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 38rem;
    max-height: calc(100vh - 2rem);
    max-height: calc(100svh - 2rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(22, 22, 42, 1), rgba(10, 10, 15, 1));
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.agreement-dialog__header {
    flex-shrink: 0;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.agreement-dialog__title {
    color: #fff;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.agreement-dialog__subtitle {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.84rem;
    line-height: 1.5;
}

.agreement-dialog__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem 1.35rem;
    -webkit-overflow-scrolling: touch;
}

.agreement-dialog__text {
    white-space: pre-wrap;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.72);
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.82rem;
    line-height: 1.75;
    margin: 0;
}

.agreement-dialog__footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 10, 15, 0.6);
}

.agreement-dialog__sig-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.agreement-dialog__sig-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.agreement-dialog__sig-input {
    width: 100%;
    height: 2.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.02em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.agreement-dialog__sig-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.agreement-dialog__sig-input:focus {
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.15);
}

.agreement-dialog__ack {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
}

.agreement-dialog__ack input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    accent-color: #9d4edd;
}

.agreement-dialog__ack span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    line-height: 1.5;
}

.agreement-dialog__actions {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
}

.agreement-dialog__cancel {
    padding: 0.65rem 1.15rem;
    border: none;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.agreement-dialog__cancel:hover {
    background: rgba(255, 255, 255, 0.14);
}

.agreement-dialog__sign {
    padding: 0.65rem 1.4rem;
    border: none;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.agreement-dialog__sign:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.agreement-dialog__sign:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ============================================
   Mobile drawer — slide-in menu for <lg screens
   ============================================ */

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.32s;
}

.mobile-drawer--open {
    pointer-events: auto;
    visibility: visible;
    transition: visibility 0s linear 0s;
}

.mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 10, 0.64);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.mobile-drawer--open .mobile-drawer__backdrop {
    opacity: 1;
}

.mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.1rem calc(env(safe-area-inset-bottom, 0px) + 1.1rem);
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(157, 78, 221, 0.22) 0%, rgba(157, 78, 221, 0) 60%),
        radial-gradient(120% 80% at 0% 100%, rgba(255, 0, 110, 0.18) 0%, rgba(255, 0, 110, 0) 55%),
        rgba(7, 7, 14, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -32px 0 64px rgba(0, 0, 0, 0.52);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
}

.mobile-drawer--open .mobile-drawer__panel {
    transform: translateX(0);
}

.mobile-drawer__close {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.mobile-drawer__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.mobile-drawer__head {
    padding: 1rem 0.25rem 1.1rem;
}

.mobile-drawer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-drawer__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.mobile-drawer__title {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.mobile-drawer__tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
    margin-top: 0.4rem;
}

.mobile-drawer__user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer__avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.mobile-drawer__avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9d4edd, #ec4899);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.mobile-drawer__user-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-drawer__user-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-drawer__user-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-drawer__tier-pill {
    display: inline-flex;
    padding: 0.18rem 0.55rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.25), rgba(255, 0, 110, 0.18));
    border: 1px solid rgba(157, 78, 221, 0.32);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.mobile-drawer__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 1rem;
}

.mobile-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid transparent;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
}

.mobile-drawer__link:hover,
.mobile-drawer__link:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-drawer__link--active {
    color: #fff;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.22), rgba(255, 0, 110, 0.14));
    border-color: rgba(157, 78, 221, 0.32);
    box-shadow: 0 0 18px rgba(157, 78, 221, 0.18);
}

.mobile-drawer__link--upgrade {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-drawer__chev {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.mobile-drawer__link--active .mobile-drawer__chev,
.mobile-drawer__link:hover .mobile-drawer__chev {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-drawer__foot {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-drawer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #9d4edd, #ec4899);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(157, 78, 221, 0.38), 0 0 44px rgba(255, 0, 110, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.mobile-drawer__cta:hover,
.mobile-drawer__cta:active {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5), 0 0 56px rgba(255, 0, 110, 0.28);
}

.mobile-drawer__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    width: 100%;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.18);
    color: #f87171;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.mobile-drawer__logout:hover {
    background: rgba(248, 113, 113, 0.14);
    border-color: rgba(248, 113, 113, 0.28);
    color: #fca5a5;
}

body.mobile-drawer-locked {
    overflow: hidden;
}

@media (min-width: 768px) {
    .mobile-drawer {
        display: none !important;
    }

    /* Force-hide the hamburger buttons at desktop widths. `.nav-icon-btn`
       sets `display: inline-flex` with the same specificity as Tailwind's
       `md:hidden` utility, so without `!important` the hamburger stayed
       visible on desktop. */
    #mobile-menu-btn,
    #pub-mobile-menu-btn {
        display: none !important;
    }
}

/* ============================================
   Mobile offset — clear the fixed nav on small
   screens so top-of-page pills / hero content
   aren't covered. Nav is ~3.4rem tall + a glow
   bleed; 5.6rem gives clear breathing room.
   Scoped to .page-shell only (landing pages
   already handle their own hero padding).
   ============================================ */

@media (max-width: 767px) {
    .page-shell {
        padding-top: 5.6rem;
    }
}
