/* ============================================================
   vision.css — CyberMDCare Vision 2027  |  BioTech Light Theme
   ============================================================ */

/* ==========================================
   TOKENS
   ========================================== */
:root {
    --c-navy:    #050D1A;
    --c-navy-mid:#091740;
    --c-blue:    #0EA5E9;
    --c-teal:    #0369A1;
    --c-blue-lt: #FFFFFF;
    --c-blue-md: #7DD3FC;
    --c-red:     #EF4444;
    --c-gray-50: #F5F7FA;
    --c-gray-100:#F0F4F8;
    --c-border:  #D8E4F0;
    --c-text:    #1E3A5F;
    --c-muted:   #4A5E7A;
    --c-faint:   #4A5E7A;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 12px rgba(10,22,40,.06);
    --shadow-md: 0 6px 32px rgba(10,22,40,.09);
    --shadow-lg: 0 16px 56px rgba(10,22,40,.12);
}

/* ==========================================
   BASE
   ========================================== */
.vision-page { background:#fff; }

/* suppress old sub_hero so it doesn't compete */
.vision-page .sub_hero { display:none; }

/* ==========================================
   HERO
   ========================================== */
.v_hero {
    position: relative;
    background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 120px;
    overflow: hidden;
}

.v_hero_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v_hero_grid { position:absolute; inset:0; }

.v_hero_glow {
    position: absolute;
    bottom: -120px; left: 50%;
    transform: translateX(-50%);
    width: 1000px; height: 600px;
    background: radial-gradient(ellipse, rgba(14,165,233,.18) 0%, transparent 65%);
}

.v_hero_content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.v_hero_eyebrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.v_hero_eyebrow span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.93);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 5px 14px;
    border-radius: 20px;
}

.v_hero_title {
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 24px;
}

.v_hero_sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,.93);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 52px;
}

.v_hero_stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 24px 36px;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.v_stat { text-align: center; padding: 0 32px; }
.v_stat:first-child { padding-left: 0; }
.v_stat:last-child  { padding-right: 0; }

.v_stat_num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.v_stat_label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .5px;
    white-space: nowrap;
}

.v_stat_divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* ==========================================
   SECTION BASE
   ========================================== */
.v_section          { padding: 120px 0; }
.v_section--white { background: #f5f5f5; }
.v_section--gray  { background: #f5f5f5; }

/* ==========================================
   EYEBROW / SECTION LABEL
   ========================================== */
.v_section_eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-teal);
    margin-bottom: 16px;
    display: block;
}

/* ==========================================
   TITLE GROUPS
   ========================================== */
.v_center_title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.v_left_title {
    margin-bottom: 60px;
}

.v_center_title h2,
.v_left_title h2 {
    font-size: clamp(2.25rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--c-navy);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 0;
}

.v_center_title h2 { margin-bottom: 20px; }

.v_section_desc {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
}

.v_section_desc strong { color: var(--c-teal); font-weight: 700; }

/* ==========================================
   NOTE TEXT
   ========================================== */
.v_note {
    font-size: 1.125rem;
    color: var(--c-faint);
    line-height: 1.7;
    margin-top: 48px;
}

.v_note--center { text-align: center; }

/* ==========================================
   PROBLEM CARDS
   ========================================== */
.v_problem_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.v_problem_card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
}


.v_problem_icon {
    width: 56px; height: 56px;
    background: var(--c-blue-lt);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}

.v_problem_card h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.v_problem_card p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
}

/* ==========================================
   TECH GRID (2×2)
   ========================================== */
.v_tech_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v_tech_card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 32px 28px;
    box-shadow: var(--shadow-sm);
}

.v_tech_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.v_tech_icon {
    width: 52px; height: 52px;
    background: var(--c-blue-lt);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.v_tech_label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-teal);
    background: var(--c-blue-lt);
    border: 1px solid var(--c-blue-md);
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.v_tech_card h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.v_tech_card p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
}

/* ==========================================
   CLINICAL FLOW
   ========================================== */
