/* Styling & Variables */
:root {
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-dark: #0f172a;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --border-color: #e2e8f0;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
 
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
}
 
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
 
/* Typography */
h1, h2, h3 {
    color: var(--text-dark);
    line-height: 1.2;
}
 
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}
 
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
 
/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
 
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
 
.logo {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
}
 
/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}
 
.btn-primary:hover {
    background-color: var(--primary-hover);
}
 
.btn-secondary {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
 
/* Hero Section */
.hero {
    padding: 100px 0 80px 0;
    text-align: center;
}
 
.hero-container {
    max-width: 750px;
}
 
.badge {
    display: inline-block;
    background-color: #eff6ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}
 
.hero-subtext {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
}
 
/* Sections */
.section {
    padding: 80px 0;
}
 
.light-bg {
    background-color: var(--bg-light);
}
 
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
 
.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}
 
/* Cards */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
 
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
 
.card {
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    background-color: #ffffff;
}
 
.card h3 {
    margin-bottom: 12px;
}
 
.info-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
 
.info-box p {
    margin-top: 12px;
}
 
/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: #94a3b8;
    padding: 60px 0 30px 0;
}
 
.footer-logo {
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
}
 
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #334155;
}
 
.footer h4 {
    color: #ffffff;
    margin-bottom: 8px;
}
 
.status-tag {
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 8px;
}
 
.contact-email a {
    color: #ffffff;
    text-decoration: underline;
}
 
.copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 0.875rem;
}
 
/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 16px; }
    .hero { padding: 60px 0; }
}