/* ========== HERO ========== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 156px;
    padding-bottom: 48px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 92, 135, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero h1 { margin-bottom: 20px; }

/* ========== SECTIONS ========== */
.section-alt { background: #0d1222; }
.section-content { position: relative; z-index: 1; }

/* ========== STORY SECTION ========== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}
.story-column h2 { font-size: 1.5rem; margin-bottom: 24px; }
.story-column p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; color: #9ba3b9; }
.story-highlight {
    padding: 24px;
    border-left: 4px solid #6bb8ff;
    background: rgba(43, 92, 135, 0.1);
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}
.story-highlight p { margin-bottom: 0; font-size: 1.1rem; color: #c4c9d6; font-style: italic; }

/* ========== MISSION SECTION ========== */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}
.mission-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(43, 92, 135, 0.3);
    border-radius: 16px;
}
.mission-box h3 {
    background: linear-gradient(135deg, #4a9eed, #2b5c87, #6bb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.mission-box p { font-size: 1rem; color: #9ba3b9; line-height: 1.8; margin-bottom: 16px; }
.mission-box ul { list-style: none; padding: 0; margin-top: 16px; }
.mission-box li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #9ba3b9;
    font-size: 0.95rem;
    line-height: 1.6;
}
.mission-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4a9eed, #6bb8ff);
    border-radius: 50%;
}

/* ========== DIFFERENTIATORS SECTION ========== */
.differentiators {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}
.diff-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s var(--ease-out-quart);
}
.diff-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(43, 92, 135, 0.3);
    transform: translateY(-4px);
}
.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 158, 237, 0.2), rgba(43, 92, 135, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}
.diff-card h3 { margin-bottom: 12px; color: #fff; }
.diff-card p { font-size: 0.95rem; color: #8b92a8; line-height: 1.6; }

/* ========== TASCERA SECTION ========== */
.tascera-box {
    padding: 48px;
    background: rgba(43, 92, 135, 0.1);
    border: 1px solid rgba(43, 92, 135, 0.2);
    border-radius: 16px;
    text-align: center;
}
.tascera-box h3 { font-size: 1.5rem; margin-bottom: 16px; }
.tascera-box p { font-size: 1.05rem; color: #9ba3b9; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero { padding-top: 100px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .differentiators { grid-template-columns: 1fr; gap: 30px; }
}
