/* ── AATG Size It Up ─────────────────────────────────────────────────────── */

.aatg-sizeup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 720px;
    margin: 0 auto;
}

.aatg-su__panel {
    background:
        radial-gradient(700px 300px at 50% -120px, rgba(240,132,52,.10), transparent 70%),
        #ffffff;
    border: 1px solid #e7e7e3;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    text-align: center;
}

.aatg-su__title {
    color: #111 !important;
    font-family: inherit !important;
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0 0 18px;
}

/* controls */
.aatg-su__controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.aatg-su__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    flex: 1 1 220px;
    max-width: 320px;
}
.aatg-su__field span {
    color: #999;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.aatg-su__sel {
    width: 100%;
    background: #fafaf8;
    border: 1px solid #e3e3df;
    border-radius: 12px;
    padding: 11px 12px;
    font-size: .92rem;
    font-weight: 600;
    color: #222;
    font-family: inherit;
    cursor: pointer;
}
.aatg-su__sel:focus {
    outline: none;
    border-color: rgba(240,132,52,.6);
    box-shadow: 0 0 0 3px rgba(240,132,52,.25);
}

/* scene */
.aatg-su__scene {
    position: relative;
    margin-top: 10px;
    padding: 16px 10px 0;
}
.aatg-su__stage {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(20px, 6vw, 60px);
    min-height: 300px;
}
.aatg-su__ground {
    height: 4px;
    background: linear-gradient(90deg, transparent, #e3ddd2 15%, #e3ddd2 85%, transparent);
    border-radius: 100px;
}

.aatg-su__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.aatg-su__emoji {
    line-height: 1;
    display: block;
    animation: aatg-su-pop .4s ease both;
    filter: saturate(.95);
}
.aatg-su__label {
    color: #777;
    font-size: .78rem;
    line-height: 1.45;
    padding-bottom: 6px;
}
.aatg-su__label strong { color: #e2731f; font-weight: 800; }

.aatg-su__fact {
    background: rgba(240,132,52,.08);
    border: 1px solid rgba(240,132,52,.3);
    border-radius: 12px;
    color: #444;
    font-size: .92rem;
    line-height: 1.6;
    padding: 12px 16px;
    margin: 16px 0 0;
}
.aatg-su__fact strong { color: #e2731f; }

@keyframes aatg-su-pop {
    from { opacity: 0; transform: scale(.7); }
    to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 560px) {
    .aatg-su__panel { padding: 20px 14px; }
    .aatg-su__stage { min-height: 230px; }
}
