/* 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=Prata&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: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

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

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

.logo {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.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: 20px 40px;
    background: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--text-dark);
    border-radius: 0;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-grid--no-image {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-grid--no-image .hero-content {
    max-width: none;
}

.hero-screenshot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screenshot .screenshot-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 48px;
    line-height: 1.1;
    color: var(--text-dark);
    text-align: left;
    font-family: 'Prata', serif;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: left;
    font-weight: 400;
}

.hero-subtitle-secondary {
    font-size: 24px;
    margin-bottom: 64px;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: left;
    font-weight: 400;
}

.hero-cta {
    margin-bottom: 20px;
    text-align: left;
}

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

/* 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;
}

/* Screenshot Section */
.screenshot-section {
    background: var(--off-white);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.screenshot-container {
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.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: space-between;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

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

.footer-brand {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    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: 'Prata', serif;
    font-size: 28px;
    font-weight: 400;
    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 2rem;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-screenshot .screenshot-image {
        max-height: 400px;
        border-radius: 4px;
    }

    .hero-content .btn-cta {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hero-subtitle-secondary {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .btn-primary,
    .btn-cta,
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-family: 'Prata', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Currency Toggle */
.pricing-currency-toggle {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.currency-btn {
    padding: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.2s;
}

.currency-btn:hover {
    color: var(--text-dark);
}

.currency-btn.active {
    color: var(--text-dark);
    text-decoration-thickness: 2px;
}
