/* ══════════════════════════════════════════
   AI Mixologist
   ══════════════════════════════════════════ */

.aim-hero {
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,168,76,.14) 0%, transparent 70%),
                linear-gradient(160deg, #100d08 0%, #06060e 60%, #0a0d12 100%);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 3.5rem 0 2.5rem;
}
.aim-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mafb-gold);
    margin-bottom: .6rem;
}
.aim-hero h1 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 2.2rem;
    color: var(--mafb-gold);
    margin-bottom: .6rem;
}
.aim-hero .lead { color: rgba(242,232,216,.6); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.aim-disclaimer-short { color: rgba(242,232,216,.32); font-size: .75rem; font-style: italic; margin: .7rem 0 0; }
.aim-disclaimer-long { color: rgba(242,232,216,.32); font-size: .78rem; line-height: 1.6; max-width: 760px; margin: 1.5rem auto 0; text-align: center; }

.aim-container { max-width: 860px; }

.aim-panel {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 2rem;
}
.aim-field { margin-bottom: 1.6rem; }
.aim-field:last-child { margin-bottom: 0; }
.aim-label {
    font-weight: 700;
    color: #f2e8d8;
    font-size: .95rem;
    margin-bottom: .7rem;
}
.aim-sublabel { font-weight: 400; color: rgba(242,232,216,.45); font-size: .8rem; }

.aim-chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .6rem; }
.aim-chip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.75);
    padding: .45rem 1.05rem;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.aim-chip:hover { border-color: rgba(201,168,76,.5); }
.aim-chip.active { background: var(--mafb-gold); border-color: var(--mafb-gold); color: #1e1810; font-weight: 700; }

.aim-custom-input { max-width: 340px; }

.aim-or-divider {
    display: flex;
    align-items: center;
    color: rgba(242,232,216,.35);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 1.8rem 0 1.6rem;
}
.aim-or-divider::before, .aim-or-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid rgba(255,255,255,.08);
}
.aim-or-divider span { padding: 0 .9rem; }

.aim-generate-btn {
    border: none;
    padding: .85rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
}
.aim-generate-btn:disabled { opacity: .6; cursor: not-allowed; }

.aim-status {
    text-align: center;
    color: rgba(242,232,216,.7);
    font-size: .95rem;
    margin-top: 1.5rem;
}
.aim-status-error { color: #f87171; }

.aim-result { margin-top: 2rem; }
.aim-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 16px;
    padding: 2rem;
    animation: aim-fade-in .4s ease;
}
@keyframes aim-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.aim-card-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.aim-badge {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(201,168,76,.15);
    color: var(--mafb-gold);
    border-radius: 4px;
    padding: .25rem .65rem;
}
.aim-card-name {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--mafb-gold);
    font-size: 1.9rem;
    margin-bottom: .3rem;
}
.aim-card-tagline { color: rgba(242,232,216,.6); font-style: italic; margin-bottom: 1.5rem; }

.aim-card-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; }
@media (max-width: 640px) { .aim-card-cols { grid-template-columns: 1fr; gap: 1.2rem; } }

.aim-card-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--mafb-gold);
    margin-bottom: .6rem;
}
.aim-ing-list { list-style: none; padding: 0; margin: 0; }
.aim-ing-list li {
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(242,232,216,.85);
    font-size: .9rem;
}
.aim-ing-list li:last-child { border-bottom: none; }
.aim-ing-amt { color: var(--mafb-gold); font-weight: 600; display: inline-block; min-width: 90px; }

.aim-step-list { list-style: none; padding: 0; margin: 0; counter-reset: none; }
.aim-step-list li {
    display: flex;
    gap: .7rem;
    padding: .5rem 0;
    color: rgba(242,232,216,.85);
    font-size: .9rem;
    align-items: baseline;
}
.aim-step-num {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(201,168,76,.15);
    color: var(--mafb-gold);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aim-garnish { color: rgba(242,232,216,.85); font-size: .9rem; margin: 0; }

.aim-why {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(242,232,216,.6);
    font-size: .88rem;
    font-style: italic;
}

.aim-again-btn { border-radius: 50px; padding: .6rem 1.8rem; font-size: .88rem; cursor: pointer; }

.aim-explainer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(242,232,216,.75);
}
.aim-explainer h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--mafb-gold);
    font-size: 1.4rem;
    margin: 2rem 0 .9rem;
}
.aim-explainer h2:first-child { margin-top: 0; }
.aim-explainer p { font-size: .92rem; line-height: 1.7; }
.aim-how-list { padding-left: 1.2rem; font-size: .92rem; line-height: 1.8; }
.aim-how-list strong { color: var(--mafb-gold); }

.aim-faq-item { margin-bottom: 1.3rem; }
.aim-faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f2e8d8;
    margin-bottom: .35rem;
}
.aim-faq-item p { font-size: .9rem; line-height: 1.6; margin: 0; }

@media (max-width: 576px) {
    .aim-hero h1 { font-size: 1.7rem; }
    .aim-panel { padding: 1.3rem; }
    .aim-card { padding: 1.3rem; }
    .aim-explainer h2 { font-size: 1.2rem; }
}
