:root {
    --color-terracotta: #C75B39; /* Warm terracotta brown */
    --color-peach: #F5C6AA; /* Soft peach neutral */
    --color-charcoal: #1C1C1E; /* Rich deep charcoal */
    --color-eucalyptus: #6B8E23; /* Eucalyptus green */
    --bg-color: #FDFBF7; /* Light subtle background */
    --text-color: var(--color-charcoal);
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 30px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top left, rgba(245, 198, 170, 0.15), transparent 40%),
                radial-gradient(circle at top right, rgba(199, 91, 57, 0.1), transparent 40%),
                radial-gradient(circle at bottom, rgba(245, 198, 170, 0.1), transparent 50%),
                var(--bg-color);
}

.hero-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
}

.hero-section p {
    font-size: 1.25rem;
    color: #5C4A4A;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85; /* Increased for better readability */
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.app-store-btn.ios {
    background-color: var(--color-terracotta);
}

.app-store-btn.android {
    background-color: var(--color-eucalyptus);
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.hero-visual {
    width: 100%;
    max-width: 600px;
    margin-top: 60px;
}

.phone-frame {
    background: #ffffff;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(44, 30, 30, 0.06), 0 10px 30px rgba(44, 30, 30, 0.04);
    border: 1px solid rgba(44, 30, 30, 0.08);
    display: inline-block;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #F9F5F2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
}

.feature-card p {
    color: #5C4A4A;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #8C6D58;
    font-weight: 500;
    border: 1px dashed #D9C5B2;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--bg-color);
    border-top: 1px solid #EAE2D9;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: #6C5D53;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.copyright {
    color: #A39284;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
