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

:root {
    --primary-pink: #ff4c60;
    --accent-orange: #fea24d;
    --accent-yellow: #fede40;
    --text-light: #ffffff;
    --background-dark: #000000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a1a1a 100%);
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, var(--primary-pink), var(--accent-orange), var(--accent-yellow)) 1;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 76, 96, 0.3);
    color: #ffffff !important;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-orange);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
}

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

/* Remove border and background for Early Access link in navigation */
.nav-links .btn-secondary {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    transform: none !important;
    box-shadow: none !important;
    font-size: inherit !important;
    line-height: inherit !important;
    display: inline !important;
    text-decoration: none !important;
    border-radius: 0 !important;
}

.nav-links .btn-secondary:hover {
    color: var(--primary-pink) !important;
    border: none !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
}

.btn-outline {
    background: transparent;
    color: var(--primary-pink);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        linear-gradient(135deg, var(--background-dark) 0%, #1a1a1a 100%) 0%, 
        linear-gradient(135deg, var(--background-dark) 0%, #1a1a1a 100%) 80%, 
        rgba(255, 76, 96, 0.04) 100%);
    scroll-snap-align: start;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, var(--primary-pink), var(--accent-orange), var(--accent-yellow)) 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 76, 96, 0.18) 0%, rgba(254, 162, 77, 0.10) 40%, transparent 80%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-features span {
    background: rgba(255, 76, 96, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange), var(--accent-yellow));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 70px;
    height: 70px;
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.element-2 {
    width: 110px;
    height: 110px;
    top: 55%;
    right: 12%;
    left: auto;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    top: 8%;
    right: 30%;
    left: auto;
    bottom: auto;
    animation-delay: 4s;
}

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

.hero-logo-topleft {
    position: absolute;
    top: 20px;
    left: 32px;
    z-index: 1100;
    pointer-events: none;
}
.hero-logo-topleft img {
    height: 41.31px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255, 76, 96, 0.04) 0%, rgba(255, 76, 96, 0.02) 50%, transparent 100%);
    scroll-snap-align: start;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 76, 96, 0.02) 50%, rgba(255, 76, 96, 0.04) 100%);
}

.product-grid {
    display: grid;
    gap: 4rem;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.product-card:nth-child(even) {
    direction: ltr;
}

.product-card:nth-child(even) .product-content {
    direction: ltr;
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.product-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.placeholder-visual {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 76, 96, 0.1), rgba(254, 222, 64, 0.1));
    border-radius: 16px;
    border: 2px dashed var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.product-visual img.product-img-small {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

/* Backers Section */
.backers {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, rgba(255, 76, 96, 0.04) 0%, rgba(255, 76, 96, 0.02) 50%, transparent 100%);
    text-align: left;
}

.backers h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.backers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.backer-logo {
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--primary-pink);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    max-height: 132px;
}

.backer-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.backer-logo img {
    width: 100%;
    height: auto;
    max-height: 99px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.backer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.backer-logo a img {
    width: 100%;
    height: auto;
    max-height: 99px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.backer-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.backer-logo:hover a img {
    filter: grayscale(0%) brightness(1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid var(--primary-pink);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a:last-child {
    margin-left: 3px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #888888;
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--primary-pink);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-orange);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.terms-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

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

.footer-links-bottom a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .product-card:nth-child(even) {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .hero-logo-topleft {
        top: 14px;
        left: 16px;
    }
    .hero-logo-topleft img {
        height: 27.54px;
    }
    
    .element-1 {
        top: 8%;
        left: 10%;
        width: 50px;
        height: 50px;
    }
    .element-2 {
        top: 70%;
        right: 10%;
        width: 80px;
        height: 80px;
    }
    .element-3 {
        width: 20px;
        height: 20px;
        top: 6%;
        right: 30%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .backers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-logo-topleft {
        display: none;
    }
}

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

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

.hero-content,
.feature-card,
.product-card {
    animation: fadeInUp 0.8s ease-out;
} 