* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

:root {
    --primary-color: #8c53fe;
    --secondary-color: #5865f2;
    --accent-color: #eb459e;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --border-dark: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-button {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(140, 83, 254, 0.2));
    border-radius: 50%;
    background: #f8f9fa;
    padding: 20px;
}

.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.dropdown-container {
    max-width: 800px;
    margin: 0 auto;
}

.dropdown-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--text-light);
}

.dropdown-button {
    width: 100%;
    background: var(--text-light);
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.dropdown-button:hover {
    background: #f8f9fa;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.dropdown-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.dropdown-item.active .dropdown-content {
    max-height: 300px;
}

.dropdown-text {
    padding: 24px;
}

.dropdown-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.dropdown-text p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.dropdown-text ul {
    list-style: none;
    padding-left: 0;
}

.dropdown-text li {
    color: var(--text-gray);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.dropdown-text li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.commands {
    padding: 80px 0;
    background: var(--text-light);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.command-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.command-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.command-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.command-card p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.command-usage {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
}

.banner {
    padding: 80px 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
    padding: 15px;
}

.banner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.banner .primary-button {
    background: var(--primary-color);
    color: var(--text-light);
}

.banner .primary-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--text-light);
}

.faq-question {
    width: 100%;
    background: var(--text-light);
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-answer p {
    padding: 24px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: #999999;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-logo {
        height: 300px;
        padding: 15px;
    }
}

/* Layout & typography for legal/content pages */
.content {
    padding: 110px 0 60px;
}

main.content article {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px;
    background: var(--text-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

main.content article h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

main.content article h2 {
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

main.content article h3 {
    font-size: 1.05rem;
    margin-top: 16px;
    margin-bottom: 6px;
    color: var(--primary-color);
}

main.content article p,
main.content article li {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

main.content article ul {
    padding-left: 1.25rem;
    margin: 8px 0 16px;
}

main.content article li {
    margin-bottom: 8px;
    list-style: disc;
}

main.content article code {
    background: var(--bg-light);
    padding: 3px 6px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    main.content article {
        padding: 24px;
    }
}