/* Dashboard */

@keyframes dash-shell-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

@keyframes dash-card-in {
    from { opacity: 0; transform: translateY(6px) scale(0.985); }
    to   { opacity: 1; transform: none; }
}

.dashboard-shell {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: dash-shell-in 0.30s ease both;
    min-width: 0;
}

.stat-card {
    animation: dash-card-in 0.28s ease both;
}

.stat-cards .stat-card:nth-child(1) { animation-delay: 0.04s; }
.stat-cards .stat-card:nth-child(2) { animation-delay: 0.08s; }
.stat-cards .stat-card:nth-child(3) { animation-delay: 0.12s; }
.stat-cards .stat-card:nth-child(4) { animation-delay: 0.16s; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.92fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
}

.dashboard-grid > * {
    min-width: 0;
}

.dash-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 2px;
    min-width: 0;
}

.dash-bottom-row > * {
    min-width: 0;
}

/* Generic interactive reset */

.dash-proj-row,
.dash-note-card,
.dash-prompt-row,
.btn-icon-sm {
    font: inherit;
    color: inherit;
    text-align: left;
}

.dash-proj-row,
.dash-note-card,
.dash-prompt-row {
    appearance: none;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
}

.dash-proj-row:focus-visible,
.dash-note-card:focus-visible,
.dash-prompt-row:focus-visible,
.btn-icon-sm:focus-visible,
.btn-link:focus-visible,
.btn-primary:focus-visible {
    outline: 2px solid rgba(249, 115, 22, 0.88);
    outline-offset: 2px;
}

/* Intro / Hero */

.dash-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    border: 1px solid rgba(249, 115, 22, 0.14);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%),
        var(--surface-2);
    padding: 22px 22px 20px;
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.dash-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.dash-hero-copy {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dash-hero-copy h2 {
    margin-bottom: 6px;
}

.dash-hero-copy p {
    margin: 0;
    color: var(--text-3);
    max-width: 560px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dash-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
}

.dash-mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    min-width: 0;
}

.dash-mini-pill {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: var(--surface-3);
    color: var(--text-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dash-mini-pill strong {
    color: var(--text-1);
    margin-right: 5px;
}

/* Insight tiles */

.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.stat-cards > * {
    min-width: 0;
}

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 15px;
    border-radius: var(--r-lg);
    border: 1px solid rgba(var(--sc-rgb, 249, 115, 22), 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%),
        var(--surface);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 8px 20px rgba(0, 0, 0, 0.11);
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        border-color 0.14s ease,
        background 0.14s ease;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 12px 24px rgba(0, 0, 0, 0.14);
    border-color: rgba(var(--sc-rgb, 249, 115, 22), 0.24);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: rgba(var(--sc-rgb, 127, 143, 255), 0.9);
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.stat-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 18px;
    line-height: 1;
    color: rgba(var(--sc-rgb, 127, 143, 255), 1);
    background: rgba(var(--sc-rgb, 127, 143, 255), 0.12);
    border: 1px solid rgba(var(--sc-rgb, 127, 143, 255), 0.16);
}

.stat-card-kicker {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.04em;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.stat-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.stat-card-trend {
    font-size: 11.5px;
    color: var(--text-4);
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Today panel */

.dash-today-panel {
    overflow: hidden;
    min-width: 0;
}

.dtp-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
}

.dtp-layout > * {
    min-width: 0;
}

.dtp-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.dtp-ring {
    --ring-pct: 0;
    position: relative;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, var(--bg) 0 57%, transparent 58%),
        conic-gradient(var(--accent) calc(var(--ring-pct) * 1%), var(--border) 0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    flex-shrink: 0;
}

.dtp-ring.overload {
    background:
        radial-gradient(circle at 50% 50%, var(--bg) 0 57%, transparent 58%),
        conic-gradient(var(--danger) calc(var(--ring-pct) * 1%), var(--border) 0);
}

.dtp-ring-inner {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    text-align: center;
}

.dtp-ring-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-1);
    letter-spacing: -0.04em;
}

.dtp-ring-sub {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dtp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    min-width: 0;
}

.dtp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    min-width: 0;
}

.dtp-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
}

