

/* Start:/local/templates/cdrive/styles.css?177547159789*/
/* CyberDrive — стили контента (визуальный редактор) */

/* End */


/* Start:/local/templates/cdrive/template_styles.css?177547159745025*/
/* ============================================
   CyberDrive Technology — Landing Page
   Theme: Warm Dark Charcoal + Amber/Coral accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-bg: #141216;
    --color-bg-warm: #1a171e;
    --color-surface: #201d24;
    --color-text: #e8e4e0;
    --color-text-secondary: #9a9490;
    --color-text-muted: #6b6560;
    --color-accent-1: #e8723a;
    --color-accent-2: #d4553a;
    --color-accent-3: #f5a623;
    --color-gradient-start: #e8723a;
    --color-gradient-mid: #d4553a;
    --color-gradient-end: #f5a623;
    --glass-bg: rgba(32, 29, 36, 0.6);
    --glass-border: rgba(232, 114, 58, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Canvas Background --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility --- */
.gradient-text {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* --- Animations on Scroll --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(20, 18, 22, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-3));
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    opacity: 0.9;
    color: white !important;
    transform: translateY(-1px);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
    color: white;
    box-shadow: 0 4px 20px rgba(232, 114, 58, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(232, 114, 58, 0.5);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Section (layout in hero-wow.css) --- */

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 114, 58, 0.1);
    color: var(--color-accent-1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 114, 58, 0.15);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-1);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(45, 42, 38, 0.1);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll-hint span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-accent-1);
    border-bottom: 2px solid var(--color-accent-1);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* --- Section Common --- */
.section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 114, 58, 0.1);
    color: var(--color-accent-1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* --- About Section --- */
.about {
    background: var(--color-bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    padding: 36px;
    transition: all var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212, 85, 58, 0.12);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232, 114, 58, 0.1), rgba(245, 166, 35, 0.1));
    color: var(--color-accent-1);
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Competencies Section --- */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comp-card {
    position: relative;
    padding: 40px 32px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 114, 58, 0.1);
    transition: all var(--transition);
    overflow: hidden;
}

.comp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-3));
    opacity: 0;
    transition: opacity var(--transition);
}

.comp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(232, 114, 58, 0.12);
    border-color: rgba(232, 114, 58, 0.15);
}

.comp-card:hover::before {
    opacity: 1;
}

.comp-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232, 114, 58, 0.12);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.comp-card-icon {
    color: var(--color-accent-1);
    margin-bottom: 20px;
}

.comp-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.comp-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* --- Industries Section --- */
.industries {
    background: var(--color-bg-warm);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.industry-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(232, 114, 58, 0.03), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-icon {
    color: var(--color-accent-1);
    margin-bottom: 24px;
}

.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags span {
    padding: 4px 12px;
    background: rgba(232, 114, 58, 0.08);
    color: var(--color-accent-1);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* --- Tech Stack Section --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tech-category {
    padding: 32px;
}

.tech-category h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--color-bg);
    border: 1px solid rgba(232, 114, 58, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition);
    cursor: default;
}

.tech-tag:hover {
    background: rgba(232, 114, 58, 0.08);
    border-color: rgba(232, 114, 58, 0.25);
    color: var(--color-accent-1);
    transform: translateY(-2px);
}

/* --- Process / Timeline Section --- */
.process {
    background: var(--color-bg-warm);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 0 60px;
    overflow: visible;
}

.timeline-line {
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent-1), var(--color-accent-3), rgba(245, 166, 35, 0.2));
}

.timeline-item {
    position: relative;
    padding: 0 0 48px 0;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -44px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent-1);
    border: 3px solid var(--color-bg-warm);
    box-shadow: 0 0 0 3px rgba(232, 114, 58, 0.2);
    transition: all var(--transition);
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(232, 114, 58, 0.15);
}

.timeline-content {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
}

.timeline-step {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    display: inline-block;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 16px 0 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(232, 114, 58, 0.08);
    color: var(--color-accent-1);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-text);
}

.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.contact-item a:hover {
    color: var(--color-accent-1);
}

/* Form */
.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 3px rgba(232, 114, 58, 0.1);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 0 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-accent-1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* Form success state */
.contact-form.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 114, 58, 0.1), rgba(245, 166, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-accent-1);
}

