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

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --dark: #000000;
    --gray-dark: #4a4a4a;
    --gray: #6b6b6b;
    --gray-light: #d4d4d4;
    --white: #ffffff;
    --background: #f5e6d3;
    --accent: #000000;
}

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

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

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f5e6d3;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: float 25s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 30s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 15%;
    animation: float 35s ease-in-out infinite;
    animation-delay: -8s;
}

.shape-4 {
    width: 450px;
    height: 450px;
    bottom: 30%;
    right: 5%;
    animation: float 32s ease-in-out infinite;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.25;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.2;
    }
}

/* Navigation */
.navbar {
    padding: 32px 0;
    position: sticky;
    top: 0;
    background: rgba(245, 230, 211, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

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

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--dark);
    color: var(--background);
    border: 2px solid var(--dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--dark);
}

.cta-form .btn-primary {
    background: var(--background);
    color: var(--dark);
    border: 2px solid var(--background);
}

.cta-form .btn-primary:hover {
    background: transparent;
    color: var(--background);
    border: 2px solid var(--background);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

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

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

.btn-outline:hover {
    background: var(--dark);
    color: var(--background);
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray-dark);
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.social-proof {
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.social-proof p {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: transparent;
}

.features h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: 20px;
    margin-bottom: 80px;
    font-weight: 400;
}

.features-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 48px 40px;
    background: rgba(0, 0, 0, 0.03);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.04);
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-item p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0 120px;
    scroll-margin-top: 100px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.step {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.step-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray);
    min-width: 60px;
    opacity: 1;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 17px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--dark);
    color: var(--background);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(245, 230, 211, 0.8);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    min-width: 300px;
    padding: 16px 24px;
    border-radius: 100px;
    border: 2px solid rgba(245, 230, 211, 0.3);
    font-size: 16px;
    background: transparent;
    color: var(--background);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.cta-form input::placeholder {
    color: rgba(245, 230, 211, 0.5);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--background);
}

.form-note {
    font-size: 15px;
    color: rgba(245, 230, 211, 0.6);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-brand p {
    color: var(--gray);
    margin-top: 12px;
    font-size: 15px;
}

.footer-links p {
    color: var(--gray);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .features h2,
    .how-it-works h2,
    .cta-section h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 36px 28px;
    }
    
    .step {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        font-size: 18px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-form input {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .container {
        padding: 0 24px;
    }
}

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

/* Selection Color */
::selection {
    background-color: var(--dark);
    color: var(--background);
}