/* LOGO */
.logo-mark {
    width: 46px; height: 46px; display: grid; place-items: center; border-radius: 17px;
    color: #fff; font-weight: 950; font-size: 1.15rem;
    background: linear-gradient(135deg, rgba(255,255,255,.24), transparent), linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 38px rgba(108, 92, 231, .36);
}
.logo-text strong { font-weight: 950; letter-spacing: -.045em; font-size: 1.13rem; display: block; }
.logo-text small { color: var(--muted); font-size: .72rem; font-weight: 750; }

/* BUTTONS */
.btn {
    border-radius: 18px; padding: 14px 22px; min-height: 50px; font-weight: 900;
    display: inline-flex; align-items: center; justify-content: center; transition: .22s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, rgba(255,255,255,.22), transparent), linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; box-shadow: 0 22px 48px rgba(108, 92, 231, .36);
}
.btn-glass { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.btn-small { min-height: 41px; padding: 0 16px; border-radius: 999px; font-size: .93rem; }
.btn-large { min-height: 62px; padding-inline: 28px; font-size: 1rem; }

/* CARDS */
.showcase-card {
    border: 1px solid var(--border); border-radius: 42px; background: var(--surface);
    backdrop-filter: blur(32px) saturate(170%); padding: 20px; box-shadow: var(--shadow);
    transform: rotate(2deg); position: relative; overflow: hidden;
}

.showcase-topbar { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 4px 14px; }
.window-dots { display: flex; gap: 8px; }
.window-dots span { width: 10px; height: 10px; border-radius: 999px; }
.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #28c840; }
.showcase-label { color: var(--muted); font-size: .84rem; font-weight: 850; }

.showcase-cover {
    height: 305px; border-radius: 30px; position: relative; overflow: hidden;
    background: radial-gradient(circle at 24% 22%, rgba(0, 209, 255, .95), transparent 24%),
                radial-gradient(circle at 74% 28%, rgba(108, 92, 231, .95), transparent 29%),
                linear-gradient(135deg, #0f172a, #1e293b);
}
.cover-panel { position: absolute; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.10); backdrop-filter: blur(18px); border-radius: 22px; }
.cover-panel-one { left: 30px; top: 36px; width: 58%; height: 60px; }
.cover-panel-two { left: 30px; bottom: 34px; width: 42%; height: 120px; }
.cover-panel-three { right: 30px; bottom: 34px; width: 38%; height: 172px; }

.showcase-body { padding: 24px 6px 6px; }
.project-meta { display: flex; gap: 8px; margin-bottom: 15px; }
.pill { padding: 7px 12px; border-radius: 999px; background: rgba(108, 92, 231, .15); color: var(--primary-2); font-size: .84rem; font-weight: 900; }
.pill.accent { background: rgba(0, 209, 255, .15); color: var(--accent); }

.showcase-body h3 { margin: 0; font-size: 1.72rem; letter-spacing: -.035em; line-height: 1.18; }
.showcase-body p { margin: 14px 0 0; color: var(--muted); line-height: 1.75; }

.creator-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { 
    width: 46px; height: 46px; border-radius: 17px; display: grid; place-items: center; color: #fff; font-weight: 950;
    background: linear-gradient(135deg, rgba(255,255,255,.22), transparent), linear-gradient(135deg, var(--primary), var(--accent));
}

.feature-card, .workflow-card {
    border: 1px solid var(--border); background: var(--surface); border-radius: 30px; padding: 32px; transition: .24s ease;
}
.feature-card:hover, .workflow-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-box {
    width: 50px; height: 50px; border-radius: 18px; display: grid; place-items: center; color: #fff; font-weight: 950;
    background: linear-gradient(135deg, var(--primary), var(--accent)); margin-bottom: 23px;
}

/* THEME TOGGLE */
.theme-btn {
    width: 41px; height: 41px; padding: 0; border-radius: 999px; color: var(--text); border: 1px solid var(--border);
    background: rgba(255,255,255,.055); display: inline-flex; align-items: center; justify-content: center;
}

/* CUSTOM SELECT */
.custom-select {
    position: relative;
    display: inline-flex;
}

.custom-select-trigger {
    min-height: 41px; padding: 0 12px 0 15px; border-radius: 999px; border: 1px solid var(--border);
    background: rgba(255,255,255,.055); color: var(--text); display: inline-flex; align-items: center; gap: 8px;
    font-weight: 850; transition: .22s ease;
}

.custom-select-trigger:hover {
    background: rgba(255,255,255,.085);
    transform: translateY(-1px);
}

.custom-select-trigger svg {
    width: 18px; height: 18px; fill: none; stroke: currentColor;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
    transition: .22s ease; opacity: .75;
}

.custom-select.is-open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute; top: calc(100% + 6px); left: 50%; min-width: 190px; padding: 8px;
    border: 1px solid var(--border); border-radius: 22px; background: var(--surface-strong);
    opacity: 0; visibility: hidden; z-index: 100;
    box-shadow: var(--shadow-soft); backdrop-filter: blur(26px);
    transform: translateX(-50%) translateY(-6px) scale(.98);
    transform-origin: top center;
    transition: .18s ease;
}

/* NOTIFICATIONS - Kompakt & Schwebend */
.notify-container {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notify {
    width: fit-content;
    min-width: 260px;
    max-width: 380px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--surface-strong);
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow);
    pointer-events: auto;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: notifySlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notify-icon { width: 20px; height: 20px; flex-shrink: 0; }
.notify.success { border-left: 4px solid var(--success); }
.notify.error { border-left: 4px solid var(--danger); }
.notify.success .notify-icon { color: var(--success); }
.notify.error .notify-icon { color: var(--danger); }

@keyframes notifySlideIn {
    from { opacity: 0; transform: translateX(30px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
.custom-select.is-open .custom-select-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(-50%) translateY(0) scale(1);
}

.custom-select-menu button {
    width: 100%; min-height: 46px; padding: 10px 12px; border-radius: 15px;
    background: transparent; color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; transition: .18s ease; text-align: left;
}

.custom-select-menu button:hover {
    background: rgba(108, 92, 231, .10);
}

.custom-select-menu button.is-active {
    background: linear-gradient(135deg, rgba(108, 92, 231, .18), rgba(0, 209, 255, .12));
}

.custom-select-menu button span { font-weight: 850; }
.custom-select-menu button small { color: var(--muted); font-weight: 900; font-size: .76rem; }