.dtp-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.dtp-count-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--success-soft);
    border: 1px solid rgba(28, 184, 112, 0.22);
    color: var(--success);
}

.dtp-type-badge {
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--danger-soft);
    border: 1px solid rgba(224, 78, 100, 0.22);
    color: var(--danger);
}

.dtp-type-badge--andere {
    background: var(--warning-soft);
    border-color: rgba(212, 149, 46, 0.22);
    color: var(--warning);
}

.dtp-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
    min-width: 0;
}

.dtp-metrics > * {
    min-width: 0;
}

.dtp-metric {
    padding: 12px 12px 11px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background: var(--surface-2);
    min-width: 0;
}

.dtp-metric-label {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-4);
    margin-bottom: 6px;
}

.dtp-metric-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dtp-stream {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.dtp-step {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    background: var(--surface-2);
    transition:
        transform 0.12s ease,
        border-color 0.12s ease,
        background 0.12s ease;
    min-width: 0;
}

.dtp-step:hover {
    transform: translateY(-1px);
    border-color: rgba(249, 115, 22, 0.18);
    background: var(--accent-soft);
}

.dtp-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.95;
}

.dtp-step-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.dtp-step--done .dtp-step-title {
    color: var(--text-4);
    text-decoration: line-through;
}

.dtp-step--done .dtp-step-dot {
    opacity: 0.45;
}

.dtp-step-h {
    font-size: 11.5px;
    color: var(--text-4);
    padding-left: 4px;
    flex-shrink: 0;
}

.dtp-step-more {
    padding-top: 4px;
    font-size: 12px;
    color: var(--text-4);
    font-style: italic;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Projects */

.dash-proj-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.dash-proj-row {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 14px 15px 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at right top, rgba(var(--proj-rgb, 249, 115, 22), 0.06) 0%, transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%),
        var(--surface-2);
    box-shadow: var(--shadow-xs);
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        border-color 0.14s ease,
        background 0.14s ease;
    min-width: 0;
}

.dash-proj-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(var(--proj-rgb, 249, 115, 22), 0.22);
}

.dash-proj-row::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--proj-color, var(--accent));
}

.dpr-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    min-width: 0;
}

.dpr-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--proj-color, var(--accent));
    box-shadow: 0 0 0 4px rgba(var(--proj-rgb, 79, 104, 232), 0.08);
}

.dpr-name {
    flex: 1;
    min-width: 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dpr-pct {
    font-size: 12px;
    font-weight: 800;
    color: var(--proj-color, var(--accent));
    flex-shrink: 0;
}

.dpr-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--surface-3);
    overflow: hidden;
    margin-bottom: 8px;
}

.dpr-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--proj-color, var(--accent));
    transition: width 0.3s ease;
}

.dpr-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11.5px;
    color: var(--text-4);
    min-width: 0;
}

.dpr-open-chip {
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--surface-3);
    color: var(--text-3);
    border: 1px solid var(--border-soft);
    flex-shrink: 0;
}

/* Notes */

.dash-notes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
}

.dash-note-card {
    position: relative;
    padding: 14px 15px;
    border-radius: var(--r-md);
    border: 1px solid rgba(212, 149, 46, 0.14);
    background:
        linear-gradient(180deg, var(--warning-soft) 0%, rgba(255, 255, 255, 0.01) 100%),
        var(--surface);
    cursor: pointer;
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        border-color 0.14s ease;
    min-width: 0;
}

.dash-note-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border-color: rgba(212, 149, 46, 0.22);
}

.dash-note-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 18px 0 0 18px;
    background: var(--warning);
}

.dash-note-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.dash-note-pin {
    font-size: 11px;
    opacity: 0.95;
    flex-shrink: 0;
}

.dash-note-preview {
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-3);
    white-space: pre-wrap;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Prompts */

.dash-prompt-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.dash-prompt-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    background: var(--surface-2);
    cursor: pointer;
    transition:
        transform 0.12s ease,
        border-color 0.12s ease,
        background 0.12s ease;
    min-width: 0;
}

.dash-prompt-row:hover {
    transform: translateX(2px);
    border-color: rgba(249, 115, 22, 0.18);
    background: var(--accent-soft);
}

.dash-prompt-index {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-2);
    background: var(--surface-3);
    flex-shrink: 0;
}