.v_flow_container {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.v_flow_item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 44px;
    border-bottom: 1px solid var(--c-border);
}

.v_flow_item:last-child { border-bottom: none; }

.v_flow_marker {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-blue-lt);
    border: 1px solid var(--c-blue-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.v_flow_marker--num {
    background: var(--c-blue);
    border-color: var(--c-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.v_flow_text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 6px;
}

.v_flow_text p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   BIOSIGNBOX
   ========================================== */
.v_biosign_layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.v_biosign_intro {
    background: var(--c-gray-50);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
}

.v_biosign_intro p {
    font-size: 1.125rem;
    color: var(--c-text);
    line-height: 1.8;
    margin: 0;
}

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

.v_biosign_item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
}


.v_biosign_icon {
    width: 44px; height: 44px;
    background: var(--c-blue-lt);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.v_biosign_item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 10px;
}

.v_biosign_item p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
    margin: 0;
}

.v_dev_note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--c-gray-50);
    border: 1px solid var(--c-blue-md);
    border-radius: var(--radius-md);
    padding: 28px 36px;
}

.v_dev_note_icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--c-blue-md);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}

.v_dev_note p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
    margin: 0;
}

.v_dev_note strong { color: var(--c-teal); }

/* ==========================================
   TIMELINE / ROADMAP
   ========================================== */
.v_timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Vertical connecting line */
.v_timeline::before {
    content: '';
    position: absolute;
    left: 76px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-blue-md), var(--c-blue));
    z-index: 0;
}

.v_timeline_item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.v_timeline_side {
    flex-shrink: 0;
    width: 116px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.v_timeline_year {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-teal);
    background: var(--c-blue-lt);
    border: 1px solid var(--c-blue-md);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

.v_timeline_dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--c-blue-md);
    margin-right: -6px;
    flex-shrink: 0;
}

.v_timeline_dot--active {
    background: var(--c-blue);
    border-color: var(--c-blue);
    box-shadow: 0 0 0 4px rgba(14,165,233,.2);
}

.v_timeline_card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}


.v_timeline_card--highlight {
    border-color: var(--c-blue-md);
    background: linear-gradient(135deg, #fff 60%, var(--c-blue-lt) 100%);
}

.v_timeline_card h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-navy);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.v_timeline_card p {
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   IP GRID
   ========================================== */
.v_ip_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.v_ip_card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 32px 28px;
    box-shadow: var(--shadow-sm);
}

.v_ip_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.v_ip_badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-teal);
    background: var(--c-blue-lt);
    border: 1px solid var(--c-blue-md);
    border-radius: 20px;
    padding: 4px 12px;
    flex-shrink: 0;
}

.v_ip_icon {
    width: 52px; height: 52px;
    background: var(--c-blue-lt);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.v_ip_card p {
    font-size: 1.125rem;
    color: var(--c-text);
    line-height: 1.7;
    margin: 0;
}

.v_ip_notice {
    background: var(--c-gray-50);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 36px;
    font-size: 1.125rem;
    color: var(--c-muted);
    line-height: 1.8;
}

.v_ip_notice strong { color: var(--c-text); }

/* ==========================================
   COMPANY GRID
   ========================================== */
.v_company_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v_company_item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.v_company_icon {
    width: 40px; height: 40px;
    background: var(--c-blue-lt);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}

.v_company_label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-faint);
}

.v_company_value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-navy);
    line-height: 1.5;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.v_cta_section {
    position: relative;
    background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.v_cta_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v_cta_grid { position: absolute; inset: 0; }

.v_cta_glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(14,165,233,.14) 0%, transparent 65%);
}

.v_cta_content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.v_cta_content h2 {
    font-size: clamp(2.25rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.v_cta_content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,.93);
    line-height: 1.8;
    margin-bottom: 36px;
}

.v_cta_tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #7DD3FC;
    background: rgba(125,211,252,.1);
    border: 1px solid rgba(125,211,252,.25);
    border-radius: 20px;
    padding: 8px 24px;
}

/* ==========================================
   FAQ / DISCLAIMER (inherits from sub.css, just tune colors)
   ========================================== */
