/* Typography & Root Variables */
:root {
    --primary: #007AFF; /* Apple Blue */
    --text-main: #1d1d1f;
    --text-sub: #86868b;
    --bg-light: #ffffff;
    --bg-card: #f5f5f7;
    --border: #d2d2d7;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar */
.navbar {
    padding: 30px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: #e8f2ff;
    color: var(--primary);
    border-radius: 20px;
    text-transform: uppercase;
}

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

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 10px;
    color: #000;
}

.sub-headline {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-sub);
    max-width: 550px;
    font-weight: 400;
}

/* Grid & Cards */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.card {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.card label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-sub);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.card p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.card p.secondary {
    color: var(--text-sub);
    font-weight: 400;
}

.scope-tags {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.scope-tags span {
    color: var(--primary);
}

/* Contact Section */
.email-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.email-btn:hover {
    border-bottom: 2px solid var(--primary);
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    text-align: center;
}

.divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 50px;
    width: 100%;
}

.footer-cta h3 {
    font-size: 22px;
    color: var(--text-sub);
    font-weight: 400;
}

.bottom-bar {
    padding-bottom: 50px;
    text-align: center;
    font-size: 13px;
    color: #bcbcbc;
}

/* Fade-in Animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 48px; }
    .card { padding: 30px; }
    .hero { padding: 40px 0; }
}