:root {
    --deep-purple: #2D2157;
    --darker-purple: #1E1640;
    --coral: #E8846B;
    --coral-light: #F5A08D;
    --coral-dark: #D66B52;
    --white: #FFFFFF;
    --off-white: #F7F5F9;
    --light-purple: #4A3D7A;
    --text-gray: #6B6B7B;
    --text-dark: #2D2157;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Ambient background effects */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--deep-purple);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
    opacity: 0.1;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--deep-purple);
    bottom: -100px;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 33, 87, 0.08);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--deep-purple);
}

.logo-text span {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--deep-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--deep-purple);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    opacity: 1 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--darker-purple);
    transform: translateY(-2px);
}

/* Main content wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 33, 87, 0.08);
    border: 1px solid rgba(45, 33, 87, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--deep-purple);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    color: var(--coral);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey Selection */
.journey-selection {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
    max-width: 1100px;
}

.journey-card {
    background: var(--white);
    border: 1px solid rgba(45, 33, 87, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    width: 320px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 33, 87, 0.08);
    flex: 0 1 320px;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-purple), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.journey-card:hover {
    background: var(--white);
    border-color: rgba(45, 33, 87, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 33, 87, 0.15);
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--deep-purple), var(--light-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.journey-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--deep-purple);
}

.journey-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.journey-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-purple);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.journey-card:hover .journey-arrow {
    gap: 0.75rem;
    color: var(--coral);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-purple);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Modal Overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 22, 64, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--deep-purple);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-content > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select option {
    background: var(--deep-purple);
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 132, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--coral);
}

/* Founder Section */
.founder-section {
    padding: 6rem 2rem;
    position: relative;
    background: var(--deep-purple);
    color: var(--white);
}

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

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.founder-content h2 .highlight {
    color: var(--coral);
}

.founder-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.founder-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.founder-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(232, 132, 107, 0.2);
    color: var(--coral);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Membership Cards */
.membership-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.membership-card:hover {
    border-color: rgba(232, 132, 107, 0.4);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
}

.membership-card.featured {
    border-color: var(--coral);
    background: linear-gradient(135deg, rgba(232, 132, 107, 0.15), rgba(232, 132, 107, 0.05));
}

.membership-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--coral);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.membership-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.membership-type {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.membership-price {
    text-align: right;
}

.membership-price .amount {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
}

.membership-price .period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.membership-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.membership-card .btn {
    width: 100%;
}

/* Alternating founder section (light background) */
.founder-section-alt {
    background: var(--off-white);
    color: var(--text-dark);
}

.founder-section-alt .founder-content h2 {
    color: var(--deep-purple);
}

.founder-section-alt .founder-content p {
    color: var(--text-gray);
}

.founder-section-alt .founder-benefits li {
    color: var(--text-dark);
}

.founder-section-alt .membership-card {
    background: var(--white);
    border: 1px solid rgba(45, 33, 87, 0.1);
    box-shadow: 0 4px 20px rgba(45, 33, 87, 0.08);
}

.founder-section-alt .membership-card:hover {
    border-color: rgba(45, 33, 87, 0.2);
    box-shadow: 0 8px 30px rgba(45, 33, 87, 0.12);
}

.founder-section-alt .membership-card.featured {
    border-color: var(--coral);
    background: linear-gradient(135deg, rgba(232, 132, 107, 0.08), var(--white));
}

.founder-section-alt .membership-type {
    color: var(--deep-purple);
}

.founder-section-alt .membership-desc {
    color: var(--text-gray);
}

.founder-section-alt .membership-price .period {
    color: var(--text-gray);
}

.founder-section-alt .btn-primary {
    background: linear-gradient(135deg, var(--deep-purple), var(--light-purple));
}

.founder-section-alt .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(45, 33, 87, 0.3);
}

.btn-secondary-alt {
    background: var(--white);
    border: 1px solid rgba(45, 33, 87, 0.2);
    color: var(--deep-purple);
}

.btn-secondary-alt:hover {
    background: var(--off-white);
    border-color: var(--deep-purple);
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: var(--off-white);
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(45, 33, 87, 0.1);
    background: var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--deep-purple);
}

.footer-copy {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

/* Join Options */
.join-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.join-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--coral);
    transform: translateX(4px);
}

.join-option-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(232, 132, 107, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-option-content {
    flex: 1;
}

.join-option-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.join-option-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.join-option-price {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--coral);
    font-weight: 500;
}

.join-option svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 6rem;
    }

    .journey-selection {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }

    .journey-card {
        width: 100%;
        max-width: 400px;
    }

    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2.5rem;
        animation: bounce-mobile 2s ease-in-out infinite;
    }

    @keyframes bounce-mobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(10px); }
    }

    .modal-content {
        padding: 2rem;
    }

    .membership-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .membership-price {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Netlify honeypot field — visually hidden */
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form error message */
.form-error {
    color: var(--coral-dark);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}
