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

:root {
    --bg-cream: #F7F4EF;
    --surface-light: #FBF9F5;
    --surface-white: #FFFFFF;
    --border-warm: #E7E1D7;
    --ink: #1F2421;
    --text-muted: #5C635D;
    --charcoal: #1F2421;
    --terracotta: #C4612F;
    --terracotta-hover: #A94E22;
    --terracotta-tint: #F2E3D6;
    --shadow-sm: 0 1px 3px rgba(31, 36, 33, 0.08);
    --shadow-md: 0 4px 12px rgba(31, 36, 33, 0.12);
    --shadow-lg: 0 8px 24px rgba(31, 36, 33, 0.15);
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 249, 245, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-warm);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}

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

/* Buttons */
.btn-primary {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--terracotta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-warm);
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
}

.eyebrow {
    margin-bottom: 24px;
}

.eyebrow-pill {
    display: inline-block;
    background: var(--terracotta-tint);
    color: var(--terracotta);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-warm);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--surface-light);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--border-warm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--terracotta-tint);
    border-radius: 12px;
    font-size: 24px;
}

.feature-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-cream);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.step {
    text-align: center;
}

.step-number {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    color: var(--terracotta);
    margin-bottom: 20px;
    font-weight: 400;
}

.step-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--surface-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-warm);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured {
    border: 2px solid var(--terracotta);
    background: var(--surface-white);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: white;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-name {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--terracotta);
}

.price-period {
    color: var(--text-muted);
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 15px;
    border-bottom: 1px solid var(--border-warm);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--charcoal);
    color: white;
}

.download .section-title {
    color: white;
}

.download .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.download-content {
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 48px 0 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.download-label {
    font-size: 12px;
    opacity: 0.8;
    text-align: left;
}

.download-store {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Footer */
.footer {
    background: var(--surface-light);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-warm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links h4 {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-warm);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta button {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

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