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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
    font-size: 18px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Geometric Background Elements */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    position: relative;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
}

p {
    margin-bottom: 1.2rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

strong {
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: clamp(60px, 12vw, 120px) 0;
    border-bottom: 3px solid #000;
    position: relative;
}

.hero::before {
    content: '→';
    position: absolute;
    font-size: clamp(150px, 25vw, 300px);
    font-weight: 900;
    opacity: 0.02;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 0;
}

.logo {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-diagram {
    margin: 3rem 0 4rem 0;
    padding: 2.5rem;
    border: 3px solid #000;
    background: #fff;
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.hero-diagram::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #000;
    top: 8px;
    left: 8px;
    z-index: -1;
    transition: all 0.3s ease;
}

.hero-diagram:hover {
    transform: translate(4px, 4px);
}

.hero-diagram:hover::before {
    top: -4px;
    left: -4px;
}

.hero-flow-diagram {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.3);
    mix-blend-mode: multiply;
}

.problem {
    margin-bottom: 3rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.7;
    max-width: 650px;
}

.solution {
    margin-bottom: 4rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 650px;
}

.solution strong {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    display: block;
    margin-bottom: 1rem;
}

.cta-arrow {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Google Form Embed */
.google-form-wrapper {
    margin: 2rem 0;
    max-width: 640px;
    border: 3px solid #000;
    background: #fff;
    overflow: hidden;
}

.google-form-wrapper iframe {
    width: 100%;
    height: 666px;
    border: none;
    display: block;
}

.google-form-dark {
    border-color: #fff;
    background: #000;
}

.pricing {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    opacity: 0.6;
}

/* How It Works */
.how-it-works {
    padding: clamp(60px, 12vw, 120px) 0;
    border-bottom: 3px solid #000;
    position: relative;
}

.steps {
    margin-top: 0;
}

.step {
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #000;
    background: #fff;
    font-weight: 900;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step h3 {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
}

.step p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.destinations {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.destinations li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.5;
}

.destinations li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.destinations li.coming-soon {
    opacity: 0.5;
}

.destinations li.coming-soon::before {
    content: "○";
}

/* Why Section */
.why {
    padding: clamp(60px, 12vw, 120px) 0;
    border-bottom: 3px solid #000;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.why p {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.why strong {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

/* Who This Is For */
.who {
    padding: clamp(60px, 12vw, 120px) 0;
    border-bottom: 3px solid #000;
}

.checklist {
    list-style: none;
    margin-top: 3rem;
}

.checklist li {
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    padding-left: 2.5rem;
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 1.5em;
}

/* Final CTA */
.final-cta {
    padding: clamp(60px, 12vw, 120px) 0;
    border-bottom: 3px solid #000;
    background: #000;
    color: #fff;
    position: relative;
}

.final-cta h2 {
    color: #fff;
}

.final-cta .intro {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
}

.final-cta p {
    color: #fff;
}

.benefits {
    list-style: none;
    margin: 2rem 0 3rem 0;
}

.benefits li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
}


.promise {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.7;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    padding: clamp(50px, 10vw, 80px) 0 40px;
    background: #fff;
}

footer h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tagline-footer {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    font-weight: 600;
    transition: opacity 0.2s;
}

.contact a:hover {
    opacity: 0.6;
}

.built-by {
    margin-bottom: 2.5rem;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.disclaimer {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    opacity: 0.5;
    line-height: 1.6;
    max-width: 600px;
}


/* Responsive */
@media (max-width: 768px) {
    .hero, .how-it-works, .why, .who, .final-cta {
        padding: 60px 0;
    }

    .hero-diagram {
        padding: 2rem;
    }

    .hero-flow-diagram {
        max-width: 300px;
    }

    .google-form-wrapper {
        max-width: 100%;
    }

    .google-form-wrapper iframe {
        height: 600px;
    }

    .step {
        gap: 1.5rem;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-diagram {
        margin: 2rem 0 3rem 0;
        padding: 1.5rem;
        border-width: 2px;
    }

    .hero-diagram::before {
        border-width: 2px;
        top: 6px;
        left: 6px;
    }

    .hero-flow-diagram {
        max-width: 100%;
    }

    .google-form-wrapper {
        border-width: 2px;
    }

    .google-form-wrapper iframe {
        height: 550px;
    }

    .step {
        gap: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p, .destinations li {
        font-size: 1rem;
    }
}

