:root {
    --bg: #090909;
    --panel: #111;
    --text: #f3f3f3;
    --muted: #b5b5b5;
    --accent: #e2b24a;
    --line: #2a2a2a;
    /* Kart / panel / modal gövdeleri — bento ile aynı */
    --radius-panel: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(circle at top, #1b1b1b, var(--bg));
    color: var(--text);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

html.modal-open,
html.modal-open body,
html.nav-open,
html.nav-open body {
    overflow: hidden;
}

/* Toasts */
.toast-root {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: min(420px, calc(100vw - 2rem));
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    display: grid;
    grid-template-columns: 14px 1fr 28px;
    gap: 0.75rem;
    align-items: start;
    padding: 0.95rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(12, 12, 12, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.toast-in {
    transform: translateY(0);
    opacity: 1;
}

.toast-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 0.3rem;
    background: rgba(226, 178, 74, 0.8);
    box-shadow: 0 0 16px rgba(226, 178, 74, 0.25);
}

.toast-message {
    color: #f0f0f0;
    line-height: 1.45;
}

.toast-close {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f2f2f2;
    cursor: pointer;
    padding: 0;
}

.toast-success .toast-dot {
    background: rgba(32, 240, 192, 0.9);
    box-shadow: 0 0 16px rgba(32, 240, 192, 0.25);
}

.toast-error .toast-dot {
    background: rgba(255, 108, 60, 0.9);
    box-shadow: 0 0 16px rgba(255, 108, 60, 0.25);
}

.toast-info .toast-dot {
    background: rgba(93, 197, 255, 0.9);
    box-shadow: 0 0 16px rgba(93, 197, 255, 0.25);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    display: block !important;
    /* Ensure it's not a flex container itself, but a wrapper */
    padding: 0 !important;
}

.site-header.is-scrolled {
    background: rgba(9, 9, 9, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
}

.site-header a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.site-header a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.brand {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 1.15rem;
    color: #fff !important;
    background: none !important;
    z-index: 1001;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Primary CTA in site header (same gradient as former hero button, compact for topbar) */
.site-header .header-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.75rem;
    border-radius: 8px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(90deg, #9d0f09, #de321a);
    color: #fdf4e5 !important;
    border: 1px solid #ff5236;
    box-shadow: 0 0 16px rgba(222, 50, 26, 0.22);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .header-nav-cta:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #b0120a, #e8381f);
    border-color: #ff6a48;
    box-shadow: 0 0 22px rgba(222, 50, 26, 0.35);
}

.mobile-nav-toggle {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    padding: 0 !important;
    cursor: pointer;
    z-index: 4000;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    color: #fff !important;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(226, 178, 74, 0.4) !important;
    color: var(--accent) !important;
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: flex !important;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-username {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.logout-form {
    margin: 0;
}

.link-button {
    background: none;
    border: none;
    color: var(--text);
    padding: 0;
    margin: 0;
    width: auto;
    font: inherit;
    cursor: pointer;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6.5rem 2rem 2rem;
}

.hero {
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    color: var(--muted);
    max-width: 700px;
}

.cta {
    display: inline-block;
    margin-top: 1.2rem;
    background: var(--accent);
    color: #111;
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.card,
.section-block {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1rem;
}

input,
select,
textarea,
button {
    width: 100%;
    margin: 0.4rem 0 1rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-radius: 10px;
    font-size: 0.94rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(226, 178, 74, 0.35);
    box-shadow: 0 0 0 4px rgba(226, 178, 74, 0.08);
}

button {
    cursor: pointer;
    background: var(--accent);
    color: #111;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(226, 178, 74, 0.2);
}

button:hover {
    transform: translateY(-1px);
    background: #f0c265;
    box-shadow: 0 6px 16px rgba(226, 178, 74, 0.25);
}

button:active {
    transform: translateY(0);
}


.accent {
    color: var(--accent);
    font-weight: 700;
}

.messages p {
    background: rgba(30, 41, 24, 0.85);
    border: 1px solid rgba(49, 94, 36, 0.4);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

/* Auth Pages */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 8rem);
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.auth-card h1 {
    font-family: "Outfit", sans-serif;
    font-size: 2.15rem;
    font-weight: 900;
    margin: 0 0 0.4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.auth-card .subtitle {
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 2.2rem;
    font-size: 0.92rem;
    line-height: 1.5;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    transform: none !important;
    letter-spacing: 0;
    box-sizing: border-box;
}

.auth-form p {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.55rem;
    margin-left: 0.25rem;
}

.auth-form input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    transition: all 0.2s ease;
    font-size: 0.94rem;
    margin: 0;
}

.auth-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 178, 74, 0.4);
    box-shadow: 0 0 0 4px rgba(226, 178, 74, 0.1);
}

.auth-footer {
    margin-top: 1.8rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.auth-footer a {
    color: #f0c887;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.request-item {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.request-item:last-child {
    border-bottom: none;
}

.dashboard-main {
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 0 0;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: calc(100vh - 6.5rem);
}

.dashboard-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(1200px 500px at 10% 0%, rgba(226, 178, 74, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.94), rgba(13, 13, 13, 0.96));
}

.dashboard-sidebar-inner {
    position: sticky;
    padding: 1.6rem 1.2rem;
}

.dashboard-sidebar-label {
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.66rem;
    margin: 0 0 1rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.dashboard-nav-group {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 12px;
    padding: 0.35rem;
    transition: all 0.2s ease;
}

.dashboard-nav-group:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-nav-group+.dashboard-nav-group {
    margin-top: 0.55rem;
}

.dashboard-nav-group-title {
    list-style: none;
    cursor: pointer;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    user-select: none;
}

.dashboard-nav-group-title::-webkit-details-marker {
    display: none;
}

.dashboard-nav-group[open] .dashboard-nav-group-title {
    color: #f0c887;
    background: rgba(226, 178, 74, 0.06);
}

.dashboard-nav-group-items {
    padding: 0.35rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.studio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.studio-project-card {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.studio-project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(226, 178, 74, 0.18);
}

.studio-project-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.studio-project-title {
    font-weight: 900;
    font-size: 1.05rem;
}

.studio-project-stage {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

.studio-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.82rem;
}

.studio-project-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

@media (max-width: 1100px) {
    .studio-projects-grid {
        grid-template-columns: 1fr;
    }

    .studio-project-footer {
        flex-direction: column;
    }
}

.dashboard-sidebar h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.08;
    font-family: Georgia, "Times New Roman", serif;
}

.dashboard-sidebar-copy {
    color: #adadad;
    margin: 0.85rem 0 1.4rem;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.dashboard-nav-link,
.dashboard-nav-empty {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-nav-link strong,
.dashboard-nav-empty strong {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 600;
    font-size: 0.88rem;
}

.dashboard-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-nav-link:hover strong {
    color: #fff;
}

.dashboard-nav-link.is-active {
    background: linear-gradient(135deg, rgba(226, 178, 74, 0.12), rgba(226, 178, 74, 0.04));
    border-color: rgba(226, 178, 74, 0.2);
}

.dashboard-nav-link.is-active strong {
    color: #f0c887;
    font-weight: 800;
}

.dashboard-nav-link.is-active::before {
    content: "";
    position: absolute;
    left: -0.35rem;
    /* pull slightly out */
    top: 0.6rem;
    bottom: 0.6rem;
    width: 4px;
    border-radius: 999px;
    background: #e2b24a;
    box-shadow: 0 0 14px rgba(226, 178, 74, 0.4);
}

.dashboard-role-box {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-role-box p {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0.8rem;
}

.dashboard-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.dashboard-role-chip {
    display: inline-flex;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

.dashboard-content {
    padding: 2.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.3));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

/* Premium admin dashboard */
.studio-admin {
    color: rgba(255, 255, 255, 0.92);
}

.studio-admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.studio-admin-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.studio-admin-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
    letter-spacing: 0.02em;
}

.studio-admin-time {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
}

.studio-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.studio-kpi {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-panel);
    padding: 0.9rem 0.95rem;
}

.studio-kpi-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.studio-kpi-value {
    margin-top: 0.4rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.studio-admin-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 1.1rem;
    align-items: start;
}

.studio-admin-main {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.studio-admin-side {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.studio-panel {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(10, 10, 10, 0.65);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.studio-panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.studio-panel-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.studio-panel-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
}

.studio-dot {
    --dot: #e2b24a;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--dot);
    box-shadow: 0 0 18px color-mix(in oklab, var(--dot) 32%, transparent);
}

.studio-sep {
    opacity: 0.55;
}

/* Projects hub: editör KPI + notlar yan sütun */
.projects-hub-editor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 960px) {
    .projects-hub-editor-layout {
        grid-template-columns: 1fr;
    }
}

/* Eski editör paneli stilleri (başka şablonlarda kullanılıyorsa) */
.studio-editor-dashboard .studio-admin-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.72rem;
    letter-spacing: -0.03em;
}

.studio-editor-kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-editor-dashboard .studio-kpi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5.5rem;
}

.studio-editor-dashboard .studio-kpi-value {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.studio-editor-panel-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.studio-editor-panel-header .studio-panel-title {
    font-size: 0.88rem;
    letter-spacing: 0.07em;
}

.studio-editor-panel-desc {
    margin: 0;
    max-width: 42ch;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.48);
}

.studio-editor-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.studio-editor-project-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 1.05rem;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.studio-editor-project-card:hover {
    border-color: rgba(226, 178, 74, 0.25);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-1px);
}

.studio-editor-project-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}

.studio-editor-project-name {
    font-weight: 800;
    font-size: 0.94rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
}

.studio-editor-invite-badge {
    flex-shrink: 0;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.3);
    padding: 0.22rem 0.5rem;
    border-radius: 6px;
}

.studio-editor-project-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.52);
}

.studio-editor-project-due {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.1rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
}

.studio-editor-due-label {
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.6rem;
    font-weight: 800;
}

.studio-editor-due-value {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.studio-editor-empty-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1.25rem;
    border-radius: var(--radius-panel);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    line-height: 1.5;
}

.studio-editor-notes-panel .studio-editor-notes {
    max-height: min(420px, 55vh);
}

.studio-editor-notes-empty {
    padding: 2.25rem 1rem;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.84rem;
}

.studio-editor-note {
    padding: 0.85rem 0.9rem;
}

/* Kanban */
.studio-kanban {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.studio-kanban-col {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-panel);
    padding: 0.75rem;
    min-height: 260px;
}

.studio-kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.studio-kanban-col-title {
    font-weight: 900;
    font-size: 0.85rem;
}

.studio-kanban-col-count {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.studio-kanban-dropzone {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 180px;
}

.studio-kanban-dropzone.is-over {
    outline: 2px solid rgba(93, 197, 255, 0.35);
    outline-offset: 6px;
}

.studio-kanban-card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    cursor: grab;
}

.studio-kanban-card.is-dragging {
    opacity: 0.55;
}

.studio-kanban-card:active {
    cursor: grabbing;
}

.studio-kanban-card-title {
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.studio-kanban-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.78rem;
}

.studio-kanban-empty,
.studio-kanban-empty-wide {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    padding: 0.65rem 0.15rem;
}

/* Notes */
.studio-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 320px;
    overflow: auto;
    padding-right: 0.2rem;
}

.studio-note {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-panel);
    padding: 0.75rem;
}

.studio-note-head {
    display: flex;
    gap: 0.6rem;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.studio-note-author {
    font-weight: 900;
    font-size: 0.85rem;
}

.studio-note-tag {
    font-size: 0.72rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
}

.studio-note-body {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.4;
}

.studio-note-time {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.74rem;
}

.studio-note-form input,
.studio-note-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.65rem 0.75rem;
    font: inherit;
}

.studio-form-row {
    margin-bottom: 0.65rem;
}

.studio-btn {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.studio-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* Beta chart */
.studio-beta-chart {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-panel);
    overflow: hidden;
    padding-top: 2.6rem;
    height: 260px;
}

