/* ==========================================================================
   TENure Specific Premium Branding Overrides
   ========================================================================== */

:root {
    --primary: #818cf8;
    --primary-hover: #6366f1;
    --accent-glow: rgba(129, 140, 248, 0.4);
}

/* Typography Weight Play for Hero Logo Wordmark */
.brand-title {
    font-size: 6rem !important;
    letter-spacing: -2px !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    display: inline-block;
}

/* Emphasize the TEN/10 portion of the brand logo */
.brand-title .weight-ten {
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Structural clean dropping of the trailing string */
.brand-title .weight-ure {
    font-weight: 300;
    color: rgba(248, 250, 252, 0.4);
    letter-spacing: -1px;
}

/* Layout alignment adjustments for structural readability */
.subtitle-main {
    font-weight: 500 !important;
    letter-spacing: -0.5px !important;
    color: #e2e8f0 !important;
}

/* Tweak feature card icon highlights to emphasize modern vault aesthetic */
.features-section .feature-icon {
    color: #818cf8 !important;
    /* Premium Indigo Accent tint */
}

/* Handle smaller display responsive properties gracefully */
@media (max-width: 768px) {
    .brand-title {
        font-size: 4rem !important;
    }

    .subtitle-main {
        font-size: 1.75rem !important;
        margin-top: 0px !important;
    }
}

/* ==========================================================================
   Immersive Workspace Component Styles
   ========================================================================== */

.workspace-container {
    max-width: 1000px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.workspace-tabs {
    display: flex;
    background: rgba(15, 17, 26, 0.4);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 8px 0;
    gap: 4px;
}

.tab-trigger {
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    color: var(--text-muted);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-trigger svg {
    width: 16px;
    height: 16px;
}

.tab-trigger:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.tab-trigger.active {
    color: var(--text-main);
    background: var(--bg-dark);
    border-color: var(--border-color);
    box-shadow: inset 0 2px 0 var(--primary);
}

.workspace-screen {
    padding: 40px;
    min-height: 380px;
    background: rgba(15, 17, 26, 0.2);
}

.view-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.view-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.view-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.view-copy h3 {
    font-size: 1.8rem;
    margin-top: 12px;
    color: white !important;
}

.view-copy p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.micro-features-list {
    list-style: none;
}

.micro-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Simulated UI Visual Mockups */
.view-visual {
    background: #090a0f;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.6);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.console-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.console-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.console-box pre {
    color: #38bdf8;
    line-height: 1.5;
}

.ledger-box {
    gap: 10px;
}

.ledger-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.ledger-row.warning {
    border-left: 3px solid #f59e0b;
    color: #fef08a;
}

.ledger-row.success {
    border-left: 3px solid #10b981;
    color: #a7f3d0;
}

.ledger-row.info {
    border-left: 3px solid #3b82f6;
    color: #bfdbfe;
}

.upload-zone-mock {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-bar-mock {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-mock .fill {
    width: 100%;
    height: 100%;
    background: var(--primary);
}

.ticket-box {
    gap: 12px;
    text-align: left;
}

.ticket-header-mock {
    font-weight: 600;
    color: white;
}

.ticket-status-mock {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.ticket-status-mock.resolved {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.ticket-action-mock {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .view-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .workspace-tabs {
        flex-wrap: wrap;
    }

    .tab-trigger {
        flex-grow: 1;
        justify-content: center;
        border-radius: 6px;
        margin-bottom: 4px;
    }
}