.vision-page .faq_section { padding: 120px 0 80px; background: #fff; }

.vision-page .faq_item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: border-color .25s, box-shadow .25s;
}

.vision-page .faq_item:hover {
    border-color: var(--c-blue-md);
    box-shadow: var(--shadow-sm);
}

.vision-page .faq_item summary { color: var(--c-text); font-size: 1.125rem; }
.vision-page .faq_item[open] summary { background: var(--c-blue-lt); color: var(--c-teal); }
.vision-page .answer { background: var(--c-blue-lt); color: var(--c-muted); font-size: 1.125rem; line-height: 1.8; }
.vision-page .q_mark { color: var(--c-text); }
.vision-page .a_mark { color: var(--c-faint); }

/* ==========================================
   RESPONSIVE — TABLET (≤1023px)
   ========================================== */
@media (max-width: 1023px) {
    .v_hero            { min-height: auto; padding: 100px 0 70px; }
    .v_hero_title      { letter-spacing: -2px; }
    .v_hero_stats      { padding: 20px 24px; }
    .v_stat            { padding: 0 20px; }
    .v_stat_num        { font-size: 26px; }

    .v_section         { padding: 80px 0; }

    .v_problem_grid    { grid-template-columns: 1fr; }
    .v_tech_grid       { grid-template-columns: 1fr; }
    .v_biosign_features { grid-template-columns: 1fr; }
    .v_company_grid    { grid-template-columns: 1fr 1fr; }
    .v_ip_grid         { grid-template-columns: 1fr; }

    .v_timeline::before { left: 60px; }
    .v_timeline_side   { width: 92px; }

    .v_center_title h2,
    .v_left_title h2   { font-size: 2.25rem; }
    .v_cta_section     { padding: 80px 0; }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤767px)
   ========================================== */
@media (max-width: 767px) {
    .v_hero            { padding: 100px 0 60px; }
    .v_hero_title      { letter-spacing: -1.5px; }
    .v_hero_sub        { font-size: 1.125rem; margin-bottom: 36px; }

    .v_hero_stats      {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        width: 100%;
    }
    .v_stat            { padding: 0; display: flex; align-items: center; gap: 12px; text-align: left; }
    .v_stat_num        { font-size: 24px; }
    .v_stat_divider    { width: 100%; height: 1px; }

    .v_section         { padding: 64px 0; }
    .v_center_title    { margin-bottom: 48px; }
    .v_center_title h2,
    .v_left_title h2   { font-size: 1.75rem; letter-spacing: -1px; }

    .v_flow_item       { padding: 24px 24px; gap: 16px; }
    .v_biosign_intro   { padding: 28px 24px; }
    .v_biosign_item    { padding: 24px 20px; }
    .v_dev_note        { padding: 24px 20px; }
    .v_tech_card       { padding: 28px 24px; }
    .v_problem_card    { padding: 32px 28px; }

    .v_timeline::before { display: none; }
    .v_timeline_item   { flex-direction: column; gap: 12px; padding: 0 0 24px; }
    .v_timeline_side   { flex-direction: row; align-items: center; width: auto; }
    .v_timeline_dot    { display: none; }
    .v_timeline_card   { padding: 24px 24px; margin-bottom: 0; }

    .v_company_grid    { grid-template-columns: 1fr; }
    .v_ip_card         { padding: 28px 24px; }
    .v_ip_notice       { padding: 20px 20px; }

    .v_cta_section     { padding: 64px 0; }
    .v_cta_content h2  { font-size: 1.75rem; letter-spacing: -1px; }
}

/* ============================================================
   DARK SECTIONS  —  v_section--dark / v_section--navy
   ============================================================ */

/* ── Backgrounds ────────────────────────────────────────────── */
.v_section--dark {
    background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    position: relative; overflow: hidden;
}

.v_section--navy {
    background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    position: relative; overflow: hidden;
}

/* ── Grid overlay ───────────────────────────────────────────── */
.v_section--dark::before,
.v_section--navy::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