.studio-beta-legend {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.studio-pill {
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.studio-pill.blue {
    background: #2d93ff;
}

.studio-pill.orange {
    background: #f05e2d;
}

.studio-pill.yellow {
    background: #f0a72d;
}

.studio-beta-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Calendar */
.studio-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.studio-calendar-wd {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 0.2rem 0;
}

.studio-calendar-day {
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
}

.studio-calendar-day.is-empty {
    opacity: 0;
}

.studio-calendar-day.is-today {
    border-color: rgba(226, 178, 74, 0.55);
}

.studio-calendar-day.has-due {
    box-shadow: inset 0 0 0 1px rgba(93, 197, 255, 0.35);
}

.studio-upcoming {
    margin-top: 0.85rem;
}

.studio-subtitle {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.studio-upcoming-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-upcoming-title {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.studio-upcoming-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

/* Mini grid */
.studio-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.studio-mini-card {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-panel);
    padding: 0.75rem;
}

.studio-mini-title {
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.studio-mini-meta {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

@media (max-width: 1100px) {
    .studio-kpi-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-admin-grid {
        grid-template-columns: 1fr;
    }

    .studio-kanban {
        grid-template-columns: repeat(5, minmax(240px, 1fr));
    }

    .studio-mini-grid {
        grid-template-columns: 1fr;
    }

    .studio-editor-project-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-section {
    margin-bottom: 1.2rem;
    padding: 1.4rem;
    border-radius: 12px;
}

.dashboard-section h2 {
    margin-top: 0;
}

/* Admin panel /dashboard (professional layout) */
.dashboard-page-header {
    margin-bottom: 1.2rem;
}

.dashboard-page-label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    margin-bottom: 0.55rem;
}

.dashboard-page-title {
    font-family: "Outfit", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.dashboard-toolbar {
    display: flex;
    justify-content: flex-end;
    margin: 0.4rem 0 1.1rem;
}

.dashboard-primary-button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.78rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 178, 74, 0.34);
    background: linear-gradient(135deg, rgba(226, 178, 74, 0.18), rgba(226, 178, 74, 0.04));
    color: #f0c887;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(226, 178, 74, 0.08);
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.dashboard-primary-button:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(226, 178, 74, 0.52);
    background: linear-gradient(135deg, rgba(226, 178, 74, 0.24), rgba(226, 178, 74, 0.08));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35), 0 8px 18px rgba(226, 178, 74, 0.15);
}

.dashboard-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dashboard-kpi {
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.dashboard-kpi:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.dashboard-kpi::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.kpi-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.kpi-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.kpi-title {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.kpi-value {
    display: block;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0.25rem 0;
    position: relative;
    z-index: 1;
}

.kpi-sub {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.kpi-author .kpi-icon {
    color: #4dd0ff;
    background: rgba(77, 208, 255, 0.12);
}

.kpi-editor .kpi-icon {
    color: #55e1d2;
    background: rgba(85, 225, 210, 0.12);
}

.kpi-beta .kpi-icon {
    color: #9f6bff;
    background: rgba(159, 107, 255, 0.12);
}

.kpi-admin .kpi-icon {
    color: #f5b64f;
    background: rgba(245, 182, 79, 0.12);
}

.kpi-author::before {
    background: radial-gradient(circle at 100% 0%, rgba(77, 208, 255, 0.15), transparent 60%);
    content: "";
    position: absolute;
    inset: 0;
}

.kpi-editor::before {
    background: radial-gradient(circle at 100% 0%, rgba(85, 225, 210, 0.15), transparent 60%);
    content: "";
    position: absolute;
    inset: 0;
}

.kpi-beta::before {
    background: radial-gradient(circle at 100% 0%, rgba(159, 107, 255, 0.15), transparent 60%);
    content: "";
    position: absolute;
    inset: 0;
}

.kpi-admin::before {
    background: radial-gradient(circle at 100% 0%, rgba(245, 182, 79, 0.15), transparent 60%);
    content: "";
    position: absolute;
    inset: 0;
}

.dashboard-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dashboard-panel {
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 15, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.dashboard-panel-wide {
    grid-column: 1 / -1;
}

/* Modal */
.dashboard-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.dashboard-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.dashboard-modal-card {
    position: relative;
    width: min(820px, calc(100vw - 2rem));
    margin: 6.5rem auto 0;
    border-radius: var(--radius-panel);
    background: rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    max-height: calc(100vh - 8rem);
    display: flex;
    flex-direction: column;
}

.dashboard-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-modal-close {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f2f2f2;
    border-radius: 12px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    font-weight: 900;
}

.dashboard-modal-form {
    padding: 1.2rem;
    overflow: auto;
}

.dashboard-modal-form input,
.dashboard-modal-form select,
.dashboard-modal-form textarea,
.dashboard-modal-form button {
    width: 100%;
}

.panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.panel-header h3 {
    margin: 0;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.panel-badge {
    color: #9d9d9d;
    font-size: 0.74rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dashboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-panel);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.22s ease;
}

.dashboard-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.item-main {
    min-width: 0;
    flex: 1;
}

.item-title {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-meta {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-link {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
    background: linear-gradient(135deg, #e2b24a, #f0c887);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: none;
    box-shadow: 0 8px 20px rgba(226, 178, 74, 0.2);
    transition: all 0.2s ease;
}

.item-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(226, 178, 74, 0.3);
}

.dashboard-empty {
    margin: 0;
    color: #a9a9a9;
    line-height: 1.6;
}

.dashboard-stage-breakdown {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-stage-breakdown li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
}

.stage-name {
    color: #d9d9d9;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stage-count {
    color: #f0c887;
    font-weight: 800;
}

/* Role requests page */
.role-requests-layout {
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
}

.role-status-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
}

.role-status-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.9rem 0.95rem;
    position: relative;
    overflow: hidden;
}

.role-status-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 0%, rgba(226, 178, 74, 0.25), transparent 55%);
    pointer-events: none;
}

.role-status-title {
    display: block;
    color: #bcbcbc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.role-status-value {
    display: block;
    margin-top: 0.55rem;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 2rem;
    color: #f0c887;
}

.role-status-note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.66rem;
    color: var(--text-muted);
}

.status-pending .role-status-value {
    color: #5dc5ff;
}

.status-approved .role-status-value {
    color: #20f0c0;
}

.status-rejected .role-status-value {
    color: #ff6c3c;
}

.role-requests-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.role-requests-block {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1rem;
}

.role-block-title {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}

.role-request-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.85rem;
    border-radius: var(--radius-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
    margin-bottom: 0.65rem;
}

.role-requests-admin-page .role-pending-panel {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.role-requests-admin-page .role-summary-panel-plain {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.role-requests-admin-page .role-list-panel-plain {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.role-requests-admin-page .role-request-row {
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.role-requests-admin-page .role-request-actions {
    width: 320px;
    min-width: 260px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-self: center;
}

.role-requests-admin-page .role-action-form {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 0.6rem;
    display: grid;
    gap: 0.45rem;
}

.role-requests-admin-page .role-action-form input[type="text"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.76rem;
    padding: 0.5rem 0.65rem;
}

.role-requests-admin-page .role-action-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.role-requests-admin-page .role-action-btn {
    width: 100% !important;
    justify-content: center;
}

.role-requests-admin-page .role-action-btn--approve {
    background: #20f0c0 !important;
    border-color: rgba(32, 240, 192, 0.45) !important;
}

.role-requests-admin-page .role-action-btn--reject {
    background: rgba(255, 69, 69, 0.15) !important;
    border-color: rgba(255, 69, 69, 0.35) !important;
    color: #ff9b9b !important;
    box-shadow: none !important;
}

.role-requests-admin-page .role-request-row--history {
    align-items: center;
}

.role-requests-admin-page .role-requests-table-block {
    margin-top: 0.85rem;
}

.role-requests-admin-page .role-requests-flat-table {
    min-width: 880px;
}

.role-requests-admin-page .role-requests-flat-table th,
.role-requests-admin-page .role-requests-flat-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.role-requests-admin-page .role-requests-table-empty {
    text-align: center !important;
    color: var(--text-muted);
    padding: 1.3rem !important;
}

.role-requests-admin-page .role-requests-table-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 210px;
}

.role-requests-admin-page .role-requests-table-actions .role-action-btn {
    width: auto !important;
    min-width: 92px;
    padding: 0.4rem 0.65rem !important;
    font-size: 0.62rem !important;
}

.role-requests-admin-page .role-summary-table td {
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}

.role-request-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.role-request-role {
    color: #f2f2f2;
    font-weight: 800;
}

.role-request-meta {
    color: #9b9b9b;
    font-size: 0.82rem;
}

.role-request-note {
    color: #d6d6d6;
    line-height: 1.45;
    font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.status-badge {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.status-pending-badge {
    color: #7bdcff;
    border-color: rgba(93, 197, 255, 0.35);
}

.status-approved-badge {
    color: #25f0c0;
    border-color: rgba(32, 240, 192, 0.35);
}

.status-rejected-badge {
    color: #ff8b6d;
    border-color: rgba(255, 108, 60, 0.35);
}

/* --- Role requests user page (Rollerim & Talepler) --- */
.role-requests-page .role-requests-intro-text {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.4;
}

.role-requests-page .role-requests-role-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.role-requests-page .role-requests-role-card {
    background: rgba(226, 178, 74, 0.05);
    border: 1px solid rgba(226, 178, 74, 0.1);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.role-requests-page .role-requests-role-card:hover {
    border-color: rgba(226, 178, 74, 0.22);
    background: rgba(226, 178, 74, 0.08);
    transform: translateY(-1px);
}

.role-requests-page .role-requests-role-card.role--editor {
    background: rgba(93, 197, 255, 0.05);
    border-color: rgba(93, 197, 255, 0.1);
}

.role-requests-page .role-requests-role-card.role--editor:hover {
    border-color: rgba(93, 197, 255, 0.22);
    background: rgba(93, 197, 255, 0.08);
}

.role-requests-page .role-requests-role-card.role--beta {
    background: rgba(32, 240, 192, 0.05);
    border-color: rgba(32, 240, 192, 0.1);
}

.role-requests-page .role-requests-role-card.role--beta:hover {
    border-color: rgba(32, 240, 192, 0.22);
    background: rgba(32, 240, 192, 0.08);
}

.role-requests-page .role-requests-role-card.role--other {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.role-requests-page .role-requests-role-card.role--other:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.role-requests-page .role-requests-role-icon {
    width: 40px;
    height: 40px;
    background: rgba(226, 178, 74, 0.1);
    color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.role-requests-page .role-requests-role-card.role--editor .role-requests-role-icon {
    background: rgba(93, 197, 255, 0.1);
    color: #5dc5ff;
}

.role-requests-page .role-requests-role-card.role--beta .role-requests-role-icon {
    background: rgba(32, 240, 192, 0.1);
    color: #20f0c0;
}

.role-requests-page .role-requests-role-card.role--other .role-requests-role-icon {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.role-requests-page .role-requests-role-name {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.role-requests-page .role-requests-role-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.role-requests-page .role-requests-empty-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.role-requests-page .role-requests-empty-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.role-requests-page .field-error {
    color: #ff4545;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.role-requests-page .role-request-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.role-requests-page .role-request-form-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-requests-page .role-request-form-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-requests-page .role-requests-info-card {
    background: rgba(226, 178, 74, 0.03);
    border: 1px solid rgba(226, 178, 74, 0.08);
    padding: 1.25rem;
    border-radius: 12px;
}

.role-requests-page .role-requests-info-card h4 {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin: 0 0 0.5rem 0;
}

.role-requests-page .role-requests-info-card p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.role-requests-page .role-requests-submit-btn {
    width: 100% !important;
    justify-content: center;
    margin-top: 0.2rem;
}

.role-requests-page .dashboard-modal-form textarea {
    min-height: 120px;
    resize: none;
}

.role-requests-page .role-requests-summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.role-requests-page .role-requests-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.role-requests-page .role-requests-summary-kpi {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.role-requests-page .role-requests-summary-kpi.kpi-pending {
    background: rgba(93, 197, 255, 0.05);
    border-color: rgba(93, 197, 255, 0.1);
}

.role-requests-page .role-requests-summary-kpi.kpi-approved {
    background: rgba(32, 240, 192, 0.05);
    border-color: rgba(32, 240, 192, 0.1);
}

.role-requests-page .role-requests-summary-kpi-title {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.role-requests-page .role-requests-summary-kpi.kpi-pending .role-requests-summary-kpi-title {
    color: #5dc5ff;
}

.role-requests-page .role-requests-summary-kpi.kpi-approved .role-requests-summary-kpi-title {
    color: #20f0c0;
}

.role-requests-page .role-requests-summary-kpi-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.role-requests-page .role-requests-history-table {
    overflow-x: auto;
}

.role-requests-page .role-requests-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.role-requests-page .role-requests-request-card {
    border-radius: 12px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.role-requests-page .role-requests-request-card.role-requests-request--pending {
    border-color: rgba(93, 197, 255, 0.22);
    background: rgba(93, 197, 255, 0.05);
}

.role-requests-page .role-requests-request-card.role-requests-request--approved {
    border-color: rgba(32, 240, 192, 0.22);
    background: rgba(32, 240, 192, 0.05);
}

.role-requests-page .role-requests-request-card.role-requests-request--rejected {
    border-color: rgba(255, 108, 60, 0.22);
    background: rgba(255, 108, 60, 0.05);
}

.role-requests-page .role-requests-request-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.role-requests-page .role-requests-request-role {
    font-weight: 900;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.role-requests-page .role-requests-request-date {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}

.role-requests-page .role-requests-request-text {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.role-requests-page .role-requests-request-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.role-requests-page .role-requests-request-motivation {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.role-requests-page .role-requests-request-note {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.role-requests-page .role-requests-legend {
    margin: 0 0 1rem 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    align-items: center;
}

.role-requests-page .role-requests-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.role-requests-page .role-requests-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.role-requests-page .role-requests-legend-dot.dot-pending {
    background: rgba(93, 197, 255, 0.9);
}

.role-requests-page .role-requests-legend-dot.dot-approved {
    background: rgba(32, 240, 192, 0.9);
}

.role-requests-page .role-requests-legend-dot.dot-rejected {
    background: rgba(255, 108, 60, 0.9);
}

.role-requests-page .role-requests-history-role {
    font-weight: 800;
    color: #fff;
}

.role-requests-page .role-requests-history-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-block;
}

.role-requests-page .role-requests-history-motivation {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.role-requests-page .role-requests-history-details {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.role-requests-page .role-requests-reviewer {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.role-requests-page .role-requests-admin-note {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.role-requests-page .role-requests-empty-history {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
    font-size: 0.8rem;
    margin: 0;
}

.role-requests-page .data-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 900px) {
    .role-requests-layout {
        grid-template-columns: 1fr;
    }

    .role-requests-admin-page .role-pending-panel {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .role-requests-admin-page .role-request-row {
        flex-direction: column;
    }

    .role-requests-admin-page .role-request-actions {
        width: 100%;
        min-width: 0;
    }

    .role-status-cards {
        grid-template-columns: 1fr;
    }

    .role-requests-page .role-request-form-grid {
        grid-template-columns: 1fr;
    }
}

.home-main {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.home-page {
    background: #070707;
    color: #ececec;
}

.home-inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 5rem clamp(1.2rem, 3vw, 2.6rem);
    position: relative;
    z-index: 2;
}

.beta-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.beta-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 1024px) {
    .home-hero {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        /* Mobilde tamamen görselin oranını (aspect-ratio) takip etsin */
        height: auto;
        padding: 4rem 0 0 0;
    }
}

/* NEW: Locked Visual Context for Sync Scaling */
.hero-visual-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-context {
    position: relative;
    width: 100%;
    /* Locked to original 1200x610 ratio */
    aspect-ratio: 1200 / 610;
    display: block;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Konteynırla tam eşleşme için */
    display: block;
    filter: brightness(0.5) contrast(1.1);
}

/* TV VIDEO OVERLAY STYLES - NOW LOCKED TO CONTEXT */
.hero-tv-container {
    position: absolute;
    left: 7.7%;
    top: 26.5%;
    width: 19.6%;
    height: 30.6%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    z-index: 5;
    pointer-events: none;
}

.hero-tv-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    /* CRT Sadece Sol Kenar Bombesi: %2 Yay Etkisi ve Hassas Köşeler */
    border-radius: 2% 0 0 2% / 50% 0 0 50%;
    overflow: hidden;
    /* Perspektif ve Bombe düzeltmesi */
    transform: rotateY(38deg) rotateX(-2.5deg) rotateZ(-2.5deg) skewY(3.5deg) scale(1.05);
    /* Derin tüp vinyeti ve gölge katmanları */
    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 1),
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(226, 178, 74, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.tv-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cam üzerindeki parlamayı simüle eden çapraz gradient */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0) 55%,
            rgba(255, 255, 255, 0.03) 100%);
    z-index: 4;
    pointer-events: none;
}

.tv-video-source {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.2) sepia(0.3) saturate(1.1) blur(0.4px);
    opacity: 0.8;
}

.tv-glow {
    position: absolute;
    inset: 0;
    /* Kenar vinyeti */
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.tv-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.2) 50%);
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.tv-scanlines::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04));
    background-size: 3px 100%;
    pointer-events: none;
}



.home-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 65, 37, 0.12), transparent 46%);
    opacity: 0.7;
}


.eyebrow {
    color: #c68f52;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 24px;
    margin-bottom: 0.9rem;
}

.home-hero h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 0.98;
    margin: 0.2rem 0 0.8rem;
    max-width: 620px;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.subtitle {
    max-width: 460px;
    color: #c9c9c9;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
}

.home-cta {
    background: linear-gradient(90deg, #9d0f09, #de321a);
    color: #fdf4e5;
    border: 1px solid #ff5236;
    box-shadow: 0 0 20px rgba(222, 50, 26, 0.25);
}

.method-band,
.editor-band,
.final-cta {
    background: #0b0b0b;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
    background-size: cover;
    background-position: center;
}

.method-band h2,
.genre-band h2,
.editor-band h2,
.beta-band h2,
.final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0;
    font-size: clamp(1.95rem, 3vw, 2.9rem);
    line-height: 1.12;
    text-align: center;
}

.method-band .eyebrow,
.genre-band .eyebrow,
.editor-band .eyebrow,
.beta-band .eyebrow,
.final-cta .eyebrow {
    text-align: center;
}

.method-band,
.genre-band,
.editor-band,
.beta-band,
.final-cta {
    min-height: 400px;
    align-items: center;
}

.section-kicker {
    margin: -0.2rem auto 0;
    max-width: 720px;
    text-align: center;
    color: #9f9f9f;
    font-size: 0.95rem;
}

.section-kicker.dark {
    color: #5e5e5e;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.process-step {
    position: relative;
    text-align: center;
    color: #eaeaea;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    height: 2px;
    background: linear-gradient(90deg, currentColor, rgba(255, 255, 255, 0.1));
    opacity: 0.45;
}

.process-step:last-child::before {
    display: none;
}

.process-orb {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    border: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.18));
    box-shadow: 0 0 24px currentColor;
}

.process-step strong,
.process-step small {
    display: block;
}

.process-step strong {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.process-step small {
    margin-top: 0.22rem;
    color: #a1a1a1;
    font-size: 0.7rem;
}

.process-step.cyan {
    color: #4bcfff;
}

.process-step.teal {
    color: #55e1d2;
}

.process-step.violet {
    color: #9f6bff;
}

.process-step.orange {
    color: #ff7035;
}

.process-step.gold {
    color: #f5b64f;
}

.process-step.amber {
    color: #f8cc6f;
}

.method-band {
    background-image: none;
    min-height: 360px;
}

.method-band .home-inner {
    padding-top: clamp(6.2rem, 8vw, 8rem);
    padding-bottom: clamp(5.2rem, 6vw, 6.6rem);
}

.signature-method {
    position: relative;
    isolation: isolate;
}

.signature-method .eyebrow {
    margin-bottom: 1.15rem;
}

.signature-method h2 {
    margin: 0;
}

.signature-method .section-kicker {
    margin-top: 0.85rem;
    max-width: 760px;
}

.signature-method::before {
    content: "";
    position: absolute;
    inset: -2rem -2rem auto;
    height: 280px;
    pointer-events: none;
    z-index: -1;
}

.signature-method__timeline {
    position: relative;
    margin-top: 3.4rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.signature-method__timeline::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
    opacity: 0.8;
}

.signature-step {
    position: relative;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #ecebe7;
    text-align: center;
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: transform 0.28s ease;
}

.signature-step:hover {
    transform: translateY(-2px);
}

.signature-step:focus-visible {
    outline: 2px solid var(--step-accent);
    outline-offset: 7px;
    border-radius: 18px;
}

.signature-step__orb {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--step-accent), #ffffff 24%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.26rem;
    margin-bottom: 0.85rem;
    color: color-mix(in oklab, var(--step-accent), #ffffff 8%);
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.16), rgba(8, 8, 8, 0.7) 75%),
        rgba(9, 9, 9, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 0 0 rgba(255, 255, 255, 0),
        0 0 22px rgba(0, 0, 0, 0.5);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.signature-step:hover .signature-step__orb {
    box-shadow:
        0 0 0 1px color-mix(in oklab, var(--step-accent), #ffffff 20%) inset,
        0 0 24px color-mix(in oklab, var(--step-accent), transparent 72%);
}

.signature-step__title,
.signature-step__tag,
.signature-step__duration {
    display: block;
}

.signature-step__title {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.signature-step__tag {
    margin-top: 0.24rem;
    font-size: 0.72rem;
    color: #b1b1b1;
}

.signature-step__duration {
    margin-top: 0.42rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.signature-step.is-active .signature-step__orb {
    color: #fff;
    border-color: color-mix(in oklab, var(--step-accent), #ffffff 36%);
    box-shadow:
        0 0 0 1px color-mix(in oklab, var(--step-accent), #ffffff 24%) inset,
        0 0 30px color-mix(in oklab, var(--step-accent), transparent 58%);
    transform: translateY(-1px);
}

.signature-step.is-active .signature-step__title {
    color: color-mix(in oklab, var(--step-accent), #ffffff 35%);
}

.signature-step.is-active::after {
    content: "";
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: -0.5rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--step-accent), transparent);
    box-shadow: 0 0 16px color-mix(in oklab, var(--step-accent), transparent 50%);
}

.signature-method__detail {
    --active-accent: #4bcfff;
    margin-top: 2.5rem;
    padding: 1.6rem;
    border-radius: 20px;
    border: 1px solid color-mix(in oklab, var(--active-accent), #ffffff 8%);
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01) 45%, rgba(0, 0, 0, 0.35)),
        rgba(8, 8, 8, 0.82);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.38);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.signature-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

.signature-panel__glow {
    height: 1px;
    width: 100%;
    margin-bottom: 1.1rem;
    background: linear-gradient(90deg, transparent, var(--active-accent), transparent);
    box-shadow: 0 0 18px color-mix(in oklab, var(--active-accent), transparent 58%);
}

.signature-panel__content h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    color: #f7f6f2;
}

.signature-panel__content p {
    margin: 1rem 0 0;
    max-width: 920px;
    color: #cecac3;
    line-height: 1.75;
    font-size: 0.98rem;
}

.signature-panel__content ul {
    margin: 1.1rem 0 0;
    padding-left: 1.08rem;
    color: #f4f1e9;
    display: grid;
    gap: 0.45rem;
}

.signature-panel__content li::marker {
    color: var(--active-accent);
}

.signature-panel__duration {
    display: inline-flex;
    margin-top: 1.4rem;
    padding: 0.36rem 0.86rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--active-accent), #ffffff 14%);
    color: color-mix(in oklab, var(--active-accent), #ffffff 22%);
    background: color-mix(in oklab, var(--active-accent), transparent 90%);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.genre-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 239, 239, 0.92)),
        url("/static/images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: #171717;
    min-height: 560px;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.genre-card {
    min-height: 0;
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    aspect-ratio: 2 / 3;
    /* 300/450 oranı */
    border: 1px solid rgba(17, 17, 17, 0.18);
    color: #fff;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
}

.genre-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05);
}

.genre-card::after {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
}

.genre-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem 0.95rem;
    background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.88) 100%);
}

.genre-card h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.genre-card p {
    margin: 0.35rem 0 0;
    font-size: 0.68rem;
    opacity: 0.92;
    text-transform: uppercase;
}

.genre-card.purple::after {
    background: linear-gradient(180deg, rgba(61, 31, 120, 0.22), rgba(151, 102, 255, 0.36));
}

.genre-card.teal::after {
    background: linear-gradient(180deg, rgba(9, 76, 89, 0.2), rgba(46, 190, 204, 0.32));
}

.genre-card.red::after {
    background: linear-gradient(180deg, rgba(88, 12, 20, 0.2), rgba(232, 67, 44, 0.34));
}

.genre-card.amber::after {
    background: linear-gradient(180deg, rgba(109, 66, 8, 0.2), rgba(255, 181, 74, 0.32));
}

.genre-card.bronze::after {
    background: linear-gradient(180deg, rgba(79, 53, 25, 0.2), rgba(181, 125, 75, 0.34));
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 1.3rem;
}

.section-action.dual {
    gap: 0.8rem;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.ghost-button.light {
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    border-color: rgba(17, 17, 17, 0.12);
}

.ghost-button.dark {
    background: #131313;
    color: #f3f3f3;
}

.ghost-button.secondary {
    background: rgba(255, 255, 255, 0.7);
}

.editor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    justify-content: center;
}

@media (min-width: 1200px) {
    .editor-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    }
}

@media (min-width: 980px) and (max-width: 1199px) {
    .editor-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.editor-card {
    min-height: 270px;
    border: 1px solid #272727;
    border-radius: 10px;
    padding: 0;
    background: linear-gradient(180deg, rgba(90, 90, 90, 0.18), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

.editor-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(12%);
}

.editor-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 0, rgba(8, 8, 8, 0.94) 70%);
}

.editor-role {
    color: #b28cff;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    margin: 0 0 0.4rem;
}

.editor-badges {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.genre-badge {
    --badge: #e2b24a;
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.92);
    background: color-mix(in oklab, var(--badge) 18%, rgba(0, 0, 0, 0.75));
    border: 1px solid color-mix(in oklab, var(--badge) 38%, rgba(255, 255, 255, 0.08));
}

.editor-pagination {
    margin-top: 1.8rem;
}

.editor-pagination-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.editor-pagination-pages {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}

.editor-page-link,
.editor-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    padding: 0 0.6rem;
    background: rgba(255, 255, 255, 0.03);
}

.editor-page-link:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.editor-page-current {
    border-color: rgba(226, 178, 74, 0.55);
    background: rgba(226, 178, 74, 0.14);
}

.editor-card h3 {
    margin: 0;
    font-size: 1.15rem;
    font-family: Georgia, "Times New Roman", serif;
}

.editor-card p {
    margin: 0.25rem 0 0;
    color: #c5c5c5;
}

/* Mid-layer band: between editor (near-black) and beta (light) */
.expertise-mid-band {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(55% 65% at 20% 30%, rgba(255, 121, 43, 0.09), transparent 68%),
        radial-gradient(55% 60% at 76% 68%, rgba(196, 142, 74, 0.08), transparent 70%),
        radial-gradient(110% 90% at 50% -15%, rgba(226, 178, 74, 0.08), transparent 62%),
        linear-gradient(180deg, #0b0b0d 0%, #09090b 100%);
}

.expertise-mid-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.025) 0, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0, transparent 38%),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.012) 0,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px,
            transparent 3px);
    pointer-events: none;
    opacity: 0.65;
}

.expertise-mid-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(45% 45% at 15% 88%, rgba(255, 116, 45, 0.14), transparent 72%),
        radial-gradient(40% 40% at 82% 16%, rgba(202, 145, 78, 0.12), transparent 72%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.4;
}

.expertise-mid-band .home-inner {
    position: relative;
    z-index: 1;
}

.expertise-mid-band h2 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0.1rem;
    font-size: clamp(2.05rem, 3.1vw, 3.3rem);
    line-height: 1.14;
    text-align: center;
    color: #efe6d8;
    letter-spacing: 0.01em;
}

.expertise-mid-band .eyebrow {
    text-align: center;
    color: rgba(214, 166, 101, 0.82);
    letter-spacing: 0.34em;
    font-size: 0.67rem;
}

.expertise-mid-kicker {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: auto;
    margin-right: auto;
    color: #9a958d;
    text-align: center;
    font-size: 1.23rem;
    line-height: 1.4;
}

.expertise-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
    margin-top: 2.5rem;
}

