* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6398;
    --primary-dark: #E5507E;
    --dark: #FFFFFF;
    --dark-secondary: #FFFFFF;
    --dark-card: #FFFFFF;
    --light-green: #D4F4DD;
    --light-pink: #FFC0D3;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --border: #E5E5E5;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.btn-contact {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary) !important;
}

.btn-contact:hover {
    border-color: var(--primary);
    background: rgba(255, 99, 152, 0.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 99, 152, 0.1);
    border: 1px solid rgba(255, 99, 152, 0.2);
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #F9DCCD;
    color: #000000;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #e8cbbd;
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #F9DCCD;
    color: #000000;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #e8cbbd;
    box-shadow: none;
}

.hero-video {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    background: var(--dark-secondary);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-dark {
    background: var(--dark-secondary);
    border: 1px solid var(--border);
}

.feature-light {
    background: var(--light-green);
    color: #000;
}

.feature-pink {
    background: var(--light-pink);
    color: #000;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 99, 152, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-light .feature-icon,
.feature-pink .feature-icon {
    background: rgba(0, 0, 0, 0.05);
}

.feature-icon svg {
    stroke: var(--primary);
}

.feature-light .feature-icon svg,
.feature-pink .feature-icon svg {
    stroke: #000;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-light p,
.feature-pink p {
    color: #333;
}

.feature-image {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Organization Section */
.organization {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.org-card {
    padding: 32px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.org-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.org-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.org-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}



/* Elite Section */
.elite {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.elite-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.elite-card {
    padding: 40px 32px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.elite-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.elite-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.elite-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta-content {
    background: var(--light-pink);
    padding: 64px;
    border-radius: 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.3;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #F9DCCD;
    color: #000000;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    background: #e8cbbd;
    box-shadow: none;
}

.btn-cta-mac {
    background: #1c1c1e;
    color: #ffffff;
}

.btn-cta-mac:hover {
    background: #2c2c2e;
}

.cta-download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 80px 0;
}

.download-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.download-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #F9DCCD;
    color: #000000;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    cursor: pointer;
}

.btn-download:hover {
    transform: translateY(-2px);
    background: #e8cbbd;
    box-shadow: none;
}

.btn-download-mac {
    background: #1c1c1e;
    color: #ffffff;
}

.btn-download-mac:hover {
    background: #2c2c2e;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.12);
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.btn-download-mac .download-badge {
    background: rgba(255, 255, 255, 0.15);
}

/* Download Dialog */
.download-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.download-dialog-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-dialog {
    background: white;
    padding: 32px;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.download-dialog-overlay.active .download-dialog {
    transform: scale(1);
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.dialog-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.dialog-input:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #F9DCCD;
    color: black;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e8cbbd;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .features-grid,
    .org-grid,
    .elite-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        display: flex;
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
    }

    .org-grid,
    .elite-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .download-card {
        padding: 40px 24px;
    }

    .download-card h2 {
        font-size: 28px;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}