* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: #e2e8f0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 130, 71, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 130, 71, 0.05) 1px, transparent 1px),
        radial-gradient(circle 1px at center, rgba(255, 255, 255, 0.6) 0%, transparent 1px);
    background-size: 
        80px 80px,
        80px 80px,
        400px 400px;
    background-position:
        0 0,
        0 0,
        50px 50px;
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle 2px at 15% 25%, rgba(255, 255, 255, 0.8) 0%, transparent 2px),
        radial-gradient(circle 1px at 85% 75%, rgba(255, 255, 255, 0.6) 0%, transparent 1px),
        radial-gradient(circle 1px at 65% 15%, rgba(255, 255, 255, 0.7) 0%, transparent 1px),
        radial-gradient(circle 1px at 35% 85%, rgba(255, 255, 255, 0.5) 0%, transparent 1px),
        radial-gradient(circle 1px at 75% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

header {
    padding: 2rem 0;
    text-align: center;
    color: #f1f5f9;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
}

.app-icon {
    width: 80px;
    height: 80px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-family: 'JetBrains Mono', monospace;
}

.hero-section {
    padding: 0rem 0;
    margin: 2rem 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-placeholder {
    width: 100%;
    background: #3f444f;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    gap: 1rem;
    overflow: hidden;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 130, 71, 0.2);
    border: 2px solid #ff8247;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff8247;
}

.demo-grid {
    text-align: center;
}

.demo-title {
    color: #ff8247;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.keyboard-layout {
    display: inline-block;
    background: #2a2f3a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 2rem;
}

.keyboard-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.keyboard-row:nth-child(2) {
    margin-left: 20px;
}

.keyboard-row:nth-child(3) {
    margin-left: 40px;
}

.keyboard-row.bottom-row {
    margin-left: 0;
    gap: 4px;
    justify-content: center;
    margin-top: 12px;
}

.key {
    width: 45px;
    height: 45px;
    background: #3f444f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s ease;
}

.key:hover {
    background: #525761;
    transform: translateY(-1px);
}

.key.modifier {
    background: #3a3f4a;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    opacity: 0.6;
}

.key.modifier.cmd.primary {
    background: #4a5568;
    color: #ff8247;
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 130, 71, 0.2);
    font-weight: 700;
}

.key.space {
    width: 240px;
}

.key.shift {
    width: 60px;
}

.key.cmd {
    width: 55px;
}

.key.option {
    width: 55px;
}

.key.ctrl {
    width: 45px;
}

.key.app {
    color: white;
    transform: translateY(-2px);
}

.key.app.orange {
    background: linear-gradient(135deg, #ff8247 0%, #f7743a 100%);
}

.key.app.purple {
    background: linear-gradient(135deg, #ac5dff 0%, #9f4ff0 100%);
}

.key.app.yellow {
    background: linear-gradient(135deg, #fcc62c 0%, #f5be20 100%);
}

.key.app::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #2a2f3a;
}

.keyboard-caption {
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-section {
    margin-top: 2rem;
}

.feature-highlight {
    background: none;
    padding: 1.5rem 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feature-highlight h3 {
    color: #ff8247;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.feature-highlight p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8247 0%, #f7743a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid #ff8247;
    box-shadow: 0 4px 14px rgba(255, 130, 71, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f7743a 0%, #e6652d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 130, 71, 0.6);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fcc62c;
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

em {
    color: #fcc62c;
}

.section-separator {
    display: flex;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff8247, transparent);
}

.separator-title {
    color: #ff8247;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature {
    background: none;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature h3 {
    color: #ff8247;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.feature p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.target-audience {
    background: none;
    padding: 2rem;
    margin: 2rem 0;
    color: #f1f5f9;
    text-align: center;
}

.target-audience h2 {
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    color: #ff8247;
}

.target-audience p {
    color: #cbd5e1;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 130, 71, 0.1);
    border: 1px solid #ff8247;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    color: #ff8247;
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(255, 130, 71, 0.2);
}

.tag:nth-child(2n) {
    border-color: #ac5dff;
    color: #ac5dff;
    background: rgba(172, 93, 255, 0.1);
}

.tag:nth-child(2n):hover {
    background: rgba(172, 93, 255, 0.2);
}

.tag:nth-child(3n) {
    border-color: #fcc62c;
    color: #fcc62c;
    background: rgba(252, 198, 44, 0.1);
}

.tag:nth-child(3n):hover {
    background: rgba(252, 198, 44, 0.2);
}

footer a {
    color: #ff8247;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #fcc62c;
    text-decoration: underline;
}

.how-section {
    background: none;
    padding: 3rem 0;
    margin: 3rem 0;
}

.how-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.how-step {
    background: none;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.how-step:hover {
    transform: translateY(-2px);
}

.how-step h3 {
    color: #ff8247;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.how-step p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer small {
    color: #6b7280;
}

/* Adding rounded corners to all images */
img {
    border-radius: 12px;
}

@media (max-width: 768px) {
    /* Enhanced fixed background support for mobile */
    html, body {
        height: 100%;
        overflow-x: hidden;
    }
    
    /* Create a separate background layer for mobile */
    body::before, body::after {
        background-attachment: fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        transform: translateZ(0); /* Force hardware acceleration */
        will-change: transform; /* Hint for browser optimization */
    }
    
    .video-placeholder {
        height: auto;
    }
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .keyboard-row:nth-child(2),
    .keyboard-row:nth-child(3) {
        margin-left: 0;
    }
    
    .key {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .key.space {
        width: 120px;
    }
    
    .key.shift {
        width: 40px;
    }
    
    .key.cmd, .key.option, .key.ctrl {
        width: 35px;
        font-size: 0.6rem;
    }
    
    .keyboard-layout {
        padding: 15px;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .keyboard-caption {
        font-size: 0.8rem;
    }
    
    .video-placeholder {
        height: auto;
    }
    
    .section-separator {
        flex-direction: column;
        gap: 1rem;
        margin: 3rem 0;
    }
    
    .separator-title {
        font-size: 1.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

/* Classes for previously inline styles */

/* For hero image with responsive scaling */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* For command key highlight in keyboard caption */
.command-key-highlight {
    color: #ff8247;
    font-weight: 700;
}

/* For full-width images */
.full-width-img {
    width: 100%;
}

/* For centered text containers */
.text-center {
    text-align: center;
}

/* For contact form page */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0rem 0;
}

.contact-placeholder {
    background: rgba(255, 255, 255);
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.contact-heading {
    color: #ff8247;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* For privacy policy page */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 0;
}

.privacy-box {
    background: rgba(255, 130, 71, 0.1);
    border: 1px solid #ff8247;
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.privacy-heading {
    color: #fcc62c;
    margin-bottom: 1rem;
}