html {
    scroll-behavior: smooth;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    animation: float-orb 25s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #9146ff 0%, #7c3aed 50%, transparent 100%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #6d28d9 0%, #5b21b6 50%, transparent 100%);
    top: 40%;
    right: -8%;
    animation-delay: 8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, #7c3aed 50%, transparent 100%);
    bottom: -8%;
    left: 25%;
    animation-delay: 16s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10px, -10px) scale(1.01);
    }

    66% {
        transform: translate(-5px, 5px) scale(0.99);
    }
}

@keyframes slow-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.floating {
    animation: slow-float 6s ease-in-out infinite;
}

#landing-page {
    --footer-bg: #080808;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #080808;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

#landing-page .container {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 3rem 1.5rem 0;
}

.btn-hero {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(145, 70, 255, 0.2);
}

.btn-hero:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 70, 255, 0.3);
}

#landing-page .btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    height: auto;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#landing-page .btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0 6rem;
    min-height: 88vh;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(145, 70, 255, 0.08);
    border: 1px solid rgba(145, 70, 255, 0.25);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #a78bfa;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(145, 70, 255, 0.1);
    border: 1px solid rgba(145, 70, 255, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #9146ff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle code {
    background: rgba(145, 70, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: #a78bfa;
    border: 1px solid rgba(145, 70, 255, 0.15);
}

.cta-area {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.55;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(145, 70, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.terminal-card {
    position: relative;
    z-index: 1;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(145, 70, 255, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.terminal-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 1.25rem 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 2;
}

.terminal-line {
    display: block;
}

.terminal-output {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
}

.t-comment {
    color: #5c6370;
}

.t-cmd {
    color: #e5c07b;
}

.t-url {
    color: #98c379;
}

.t-prompt {
    color: #61afef;
}

.t-result {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 2.5rem 0 3.5rem;
    }

    .hero-visual {
        display: none;
    }

    .cta-area {
        justify-content: center;
    }

    #landing-page .container {
        padding: 2rem 1.25rem 0;
        gap: 2rem;
    }
}


.features-section {
    padding: 4rem 0 6rem;
    position: relative;
    scroll-margin-top: 100px;
}

.section-main-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-main-subtitle {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-category {
    margin-bottom: 5rem;
    width: 100%;
    text-align: center;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0;
    border: none;
}


.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.category-description {
    font-size: 1.1rem;
    color: #71717a;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.bento-card {
    background: #0a0a0b;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-height: 200px;
}

.bento-card:hover {
    transform: translateY(-3px);
    border-color: rgba(145, 70, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(145, 70, 255, 0.1);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-content {
    z-index: 2;
    position: relative;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(145, 70, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #a78bfa;
    margin-bottom: 12px;
    border: 1px solid rgba(145, 70, 255, 0.2);
    transition: all 0.2s ease;
}

.bento-card:hover .icon-box {
    transform: scale(1.05);
    color: #c4b5fd;
    background: rgba(145, 70, 255, 0.15);
}

.bento-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.01em;
}

.bento-card p {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
}

.command-tag {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: rgba(145, 70, 255, 0.1);
    color: #a78bfa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(145, 70, 255, 0.2);
}


.faq-section {
    padding: 2rem 0 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #0a0a0b;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(145, 70, 255, 0.3);
}

.faq-item.active {
    border-color: rgba(145, 70, 255, 0.4);
    background: rgba(145, 70, 255, 0.03);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    flex: 1;
}

.faq-question i {
    color: var(--accent);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    #landing-page .container {
        gap: 2rem;
        padding: 0 1.25rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-area {
        justify-content: center;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .category-header {
        text-align: center !important;
        padding: 0 !important;
        border: none !important;
        margin-bottom: 2.5rem;
    }

    .category-description {
        margin: 0 auto;
        font-size: 1rem;
    }

    .features-section {
        padding: 2.5rem 0;
    }

    .features-category {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 600px) {
    #landing-page .container {
        gap: 2rem;
        padding: 7.5rem 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-area {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .bento-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .category-header {
        margin-bottom: 2.5rem;
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .features-category.align-right .category-header {
        padding-right: 0;
        border-right: none;
        text-align: center;
    }

    .category-title {
        font-size: 2rem;
    }

    .section-main-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 450px) {
    #landing-page .container {
        padding: 7.5rem 1.25rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .fake-body {
        min-height: 200px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-content {
        padding: 0 1rem 1.25rem 1rem;
    }
}