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

:root {
    --navy:   #0d1b3e;
    --blue:   #1a3a6b;
    --accent: #f0a500;
    --light:  #e8edf5;
    --text:   #1a1a2e;
    --muted:  #5a6a82;
    --white:  #ffffff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ── */
header {
    background: var(--navy);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.header-brand img {
    height: 48px;
    width: auto;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-brand-text .site-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.header-brand-text .site-tagline {
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: #aab8d0;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent); }

.btn-launch-header {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.btn-launch-header:hover {
    background: #ffc333;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4d8c 100%);
    color: var(--white);
    padding: 5rem 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.hero-text { max-width: 560px; }

.hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
    font-size: 1.1rem;
    color: #b8c8e0;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-launch {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(240,165,0,0.35);
}

.btn-launch:hover {
    background: #ffc333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,165,0,0.45);
}

.btn-launch svg { width: 18px; height: 18px; }

.btn-secondary {
    color: #b8c8e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #4a6a9a;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--white); border-color: var(--white); }

.hero-logo { flex-shrink: 0; }

.hero-logo img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
}

/* ── COMING SOON BANNER ── */
.coming-soon-bar {
    background: var(--accent);
    color: var(--navy);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── FEATURES ── */
.features {
    background: var(--light);
    padding: 4.5rem 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border: 1px solid #d0daea;
    border-top: 4px solid var(--accent);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 28px rgba(13,27,62,0.10);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.feature-card ul {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
}

.feature-card .tag {
    display: inline-block;
    background: var(--light);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    margin-top: 1rem;
    border: 1px solid #c0cede;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2.5rem;
    text-align: center;
}

.cta-strip h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-strip p {
    color: #aab8d0;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #080f1f;
    color: #6a7a90;
    padding: 2rem 2.5rem;
    margin-top: auto;
    border-top: 2px solid #1a2a4a;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img { height: 32px; width: auto; opacity: 0.75; }

.footer-brand span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8a9ab0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #6a7a90;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.78rem;
    color: #4a5a70;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #1a2a4a;
}

/* ── ABOUT ── */
.about-section {
    background: var(--white);
    padding: 4.5rem 2.5rem;
    border-top: 1px solid #d0daea;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-text { flex: 1; min-width: 280px; }

.about-text h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.about-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-shrink: 0;
}

.stat-card {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid #d0daea;
    border-top: 3px solid var(--accent);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── CONTACT ── */
.contact-section {
    background: var(--light);
    padding: 4.5rem 2.5rem;
    border-top: 1px solid #d0daea;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border: 1px solid #d0daea;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
    box-shadow: 0 6px 24px rgba(13,27,62,0.09);
    transform: translateY(-2px);
}

.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #c0d0e8;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.contact-card a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .hero { padding: 3rem 1.5rem; gap: 2.5rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero-logo img { width: 160px; }
    .header-nav { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}
