/* =========================
   BASE
========================= */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0b0f14;
    color: #e6e8eb;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container.narrow {
    max-width: 800px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 160px 0 120px;
    background: radial-gradient(circle at top, #14202c, #0b0f14 70%);
}

.hero h1 {
    font-size: 3rem;
    max-width: 700px;
}

.hero-subline {
    margin-top: 24px;
    font-size: 1.2rem;
    color: #b8c0cc;
    max-width: 600px;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

/* =========================
   BUTTONS
========================= */
.btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary {
    background: #2e7cf6;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #2e7cf6;
    color: #2e7cf6;
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 120px 0;
}

.intro,
.matching,
.facts,
.cta {
    background: #0f141b;
}

.ai {
    background: #0b0f14;
}

.ai-visual {
    background: linear-gradient(135deg, #1a2633, #0f141b);
    border-radius: 12px;
    min-height: 300px;
}

/* =========================
   FACTS
========================= */
.facts strong {
    font-size: 2.5rem;
    display: block;
}

.facts span {
    color: #9aa4b2;
}

/* =========================
   CTA
========================= */
.cta {
    text-align: center;
}
