* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(108, 92, 255, 0.16), transparent 25%),
        linear-gradient(180deg, #090910 0%, #0d0d15 100%);
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 9, 16, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
}

.brand-mark {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6c5cff, #8b5cf6);
    box-shadow: 0 0 20px rgba(108, 92, 255, 0.30);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #d6d6e7;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #6c5cff, #7c3aed);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(108, 92, 255, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(108, 92, 255, 0.38);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(108, 92, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.hero-section {
    padding: 88px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero-content h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-content p,
.page-hero p,
.section-heading p,
.timeline-content p,
.feature-card p,
.footer-text,
.faq-answer p {
    color: #b9bdd3;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-points span,
.section-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(124, 58, 237, 0.32);
    background: rgba(124, 58, 237, 0.10);
    color: #d8c8ff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
}

.hero-card {
    position: relative;
}

.mock-window {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.mock-top {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mock-body {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.mock-step {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    color: #d9dced;
    border: 1px solid rgba(255,255,255,0.05);
}

.mock-step.active {
    border-color: rgba(108, 92, 255, 0.60);
    background: rgba(108, 92, 255, 0.14);
    box-shadow: 0 0 24px rgba(108, 92, 255, 0.18);
}

.section {
    padding: 84px 0;
}

.section-alt {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    margin: 14px 0 14px;
    font-size: 42px;
    line-height: 1.15;
}

.cards-grid {
    display: grid;
    gap: 22px;
}

.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

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

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 28px;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 92, 255, 0.45);
    box-shadow: 0 18px 46px rgba(0,0,0,0.28);
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.card-number {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #d8c8ff;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.30);
}

.cta-section {
    padding: 90px 0;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(108,92,255,0.10), rgba(255,255,255,0.02));
}

.cta-box h2 {
    margin: 14px 0 10px;
    font-size: 38px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 88px 0 34px;
}

.page-hero .container {
    max-width: 860px;
}

.timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.timeline-number {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6c5cff, #7c3aed);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(108,92,255,0.25);
}

.timeline-content h3 {
    margin: 4px 0 10px;
    font-size: 24px;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    padding: 22px 22px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    line-height: 1;
    color: #bca7ff;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.site-footer {
    padding: 56px 0 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.site-footer h4 {
    margin: 0 0 16px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    color: #b9bdd3;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 28px;
    padding-top: 18px;
    text-align: center;
    color: #8f95ae;
}

@media (max-width: 991px) {
    .hero-grid,
    .three-cols,
    .two-cols,
    .footer-grid,
    .cta-box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .nav-links,
    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .section-heading h2,
    .cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .section,
    .cta-section,
    .page-hero {
        padding: 64px 0;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 18px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}