/* --- Footer --- */
.footer {
    background: #0d0b10;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .comp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comp-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        background: var(--color-bg);
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .burger {
        display: flex;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .comp-grid {
        grid-template-columns: 1fr;
    }

    .comp-card:last-child {
        grid-column: span 1;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-scroll-hint {
        display: none;
    }

    .timeline {
        padding-left: 48px;
    }

    .timeline-line {
        left: 16px;
    }

    .timeline-dot {
        left: -39px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .hero-badge {
        font-size: 0.78rem;
    }
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-glow {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }

    * {
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   HERO WOW — Inline effects
   Dark matrix bg + Live terminal + Glitch text + Orbit
   ============================================ */

/* --- Hero restructure: 2 columns --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #0d0d14;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* --- Dark matrix background in hero --- */
.hero-dark-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#hero-matrix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.06) 2px,
        rgba(0, 0, 0, 0.06) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* --- Navbar colors when over dark hero --- */
.navbar:not(.scrolled) .logo-text {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: #ffffff;
}

.navbar:not(.scrolled) .burger span {
    background: #ffffff;
}

/* Override text colors for dark hero */
.hero .hero-badge {
    background: rgba(232, 114, 58, 0.15);
    border-color: rgba(232, 114, 58, 0.3);
    color: #f5a623;
}

.hero .hero-title {
    color: #ffffff;
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.hero .hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero .stat-number {
    color: #ffffff;
}

.hero .stat-label {
    color: rgba(255, 255, 255, 0.4);
}

.hero .stat-divider {
    background: rgba(255, 255, 255, 0.1);
}

.hero .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-ghost:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
}

.hero .hero-scroll-hint span {
    color: rgba(255, 255, 255, 0.3);
}

.hero .scroll-arrow {
    border-color: var(--color-accent-1);
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 114, 58, 0.12) 0%, rgba(245, 166, 35, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite;
}

/* ============================================
   GLITCH TEXT on "технологии"
   ============================================ */
.glitch-word {
    position: relative;
    display: inline-block;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-word::before,
.glitch-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-background-clip: text;
    background-clip: text;
    overflow: hidden;
    pointer-events: none;
}

.glitch-word::before {
    background: linear-gradient(135deg, #e8723a, #d4553a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGlitch1 4s ease-in-out infinite;
}

.glitch-word::after {
    background: linear-gradient(135deg, #f5a623, #e8723a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGlitch2 4s ease-in-out infinite;
}

@keyframes heroGlitch1 {
    0%, 85%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    86% { clip-path: inset(20% 0 50% 0); transform: translate(-4px, -1px); }
    88% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 1px); }
    90% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, 2px); }
    92% { clip-path: inset(10% 0 70% 0); transform: translate(4px, -2px); }
    94% { clip-path: inset(70% 0 5% 0); transform: translate(-3px, 1px); }
    95% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

@keyframes heroGlitch2 {
    0%, 83%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    84% { clip-path: inset(50% 0 20% 0); transform: translate(3px, 2px); }
    86% { clip-path: inset(15% 0 60% 0); transform: translate(-4px, -1px); }
    88% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
    90% { clip-path: inset(30% 0 40% 0); transform: translate(-3px, 1px); }
    92% { clip-path: inset(5% 0 80% 0); transform: translate(4px, 2px); }
    93% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

/* ============================================
   LIVE TERMINAL in Hero
   ============================================ */
.hero-terminal {
    width: 100%;
    max-width: 480px;
    background: rgba(12, 12, 20, 0.85);
    border: 1px solid rgba(232, 114, 58, 0.2);
    border-radius: 12px;
    box-shadow:
        0 0 60px rgba(232, 114, 58, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.term-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.term-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green { background: #28c840; }

.term-title {
    margin-left: 8px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.term-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.75;
    min-height: 280px;
    max-height: 340px;
    overflow: hidden;
    color: #c8c8d0;
}

.term-line {
    white-space: pre-wrap;
    word-break: break-all;
    min-height: 1.75em;
    opacity: 0;
    transform: translateY(4px);
    animation: termLineIn 0.3s ease forwards;
}

.term-line .prompt {
    color: #28c840;
    font-weight: 700;
}

.term-line .cmd {
    color: #e8e8f0;
}

.term-line.output-line {
    color: rgba(200, 200, 210, 0.5);
    font-size: 0.76rem;
}

.term-line.output-line.success {
    color: #28c840;
    font-weight: 600;
}

.term-line.output-line.accent {
    color: #e8723a;
}

@keyframes termLineIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Blinking cursor */
.term-cursor {
    display: inline-block;
    width: 7px;
    height: 1.1em;
    background: #e8723a;
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.6s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   FLOATING TECH BADGES around terminal
   ============================================ */
.float-tag {
    position: absolute;
    padding: 5px 14px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(232, 114, 58, 0.85);
    background: rgba(232, 114, 58, 0.08);
    border: 1px solid rgba(232, 114, 58, 0.18);
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

/* Position each tag around the terminal, outside its bounds */
.ft-1 { top: -14px;  right: 40px;  animation: floatY 3.5s ease-in-out infinite; }
.ft-2 { top: 20%;    right: -60px; animation: floatY 4.0s ease-in-out 0.5s infinite; }
.ft-3 { bottom: 20%; right: -50px; animation: floatY 3.8s ease-in-out 1.0s infinite; }
.ft-4 { bottom: -14px;left: 30px;  animation: floatY 4.2s ease-in-out 0.3s infinite; }
.ft-5 { top: 20%;    left: -55px;  animation: floatY 3.6s ease-in-out 0.8s infinite; }
.ft-6 { top: -14px;  left: 50px;   animation: floatY 4.5s ease-in-out 1.2s infinite; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-terminal {
        max-width: 560px;
    }

    .float-tag {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-terminal {
        max-width: 100%;
    }

    .term-body {
        font-size: 0.72rem;
        padding: 14px;
        min-height: 200px;
        max-height: 260px;
    }

    /* Stats stay horizontal on mobile */
    .hero .hero-stats {
        gap: 20px;
    }

    .hero .stat-number {
        font-size: 1.8rem;
    }

    .hero .stat-plus {
        font-size: 1.4rem;
    }

    .hero .stat-divider {
        width: 1px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .term-body {
        font-size: 0.65rem;
        min-height: 160px;
        max-height: 220px;
    }

    .hero .hero-stats {
        gap: 16px;
    }

    .hero .stat-number {
        font-size: 1.5rem;
    }

    .hero .stat-label {
        font-size: 0.72rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .glitch-word::before,
    .glitch-word::after {
        animation: none;
        clip-path: inset(0 0 100% 0);
    }

    .float-tag {
        animation: none;
    }

    .term-line {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
/* ============================================
   LIVE DASHBOARD — Production metrics
   ============================================ */

.dashboard {
    background: #0d0b10;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* --- Card base --- */
.dash-card {
    background: rgba(20, 18, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.3s ease;
}

.dash-card:hover {
    border-color: rgba(232, 114, 58, 0.2);
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dash-card-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Status dot --- */
.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dash-dot.green {
    background: #28c840;
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.dash-dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 8px rgba(255, 189, 46, 0.4);
}

.dash-dot.red {
    background: #ff5f57;
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.4);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- LIVE badge --- */
.dash-live-badge {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    color: #28c840;
    background: rgba(40, 200, 64, 0.1);
    border: 1px solid rgba(40, 200, 64, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    letter-spacing: 0.1em;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* --- Metric cards --- */
.dash-metric .dash-card-header {
    gap: 8px;
    justify-content: flex-start;
}

.dash-metric-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.dash-metric:hover .dash-metric-value {
    color: #e8723a;
}

.dash-metric-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

/* --- Chart card --- */
.dash-chart-card {
    grid-column: span 2;
}

.dash-chart-card {
    overflow: hidden;
}

.dash-chart-card canvas {
    width: 100%;
    height: 180px;
    max-width: 100%;
    display: block;
}

/* --- Logs card --- */
.dash-logs-card {
    grid-column: span 2;
}

.dash-logs {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.7;
    color: rgba(200, 200, 210, 0.5);
    max-height: 180px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.dash-log-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: logSlideIn 0.3s ease forwards;
}

.dash-log-line .log-time {
    color: rgba(255, 255, 255, 0.2);
}

.dash-log-line .log-level-info {
    color: #5b9bd5;
}

.dash-log-line .log-level-ok {
    color: #28c840;
}

.dash-log-line .log-level-warn {
    color: #ffbd2e;
}

.dash-log-line .log-svc {
    color: #e8723a;
}

@keyframes logSlideIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Services card --- */
.dash-services-card {
    grid-column: span 4;
}

.dash-services-count {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.7rem;
    color: #28c840;
    font-weight: 600;
}

.dash-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.dash-svc {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dash-svc:hover {
    background: rgba(232, 114, 58, 0.05);
    border-color: rgba(232, 114, 58, 0.15);
}

.dash-svc-name {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
}

.dash-svc-stat {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    color: #28c840;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-chart-card,
    .dash-logs-card {
        grid-column: span 2;
    }

    .dash-services-card {
        grid-column: span 2;
    }

    .dash-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dash-card {
        padding: 14px;
    }

    .dash-chart-card,
    .dash-logs-card {
        grid-column: span 2;
    }

    .dash-chart-card canvas {
        height: 120px;
    }

    .dash-logs {
        max-height: 140px;
        font-size: 0.62rem;
    }

    .dash-services-card {
        grid-column: span 2;
    }

    .dash-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-metric-value {
        font-size: 1.5rem;
    }

    .dash-svc {
        padding: 8px 10px;
    }

    .dash-svc-name {
        font-size: 0.65rem;
    }

    .dash-svc-stat {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .dash-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dash-metric-value {
        font-size: 1.3rem;
    }

    .dash-metric-sub {
        font-size: 0.62rem;
    }

    .dash-chart-card canvas {
        height: 100px;
    }

    .dash-logs {
        max-height: 120px;
        font-size: 0.58rem;
    }

    .dash-services {
        grid-template-columns: 1fr;
    }

    .dash-svc-name {
        font-size: 0.62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dash-dot.green { animation: none; }
    .dash-live-badge { animation: none; }
    .dash-log-line { animation: none; opacity: 1; transform: none; }
}
/* ============================================
   COMMAND PALETTE — Ctrl+K
   ============================================ */

/* Navbar shortcut hint */
.nav-kbd-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-kbd-hint kbd {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 1px 5px;
    line-height: 1.4;
}

.nav-kbd-hint:hover {
    border-color: rgba(232, 114, 58, 0.3);
}

.nav-kbd-hint:hover kbd {
    color: rgba(232, 114, 58, 0.8);
}

/* --- Overlay --- */
.cmd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 14, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cmd-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Palette Panel --- */
.cmd-palette {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) scale(0.96) translateY(-10px);
    width: min(560px, 92vw);
    max-height: 480px;
    background: #1a171e;
    border: 1px solid rgba(232, 114, 58, 0.15);
    border-radius: 16px;
    box-shadow:
        0 0 80px rgba(232, 114, 58, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cmd-palette.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* --- Input --- */
.cmd-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmd-search-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.25);
}

.cmd-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    color: #e8e4e0;
    caret-color: #e8723a;
}

.cmd-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cmd-esc {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2px 6px;
    flex-shrink: 0;
}

/* --- Results --- */
.cmd-results {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    max-height: 360px;
}

.cmd-results::-webkit-scrollbar {
    width: 4px;
}

.cmd-results::-webkit-scrollbar-track {
    background: transparent;
}

.cmd-results::-webkit-scrollbar-thumb {
    background: rgba(232, 114, 58, 0.2);
    border-radius: 2px;
}

.cmd-group-label {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 12px 6px;
}

.cmd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.1s ease;
    border-left: 2px solid transparent;
}

.cmd-item:hover,
.cmd-item.selected {
    background: rgba(232, 114, 58, 0.08);
    border-left-color: #e8723a;
}

.cmd-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 114, 58, 0.08);
    color: #e8723a;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.cmd-item-text {
    flex: 1;
    min-width: 0;
}

.cmd-item-label {
    font-size: 0.88rem;
    color: #e8e4e0;
    font-weight: 500;
}

.cmd-item-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1px;
}

.cmd-item-shortcut {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.cmd-item-shortcut kbd {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 1px 5px;
}

/* Empty state */
.cmd-empty {
    text-align: center;
    padding: 32px 16px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* Test runner output inside palette */
.cmd-test-output {
    padding: 16px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #c8c8d0;
}

.cmd-test-line {
    opacity: 0;
    animation: testLineIn 0.2s ease forwards;
}

.cmd-test-line.pass {
    color: #28c840;
}

.cmd-test-line.fail {
    color: #ff5f57;
}

.cmd-test-line.info {
    color: #e8723a;
}

@keyframes testLineIn {
    to { opacity: 1; }
}

/* --- Footer --- */
.cmd-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
}

.cmd-footer kbd {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 0 4px;
    margin: 0 2px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .cmd-palette {
        top: 10%;
        width: 95vw;
        max-height: 70vh;
    }

    .nav-kbd-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .cmd-palette {
        top: 5%;
        border-radius: 12px;
    }
}

/* End */
/* /local/templates/cdrive/styles.css?177547159789 */
/* /local/templates/cdrive/template_styles.css?177547159745025 */
