:root {
    --accent: #0d6efd;
    --muted: #6c757d;
    --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 255, 0.95));
    --glass: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 40%);
    color: #222
}

.hero {
    padding: 3.5rem 0
}

.badge-accent {
    background: linear-gradient(90deg, var(--accent), #6610f2);
    color: #fff;
    padding: .5rem 0.8rem;
    border-radius: 999px;
    font-weight: 700
}


.objectives-grid {
    gap: 1.25rem
}

.obj-card {
    background: var(--card-bg);
    border: 0;
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
    display: flex;
    align-items: flex-start
}

.icon-wrap {
    flex: 0 0 68px;
    height: 68px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem
}

.icon-wrap.primary {
    background: linear-gradient(180deg, #0699e3, #0c58ef);
    color: var(--accent)
}

.obj-body {
    margin-left: 1rem
}

.obj-title {
    font-weight: 700;
    margin-bottom: .2rem
}

.obj-desc {
    color: var(--muted);
    margin: 0
}


/* larger card style for emphasis */
.hero-card {
    border-radius: 16px;
    padding: 1.6rem;
    background: linear-gradient(90deg, #079beb, #035bb4);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.06)
}


/* Decorative vertical timeline */
.timeline {
    position: relative
}

.timeline::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), #6610f2);
    border-radius: 8px;
    transform: translateX(-50%)
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 1rem
}

.timeline-item:last-child {
    padding-bottom: 0
}


@media (max-width:767px) {
    .timeline::before {
        left: 28px
    }

    .icon-wrap {
        flex: 0 0 56px;
        height: 56px
    }
}


/* small flourish */
.cta-row {
    margin-top: 1.2rem
}

.learn-more {
    font-weight: 600
}