.dash-prompt-row-left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    min-width: 0;
}

.dash-prompt-cat {
    flex-shrink: 0;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(249, 115, 22, 0.18);
    color: var(--accent-strong);
}

.dash-prompt-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.dash-prompt-model {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--text-4);
    white-space: nowrap;
}

/* Forecast */

.forecast-scroll-wrap {
    min-width: 0;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(118px, 1fr));
    gap: 12px;
    padding-top: 14px;
    min-width: 0;
}

.forecast-grid > * {
    min-width: 0;
}

/* Day column */

.forecast-day {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.forecast-day-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-bottom: 2px;
}

.forecast-day-name {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--text-4);
}

.forecast-day.today .forecast-day-name {
    color: var(--accent-strong);
}

.forecast-day-num {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-2);
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
}

.forecast-day.today .forecast-day-num {
    background: var(--accent);
    color: #fff;
    border-color: rgba(249, 115, 22, 0.24);
    box-shadow: 0 5px 12px rgba(249, 115, 22, 0.18);
}

/* Standard card */

.forecast-card {
    position: relative;
    min-height: 148px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.00) 100%),
        var(--surface-2);
    overflow: hidden;
    padding: 12px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 6px 18px rgba(0, 0, 0, 0.09);
    transition:
        transform 0.14s ease,
        border-color 0.14s ease,
        box-shadow 0.14s ease,
        background 0.14s ease;
    min-width: 0;
}

.forecast-card:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 22px rgba(0, 0, 0, 0.12);
}

.forecast-day.today .forecast-card {
    border-color: rgba(249, 115, 22, 0.24);
    background:
        radial-gradient(circle at top center, rgba(249, 115, 22, 0.08) 0%, transparent 44%),
        var(--surface-2);
}

/* Active day */

.forecast-bar-wrap {
    position: relative;
    width: 100%;
    height: 92px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.forecast-bar-ghost {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 100%;
    border-radius: 12px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    z-index: 1;
}

.forecast-bar-fill {
    position: relative;
    z-index: 2;
    width: 34px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(251, 146, 60, 1) 0%, rgba(249, 115, 22, 1) 100%);
    transition: height 0.28s ease;
    box-shadow:
        0 6px 14px rgba(249, 115, 22, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.forecast-bar-fill.overload {
    background: linear-gradient(180deg, rgba(251, 113, 133, 1) 0%, rgba(224, 78, 100, 1) 100%);
    box-shadow:
        0 6px 14px rgba(224, 78, 100, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Blocked day */

.forecast-day.non-work .forecast-card {
    min-height: 92px;
    justify-content: center;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed var(--border);
    box-shadow: none;
}

.forecast-day.non-work .forecast-card:hover {
    transform: none;
    border-color: var(--border-strong);
    box-shadow: none;
}

.forecast-nonwork-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.forecast-blocked {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1;
    color: var(--text-4);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    opacity: 0.9;
}

.forecast-nonwork-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-4);
    text-align: center;
}

/* Labels */

.forecast-day-label {
    min-height: 16px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-3);
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.forecast-day-meta {
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-3);
    text-align: center;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Responsive */

@media (max-width: 1180px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dash-bottom-row {
        grid-template-columns: 1fr;
    }

    .dtp-layout {
        grid-template-columns: 1fr;
    }

    .dtp-visual {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dash-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-header {
        gap: 10px;
        flex-wrap: wrap;
    }

    .forecast-grid {
        grid-template-columns: repeat(7, minmax(106px, 1fr));
        gap: 10px;
    }
}

/* Hero KI Button */

.btn-ai-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(249, 115, 22, 0.34);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(251, 146, 60, 1) 0%, rgba(249, 115, 22, 1) 100%);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow:
        0 10px 24px rgba(249, 115, 22, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        filter 0.14s ease,
        border-color 0.14s ease;
    white-space: nowrap;
}

.btn-ai-hero:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(249, 115, 22, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.03);
}

.btn-ai-hero:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(249, 115, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-ai-hero:focus-visible {
    outline: 2px solid rgba(249, 115, 22, 0.92);
    outline-offset: 3px;
}

.btn-ai-hero::before {
    content: "AI";
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}