.upload-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-review-notice {
    align-items: flex-start;
    background: rgba(245,166,35,.08);
    border: 1px solid rgba(245,166,35,.24);
    border-radius: var(--radius);
    display: flex;
    gap: .75rem;
    padding: .9rem 1rem;
}

.upload-review-notice__icon {
    align-items: center;
    color: var(--accent);
    display: flex;
    flex: 0 0 auto;
    margin-top: .1rem;
}

.upload-review-notice__body {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    min-width: 0;
}

.upload-review-notice__body h2 {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.25;
}

.upload-review-notice__body p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.45;
    margin: 0;
}

.go-fest-upload-checklist {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: .85rem;
}

.go-fest-upload-checklist__header {
    align-items: center;
    display: flex;
    gap: .75rem;
    justify-content: space-between;
}

.go-fest-upload-checklist h2 {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.25;
    min-width: 0;
}

.go-fest-upload-checklist__badge {
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
    padding: .35rem .55rem;
}

.go-fest-upload-checklist__badge--done {
    background: rgba(80,200,120,.15);
    color: #50c878;
}

.go-fest-upload-checklist__badge--missing {
    background: rgba(245,166,35,.15);
    color: var(--accent);
}

.go-fest-upload-checklist__missing {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.go-fest-upload-checklist__missing-label {
    color: var(--text-muted);
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 700;
}

.go-fest-upload-checklist__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    min-width: 0;
}

.go-fest-upload-checklist__chip {
    background: rgba(245,166,35,.1);
    border: 1px solid rgba(245,166,35,.22);
    border-radius: 999px;
    color: var(--accent);
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    padding: .32rem .48rem;
}

.go-fest-upload-checklist__complete {
    align-items: center;
    color: #50c878;
    display: flex;
    font-size: .82rem;
    font-weight: 700;
    gap: .35rem;
    line-height: 1.35;
    margin: 0;
}

.upload-queue:empty {
    display: none;
}

.drop-zone--bar {
    align-items: center;
    flex-direction: row;
    gap: .75rem;
    padding: .8rem 1rem;
    text-align: left;
}

.drop-zone--bar__icon {
    align-items: center;
    background: var(--accent-dim);
    border-radius: 10px;
    color: var(--accent);
    display: flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.drop-zone--bar__icon svg {
    opacity: 1;
}

.drop-zone--bar__text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
}

.drop-zone--bar__title {
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
}

.onboarding-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(245, 166, 35, .14), transparent 38%), var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.onboarding-panel__content {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.onboarding-panel__eyebrow {
    color: #7dd3a8;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.onboarding-panel h1 {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.onboarding-panel p:not(.onboarding-panel__eyebrow) {
    color: var(--text-muted);
    max-width: 680px;
}

.onboarding-checklist {
    display: grid;
    gap: .5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.onboarding-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    color: var(--text);
    font-size: .92rem;
}

.onboarding-checklist svg {
    flex-shrink: 0;
    margin-top: .22rem;
    color: #7dd3a8;
}

.onboarding-steps {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    list-style: none;
    margin-top: .25rem;
    position: relative;
}

.onboarding-steps::before {
    content: "";
    position: absolute;
    top: calc(.55rem - 1px);
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
}

.onboarding-steps__item {
    display: grid;
    grid-template-rows: 1.1rem auto;
    justify-items: center;
    align-items: start;
    gap: .45rem;
    color: var(--text-muted);
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

.onboarding-steps__item::before {
    content: "";
    align-self: center;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    position: relative;
    z-index: 1;
}

.onboarding-steps__item--done {
    color: #7dd3a8;
}

.onboarding-steps__item--done::before {
    background: #7dd3a8;
    border-color: #7dd3a8;
}

.onboarding-steps__item--active {
    color: var(--text);
}

.onboarding-steps__item--active::before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .16);
}

.onboarding-steps__item--active a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: .2rem .35rem;
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.onboarding-steps__item--active:focus-within {
    color: var(--accent);
}

.onboarding-example {
    display: flex;
    justify-content: center;
}

/* Raw screenshot mock card */
.raw-screenshot {
    width: 248px;
    height: 410px;
    border-radius: 28px;
    background: #000;
    padding: 6px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    flex: none;
}

.raw-screenshot--compact {
    width: 220px;
    height: 364px;
}

.raw-screenshot__label {
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Menlo', 'Monaco', monospace;
}

