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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F7F8FA;
}

section {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #111827;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
    color: #111827;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 120px;
}

.subheadline {
    font-size: 20px;
    text-align: center;
    color: #6B7280;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-container {
    text-align: center;
    margin-bottom: 0;
}

.email-address {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background-color: #EFF6FF;
    border: none;
    border-radius: 50px;
    margin-bottom: 24px;
    cursor: pointer;
}

.email-address:hover {
    background-color: #DBEAFE;
}

.email-text {
    font-size: 26px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    color: #3B82F6;
    letter-spacing: -0.01em;
}

.copy-button {
    background-color: #3B82F6;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
}

.copy-button:hover {
    background-color: #2563EB;
}

.reassurance {
    font-size: 16px;
    color: #6B7280;
    margin-top: 0;
    font-weight: 400;
}

/* How It Works */
.how-it-works {
    background-color: #ffffff;
}

.steps {
    list-style: none;
    counter-reset: step-counter;
    max-width: 600px;
    margin: 0 auto 48px;
}

.steps li {
    counter-increment: step-counter;
    margin-bottom: 48px;
    padding-left: 48px;
    position: relative;
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.steps li strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.steps li p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.that-is-it {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-top: 48px;
}

/* What Handled Is (and Isn't) */
.what-is {
    padding-top: 100px;
    padding-bottom: 100px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 700px;
    margin: 0 auto;
}

.two-column ul {
    list-style: none;
}

.two-column li {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.two-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111827;
    font-weight: 600;
}

/* Supported Services */
.supported-services {
    background-color: #ffffff;
    text-align: center;
}

.supported-services > p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
}

.services-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: 32px;
}

.services-list li {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111827;
    font-weight: 600;
}

.coming-soon {
    font-size: 16px;
    color: #6B7280;
    font-style: italic;
}

/* Trust & Privacy */
.trust-privacy {
    padding-top: 100px;
    padding-bottom: 100px;
}

.privacy-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-list li {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111827;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.cta-section h2 {
    margin-bottom: 48px;
}

.helper-text {
    font-size: 16px;
    color: #6B7280;
    margin-top: 24px;
}

/* Footer */
footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
    border-top: 1px solid #E5E7EB;
}

.footer-brand {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.footer-domain {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 16px;
    color: #6B7280;
}

.footer-contact a {
    color: #111827;
    text-decoration: underline;
}

.footer-contact a:hover {
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .email-text {
        font-size: 22px;
    }

    .email-address {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    section {
        padding: 60px 24px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

