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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: 'Playfair Display', serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particleCanvas {
    width: 100%;
    height: 100%;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(100, 100, 100, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, rgba(50, 50, 50, 0.03) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Section Layout */
.section-full {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease-out, filter 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, filter, transform;
}

/* Hero Section Styles */
.hero-section .monogram {
    color: #000;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-section .logo {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
    font-weight: 300;
}

.hero-section .main-title {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    background: linear-gradient(135deg, #000 0%, #333 50%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-section .intro-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-section .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
    color: rgba(0, 0, 0, 0.7);
}

/* Stats Section */
.stats-section {
    background: rgba(0, 0, 0, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    width: 100%;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 1.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 1.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 1.6s;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Features Section */
.features-section {
    background: rgba(0, 0, 0, 0.015);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card .section-icon {
    color: #000;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.feature-card .section-icon-fa {
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.feature-card .section-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: -0.02em;
}

.feature-card .section-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Fixed CTA Bottom Left */
.fixed-cta {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.fixed-cta .coming-soon-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 2s ease infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fixed-cta .coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #000;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.email-input:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.notify-button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fixed-cta .social-links {
    display: flex;
    gap: 1rem;
}

.fixed-cta .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fixed-cta .social-link:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #666, #999);
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    bottom: 10%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .section-full {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-section .main-title {
        font-size: 3rem;
    }

    .hero-section .intro-subtitle {
        font-size: 1rem;
    }

    .hero-section .subtitle {
        font-size: 1.2rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .shape {
        width: 150px !important;
        height: 150px !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-card .section-title {
        font-size: 1.5rem;
    }

    .feature-card .section-text {
        font-size: 1rem;
    }

    .fixed-cta {
        bottom: 1rem;
        left: 1rem;
    }

    .fixed-cta .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
    }

    .fixed-cta .social-link {
        width: 40px;
        height: 40px;
    }
}

