.terminal {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    background: #07111f;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.terminal-bar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.terminal-bar span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.75);
}

.terminal-body {
    padding: 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #cbd5e1;
}
.terminal-code code {
    font-family: inherit;
}

.terminal-code.response {
    color: #dbeafe;
}

@media (max-width: 640px) {
    .container,
    .nav-wrap {
    width: min(100% - 24px, var(--st-max));
    }

    .section,
    .pricing {
    padding: 58px 0;
    }

    .hero {
    padding: 46px 0 54px;
    }

    .cta-row,
    .btn {
    width: 100%;
    }

    .pricing-card-grid {
    grid-template-columns: 1fr;
    }

    .brand-name small {
    display: none;
    }

    .terminal-body {
    font-size: 0.72rem;
    padding: 14px;
    }

    .terminal-code {
    padding: 12px;
    }
}