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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

:root {
    --text-dark: rgb(25, 25, 24);
    --text-light: rgba(25, 25, 24, 0.6);
    --border: #E9E9E7;
    --white: #FFFFFF;
    --off-white: #f6f5f4;
    --accent-blue: #2383E2;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Apple Color Emoji', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    background: var(--white);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

.sign-in-link {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.15s ease;
}

.sign-in-link:hover {
    opacity: 0.6;
}

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

/* Buttons */
.btn-primary,
.btn-cta {
    display: inline-block;
    padding: 6px 12px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.15s ease;
}

.btn-primary:hover,
.btn-cta:hover {
    background: var(--off-white);
}

.btn-large {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: var(--white);
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-subtitle-secondary {
    font-size: 14px;
    margin-bottom: 32px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 12px;
}

.hero-note {
    font-size: 12px;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.simple-list {
    max-width: 600px;
    margin: 0 auto;
}

.list-item {
    margin-bottom: 32px;
}

.list-item h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 600;
}

.list-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Who Section */
.who-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.who-list {
    max-width: 600px;
    margin: 0 auto;
}

.who-list p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.who-list p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cta p {
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.footer-content a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-content a:hover {
    color: var(--text-dark);
}

/* Legal Pages */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-content strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 60px 0 48px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-subtitle-secondary {
        font-size: 14px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .features,
    .who-section,
    .cta {
        padding: 48px 0;
    }

    .list-item {
        margin-bottom: 24px;
    }

    .footer-content {
        flex-direction: row;
        gap: 16px;
    }
}
