.menu-title {
    color: #ffb454 !important;
}

.ferris-img {
    float: left;
    margin-right: 15px;
    width: 20%;
}

@media (max-width: 768px) {
    .ferris-img {
        float: none;
        display: block;
        margin: 0 auto 15px auto;
        width: 80%;
    }
}

.site-footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--quote-border);
    text-align: center;
    color: var(--inline-code-color);
    font-size: 1.4rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited {
    color: var(--inline-code-color);
    text-decoration: none;
    -webkit-text-fill-color: var(--inline-code-color);
}

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

/* Hero Row */
.hero-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0 2rem 0;
}

.ferris-img-hero {
    width: 140px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .ferris-img-hero {
        width: 120px;
    }
}

/* SSH Demo Terminal */
.ssh-demo-container {
    text-align: center;
}

.ssh-demo-label {
    margin-bottom: 1rem;
}

.terminal-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 50px rgba(255, 180, 84, 0.1);
    cursor: default;
}

.terminal-prompt {
    color: #98c379;
    font-weight: 700;
    user-select: none;
}

.terminal-command {
    color: #ffb454;
    letter-spacing: 0.03em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .terminal-shell {
        padding: 0.75rem 1rem;
    }
}

.hero-badges {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    flex-wrap: wrap;
}

.hero-badges img {
    height: 22px;
}

/* Waitlist CTA */
.waitlist-card {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(111, 66, 193, 0.5);
    border-radius: 12px;
    background: rgba(111, 66, 193, 0.08);
    box-shadow: 0 4px 28px rgba(111, 66, 193, 0.15);
}

.waitlist-card-title {
    margin-top: 0;
}

.waitlist-card p {
    margin-bottom: 0;
}

.waitlist-cta-row {
    margin: 1.5rem 0 0 0;
}

.waitlist-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6f42c1;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(111, 66, 193, 0.35);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.waitlist-cta:hover {
    background: #7d4fd1;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(111, 66, 193, 0.5);
}

.waitlist-cta-icon {
    flex-shrink: 0;
}

.waitlist-toast {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: min(90vw, 32rem);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
    animation: waitlist-toast-in 0.2s ease;
    background: #b3261e;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes waitlist-toast-in {
    from {
        opacity: 0;
        transform: translate(-50%, -0.5rem);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.waitlist-cta-note {
    margin: 0.75rem 0 0 0;
    font-size: 1.4rem;
    opacity: 0.85;
}

.waitlist-social-note {
    margin: 0.75rem 0 0 0;
}

/* Trusted By */
.trusted-by {
    text-align: center;
    margin: 2rem 0;
}

.trusted-by-tagline {
    color: var(--sidebar-fg);
    margin-bottom: 1rem;
    text-align: left;
}

.trusted-by-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.trusted-by-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #ffb454;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.trusted-by-project,
.trusted-by-project:hover,
.trusted-by-project:active,
.trusted-by-project:visited,
.trusted-by-project:link {
    text-decoration: none !important;
}

.trusted-by-project:hover {
    border-color: rgba(255, 180, 84, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 180, 84, 0.1);
}

.trusted-by-name {
    font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #ffb454;
    -webkit-text-fill-color: #ffb454;
    text-decoration: none;
}

.trusted-by-project:hover .trusted-by-name {
    text-decoration: none;
}

.trusted-by-project img {
    height: 20px;
}

@media (max-width: 768px) {
    .trusted-by-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trusted-by-project {
        padding: 0.3rem 0.6rem;
    }
}