/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', system-ui, sans-serif;
    background-color: #eef2ea;
    color: #1e1e1e;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
}

/* Logo */
.logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo svg {
    transition: transform 0.2s ease;
}

.logo svg:hover {
    transform: scale(1.05);
}

/* Main card styling */
.card {
    background-color: #f6f8f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 640px;
    width: 100%;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Typography */
.headline {
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: #1e1e1e;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b6f66;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.subline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #6b6f66;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.subline strong {
    color: #1e1e1e;
    font-weight: 500;
}

.description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.description p {
    font-size: 1rem;
    color: #6b6f66;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Apps section */
.apps-section {
    width: 100%;
    max-width: 640px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f6f8f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.04);
}

.app-card:not(.coming-soon):hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.app-card.coming-soon {
    opacity: 0.75;
    cursor: default;
}

.app-icon {
    flex-shrink: 0;
}

.app-icon svg {
    display: block;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 0.25rem;
}

.app-info p {
    font-size: 0.875rem;
    color: #6b6f66;
}

.app-status {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.app-status.live {
    background-color: #d4edda;
    color: #155724;
}

.app-status.soon {
    background-color: #e9ecef;
    color: #6b6f66;
}

/* Contact section */
.contact-section {
    width: 100%;
    max-width: 640px;
}

.contact-card {
    background-color: #f6f8f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-card p {
    color: #6b6f66;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    background-color: #1e1e1e;
    color: #f6f8f3;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.email-link:hover {
    background-color: #2a2a2a;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    margin-top: auto;
    width: 100%;
    max-width: 640px;
    text-align: center;
    padding-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-content p {
    font-size: 0.875rem;
    color: #6b6f66;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #6b6f66;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #1e1e1e;
}

.divider {
    color: #6b6f66;
    opacity: 0.5;
    font-size: 0.875rem;
}

/* Policy page styles */
.policy-page {
    justify-content: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.policy-header {
    width: 100%;
    max-width: 720px;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    color: #6b6f66;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #1e1e1e;
}

.policy-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #1e1e1e;
    margin-bottom: 0.5rem;
}

.effective-date {
    color: #6b6f66;
    font-size: 0.95rem;
}

.policy-card {
    background-color: #f6f8f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 720px;
    width: 100%;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06);
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.policy-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e1e1e;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #4a4a4a;
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: #1e1e1e;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-section a:hover {
    color: #6b6f66;
}

.contact-info {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

/* Footer link styles */
.footer-link {
    color: #6b6f66;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1e1e1e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .headline {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .tagline {
        font-size: 1.125rem;
    }
    
    .subline {
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 0.75rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.25rem;
    }

    .divider {
        display: none;
    }

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

    .section-title {
        font-size: 1.35rem;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .headline {
        font-size: 2.25rem;
    }
    
    .description p {
        font-size: 0.95rem;
    }

    .app-card {
        padding: 1rem;
    }

    .app-icon svg {
        width: 40px;
        height: 40px;
    }

    .policy-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}