/**
 * No-BS Toolbox UI System — My Royal Chef
 * Industrial utilitarian, zero fluff, high info density
 * Fonts: Bricolage Grotesque (headings/body), JetBrains Mono (labels/technical)
 */

body.toolbox-body #neural-canvas {
    display: none;
}

body.toolbox-body {
    background-image: none;
}

body.toolbox-body::before {
    display: none;
}

.toolbox-page {
    --tb-bg: #0c0c0d;
    --tb-surface: #141416;
    --tb-border: 1px solid rgba(255, 255, 255, 0.08);
    --tb-border-strong: 1px solid rgba(255, 255, 255, 0.14);
    --tb-text: #f5f5f5;
    --tb-text-muted: rgba(255, 255, 255, 0.55);
    --tb-accent: #84cc16;
    --tb-accent-dim: rgba(132, 204, 22, 0.15);
    --tb-radius: 2px;
    --tb-space-xs: 6px;
    --tb-space-sm: 12px;
    --tb-space-md: 20px;
    --tb-space-lg: 28px;
    --tb-space-xl: 40px;
    --tb-fs-xs: 12px;
    --tb-fs-sm: 13px;
    --tb-fs-base: 14px;
    --tb-fs-lg: 16px;
    --tb-fs-xl: 20px;
    --tb-fs-2xl: 24px;
    --tb-lh: 1.4;
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: var(--tb-fs-base);
    line-height: var(--tb-lh);
    color: var(--tb-text);
    background: var(--tb-bg);
}

.toolbox-page .container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--tb-space-md);
}

/* Hero = one line + one button */
.tb-hero {
    padding: var(--tb-space-xl) 0 var(--tb-space-lg);
}

.tb-hero-title {
    font-size: var(--tb-fs-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--tb-space-sm);
    color: var(--tb-text);
}

.tb-hero-title .accent { color: var(--tb-accent); }

.tb-hero-desc {
    font-size: var(--tb-fs-base);
    color: var(--tb-text-muted);
    margin-bottom: var(--tb-space-lg);
    max-width: 520px;
}

.tb-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 180px;
    padding: 0 var(--tb-space-lg);
    background: var(--tb-accent);
    color: #0a0a0a;
    font-family: inherit;
    font-size: var(--tb-fs-base);
    font-weight: 600;
    border: none;
    border-radius: var(--tb-radius);
    cursor: pointer;
    text-decoration: none;
    transition: background 120ms, transform 120ms;
}

.tb-cta-primary:hover {
    background: #9ae025;
    transform: translateY(-1px);
}

.tb-cta-primary:active { transform: translateY(0); }

.tb-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--tb-space-md);
    background: transparent;
    color: var(--tb-text-muted);
    font-family: inherit;
    font-size: var(--tb-fs-sm);
    border: var(--tb-border);
    border-radius: var(--tb-radius);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 120ms, color 120ms;
}

.tb-cta-secondary:hover {
    border-color: var(--tb-accent);
    color: var(--tb-accent);
}

/* Dense bullet list — no icons, just text */
.tb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-list li {
    position: relative;
    padding-left: var(--tb-space-md);
    margin-bottom: var(--tb-space-xs);
    font-size: var(--tb-fs-sm);
    color: var(--tb-text-muted);
}

.tb-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--tb-accent);
    font-weight: 600;
}

/* Sections */
.tb-section {
    padding: var(--tb-space-lg) 0;
    border-top: var(--tb-border);
}

.tb-section-title {
    font-size: var(--tb-fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tb-text-muted);
    margin-bottom: var(--tb-space-sm);
}

.tb-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--tb-space-md);
}

@media (min-width: 520px) {
    .tb-steps { grid-template-columns: repeat(3, 1fr); }
}

.tb-step {
    padding: var(--tb-space-sm) 0;
}

.tb-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--tb-fs-xs);
    font-weight: 500;
    color: var(--tb-accent);
    margin-bottom: 4px;
}

.tb-step h3 {
    font-size: var(--tb-fs-base);
    font-weight: 600;
    margin-bottom: 2px;
}

.tb-step p {
    font-size: var(--tb-fs-sm);
    color: var(--tb-text-muted);
    margin: 0;
}

/* Pricing */
.tb-pricing-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--tb-space-lg) var(--tb-space-md);
}

.tb-pricing-hero {
    margin-bottom: var(--tb-space-xl);
}

.tb-pricing-hero h1 {
    font-size: var(--tb-fs-xl);
    font-weight: 700;
    margin-bottom: var(--tb-space-xs);
}

.tb-pricing-hero p {
    font-size: var(--tb-fs-sm);
    color: var(--tb-text-muted);
}

.tb-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--tb-border-strong);
    border-radius: var(--tb-radius);
    overflow: hidden;
}

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

.tb-plan {
    padding: var(--tb-space-lg);
    background: var(--tb-surface);
    border-right: var(--tb-border);
}

.tb-pricing-grid .tb-plan:last-child { border-right: none; }

@media (max-width: 560px) {
    .tb-plan { border-right: none; border-bottom: var(--tb-border); }
    .tb-pricing-grid .tb-plan:last-child { border-bottom: none; }
}

.tb-plan.featured {
    background: rgba(132, 204, 22, 0.06);
}

@media (min-width: 561px) {
    .tb-plan.featured { border-left: 2px solid var(--tb-accent); }
}

.tb-plan-name {
    font-size: var(--tb-fs-base);
    font-weight: 600;
    margin-bottom: var(--tb-space-xs);
}

.tb-plan-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--tb-fs-xl);
    font-weight: 600;
    margin-bottom: var(--tb-space-sm);
}

.tb-plan-price span {
    font-size: var(--tb-fs-sm);
    font-weight: 400;
    color: var(--tb-text-muted);
}

.tb-plan-desc {
    font-size: var(--tb-fs-sm);
    color: var(--tb-text-muted);
    margin-bottom: var(--tb-space-md);
}

.tb-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--tb-space-lg);
}

.tb-plan-features li {
    font-size: var(--tb-fs-sm);
    color: var(--tb-text-muted);
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.tb-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tb-accent);
    font-weight: 600;
}

.tb-plan .tb-cta-primary,
.tb-plan .tb-cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
}