.raw-screenshot__inner {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.raw-screenshot__inner--valor {
    background: radial-gradient(120% 80% at 50% 0%, #f4b8c8 0%, #f4d3d8 35%, #e8c8d2 70%, #d9b8c4 100%);
}

.raw-screenshot__inner--mystic {
    background: radial-gradient(120% 80% at 50% 0%, #b8c8f4 0%, #c8d3f8 35%, #b8c4e8 70%, #98b4d9 100%);
}

.raw-screenshot__inner--instinct {
    background: radial-gradient(120% 80% at 50% 0%, #f3e8c8 0%, #f0dfb8 35%, #e8d3a8 70%, #d8c398 100%);
}

.raw-screenshot__inner--harmony {
    background: radial-gradient(120% 80% at 50% 0%, #b9e6cc 0%, #ccebd8 35%, #acd8c4 70%, #8fc3ac 100%);
}

.raw-screenshot__status-bar {
    padding: 10px 16px 6px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: rgba(40,20,40,0.7);
}

.raw-screenshot__signal {
    display: flex;
    gap: 4px;
    align-items: center;
}

.raw-screenshot__signal span:nth-child(1) { width: 14px; height: 8px; border-radius: 2px; background: rgba(40,20,40,0.4); }
.raw-screenshot__signal span:nth-child(2) { width: 14px; height: 8px; border-radius: 2px; background: rgba(40,20,40,0.5); }
.raw-screenshot__signal span:nth-child(3) { width: 18px; height: 8px; border-radius: 2px; background: rgba(40,20,40,0.3); }

.raw-screenshot__tabs {
    display: flex;
    justify-content: space-around;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(40,20,40,0.55);
    text-transform: uppercase;
}

.raw-screenshot__avatar {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.raw-screenshot__level {
    position: absolute;
    left: 16px;
    top: 168px;
    color: rgba(40,20,40,0.7);
}

.raw-screenshot__level-num {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.raw-screenshot__level-label {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 700;
}

.raw-screenshot__trainer-name {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(20, 10, 20, 0.7);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.raw-screenshot__stats {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
    color: rgba(40,20,40,0.85);
}

.raw-screenshot__stat {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.raw-screenshot__stat span:first-child { opacity: 0.7; }

.drop-zone__hint {
    font-size: .8rem;
    color: var(--text-muted);
}

@media (max-width: 700px) {
    .onboarding-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .onboarding-panel__content {
        gap: .65rem;
    }

    .onboarding-panel h1 {
        font-size: 1.45rem;
        line-height: 1.15;
    }

    .onboarding-panel p:not(.onboarding-panel__eyebrow) {
        font-size: .92rem;
    }

    .onboarding-checklist {
        gap: .4rem;
        margin-bottom: .35rem;
    }

    .onboarding-checklist li {
        font-size: .86rem;
    }

    .onboarding-steps__item {
        font-size: .68rem;
    }

    .onboarding-example {
        margin-top: .25rem;
    }

    .raw-screenshot--compact {
        width: 176px;
        height: 292px;
        border-radius: 22px;
        padding: 5px;
    }

    .raw-screenshot--compact .raw-screenshot__inner {
        border-radius: 17px;
    }

    .raw-screenshot--compact .raw-screenshot__avatar {
        margin-top: 3px;
        transform: scale(.78);
        transform-origin: top center;
    }

    .raw-screenshot--compact .raw-screenshot__level {
        left: 12px;
        top: 125px;
    }

    .raw-screenshot--compact .raw-screenshot__level-num {
        font-size: 21px;
    }

    .raw-screenshot--compact .raw-screenshot__trainer-name {
        margin-top: -20px;
        font-size: 11px;
    }

    .raw-screenshot--compact .raw-screenshot__stats {
        left: 9px;
        right: 9px;
        bottom: 9px;
        gap: 4px;
        padding: 8px 9px;
        font-size: 8.5px;
    }
}

.upload-next-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.upload-next-steps h2 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: .25rem;
}

.upload-next-steps p {
    color: var(--text-muted);
    font-size: .875rem;
}

.upload-next-steps__actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.upload-next-steps__actions .btn {
    justify-content: center;
    min-width: 9rem;
}

@media (max-width: 700px) {
    .upload-next-steps {
        align-items: stretch;
        flex-direction: column;
    }

    .upload-next-steps__actions {
        flex-direction: column;
    }

    .upload-next-steps__actions .btn {
        width: 100%;
    }
}

