/* LxTerm Page Specific Styles — dark terminal palette */

.app-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(89, 217, 242, 0.14), transparent 32%),
        linear-gradient(180deg, #0f0f14 0%, #121218 55%, #0a0a0e 100%);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.app-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.app-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.app-icon-large {
    flex-shrink: 0;
}

.app-icon-large img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(89, 217, 242, 0.12);
}

.app-details h1.app-title {
    font-size: 3rem;
    font-weight: 700;
    color: #f2f2f7;
    margin-bottom: 8px;
    line-height: 1.2;
}

.app-subtitle {
    font-size: 1.25rem;
    color: #59d9f2;
    margin-bottom: 20px;
    font-weight: 500;
}

.app-description {
    font-size: 1.1rem;
    color: #8c8c94;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
}

.app-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #59d9f2, #3ec4de);
    color: #0f0f14;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(89, 217, 242, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-btn:hover {
    background: linear-gradient(135deg, #3ec4de, #2ab0cc);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(89, 217, 242, 0.38);
}

.coming-soon-btn {
    cursor: default;
    pointer-events: none;
    opacity: 0.88;
}

.hero-aside {
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.hero-panel {
    width: min(100%, 340px);
    padding: 28px 26px 22px;
    background: rgba(26, 26, 31, 0.92);
    border: 1px solid rgba(89, 217, 242, 0.16);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.hero-panel-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #59d9f2;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(89, 217, 242, 0.12);
}

.hero-meta-row {
    display: grid;
    grid-template-columns: 6.75rem minmax(0, 1fr);
    column-gap: 1rem;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.hero-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.hero-meta-row span {
    color: #8c8c94;
    font-weight: 500;
    line-height: 1.35;
}

.hero-meta-row strong {
    color: #f2f2f7;
    font-weight: 600;
    text-align: right;
    line-height: 1.35;
    white-space: nowrap;
}

.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f14;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 15, 20, 0.08);
    border-color: rgba(89, 217, 242, 0.35);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f0f14;
    margin-bottom: 15px;
}

.feature-card p {
    color: #5c5c66;
    line-height: 1.6;
}

.privacy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f14 0%, #1a1a1f 100%);
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.privacy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f2f2f7;
    margin-bottom: 20px;
}

.privacy-intro {
    font-size: 1.1rem;
    color: #8c8c94;
    line-height: 1.6;
    margin-bottom: 40px;
}

.privacy-features {
    gap: 0;
}

.privacy-item {
    gap: 1rem;
    align-items: flex-start;
}

.privacy-item svg {
    flex-shrink: 0;
}

.privacy-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f2f2f7;
    margin-bottom: 8px;
}

.privacy-item p {
    color: #8c8c94;
    line-height: 1.5;
}

.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-container {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

.use-cases-section {
    padding: 80px 0;
    background: #ffffff;
}

.use-cases-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f14;
    margin-bottom: 20px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.use-case-card {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: left;
    border: 1.5px solid #e8eaed;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 15, 20, 0.08);
    border-color: #59d9f2;
}

.use-case-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f0f14;
    margin-bottom: 12px;
}

.use-case-card p {
    color: #5c5c66;
    line-height: 1.5;
    font-size: 0.9rem;
}

.app-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f14;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: #5c5c66;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 20px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #59d9f2;
    transform: translateY(-50%);
}

.lxterm-cta-strip {
    margin-top: 2.5rem;
}

.lxterm-cta-strip > span {
    max-width: 36rem;
    line-height: 1.6;
}

.lxterm-cta-actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .app-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .app-details h1.app-title {
        font-size: 2.5rem;
    }

    .app-description {
        max-width: none;
    }

    .app-actions {
        justify-content: center;
    }

    .hero-panel {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        text-align: left;
    }

    .hero-meta-row {
        grid-template-columns: 6.5rem minmax(0, 1fr);
    }

    .hero-meta-row strong {
        white-space: normal;
        text-align: right;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-features {
        margin-left: auto;
        margin-right: auto;
    }

    .privacy-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .app-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lxterm-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .lxterm-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .app-hero {
        padding: 80px 0 40px;
    }

    .app-details h1.app-title {
        font-size: 2rem;
    }

    .features-section,
    .privacy-section,
    .use-cases-section,
    .app-info-section {
        padding: 60px 0;
    }
}
