.workstation-page {
    min-height: calc(100vh - var(--header-height));
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 34%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eff6ff 46%, #f8fafc 100%);
}

.workstation-hero {
    padding: 56px 0 72px;
}

.workstation-hero-copy {
    max-width: 780px;
    margin-bottom: 40px;
}

.workstation-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workstation-hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.workstation-hero-copy p {
    margin-top: 16px;
    max-width: 720px;
    font-size: 18px;
    color: #475569;
}

.workstation-hero-image {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.workstation-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Install Section */
.workstation-install {
    margin-top: 48px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.workstation-install h2 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 24px;
}

.workstation-install-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.workstation-install-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workstation-install-step h3 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
}

.workstation-install-step p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.code-block {
    background: #1e293b;
    border-radius: 12px;
    padding: 12px 16px;
    overflow-x: auto;
}

.code-block code {
    color: #e2e8f0;
    font-size: 13px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* Features Section */
.workstation-features {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    color: #0f172a;
    text-align: center;
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 48px;
    margin-top: -32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-item {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3b82f6;
}

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

.feature-item h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Commands Section */
.workstation-commands {
    padding: 64px 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.8));
}

.commands-table {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.commands-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.commands-table thead {
    background: linear-gradient(135deg, #3b82f6, #10b981);
}

.commands-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.commands-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 14px;
    color: #334155;
}

.commands-table tr:last-child td {
    border-bottom: none;
}

.commands-table tr:hover td {
    background: rgba(59, 130, 246, 0.04);
}

.commands-table code {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 13px;
    font-weight: 600;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* Shortcuts Section */
.workstation-shortcuts {
    padding: 64px 0;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.shortcut-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.shortcut-item kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    box-shadow: 0 2px 0 #cbd5e1;
}

.shortcut-item span {
    font-size: 14px;
    color: #475569;
}

/* CTA Section */
.workstation-cta {
    padding: 72px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.workstation-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: #0f172a;
    margin-bottom: 12px;
}

.workstation-cta p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff;
    box-shadow: 0 16px 28px rgba(59, 130, 246, 0.24);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(59, 130, 246, 0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta-buttons .btn-outline:hover {
    background: rgba(59, 130, 246, 0.06);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
    .workstation-install-grid,
    .feature-grid,
    .shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .workstation-hero {
        padding: 36px 0 56px;
    }

    .workstation-install {
        padding: 22px;
    }

    .workstation-install-grid,
    .feature-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .shortcuts-grid {
        gap: 12px;
    }
}