/* ── Radial glow ────────────────────────────────────────────── */
.v_section--dark::after,
.v_section--navy::after {
    content: '';
    position: absolute;
    bottom: -120px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(14,165,233,.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ── inner_box above overlays ───────────────────────────────── */
.v_section--dark > .inner_box,
.v_section--navy > .inner_box { position: relative; z-index: 1; }

/* ── Eyebrow labels ─────────────────────────────────────────── */
.v_section--dark .v_section_eyebrow,
.v_section--navy .v_section_eyebrow { color: #7DD3FC; }

/* ── Headings ───────────────────────────────────────────────── */
.v_section--dark .v_center_title h2,
.v_section--dark .v_left_title h2,
.v_section--navy .v_center_title h2,
.v_section--navy .v_left_title h2 { color: #ffffff; }

/* ── Body text ──────────────────────────────────────────────── */
.v_section--dark .v_section_desc,
.v_section--navy .v_section_desc { color: rgba(255,255,255,.92); }

.v_section--dark .v_section_desc strong,
.v_section--navy .v_section_desc strong { color: #7DD3FC; }

.v_section--dark .v_note,
.v_section--navy .v_note { color: rgba(255,255,255,.78); }

/* ── Problem cards (dark) ───────────────────────────────────── */
.v_section--dark .v_problem_card {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
}
.v_section--dark .v_problem_icon  { background: rgba(14,165,233,.12); }
.v_section--dark .v_problem_card h4 { color: #fff; }
.v_section--dark .v_problem_card p  { color: rgba(255,255,255,.90); }

/* ── Flow container (dark) ──────────────────────────────────── */
.v_section--dark .v_flow_container {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
}
.v_section--dark .v_flow_item {
    border-bottom-color: rgba(255,255,255,.07);
}
.v_section--dark .v_flow_marker {
    background: rgba(14,165,233,.15);
    border-color: rgba(14,165,233,.3);
}
.v_section--dark .v_flow_text strong { color: #fff; }
.v_section--dark .v_flow_text p      { color: rgba(255,255,255,.90); }

/* ── Company grid (dark) ────────────────────────────────────── */
.v_section--dark .v_company_grid { gap: 20px; }
.v_section--dark .v_company_item {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
}
.v_section--dark .v_company_icon       { background: rgba(14,165,233,.12); }
.v_section--dark .v_company_label      { color: rgba(255,255,255,.80); }
.v_section--dark .v_company_value      { color: #fff; }

/* ── Timeline (navy) ────────────────────────────────────────── */
.v_section--navy .v_timeline::before {
    background: linear-gradient(to bottom,
        rgba(14,165,233,.3) 0%, rgba(14,165,233,.7) 100%);
}

.v_section--navy .v_timeline_year {
    color: #7DD3FC;
    background: rgba(14,165,233,.15);
    border-color: rgba(14,165,233,.3);
}

.v_section--navy .v_timeline_dot {
    background: rgba(255,255,255,.08);
    border-color: rgba(14,165,233,.4);
}

.v_section--navy .v_timeline_dot--active {
    background: #0EA5E9;
    border-color: #0EA5E9;
    box-shadow: 0 0 0 4px rgba(14,165,233,.25);
}

.v_section--navy .v_timeline_card {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
}
.v_section--navy .v_timeline_card--highlight {
    background: rgba(14,165,233,.1);
    border-color: rgba(14,165,233,.35);
}
.v_section--navy .v_timeline_card h4 { color: #fff; }
.v_section--navy .v_timeline_card p  { color: rgba(255,255,255,.90); }

/* ── Section-specific gradient accents ─────────────────────── */
#sec-future,
#sec-vision,
#sec-biosign,
#sec-ip,
#sec-disclaimer.v_section { background: #f5f5f5; }

#sec-future .v_center_title { margin-bottom: 0; }
#sec-future { padding-bottom: 120px; }

/* ── Dark-section responsive tweaks ────────────────────────── */
@media (max-width: 767px) {
    .v_section--dark::after,
    .v_section--navy::after { width: 400px; height: 300px; }
}