.expertise-card-grid--more {
    margin-top: 1rem;
}

.expertise-card {
    position: relative;
    border-radius: 14px;
    padding: 1.25rem 1.35rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(8, 8, 10, 0.68));
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.expertise-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 80% at 16% 14%, rgba(212, 156, 87, 0.12), transparent 52%);
    opacity: 0.8;
    pointer-events: none;
}

.expertise-card:hover {
    border-color: rgba(216, 163, 95, 0.42);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.expertise-card-title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.62rem, 1.95vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.005em;
    color: #ece1cf;
    font-family: Georgia, "Times New Roman", serif;
}

.expertise-card-line {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.42;
    color: #ada79d;
    max-width: 34ch;
}

.expertise-card-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.expertise-card-tags span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.24rem 0.64rem;
    border-radius: 999px;
    color: rgba(227, 220, 209, 0.93);
    background: rgba(18, 16, 14, 0.74);
    border: 1px solid rgba(216, 163, 95, 0.28);
}

.expertise-expand-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}

.expertise-expand-btn {
    appearance: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.35);
    color: #eceae6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.expertise-expand-btn:hover {
    border-color: rgba(226, 178, 74, 0.45);
    background: rgba(226, 178, 74, 0.08);
    color: #fff;
}

.expertise-expand-btn:focus-visible {
    outline: 2px solid rgba(226, 178, 74, 0.55);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .expertise-mid-kicker {
        font-size: 1.02rem;
    }

    .expertise-card {
        padding: 1.15rem 1.15rem 1.2rem;
    }

    .expertise-card-title {
        font-size: clamp(1.3rem, 2.1vw, 1.62rem);
    }

    .expertise-card-line {
        font-size: 0.98rem;
    }

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

@media (max-width: 560px) {
    .expertise-mid-kicker {
        font-size: 0.93rem;
    }

    .expertise-card-title {
        font-size: 1.24rem;
    }

    .expertise-card-line {
        font-size: 0.92rem;
    }

    .expertise-card-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-band {
    position: relative;
    background: linear-gradient(180deg, #0b0b0b 0%, #0f1114 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-band .eyebrow {
    text-align: center;
}

.case-study-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.case-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.45));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.case-card-cover-wrap {
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
}

.case-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card-body {
    padding: 1rem 1rem 1.1rem;
}

.case-card-body h3 {
    margin: 0;
    font-size: 1.14rem;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
}

.case-card-author {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.case-card-opinion {
    margin: 0.75rem 0 0;
    padding: 0.65rem 0.75rem;
    border-left: 2px solid rgba(226, 178, 74, 0.45);
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 8px 8px 0;
    white-space: pre-line;
}

.case-study-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-card-cover-wrap {
        height: 200px;
    }
}

.beta-band {
    background-image: none;
    background-color: #f3f3f3;
    background-size: cover;
    background-position: center;
    color: #111;
}

.beta-layout {
    display: grid;
    grid-template-columns: 1.1fr 2fr 1.2fr;
    gap: 1.2rem;
    align-items: start;
    margin-top: 1.8rem;
}

.beta-features {
    margin: 0;
    padding-left: 0;
    list-style: none;
    margin-top: 0.2rem;
}

.beta-features li {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    padding: 0.6rem 0 0.6rem 1.6rem;
    position: relative;
}

.beta-feature-icon {
    position: absolute;
    left: -0.2rem;
    top: 0.62rem;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.beta-feature-icon svg {
    width: 26px;
    height: 26px;
}

.beta-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #5dc5ff, #20f0c0);
    opacity: 0;
}

.beta-features strong {
    font-size: 0.95rem;
}

.beta-features span {
    color: #5d5d5d;
    font-size: 0.82rem;
}

.beta-chart {
    border: 1px solid #1d1d1d;
    background: #0f1015;
    height: 220px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding-top: 2.6rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.beta-chart-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.beta-chart-under,
.beta-quote-under {
    display: flex;
    justify-content: center;
}

.beta-under-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(20, 20, 20, 0.92);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.beta-under-button:hover {
    background: rgba(20, 20, 20, 0.98);
    border-color: rgba(0, 0, 0, 0.28);
}

.beta-chart svg.beta-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.beta-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.beta-callout {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.62);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.beta-callout-ico {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.beta-callout.c-drop {
    border-color: rgba(93, 197, 255, 0.35);
}

.beta-callout.c-wow {
    border-color: rgba(255, 108, 60, 0.35);
}

.beta-callout.c-conf {
    border-color: rgba(240, 167, 45, 0.38);
}

.beta-series {
    opacity: 1;
}

.chart-tabs .tab {
    cursor: default;
}

.chart-tabs .tab {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.chart-tabs {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab {
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
}

.tab.blue {
    background: #2d93ff;
}

.tab.yellow {
    background: #f0a72d;
}

.tab.orange {
    background: #f05e2d;
}

.review-card {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.beta-quote .review-card {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 0.6rem;
    left: 0.75rem;
    font-size: 1.4rem;
    line-height: 1;
    color: #ff6c3c;
    opacity: 0.9;
}

.quote-stars {
    margin-top: 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #ffb54a;
}

.line {
    position: absolute;
    height: 3px;
    width: 120%;
    left: -10%;
    border-radius: 12px;
}

.line.blue {
    top: 45px;
    background: linear-gradient(90deg, #4ad0ff, #00e6ff);
    transform: rotate(-7deg);
}

.line.yellow {
    top: 70px;
    background: linear-gradient(90deg, #f8be24, #ffdd62);
    transform: rotate(3deg);
}

.line.orange {
    top: 95px;
    background: linear-gradient(90deg, #ff6c3c, #ff1f1f);
    transform: rotate(-2deg);
}

.beta-layout blockquote {
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    color: #2a2a2a;
}

.final-cta {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(30, 0, 0, 0.6)), url("/static/images/landing-bg-5-final.png");
    text-align: center;
    min-height: 220px;
    color: #fff;
}

.final-cta p {
    color: #d7d7d7;
    font-size: 0.92rem;
}

.editor-band {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.94));
    color: #f0f0f0;
}

.studio-footer {
    background: #090909;
    border-top: 1px solid #171717;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 1.4rem;
}

.studio-footer h3,
.studio-footer h4 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.studio-footer p {
    color: #9e9e9e;
    margin: 0.42rem 0;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .home-inner {
        padding: 3.2rem 1.25rem;
    }

    .container {
        padding-top: 5.5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(8, 8, 8, 0.99), rgba(15, 15, 15, 1));
        display: none !important; 
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.5rem !important;
        z-index: 3000 !important; /* Extremely high to cover everything */
        opacity: 0;
        visibility: hidden;
        transform: translateY(0) !important; /* Remove translateY to prevent fixed issues */
        transition: opacity 0.4s ease, visibility 0.4s ease;
        backdrop-filter: blur(25px);
        padding: 4rem 2rem;
        overflow: hidden;
    }

    .header-nav.is-open {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-nav .header-link {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em;
        color: #fff !important;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .header-nav .header-link:hover {
        color: var(--accent-gold) !important;
        transform: scale(1.1);
    }

    .header-nav .header-nav-cta {
        font-size: 1rem !important;
        padding: 1.2rem 2.5rem !important;
        width: 100%;
        max-width: 320px;
        border-radius: 100px !important;
    }

    .brand-logo-image {
        height: 50px;
    }

    .header-inner {
        height: 80px;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(226, 178, 74, 0.5) !important;
        color: var(--accent-gold) !important;
        position: fixed;
        top: 20px;
        right: 24px;
    }

    .mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .home-hero {
        min-height: auto;
        padding: 4rem 1.5rem;
        background-position: 35% center;
    }

    .home-hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
        text-align: left;
    }

    .hiw-header h2,
    .beta-band h2 {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
    }

    .beta-band {
        padding: 60px 0 !important;
    }

    .how-it-works-band {
        padding: 60px 0 !important;
    }

    .hero-copy {
        margin-left: 0 !important;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
    }

    .home-hero .eyebrow {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .home-hero .subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .header-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        margin-top: 3rem;
    }

    .hero-stat-card {
        min-width: 100%;
    }

    .process-line {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .process-step::before {
        display: none;
    }

    .process-orb {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .signature-method__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem 1rem;
    }

    .signature-method__timeline::before {
        display: none;
    }

    .signature-step {
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 1rem 0.7rem 0.9rem;
        background: rgba(255, 255, 255, 0.015);
    }

    .signature-step.is-active::after {
        bottom: -1px;
        left: 18%;
        right: 18%;
    }

    .signature-step__orb {
        width: 62px;
        height: 62px;
    }

    .signature-method__detail {
        margin-top: 1.8rem;
        padding: 1.25rem;
    }

    .signature-panel__content p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .genre-grid {
        grid-template-columns: 1fr 1fr;
    }

    .genre-card {
        aspect-ratio: 1;
    }

    .beta-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .beta-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hiw-scenes {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px 20px !important;
    }

    .hiw-scenes::after {
        display: none !important;
    }

    .hiw-scene::before {
        font-size: 5rem !important;
        top: -15px !important;
    }

    .beta-chart-wrap {
        order: -1;
    }

    .beta-chart {
        height: 200px;
    }

    .beta-callouts {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dashboard-sidebar-inner {
        position: static;
        padding: 1.2rem;
    }

    .dashboard-content {
        padding: 1.2rem;
    }

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

    .dashboard-panel-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-toolbar {
        justify-content: center;
    }

    .responsive-grid {
        grid-template-columns: 1fr !important;
    }

    .field-row {
        grid-template-columns: 1fr !important;
    }
}

.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .process-line {
        grid-template-columns: 1fr;
    }

    .signature-method__timeline {
        grid-template-columns: 1fr;
    }

    .dashboard-kpi-grid {
        grid-template-columns: 1fr;
    }

    .hiw-scenes {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }
}

/* Improved Select and Input Styles for Auth/Submission */
.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.94rem;
    margin: 0;
    font-family: inherit;
}

.auth-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1.1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.auth-form select option {
    background: #1a1a1a;
    color: #fff;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 178, 74, 0.5);
    box-shadow: 0 0 0 4px rgba(226, 178, 74, 0.12);
    transform: translateY(-1px);
}

/* File Drop Zone */
.file-drop-zone {
    position: relative;
    width: 100%;
    min-height: 140px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.file-drop-zone:hover,
.file-drop-zone.is-dragover {
    background: rgba(226, 178, 74, 0.04);
    border-color: rgba(226, 178, 74, 0.4);
    box-shadow: inset 0 0 20px rgba(226, 178, 74, 0.05);
}

.file-drop-zone .drop-icon {
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.file-drop-zone:hover .drop-icon,
.file-drop-zone.is-dragover .drop-icon {
    color: #e2b24a;
    transform: scale(1.1);
}

.file-drop-zone .drop-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.file-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0 !important;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-name-preview {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #f0c887;
    font-weight: 700;
    display: none;
}

/* --- PROFESSIONAL DASHBOARD v2 --- */

:root {
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --topbar-height: 72px;
    --panel-bg: rgba(15, 15, 15, 0.6);
    --accent-gold: #e2b24a;
    --text-muted: rgba(255, 255, 255, 0.45);
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: #080808;
    color: #fff;
}

/* Sidebar */
.dashboard-sidebar {
    width: var(--sidebar-width);
    background: rgba(12, 12, 12, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-logo {
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--accent-gold);
}

.sidebar-logo-image {
    display: block;
    height: 52px;
    width: auto;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

.nav-section-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 1.5rem 0 0.75rem 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-panel);
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.nav-item:hover,
.nav-item.is-active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.nav-item.is-active {
    background: rgba(226, 178, 74, 0.08);
    color: var(--accent-gold);
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.nav-item.is-active .nav-icon {
    opacity: 1;
}

.nav-item.logout-link:hover {
    background: rgba(255, 107, 107, 0.08) !important;
    color: #ff6b6b !important;
}

.nav-item.logout-link:hover .nav-icon {
    color: #ff6b6b !important;
    opacity: 1;
}

/* Main Content Area */
.dashboard-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dashboard-topbar {
    height: var(--topbar-height);
    background: rgba(8, 8, 8, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 900;
}

.dashboard-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    margin-right: 0.8rem;
    transition: all 0.2s;
}

.dashboard-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(226, 178, 74, 0.3);
}

@media (min-width: 1025px) {
    .dashboard-sidebar-toggle {
        display: none !important;
    }
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

html.sidebar-open .sidebar-overlay {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-profile-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.user-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name-mini {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

/* Page Body */
.dashboard-page-content {
    padding: 2.5rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* Bento Cards */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-panel);
    /* Sharper, more premium */
    padding: 1.75rem;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
    border-color: rgba(226, 178, 74, 0.2);
    background: rgba(25, 25, 25, 0.5);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Fix for the huge button */
.dashboard-primary-button {
    background: var(--accent-gold);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.5rem 1rem !important;
    /* Forces small size */
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: auto !important;
    /* Prevents stretching */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(226, 178, 74, 0.2);
}

/* Refined List Items */
.data-table td {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

.projects-hub-projects-table th {
    padding: 0.85rem 1rem !important;
}

.projects-hub-projects-table td {
    padding: 0.9rem 1rem !important;
    vertical-align: top;
}

.projects-hub-projects-title-main {
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.projects-hub-projects-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.35rem;
}

.projects-hub-stage-name {
    font-weight: 900;
    color: #fff;
}

.projects-hub-deadline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.priority-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.priority-overdue {
    color: #ff8b6d;
    border-color: rgba(255, 108, 60, 0.35);
    background: rgba(255, 108, 60, 0.07);
}

.priority-soon {
    color: #f0c887;
    border-color: rgba(226, 178, 74, 0.35);
    background: rgba(226, 178, 74, 0.08);
}

.projects-hub-deadline-date {
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
}

.projects-hub-deadline-date--overdue {
    color: #ff6c3c;
    font-weight: 900;
}

.projects-hub-ritual-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    max-width: 280px;
}

.projects-hub-ritual-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    flex: 0 0 auto;
    margin-top: 0;
}

.projects-hub-ritual-text {
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 220px;
}

.projects-hub-ritual-icon--revision {
    background: rgba(226, 178, 74, 0.08);
    border-color: rgba(226, 178, 74, 0.28);
    color: #f0c887;
}

.projects-hub-ritual-icon--beta {
    background: rgba(93, 197, 255, 0.08);
    border-color: rgba(93, 197, 255, 0.28);
    color: #5dc5ff;
}

.projects-hub-ritual-icon--editor {
    background: rgba(32, 240, 192, 0.06);
    border-color: rgba(32, 240, 192, 0.24);
    color: #20f0c0;
}

.projects-hub-ritual-icon--offer {
    background: rgba(255, 108, 60, 0.06);
    border-color: rgba(255, 108, 60, 0.24);
    color: #ff6c3c;
}

.projects-hub-ritual-icon--default {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.projects-hub-genre-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.35rem;
}

.projects-hub-davet-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0.2rem;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: rgba(93, 197, 255, 0.15);
    color: #5dc5ff;
    border: 1px solid rgba(93, 197, 255, 0.35);
}

.projects-hub-ince-link {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.7rem !important;
}

/* --- Project detail status icon --- */
.projects-detail-ritual-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.projects-detail-ritual-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    flex: 0 0 auto;
}

.projects-detail-ritual-icon svg {
    width: 22px;
    height: 22px;
}

.projects-detail-ritual-text {
    color: var(--text-muted);
    font-weight: 500;
}

.projects-detail-ritual-icon--revision {
    background: rgba(226, 178, 74, 0.08);
    border-color: rgba(226, 178, 74, 0.28);
    color: #f0c887;
}

.projects-detail-ritual-icon--beta {
    background: rgba(93, 197, 255, 0.08);
    border-color: rgba(93, 197, 255, 0.28);
    color: #5dc5ff;
}

.projects-detail-ritual-icon--beta {
    width: 24px;
    height: 24px;
}

.projects-detail-ritual-icon--beta svg {
    width: 13px;
    height: 13px;
}

.projects-detail-ritual-icon--editor {
    background: rgba(32, 240, 192, 0.06);
    border-color: rgba(32, 240, 192, 0.24);
    color: #20f0c0;
}

.projects-detail-ritual-icon--offer {
    background: rgba(255, 108, 60, 0.06);
    border-color: rgba(255, 108, 60, 0.24);
    color: #ff6c3c;
}

.projects-detail-ritual-icon--default {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

/* --- Project detail timeline (table) --- */
.projects-detail-timeline-title {
    font-size: 0.88rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.2rem;
}

.projects-detail-timeline-detail {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-detail-timeline-ts {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.item-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.item-link:hover {
    background: #fff;
    color: #000;
}

.status-badge-v2 {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    gap: 0.4rem;
}

.status-badge-v2::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-page-content {
    animation: fadeInUp 0.5s ease-out forwards;
}


/* --- HEADER REFINEMENTS --- */
.header-username {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Duplicate header styles removed */

/* --- RESTORING & REFINING LAYOUT --- */
.col-12 {
    grid-column: span 12;
}

.col-8 {
    grid-column: span 8;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- REFINED BENTO GLASS --- */
.bento-card {
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.4), rgba(15, 15, 15, 0.2)) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

.kpi-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.kpi-title {
    font-size: 0.65rem !important;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.kpi-value {
    font-size: 2.2rem !important;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin: 1.5rem 0 0.5rem 0;
    display: block;
}

.kpi-sub {
    font-size: 0.72rem !important;
    color: var(--text-muted);
}

.data-table th {
    padding: 0.75rem 1rem !important;
}

.data-table td {
    padding: 1.25rem 1rem !important;
}

.genre-badge {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.75rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* --- CRITICAL LAYOUT FIX --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
}

.col-12 {
    grid-column: span 12;
    width: 100%;
}

.col-7 {
    grid-column: span 7;
}

.col-5 {
    grid-column: span 5;
}

/* In case grid is not supported or behaving weirdly */
@media (max-width: 1024px) {

    .col-7,
    .col-5 {
        grid-column: span 12;
    }
}

.bento-card {
    width: 100%;
    /* Ensure cards fill their grid area */
    box-sizing: border-box;
}

/* --- REFINED MODAL & FORMS --- */
.dashboard-modal-card {

    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 2.5rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dashboard-modal-header {
    border: none !important;
    padding: 1rem 1.2rem !important;
    margin-bottom: 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-modal-close {
    background: rgba(255, 255, 255, 0.05) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    top: 1.5rem !important;
    right: 1.5rem !important;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-muted) !important;
}

.dashboard-modal-close:hover {
    background: rgba(255, 50, 50, 0.1) !important;
    color: #ff4545 !important;
    border-color: rgba(255, 50, 50, 0.2) !important;
}

.dashboard-modal-form p {
    margin-bottom: 1.25rem;
}

.dashboard-modal-form label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.dashboard-modal-form input,
.dashboard-modal-form select,
.dashboard-modal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    transition: border-color 0.2s;
}

.dashboard-modal-form input:focus {
    border-color: var(--accent-gold) !important;
    outline: none;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Tailwind-inspired modal system */
.tw-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.tw-modal[hidden] {
    display: none !important;
}

.tw-modal-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tw-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.tw-modal-panel {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: var(--radius-panel);
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: opacity 160ms ease, transform 180ms ease;
}

.tw-modal.is-open .tw-modal-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Ensure legacy modal-card rules don't break centering */
.tw-modal-panel.dashboard-modal-card {
    margin: 0 !important;
    max-width: min(820px, calc(100vw - 2rem)) !important;
    padding: 1.75rem 2rem 2rem !important;
    box-sizing: border-box;
}

/* İki sütunlu teklif modalı: iç grid kendi padding’ini verir */
.tw-modal-panel.dashboard-modal-card.dashboard-modal-card--flush {
    padding: 0 !important;
}

.tw-modal-panel.dashboard-modal-card:not(.dashboard-modal-card--flush) .dashboard-modal-header {
    padding: 0 !important;
    margin-bottom: 0.75rem !important;
}

.tw-modal-panel.dashboard-modal-card:not(.dashboard-modal-card--flush) .dashboard-modal-form {
    padding: 0 !important;
}

.tw-modal-panel.dashboard-modal-card:not(.dashboard-modal-card--flush) .dashboard-modal-intro {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Admin takvim sayfası: FullCalendar — dark theme */
.admin-calendar-only-page {
    min-height: 640px;
    width: 100%;
}

.admin-calendar-only-page .fc {
    --fc-border-color: rgba(255, 255, 255, 0.08);
    --fc-page-bg-color: transparent;
    --fc-neutral-bg-color: rgba(255, 255, 255, 0.03);
    --fc-list-event-hover-bg-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1rem;
}

.admin-calendar-only-page .fc-toolbar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.admin-calendar-only-page .fc-button-primary {
    background: rgba(226, 178, 74, 0.18) !important;
    border-color: rgba(226, 178, 74, 0.45) !important;
    color: #f0c887 !important;
}

.admin-calendar-only-page .fc-button-primary:not(:disabled):active,
.admin-calendar-only-page .fc-button-primary:not(:disabled).fc-button-active {
    background: rgba(226, 178, 74, 0.32) !important;
    border-color: rgba(226, 178, 74, 0.65) !important;
}

.admin-calendar-only-page .fc-button-primary:hover {
    background: rgba(226, 178, 74, 0.26) !important;
    border-color: rgba(226, 178, 74, 0.6) !important;
}

.admin-calendar-only-page .fc .fc-today-button {
    width: 110px !important;
}

.fc-today-button {
    width: 110px !important;
}

.admin-calendar-only-page .fc-scrollgrid {
    border-radius: 12px;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-daygrid-day-number,
.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion,
.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-timegrid-axis-cushion,
.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-timegrid-slot-label-cushion,
.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-list-day-text,
.admin-calendar-only-page .fc-scrollgrid-sync-inner .fc-list-day-side-text {
    color: #000;
}

.admin-calendar-only-page .fc-col-header-cell {
    background: rgba(255, 255, 255, 0.05);
}

.admin-calendar-only-page .fc-col-header-cell-cushion {
    color: #0a0a0a !important;
}

.admin-calendar-only-page .fc-daygrid-day {
    background: rgba(255, 255, 255, 0.015);
}

.admin-calendar-only-page .fc-day-other .fc-daygrid-day-number {
    color: rgba(255, 255, 255, 0.35) !important;
}

.admin-calendar-only-page .fc-theme-standard td,
.admin-calendar-only-page .fc-theme-standard th {
    border-color: rgba(255, 255, 255, 0.08);
}

.admin-calendar-only-page .fc-day-today {
    background: rgba(32, 240, 192, 0.08) !important;
}

.admin-calendar-only-page .fc-event {
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}



/* Global button standard (Beta okuyucu ekle stili) */
button:not(.fc-button),
input[type="submit"],
input[type="button"],
a.item-link,
.dashboard-primary-button,
.ghost-button,
.beta-under-button,
.link-button {
    background: var(--accent-gold) !important;
    color: #000 !important;
    border: 1px solid rgba(226, 178, 74, 0.55) !important;
    border-radius: 10px !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 0.5rem 0.85rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(226, 178, 74, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:not(.fc-button):hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.item-link:hover,
.dashboard-primary-button:hover,
.ghost-button:hover,
.beta-under-button:hover,
.link-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 26px rgba(226, 178, 74, 0.24);
}

button:not(.fc-button):disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
.dashboard-primary-button[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Signature method timeline: isolate from global button skin */
.method-band .signature-step,
.method-band .signature-step:hover,
.method-band .signature-step:active,
.method-band .signature-step:focus {
    background: transparent !important;
    color: #ecebe7 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    padding: 0 !important;
    display: block !important;
    text-decoration: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.method-band .signature-step:hover {
    transform: translateY(-2px) !important;
}

@media (max-width: 900px) {

    .method-band .signature-step,
    .method-band .signature-step:hover,
    .method-band .signature-step:active,
    .method-band .signature-step:focus {
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px !important;
        padding: 1rem 0.7rem 0.9rem !important;
        background: rgba(255, 255, 255, 0.015) !important;
    }
}

.admin-calendar-only-page .fc-col-header-cell-cushion {
    color: #000 !important;
}

.fc-daygrid-day-number {
    color: #fff !important;
}

/* ELITE EXON CHAT WIDGET - OBSIDIAN PREMIUM */
#exon-chat-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1500;
    font-family: 'Inter', system-ui, sans-serif;
}

#exon-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0d0f14;
    border: 1px solid rgba(226, 178, 74, 0.4);
    color: var(--accent);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 178, 74, 0.1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.exon-toggle-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 178, 74, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

#exon-chat-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(226, 178, 74, 0.2);
}

#exon-chat-toggle:hover .exon-toggle-glow {
    opacity: 1;
}

#exon-chat-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#exon-chat-panel {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: min(880px, calc(100vw - 48px));
    height: min(85vh, 720px);
    background: #080a0e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.95), 0 0 50px rgba(0, 0, 0, 0.5);
    animation: exon-panel-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes exon-panel-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.exon-chat-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exon-chat-header {
    height: 72px;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exon-header-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.exon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

.exon-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.exon-chat-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

#exon-chat-close {
    background: rgba(255, 255, 255, 0.02);
    border: 0;
    color: rgba(255, 255, 255, 0.3);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#exon-chat-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: rotate(90deg);
}

.exon-chat-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    flex: 1;
    overflow: hidden;
}

.exon-chat-sidebar {
    background: #0d0f14;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
}

.exon-search-wrap {
    position: relative;
    background: #151921;
    border-radius: 14px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s;
}

.exon-search-wrap:focus-within {
    border-color: rgba(226, 178, 74, 0.3);
}

.exon-search-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.2);
}

#exon-chat-search {
    flex: 1;
    background: transparent !important;
    border: 0 !important;
    padding: 0.85rem 0.75rem !important;
    color: #fff !important;
    font-size: 0.9rem;
    outline: none;
    margin: 0;
}

#exon-chat-contacts {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

#exon-chat-contacts::-webkit-scrollbar {
    width: 4px;
}

#exon-chat-contacts::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.exon-contact-card {
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
    background: transparent !important;
    border: 1px solid transparent !important;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.exon-contact-card:hover {
    background: rgba(255, 255, 255, 0.02) !important;
    transform: translateX(4px);
}

.exon-contact-card.active {
    background: #151921 !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.exon-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #1c212b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
}

.exon-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #0d0f14;
}

.exon-contact-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.exon-contact-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.exon-contact-preview {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exon-chat-main {
    display: flex;
    flex-direction: column;
    background: #080a0e;
    position: relative;
}

#exon-chat-thread-header {
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.005);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.exon-thread-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exon-thread-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
}

.exon-thread-meta {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

#exon-chat-messages {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exon-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.exon-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Elite Bubbles */
.exon-row {
    display: flex;
    width: 100%;
}

.exon-row-me {
    justify-content: flex-end;
}

.exon-row-them {
    justify-content: flex-start;
}

.exon-bubble {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exon-row-me .exon-bubble {
    background: #151921;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.exon-row-them .exon-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #cfd6e0;
    border-bottom-left-radius: 4px;
}

.exon-msg-text {
    font-size: 0.92rem;
    line-height: 1.6;
}

.exon-msg-time {
    font-size: 0.7rem;
    opacity: 0.3;
    margin-top: 0.5rem;
    font-weight: 600;
}

.exon-row-me .exon-msg-time {
    text-align: right;
}

.exon-chat-footer {
    padding: 1.5rem 2rem 2.5rem;
    background: linear-gradient(to top, #080a0e, transparent);
}

.exon-input-box {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 0.6rem;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    transition: all 0.3s;
}

.exon-input-box:focus-within {
    border-color: rgba(226, 178, 74, 0.2);
    background: #11141a;
    box-shadow: 0 0 30px rgba(226, 178, 74, 0.05);
}

#exon-chat-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem !important;
    margin: 0 !important;
    resize: none;
    line-height: 1.6;
    outline: none !important;
    min-height: 48px;
    max-height: 200px;
    font-family: inherit;
    box-shadow: none !important;
}

#exon-chat-send {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    flex-shrink: 0;
    box-shadow: none !important;
}

#exon-chat-send:hover:not(:disabled) {
    transform: scale(1.1);
    background: #f0c265 !important;
}

#exon-chat-send:disabled {
    opacity: 0.15;
    background: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed;
}

.exon-welcome-state {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    #exon-chat-panel {
        position: fixed !important;
        width: 100vw !important;
        height: 100vh !important;
        bottom: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        z-index: 2100 !important;
        animation: none !important;
    }

    .exon-chat-inner {
        height: 100% !important;
    }

    .exon-chat-header {
        height: 72px !important;
        padding: 0 1rem !important;
        padding-top: max(12px, env(safe-area-inset-top)) !important;
        box-sizing: content-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 100 !important;
        background: #0a0a0a !important;
    }

    .exon-chat-layout {
        height: calc(100% - 84px) !important;
        display: block !important;
    }

    .exon-chat-sidebar {
        width: 100% !important;
        height: 100% !important;
        border-right: none !important;
        display: block !important;
    }

    .exon-chat-main {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #080808 !important;
        z-index: 10 !important;
        display: none !important;
    }

    #exon-chat-panel.mobile-main-active .exon-chat-main {
        display: flex !important;
    }

    #exon-chat-panel.mobile-main-active .exon-chat-sidebar {
        display: none !important;
    }

    .exon-header-main {
        order: 1 !important;
        margin-right: auto !important;
    }

    .exon-chat-back-btn {
        display: none !important;
        order: 2 !important;
        margin-left: 0.5rem !important;
        width: 44px !important;
        height: 44px !important;
        color: #f0c887 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
    }

    #exon-chat-panel.mobile-main-active .exon-chat-back-btn {
        display: flex !important;
    }

    #exon-chat-close {
        order: 3 !important;
        margin-left: 0.5rem !important;
    }

    #exon-chat-panel.mobile-main-active #exon-chat-close {
        display: none !important;
    }

    #exon-chat-thread-title {
        padding: 1.5rem 1rem !important;
        margin-bottom: 0.5rem;
    }

    .exon-chat-messages {
        padding: 1rem !important;
    }

    .exon-chat-back-btn svg {
        width: 28px !important;
        height: 28px !important;
        stroke-width: 3px !important;
    }
}

html.chat-open,
html.chat-open body {
    overflow: hidden !important;
    height: 100% !important;
}

/* ROLE & FINANCE GRID LAYOUTS */
.role-grid-layout,
.finance-grid-layout {
    grid-template-columns: 1fr 340px !important;
}

.earnings-chart-container {
    height: 180px;
    position: relative;
    width: 100%;
}

.exon-status-legend {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.legend-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-item .dot.gold {
    background: #ffb800;
}

.legend-item .dot.green {
    background: #00ff88;
}

.legend-item .dot.red {
    background: #ff5252;
}

@media (max-width: 1024px) {

    .role-grid-layout,
    .finance-grid-layout {
        grid-template-columns: 1fr !important;
    }

    .exon-status-legend {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .exon-expert-table td[data-label="İLERLEME / NOT"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }

    .exon-expert-table td[data-label="İLERLEME / NOT"]::before {
        width: 100% !important;
        margin-bottom: 0.25rem;
    }

    .exon-expert-table td[data-label="İLERLEME / NOT"]>div {
        text-align: left !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }
}

/* PROJECT DETAIL PAGE */
.project-detail-layout {
    grid-template-columns: 1fr 360px !important;
}

.exon-beta-scores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.beta-reader-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(226, 178, 74, 0.14);
    border: 1px solid rgba(226, 178, 74, 0.32);
    color: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.62rem;
    font-size: 0.72rem;
    max-width: 100%;
}

.exon-project-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem;
    border-radius: 24px;
    z-index: 10;
}

.exon-project-alert .alert-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exon-project-alert .alert-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exon-project-alert .alert-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.35rem;
}

