:root {
    --primary: #0a0a0a;
    --accent: #2d5a3d;
    --accent-bright: #4a7c59;
    --accent-dark: #1a3426;
    --light: #ffffff;
    --gray: #6b6b6b;
    --light-gray: #f8f8f8;
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    z-index: 1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,.02) 35px, rgba(0,0,0,.02) 70px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.97);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 100%);
}

.hero-content {
    flex: 1;
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.15;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.line {
    display: block;
    margin-bottom: 0.5rem;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Contrasting colors for Deepen and Prevent */
.deepen {
    color: var(--accent);
    font-weight: 700;
}

.prevent {
    color: var(--primary);
    font-weight: 700;
}

.line-1 .word:nth-child(1) { animation-delay: 0.1s; }
.line-1 .word:nth-child(2) { animation-delay: 0.15s; }
.line-1 .word:nth-child(3) { animation-delay: 0.2s; }
.line-2 .word:nth-child(1) { animation-delay: 0.3s; }
.line-2 .word:nth-child(2) { animation-delay: 0.35s; }
.line-2 .word:nth-child(3) { animation-delay: 0.4s; }

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
    max-width: 700px;
    line-height: 1.8;
    font-weight: 400;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-container {
    animation: fadeIn 1s ease-out 0.8s both;
}

.cta-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: var(--accent-dark);
}

.arrow {
    transition: transform 0.3s;
}

.cta-primary:hover .arrow {
    transform: translateX(5px);
}

.limited-text {
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Visual - Minimal geometric elements */
.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

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

.element-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.8;
}

.dot-1 {
    top: 20%;
    right: 20%;
    animation: pulse-subtle 4s infinite;
}

.dot-2 {
    top: 50%;
    right: 40%;
    background: var(--primary);
    animation: pulse-subtle 4s infinite 1.5s;
}

.dot-3 {
    bottom: 30%;
    right: 25%;
    animation: pulse-subtle 4s infinite 3s;
}

.element-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.element-line.line-1 {
    width: 200px;
    top: 35%;
    right: 15%;
    transform: rotate(-15deg);
}

.element-line.line-2 {
    width: 150px;
    bottom: 40%;
    right: 30%;
    transform: rotate(25deg);
}

@keyframes pulse-subtle {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.2);
    }
}

/* Mission Section */
.mission {
    padding: 8rem 5%;
    background: white;
}

.mission-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    color: var(--primary);
}

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

.mission-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mission-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.mission-item p {
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

.vision-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.vision-statement p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
}

/* Mystery Section */
.mystery {
    padding: 8rem 5%;
    background: var(--light-gray);
}

.mystery-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mystery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: var(--accent);
    font-weight: 300;
}

.questions {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.question {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary);
    opacity: 0;
    animation: fadeInUp 1s forwards;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* For larger screens, allow wrapping but control it */
@media (min-width: 769px) {
    .question {
        white-space: normal;
        max-width: 100%;
        margin: 0 auto;
    }
}

.question:nth-child(1) { animation-delay: 0.2s; }
.question:nth-child(2) { animation-delay: 0.4s; }
.question:nth-child(3) { animation-delay: 0.6s; }

/* Journey Section */
.journey {
    padding: 8rem 5%;
    background: white;
}

.journey-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.journey h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.phase-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.phase {
    opacity: 0.3;
    transition: all 0.3s;
    padding: 2rem;
}

.phase.active {
    opacity: 1;
    transform: scale(1.05);
}

.phase:hover {
    opacity: 1;
}

.phase-number {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.phase h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.phase p {
    color: var(--gray);
    font-weight: 300;
}

/* Testimonial */
.testimonial {
    padding: 8rem 5%;
    background: var(--light-gray);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-style: normal;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--accent);
    font-weight: 300;
}

cite {
    color: var(--gray);
    font-style: normal;
    font-size: 1.125rem;
}

/* Final CTA - Matching the black/green scheme */
.final-cta {
    padding: 8rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.final-content p {
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.125rem;
    font-weight: 300;
}

.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.email-input:focus {
    outline: none;
    border-color: var(--accent-bright);
    background: rgba(255,255,255,0.1);
}

.submit-btn {
    padding: 1.25rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 60px;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
}

.loading {
    display: none;
}

.submit-btn.loading .loading {
    display: inline;
}

.privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    color: var(--gray);
    background: white;
    border-top: 1px solid var(--light-gray);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 3rem;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary);
}

.modal-icon {
    font-size: 3rem;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mission-grid, .phase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .question {
        font-size: 1.1rem;
        white-space: normal;
    }
    
    blockquote {
        font-size: 2rem;
    }
}