/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1700FF;
    --primary-dark: #1200cc;
    --primary-light: #4d3dff;
    --secondary-color: #000000;
    --accent-color: #FF3B30;
    --text-dark: #11181C;
    --text-light: #666666;
    --bg-light: #FFFFFF;
    --bg-gray: #F5F5F7;
    --border-color: #E5E5E7;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-coming-soon {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-signup-form {
    margin-bottom: 24px;
}

.hero-signup-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    max-width: 500px;
}

.hero-signup-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.hero-signup-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.hero-signup-input-group button {
    white-space: nowrap;
    padding: 14px 32px;
}

#heroSignupStatus {
    max-width: 500px;
    margin-top: 12px;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    display: flex;
    gap: 24px;
    perspective: 1000px;
}

.phone-mockup {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    background: #1a1a1a;
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.phone-mockup:nth-child(2) {
    animation-delay: 0.5s;
    transform: translateY(20px);
}

.phone-screen {
    width: 176px;
    min-width: 176px;
    max-width: 176px;
    height: 376px;
    min-height: 376px;
    max-height: 376px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 24px;
    color: white;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 176px;
    height: 376px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.phone-screen p {
    padding: 16px;
    position: relative;
    z-index: 1;
}

/* Signup Section */
.signup-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.signup-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
}

.signup-form {
    margin-bottom: 32px;
}

.signup-input-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.signup-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.signup-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.signup-input-group button {
    white-space: nowrap;
}

.signup-prize {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.prize-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.social-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.follow-text {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
    white-space: nowrap;
    min-width: 180px;
}

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

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook-link {
    background: #1877F2;
}

/* Download Section - Hidden but keeping styles for potential future use */
.download-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
    display: none;
}

.download-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.download-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.qr-code-container {
    text-align: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin-bottom: 16px;
}

.qr-box {
    width: 100%;
    height: 100%;
    background: var(--bg-gray);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

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

.store-button svg {
    width: 32px;
    height: 32px;
}

.store-button div {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.store-button .small {
    font-size: 11px;
    opacity: 0.8;
}

.store-button .large {
    font-size: 18px;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-gray);
    text-align: center;
}

.features-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Membership Section */
.membership-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.membership-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.membership-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.badge {
    display: none;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price span {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-gray);
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.membership-note {
    color: var(--text-light);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

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

.founder-image {
    display: flex;
    justify-content: center;
}

.founder-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.founder-message h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.message-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.signature {
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 48px;
    text-align: left;
}

.contact-form {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-item p,
.info-item a {
    color: var(--text-light);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 24px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 32px 0 48px 0;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    /* Hide phone mockups on mobile */
    .hero-mockup {
        display: none;
    }

    .mockup-placeholder {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup:nth-child(2) {
        transform: translateY(0);
    }

    /* Reduce section padding on mobile */
    .signup-section,
    .features-section,
    .membership-section,
    .founder-section,
    .contact-section {
        padding: 48px 0;
    }

    .download-section {
        padding: 48px 0;
    }

    .signup-section h2,
    .features-section h2,
    .membership-section h2,
    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .signup-input-group {
        flex-direction: column;
    }

    .signup-input-group button {
        width: 100%;
    }

    .signup-prize {
        padding: 16px;
        margin-bottom: 24px;
    }

    .prize-text {
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .social-link {
        width: 100%;
        min-width: unset;
    }

    .founder-message h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    /* Hide feature icons on mobile */
    .feature-icon {
        display: none;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 15px;
    }

    /* Tighten up membership section on mobile */
    .membership-section {
        padding: 48px 0;
    }

    .membership-section .section-subtitle {
        font-size: 15px;
        margin: 0 auto 24px;
        padding: 0 8px;
    }

    .pricing-grid {
        gap: 16px;
        margin-bottom: 24px;
    }

    /* Make pricing cards collapsible and tight on mobile */
    .pricing-card {
        padding: 16px;
        cursor: pointer;
    }

    .pricing-header h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .price {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .price span {
        font-size: 16px;
    }

    .price-note {
        font-size: 13px;
        margin-bottom: 0;
    }

    .pricing-card .pricing-features {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
        padding: 0;
    }

    .pricing-card.expanded .pricing-features {
        max-height: 500px;
        margin: 16px 0 0 0;
    }

    .pricing-features li {
        padding: 8px 0;
        font-size: 14px;
    }

    .pricing-card .btn {
        display: none;
    }

    .pricing-card.expanded .btn {
        display: block;
        margin-top: 16px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .pricing-header::after {
        content: '▼';
        display: block;
        text-align: center;
        margin-top: 8px;
        color: var(--primary-color);
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .pricing-card.expanded .pricing-header::after {
        transform: rotate(180deg);
    }

    .membership-note {
        font-size: 13px;
        padding: 0 8px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    /* Show only Learn More CTA in hero on mobile */
    .hero .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero .cta-buttons .btn-primary {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        gap: 32px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