.exon-project-alert .alert-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.exon-project-alert .alert-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-top: 0.35rem;
    display: flex;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
}

.exon-project-alert .alert-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.exon-project-alert .alert-actions button,
.exon-project-alert .alert-actions .accept-btn,
.exon-project-alert .alert-actions .reject-btn,
.exon-project-alert .alert-actions .manage-btn {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    transition: all 0.2s;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-offer .accept-btn {
    background: #20f0c0;
    color: #000;
    box-shadow: 0 8px 20px rgba(32, 240, 192, 0.3);
}

.status-offer .reject-btn {
    background: transparent;
    color: rgba(255, 82, 82, 0.6);
    border: 1px solid rgba(255, 82, 82, 0.2) !important;
}

.status-assignment .manage-btn {
    background: var(--accent);
    color: #000;
    box-shadow: 0 8px 20px rgba(226, 178, 74, 0.3);
}

.status-invitation .accept-btn {
    background: #5dc5ff;
    color: #000;
    box-shadow: 0 8px 15px rgba(93, 197, 255, 0.2);
}

.status-invitation .reject-btn {
    background: rgba(255, 82, 82, 0.05);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.2) !important;
}

/* TABS */
.exon-tabs-nav {
    display: flex;
    gap: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.exon-tab-btn {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    white-space: nowrap;
}

.exon-tab-btn:hover {
    color: rgba(255, 255, 255, 0.6);
}

.exon-tab-btn.active {
    color: #fff;
}

.exon-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(226, 178, 74, 0.5);
}

