.alo-page {
    max-width: 1280px;
}

.alo-app {
    --alo-ink: #182126;
    --alo-muted: #5b6973;
    --alo-line: rgba(24, 33, 38, 0.12);
    --alo-shell: #fffdf8;
    --alo-cream: #fff5e4;
    --alo-accent: #ffae42;
    --alo-accent-strong: #ef7f1a;
    --alo-teal: #0f6d76;
    --alo-success: #12664f;
    --alo-warn: #a95f00;
    color: var(--alo-ink);
}

.alo-shell {
    border: 1px solid var(--alo-line);
    border-radius: 24px;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 174, 66, 0.22), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15, 109, 118, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--alo-shell) 100%);
    box-shadow: 0 18px 48px rgba(24, 33, 38, 0.08);
}

.alo-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.alo-hero-public {
    padding: 8px 0 4px;
}

.alo-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 174, 66, 0.18);
    color: var(--alo-accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.alo-hero h2 {
    margin: 12px 0 10px;
    font-size: 30px;
    line-height: 1.1;
}

.alo-hero-public h2 {
    font-size: 42px;
    max-width: 720px;
}

.alo-hero p,
.alo-mini-note,
.alo-placeholder,
.alo-card p {
    color: var(--alo-muted);
}

.alo-mini-note-strong {
    font-weight: 600;
}

.alo-hero-side {
    min-width: 220px;
}

.alo-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(15, 109, 118, 0.12);
    color: var(--alo-teal);
}

.alo-pill.is-muted {
    background: rgba(91, 105, 115, 0.12);
    color: var(--alo-muted);
}

.alo-pill.is-ready {
    background: rgba(18, 102, 79, 0.12);
    color: var(--alo-success);
}

.alo-grid {
    display: grid;
    gap: 18px;
}

.alo-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alo-output-grid {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alo-card-wide {
    grid-column: 1 / -1;
}

.alo-card {
    border: 1px solid var(--alo-line);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
}

.alo-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.alo-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.alo-field-span-two {
    grid-column: 1 / -1;
}

.alo-field-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.alo-field-grid span {
    font-size: 13px;
}

.alo-field-grid input[type="text"],
.alo-field-grid input[type="url"],
.alo-field-grid input[type="number"],
.alo-field-grid input[type="file"],
.alo-field-grid select,
.alo-field-grid textarea,
.alo-settings-form input,
.alo-settings-form select {
    width: 100%;
    border: 1px solid rgba(24, 33, 38, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fffefb;
}

.alo-field-grid textarea {
    min-height: 92px;
    resize: vertical;
}

.alo-inline-check {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    font-weight: 500 !important;
}

.alo-inline-check input {
    width: auto !important;
}

.alo-inline-check.is-disabled {
    opacity: 0.72;
}

.alo-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.alo-status {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 174, 66, 0.16);
    color: var(--alo-accent-strong);
    font-size: 13px;
    font-weight: 700;
}

.alo-chip-wrap,
.alo-public-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.alo-public-points {
    margin-top: 16px;
}

.alo-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 109, 118, 0.08);
    color: var(--alo-teal);
    font-size: 13px;
    font-weight: 600;
}

.alo-tier-grid,
.alo-summary-grid,
.alo-output-blocks,
.alo-public-metrics {
    display: grid;
    gap: 12px;
}

.alo-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alo-summary-grid,
.alo-public-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
}

.alo-summary-item {
    padding: 14px;
    border-radius: 16px;
    background: var(--alo-cream);
}

.alo-output-block {
    border: 1px solid var(--alo-line);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.alo-output-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.alo-output-title {
    margin: 0;
    font-size: 18px;
}

.alo-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--alo-teal);
    background: rgba(15, 109, 118, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
}

.alo-output-text {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.65;
}

.alo-prompt-box {
    white-space: pre-wrap;
    padding: 16px;
    border-radius: 16px;
    background: #11181c;
    color: #f4f7f8;
    overflow: auto;
    font-size: 12px;
    line-height: 1.6;
}

.alo-check-list {
    display: grid;
    gap: 10px;
}

.alo-check-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(24, 33, 38, 0.04);
}

.alo-check-item.is-pass {
    border-left: 4px solid var(--alo-success);
}

.alo-check-item.is-warn {
    border-left: 4px solid var(--alo-warn);
}

.alo-note-list {
    display: grid;
    gap: 10px;
}

.alo-note {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 174, 66, 0.12);
}

.alo-warning {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(239, 127, 26, 0.12);
    color: #8b4a00;
}

.alo-shortcode-note {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff5e4;
    color: #8b4a00;
}

@media (max-width: 960px) {
    .alo-hero,
    .alo-grid-two,
    .alo-output-grid,
    .alo-tier-grid,
    .alo-summary-grid,
    .alo-public-metrics,
    .alo-field-grid {
        grid-template-columns: 1fr;
    }

    .alo-action-row {
        flex-wrap: wrap;
    }

    .alo-hero-public h2 {
        font-size: 32px;
    }
}
