@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&display=swap');

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

:root {
    --cream: #f0e6d6;
    --cream-dark: #e5d9c7;
    --ink: #1a1a2e;
    --muted: #8a8078;
    --gold: #c8a96e;
    --sand: #d4b896;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
header {
    padding: 1.5rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--ink);
}

/* Main */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 0 5rem;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
}

.tagline {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA */
.cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.15s;
}

.cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cta--muted {
    background: var(--cream-dark);
    color: var(--muted);
    cursor: default;
}

.cta--muted:hover {
    opacity: 1;
    transform: none;
}

/* Screenshots */
.screenshots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0 4rem;
    border-top: 1px solid var(--cream-dark);
}

.screenshot img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    padding: 5rem 0 6rem;
    border-top: 1px solid var(--cream-dark);
}

.bottom-cta h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--cream-dark);
    max-width: 960px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--ink);
}

footer p {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .screenshots {
        gap: 1.5rem;
    }

    .bottom-cta h2 {
        font-size: 1.85rem;
    }

    main {
        padding: 0 1.25rem;
    }

    .nav-links {
        gap: 1rem;
    }
}