.exon-tab-content {
    display: none;
}

.exon-tab-content.active {
    display: block;
    animation: fadeInTab 0.4s ease-out;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DRAFT CARD */
.exon-latest-draft-card .draft-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exon-latest-draft-card .draft-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

@media (max-width: 1024px) {
    .project-detail-layout {
        grid-template-columns: 1fr !important;
    }

    .exon-project-alert {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .exon-project-alert .alert-actions {
        width: 100%;
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .exon-project-alert .alert-actions>*,
    .exon-project-alert .alert-actions form {
        width: 100%;
    }

    .exon-project-alert .alert-actions button,
    .exon-project-alert .alert-actions .accept-btn,
    .exon-project-alert .alert-actions .reject-btn,
    .exon-project-alert .alert-actions .manage-btn {
        width: 100%;
    }

    .exon-project-alert .alert-title {
        font-size: 1.4rem;
    }

    .exon-project-alert .alert-subtitle {
        flex-direction: column;
        gap: 0.4rem;
    }

    .exon-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding-bottom: 0px;
        scrollbar-width: none;
        /* Firefox */
    }

    .exon-tabs-nav::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .exon-latest-draft-card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem;
    }

    .exon-latest-draft-card .draft-actions {
        width: 100%;
        align-items: stretch !important;
    }

    .exon-latest-draft-card .draft-actions .item-link {
        width: 100%;
    }

    .exon-beta-scores-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .exon-accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .exon-accordion-header h4 {
        font-size: 0.85rem;
    }

    .beta-reader-chip span:first-child {
        max-width: 140px !important;
    }
}

/* EXON PREMIUM DASHBOARD MODULES */

/* EXON PREMIUM DASHBOARD MODULES */
.exon-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.exon-kpi-module {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exon-kpi-module:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.exon-kpi-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(226, 178, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.exon-kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.exon-kpi-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.exon-kpi-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}

.exon-kpi-module:hover .exon-kpi-icon-box {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

.exon-kpi-icon-box svg {
    width: 22px;
    height: 22px;
}

.exon-kpi-body {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.exon-kpi-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.85rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.exon-kpi-unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}

.exon-kpi-footer {
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exon-badge {
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.exon-badge-gold {
    background: rgba(226, 178, 74, 0.1);
    color: var(--accent);
    border: 1px solid rgba(226, 178, 74, 0.2);
}

.exon-badge-red {
    background: rgba(222, 50, 26, 0.1);
    color: #ff5252;
    border: 1px solid rgba(222, 50, 26, 0.2);
}

.exon-badge-green {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Tones for Cards */
.exon-kpi-overdue .exon-kpi-value {
    color: #ff5252;
    text-shadow: 0 0 30px rgba(255, 82, 82, 0.2);
}

.exon-kpi-overdue .exon-kpi-icon-box {
    color: #ff5252;
    border-color: rgba(255, 82, 82, 0.2);
}

.exon-kpi-soon .exon-kpi-value {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(226, 178, 74, 0.2);
}

.exon-kpi-soon .exon-kpi-icon-box {
    color: var(--accent);
    border-color: rgba(226, 178, 74, 0.2);
}

.exon-kpi-good .exon-kpi-value {
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.exon-kpi-good .exon-kpi-icon-box {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.2);
}

/* Expert Table Layout */
.exon-table-wrapper {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    overflow: hidden;
}

.exon-table-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exon-table-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.exon-expert-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.exon-expert-table th {
    text-align: left;
    padding: 1.25rem 2rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.01);
}

.exon-expert-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    transition: background 0.2s;
}

.exon-expert-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Kitap dönüşümleri admin: tablo işlem sütunu — link + buton aynı hizada */
.case-study-admin-table td.case-study-admin-table__actions {
    text-align: right;
    vertical-align: middle;
}

.case-study-admin-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.case-study-admin-actions .dashboard-primary-button,
.case-study-admin-actions a.dashboard-primary-button,
.case-study-admin-actions button.dashboard-primary-button {
    min-height: 36px;
    height: 36px;
    padding: 0 0.85rem !important;
    line-height: 1.15 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.case-study-admin-actions__delete {
    background: #ff5252 !important;
    color: #fff !important;
    border-color: rgba(255, 100, 100, 0.55) !important;
    box-shadow: 0 6px 16px rgba(255, 82, 82, 0.22) !important;
}

.case-study-admin-actions__delete:hover {
    filter: brightness(1.06);
}

/* Kitap dönüşümü formu: İptal / Kaydet aynı yükseklikte */
.case-study-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.case-study-form-actions>a.dashboard-primary-button,
.case-study-form-actions>button.dashboard-primary-button {
    min-height: 44px;
    height: 44px;
    padding: 0 1.15rem !important;
    line-height: 1.15 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.case-study-form-btn--secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

.case-study-form-btn--secondary:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
}

/* Feed Module */
.exon-feed-card {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left-width: 4px;
}

.exon-feed-card.status-gold {
    border-left-color: var(--accent);
}

.exon-feed-card.status-red {
    border-left-color: #ff5252;
}

.exon-feed-card.status-green {
    border-left-color: #00ff88;
}

/* EXON ROLE & CAREER MODULES */
.exon-role-card {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.exon-role-card:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.exon-role-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.exon-role-card.role--author .exon-role-icon {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.exon-role-card.role--editor .exon-role-icon {
    color: var(--accent);
    border-color: rgba(226, 178, 74, 0.3);
}

.exon-role-card.role--beta .exon-role-icon {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.exon-role-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.exon-role-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.exon-form-expert {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.exon-form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.75rem;
}

.exon-form-group select,
.exon-form-group textarea,
.exon-form-group input {
    width: 100%;
    background: #0d0f14 !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 14px;
    padding: 0.85rem 1.15rem !important;
    color: #fff !important;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none !important;
}

.exon-form-group select:focus,
.exon-form-group textarea:focus,
.exon-form-group input:focus {
    border-color: rgba(226, 178, 74, 0.3) !important;
    background: #11141a !important;
    box-shadow: 0 0 30px rgba(226, 178, 74, 0.05);
}

.exon-info-panel {
    background: rgba(226, 178, 74, 0.02);
    border: 1px solid rgba(226, 178, 74, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.exon-info-panel h4 {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exon-info-panel p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
}

/* EXON PROJECT DETAIL MODULES */
.exon-project-hero {
    background: #0d0f14;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.exon-project-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(226, 178, 74, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.exon-project-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.exon-project-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.exon-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.exon-meta-item strong {
    color: #fff;
}

/* Dashboard Tabs - Premium Underline System */
.exon-tabs-nav {
    display: flex;
    gap: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 0.5rem;
}

.exon-tab-btn {
    all: unset !important;
    display: inline-block !important;
    background: transparent !important;
    border: none !important;
    padding: 1rem 0 !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
    white-space: nowrap !important;
    position: relative !important;
    outline: none !important;
    box-shadow: none !important;
}

.exon-tab-btn:hover {
    color: #fff !important;
}

.exon-tab-btn.active {
    color: var(--accent) !important;
    text-shadow: 0 0 15px rgba(226, 178, 74, 0.3) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.exon-tab-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 10px rgba(226, 178, 74, 0.4);
}

.exon-tab-btn.active::after {
    width: 100%;
}

.exon-tab-content {
    display: none;
    animation: exon-tab-fade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exon-tab-content.active {
    display: block;
}

@keyframes exon-tab-fade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion Expert */
.exon-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exon-accordion-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.exon-accordion-item.open {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.exon-accordion-header {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.exon-accordion-header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.exon-accordion-body {
    padding: 0 1.75rem 1.75rem 1.75rem;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 1.5rem;
}

.exon-accordion-item.open .exon-accordion-body {
    display: block;
}

@media (max-width: 1024px) {
    .exon-project-hero {
        padding: 1.75rem;
    }

    .exon-project-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .exon-project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .exon-meta-item {
        font-size: 0.78rem;
    }
}

@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr !important;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        bottom: 0;
        width: 300px;
        z-index: 1002;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .dashboard-sidebar.is-open {
        transform: translateX(320px);
    }

    .dashboard-sidebar-toggle {
        display: flex;
    }

    .dashboard-topbar {
        padding: 0.75rem 1.25rem;
        position: sticky;
        top: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        z-index: 900;
    }

    .topbar-right {
        gap: 0.75rem !important;
    }

    .topbar-right>div:last-child {
        display: none !important;
        /* Hide user name on small mobile */
    }

    .exon-dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .projects-hub-editor-layout {
        grid-template-columns: 1fr !important;
    }

    .exon-table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* EXPERT TABLE RESPONSIVE CARD LOOK */
    .exon-expert-table thead {
        display: none;
    }

    .exon-expert-table tr {
        display: block;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        margin-bottom: 1.25rem;
        padding: 1rem;
    }

    .exon-expert-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1rem 0;
        border: none !important;
        text-align: left !important;
        gap: 1.5rem;
    }

    .exon-expert-table td::before {
        content: attr(data-label);
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.35);
        flex-shrink: 0;
        width: 80px;
        padding-top: 0.2rem;
    }

    .exon-expert-table td>div,
    .exon-expert-table td>span {
        flex: initial;
        width: auto;
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .exon-expert-table td[data-label="PROJE / YAZAR"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .exon-expert-table td[data-label="PROJE / YAZAR"]::before {
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .exon-expert-table td[data-label="PROJE / YAZAR"]>div {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
    }

    .exon-expert-table td:last-child {
        justify-content: center;
        padding-top: 1.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .item-link {
        width: 100%;
        text-align: center;
    }

    .dashboard-page-content {
        padding: 1.25rem;
    }
}

/* Positioning Section */
.positioning-band {
    padding: 120px 0;
    background: #000;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.positioning-content {
    max-width: 900px;
    margin: 0 auto;
}

.positioning-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.positioning-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Final CTA Band */
.final-cta-band {
    padding: 140px 0;
    background: radial-gradient(circle at center, rgba(181, 25, 17, 0.08) 0%, transparent 70%), #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .positioning-band {
        padding: 80px 1.5rem;
    }
    .positioning-content h2 {
        font-size: 2rem;
    }
    .positioning-text {
        font-size: 1.1rem;
    }
    .final-cta-band {
        padding: 100px 1.5rem;
    }
}
.why-us-band {
    padding: 100px 0;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .why-us-band {
        padding: 60px 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- HOW IT WORKS SECTION (PROFESSIONAL UPGRADE) --- */
.how-it-works-band {
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(226, 178, 74, 0.04) 0%, transparent 50%), #090909;
    position: relative;
    overflow: hidden;
}

.hiw-header {
    text-align: center;
    margin-bottom: 80px;
}

.hiw-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
}

.hiw-scenes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Horizontal Timeline Path */
.hiw-scenes::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.hiw-scene {
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hiw-scene:hover {
    transform: translateY(-10px);
}

/* Background Number Watermark */
.hiw-scene::before {
    content: attr(data-step);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Outfit", sans-serif;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.hiw-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.hiw-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.hiw-scene:hover .hiw-icon {
    border-color: var(--accent);
    background: rgba(226, 178, 74, 0.05);
    box-shadow: 0 0 25px rgba(226, 178, 74, 0.15);
}

.hiw-scene:hover .hiw-icon svg {
    color: var(--accent);
    transform: scale(1.1);
}

/* Stage color indicators (refining to dots) */
.hiw-icon::after {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #090909;
}

.hiw-scene.yellow .hiw-icon::after {
    background: #E2B24A;
}

.hiw-scene.blue .hiw-icon::after {
    background: #4bcfff;
}

.hiw-scene.purple .hiw-icon::after {
    background: #9f6bff;
}

.hiw-scene.orange .hiw-icon::after {
    background: #ff7035;
}

.hiw-scene.red .hiw-icon::after {
    background: #ff4545;
}

.hiw-scene.green .hiw-icon::after {
    background: #55e1d2;
}

.hiw-scene h3 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hiw-scene p {
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    padding: 0 5%;
}

.hiw-closing {
    text-align: center;
    margin-top: 100px;
    font-size: 1rem;
    color: var(--accent);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 40px;
    background: rgba(226, 178, 74, 0.04);
    border: 1px solid rgba(226, 178, 74, 0.08);
    border-radius: 100px;
    font-weight: 500;
}

/* --- MODULAR SERVICES SECTION --- */
.modular-services-band {
    padding: 140px 0;
    background: #0d0e12;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.modular-header {
    text-align: center;
    margin-bottom: 80px;
}

.modular-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 0.95;
    margin-top: 1.5rem;
}

.modular-box {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

.modular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.modular-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.modular-item:hover {
    background: rgba(226, 178, 74, 0.05);
    border-color: rgba(226, 178, 74, 0.2);
    transform: scale(1.03);
}

.modular-item.is-selected {
    background: rgba(226, 178, 74, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(226, 178, 74, 0.1);
}

.modular-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(226, 178, 74, 0.1);
    border: 1px solid rgba(226, 178, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.modular-item.is-selected .modular-check {
    background: var(--accent);
    color: #000;
}

.modular-check svg {
    width: 16px;
    height: 16px;
}

.modular-item span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    }

    .hiw-scene::before {
        font-size: 5rem;
        top: -10px;
    }

    .modular-box {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .modular-grid {
        grid-template-columns: 1fr;
    }
}


/* --- ELEVATING MODULAR SERVICES TO ULTRA PREMIUM --- */
.modular-services-band {
    padding: 160px 0;
    position: relative;
}

/* Background Atmospheric Glows */
.modular-services-band::before,
.modular-services-band::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.modular-services-band::before {
    top: 0;
    left: -10%;
    background: var(--accent);
}

.modular-services-band::after {
    bottom: 0;
    right: -10%;
    background: #9f6bff;
}

.modular-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 48px;
    padding: 80px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Internal rim */
}

/* Advanced Grid Styling */
.modular-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 column layout for more room */
    gap: 24px;
}

.modular-item {
    position: relative;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 28px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover Shine Effect */
.modular-item::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.modular-item:hover::after {
    opacity: 1;
}

.modular-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Premium Selection State */
.modular-item.is-selected {
    background: linear-gradient(135deg, rgba(226, 178, 74, 0.15) 0%, rgba(226, 178, 74, 0.05) 100%);
    border-color: var(--accent);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(226, 178, 74, 0.15);
}

.modular-check {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.modular-item.is-selected .modular-check {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(226, 178, 74, 0.4);
    transform: scale(1.1);
}

.modular-item span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.modular-item.is-selected span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
    .modular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .modular-box {
        padding: 40px 24px;
        border-radius: 32px;
    }
}


/* --- ALIGNING SIGNATURE METHOD WITH NEW PREMIUM STYLE --- */
.method-band {
    padding: 120px 0;
    background: #090909;
}

.signature-method {
    position: relative;
    text-align: center;
}

.signature-method__timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    border: none;
    /* remove old borders if any */
}

/* Horizontal Connector */
.signature-method__timeline::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.signature-step {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.signature-step:hover {
    background: transparent;
    transform: translateY(-5px);
}

/* Orb Update (Icon part) */
.signature-step__orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    margin: 0;
}

.signature-step.is-active .signature-step__orb {
    background: rgba(226, 178, 74, 0.05);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(226, 178, 74, 0.2);
}

/* Watermark Numbers */
.signature-step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Outfit", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: all 0.4s ease;
}

.signature-step.is-active::before {
    color: rgba(226, 178, 74, 0.04);
}

.signature-step__title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    transition: all 0.4s ease;
}

.signature-step.is-active .signature-step__title {
    color: #fff;
}

.signature-step__tag,
.signature-step__duration {
    display: none;
    /* Clean up the timeline view, keep it detailed in panels */
}

/* Detail Panel Update (Glassmorphism) */
.signature-method__detail {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    min-height: 400px;
    position: relative;
    margin-top: 40px;
    text-align: left;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.signature-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.signature-panel.is-open {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.signature-panel__content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
}

.signature-panel__content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.signature-panel__content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.signature-panel__content li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.signature-panel__content li::before {
    content: "✦";
    color: var(--active-accent, var(--accent));
}

.signature-panel__duration {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--active-accent, var(--accent));
    margin-top: 40px;
}

/* Glass glow based on active step */
.signature-method__detail::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--active-accent, var(--accent)) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transition: background 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .signature-method__timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .signature-method__timeline::after {
        display: none;
    }

    .signature-panel.is-open {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signature-method__detail {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .signature-panel__content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .signature-method__timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .signature-step::before {
        font-size: 4rem;
    }
}


/* --- FIXING THE GAP IN SIGNATURE PANEL --- */
.signature-panel__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.signature-panel.is-open {
    display: flex;
    /* Changed from grid to flex for better control */
    flex-direction: row;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.signature-panel__content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    /* Center the content if it's the only thing */
    position: relative;
    z-index: 2;
}

/* If we want a 2-column feel without extra elements, 
   we can just ensure the content takes the full width and use internal grid for the list */
.signature-panel__content h3 {
    text-align: center;
}

.signature-panel__content p {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.signature-panel__content ul {
    max-width: 700px;
    margin: 40px auto;
}

.signature-panel__content .signature-panel__duration {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

@media (max-width: 1100px) {
    .signature-panel.is-open {
        flex-direction: column;
        text-align: center;
    }
}

/* --- HARMONIZING REMAINING SECTIONS WITH PREMIUM STYLE --- */

/* 1. TÜRLERE ÖZEL YAKLAŞIM (Genre Band) */
.genre-band {
    padding: 120px 0;
    background: #090909;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.genre-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.genre-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Dynamic glow for genre cards */
.genre-card.purple:hover {
    box-shadow: 0 40px 80px rgba(138, 43, 226, 0.1);
    border-color: #9f6bff;
}

.genre-card.teal:hover {
    box-shadow: 0 40px 80px rgba(85, 225, 210, 0.1);
    border-color: #55e1d2;
}

.genre-card.red:hover {
    box-shadow: 0 40px 80px rgba(255, 69, 0, 0.1);
    border-color: #ff4545;
}

.genre-card.amber:hover {
    box-shadow: 0 40px 80px rgba(245, 182, 79, 0.1);
    border-color: #f5b64f;
}

.genre-card.bronze:hover {
    box-shadow: 0 40px 80px rgba(217, 149, 74, 0.1);
    border-color: #d9954a;
}

.genre-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-top: 20px;
}

.genre-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* 2. UZMAN EDİTÖRLER (Editor Band) */
.editor-band {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(226, 178, 74, 0.02), transparent 70%), #090909;
    text-align: center;
}

.editor-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 32px !important;
    padding: 32px !important;
    transition: all 0.5s ease;
}

.editor-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* 3. UZMANLIK KATMANLARI (Expertise Layers) */
.expertise-mid-band {
    padding: 120px 0;
    background: #0d0e12;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.expertise-card:hover {
    border-color: rgba(226, 178, 74, 0.2);
    background: rgba(226, 178, 74, 0.05);
    transform: translateY(-8px);
}

.expertise-card-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.expertise-card-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.72rem;
}

/* 4. DÖNÜŞÜM ARŞİVİ (Case Study Band) */
.case-study-band {
    padding: 120px 0;
    background: #090909;
}

.case-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 24px;
}

.case-card-cover-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* 5. GERÇEK OKUYUCU SİMÜLASYONU (Beta Band) */
.beta-band {
    padding: 140px 0;
    background: #0d0e12;
    position: relative;
}

.beta-layout {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 48px;
    padding: 60px;
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 60px;
}

.beta-feature-icon {
    background: rgba(226, 178, 74, 0.1);
    color: var(--accent);
    border-radius: 12px;
}

.beta-chart-wrap {
    background: rgba(15, 15, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
}

.beta-series polyline {
    transition: all 0.5s ease;
    stroke-width: 5;
}

/* Make chart thicker */

@media (max-width: 1200px) {
    .beta-layout {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        border-radius: 32px;
    }
}

/* 6. YAZARLAR İÇİN REHBERLER (Resources Band) */
.resources-band {
    padding: 120px 0;
    background: #090909;
}

.resource-card-mini {
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 28px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.resource-card-mini:hover {
    transform: translateY(-12px) !important;
    border-color: rgba(226, 178, 74, 0.3) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
}

.resource-card-mini h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

/* 7. ESERİNİ ZİRVEYE TAŞIMA ZAMANI (Final CTA) */
.final-cta {
    padding: 160px 0;
    background: radial-gradient(circle at center, rgba(226, 178, 74, 0.08), transparent 70%), #0d0e12;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.final-cta .cta.home-cta {
    padding: 24px 60px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    box-shadow: 0 20px 50px rgba(226, 178, 74, 0.3);
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.final-cta .cta.home-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 70px rgba(226, 178, 74, 0.4);
}


/* --- RESOURCES GRID & CARD DEFAULTS --- */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.resource-card-image {
    height: 200px;
    overflow: hidden;
    background: rgba(226, 178, 74, 0.05);
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.resource-card-mini:hover .resource-card-image img {
    transform: scale(1.1);
}

.resource-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.resource-card-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Fix for signature detail duration if needed */
.signature-panel__duration {
    background: linear-gradient(90deg, #9d0f09, #de321a) !important;
    color: #fff !important;
    border: none !important;
}


/* --- FOOTER LOGO STYLING --- */
.studio-footer {
    padding: 100px 0;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: block;
    height: 120px;
    /* Larger than header */
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
    transition: all 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(226, 178, 74, 0.15));
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 250px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 90px;
    }
}


/* --- GLOBAL UNIFORM FONT --- */
body,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea,
p,
span,
a {
    font-family: "Outfit", "Inter", sans-serif !important;
}

/* --- REFINING SECTION SEPARATION --- */
section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    /* Subtle separation */
}

.method-band {
    background: #090909 !important;
    /* Pure dark back as requested */
}

.method-band::before {
    display: none !important;
    /* Remove any previous background effects */
}

/* Ensure distinction by alternating slightly darker/lighter shades or using glows */
.how-it-works-band {
    background: #070707;
}

.method-band {
    background: #090909;
}

.modular-services-band {
    background: #070707;
}

.expertise-mid-band {
    background: #090909;
}

.genre-band {
    background: #070707;
}

.case-study-band {
    background: #090909;
}

.beta-band {
    background: #070707;
}

.resources-band {
    background: #090909;
}

.final-cta {
    background: #070707;
}

/* Re-polishing eyebrows for uniformity */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}


/* --- CENTERING FOOTER BRAND CONTENT --- */
.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* --- TIGHTENING VERTICAL PADDINGS FOR COHESION --- */
.how-it-works-band,
.method-band,
.modular-services-band,
.genre-band,
.editor-band,
.expertise-mid-band,
.case-study-band,
.beta-band,
.resources-band {
    padding: 70px 0 !important;
}

.final-cta {
    padding: 100px 0 !important;
}

.studio-footer {
    padding: 60px 0 !important;
}

/* Ensure consistent section spacing on mobile too */
@media (max-width: 768px) {

    .how-it-works-band,
    .method-band,
    .modular-services-band,
    .genre-band,
    .expertise-mid-band,
    .case-study-band,
    .beta-band,
    .resources-band,
    .final-cta {
        padding: 50px 0 !important;
    }
}


/* --- FIXING BETA BAND CONTRAST & READABILITY --- */
.beta-band h2 {
    color: #fff !important;
    font-family: "Outfit", sans-serif;
    font-weight: 900;
}

.beta-features li strong {
    color: #fff !important;
    /* Make feature titles pure white */
    font-size: 1.15rem;
    display: block;
    margin-top: 10px;
}

.beta-features li span {
    color: rgba(255, 255, 255, 0.7) !important;
    /* Make subtext more readable */
    font-size: 0.95rem;
}

.beta-feature-icon {
    background: rgba(226, 178, 74, 0.2) !important;
    border: 1px solid rgba(226, 178, 74, 0.4);
    color: var(--accent) !important;
}

.beta-band .section-kicker.dark {
    color: rgba(255, 255, 255, 0.8) !important;
    /* Less dark, more readable */
}

/* Ensure the chart labels and callouts are also readable */
.beta-callout span {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.chart-tabs span.tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
}


/* --- CENTERING BETA FEATURE ICONS --- */
.beta-features li {
    display: flex;
    align-items: center;
    /* Center icon vertically with text */
    gap: 20px;
    margin-bottom: 30px;
}

.beta-feature-icon {
    flex-shrink: 0;
    /* Don't squash icon */
    margin-top: 0 !important;
    /* Remove any previous top margin */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.beta-features li>div {
    display: flex;
    flex-direction: column;
    /* Stack Title and Desc */
}

.beta-features li strong {
    margin-top: 0 !important;
    /* Remove top margin that pushed text down */
    line-height: 1.2;
}


/* --- GLOBAL SECTION HEADER STANDARD (BETA STYLE) --- */
h2 {
    font-family: "Outfit", sans-serif !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    /* Pure high-contrast white */
    font-size: clamp(2rem, 5vw, 2.5rem) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;

}

/* Standardization for eyebrows across all sections */
.eyebrow {
    font-family: "Outfit", sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    margin-bottom: 1rem !important;
    display: block !important;
    opacity: 1 !important;
}

/* Section descriptions/kickers consolidation */
.section-kicker {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    max-width: 800px;
    margin-bottom: 50px !important;
    line-height: 1.6 !important;
}

/* --- PREMIUM TOOLTIP SYSTEM --- */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 12px 16px;
    background: #000;
    color: #fff;
    font-size: 0.72rem;
    line-height: 1.4;
    border-radius: 12px;
    width: 240px;
    text-align: center;
    white-space: normal;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 178, 74, 0.2);
    font-family: inherit;
    font-weight: 400;
}

/* Tooltip Arrow */
[data-tooltip]::before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    [data-tooltip]::after {
        width: 180px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
}