/*
  Minimalist Style inspired by Hume AI Pricing Page
  Focus: Typography, Spacing, and Clarity
*/

:root {
    --color-text-dark: #1f2937; /* Very dark gray for main text */
    --color-text-medium: #4b5563; /* Medium gray for supporting text */
    --color-text-light: #6b7280; /* Light gray for footer/label */
    --color-white: #ffffff;
    --font-family: 'Inter', sans-serif;
    --max-width: 768px; /* Restrict content width for readability */
}

/* Base Reset and Typography */
body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto; /* Center the content */
    padding: 80px 20px 40px 20px; /* Ample top padding */
    flex-grow: 1; /* Allows content to push footer down */
}

/* Header/Title Styling */
header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em; /* Tighten up the text slightly */
    color: var(--color-text-dark);
    margin-bottom: 5rem; /* Large gap before main text */
}

/* Mission Section (Main Content) */
.mission {
    margin-bottom: 5rem;
}

.mission h2 {
    font-size: 2.2rem; /* Large, bold statement */
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.mission p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

.mission strong {
    font-weight: 700;
    color: var(--color-text-dark); /* Highlight key concepts */
}

.tagline {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    margin-top: 5rem; /* Clear separation from mission */
    border-top: 1px solid #e5e7eb; /* Subtle dividing line */
    padding-top: 3rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6; /* A clear, professional blue */
    text-decoration: none; /* Remove underline for a clean look */
    display: inline-block;
    transition: color 0.2s;
}

.email-link:hover {
    color: #1d4ed8; /* Darker blue on hover */
    text-decoration: underline;
}

/* Footer Styling */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: auto; /* Push to the bottom */
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .container {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .mission h2 {
        font-size: 1.8rem;
    }
    .mission p {
        font-size: 1.1rem;
    }
    .email-link {
        font-size: 1.2rem;
    }
}