/* ============================================================
   Atomquark — Vision & Mission (Editorial Split Layout)
   No cards. Full-bleed dark hero with floating graphics, big
   typography, glowing center separator, horizontal pillars row.
   ============================================================ */

.vm-edit-section {
    position: relative;
    padding: 48px 0 40px;
    background:
        radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 88% 82%, rgba(139, 92, 246, 0.22) 0%, transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.10) 0%, transparent 60%),
        linear-gradient(135deg, #0a0f1f 0%, #131836 50%, #1b1444 100%);
    color: #e2e8f0;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle dot grid */
.vm-edit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
    z-index: 0;
    pointer-events: none;
}

/* Floating colored orb (top-right) */
.vm-edit-section::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.30) 0%, rgba(79, 70, 229, 0.15) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: vm-edit-float 18s ease-in-out infinite;
}

@keyframes vm-edit-float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-40px, 30px); }
}

.vm-edit-section > .container { position: relative; z-index: 1; }

/* ----- Header ----- */
.vm-edit-header {
    text-align: center;
    margin-bottom: 28px;
}

.vm-edit-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(139, 92, 246, 0.16));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 999px;
    color: #67e8f9;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vm-edit-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 14px #06b6d4;
    animation: vm-edit-pulse 2s ease-in-out infinite;
}

@keyframes vm-edit-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(1.4); }
}

.vm-edit-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #ffffff 0%, #67e8f9 45%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.vm-edit-subtitle {
    font-size: 13px;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ----- Split layout ----- */
.vm-edit-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 32px;
    position: relative;
}

.vm-edit-pane {
    position: relative;
    padding: 18px 24px;
}

.vm-edit-pane--vision { padding-right: 32px; }
.vm-edit-pane--mission { padding-left: 32px; text-align: left; }

/* Giant faded background numeral */
.vm-edit-pane__number {
    position: absolute;
    top: 4px;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    z-index: -1;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.13;
}

.vm-edit-pane--vision .vm-edit-pane__number {
    left: -10px;
    background-image: linear-gradient(180deg, #22d3ee 0%, #4f46e5 70%, transparent 100%);
}

.vm-edit-pane--mission .vm-edit-pane__number {
    right: -10px;
    background-image: linear-gradient(180deg, #a78bfa 0%, #4f46e5 70%, transparent 100%);
}

/* Eyebrow head: icon + kicker */
.vm-edit-pane__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vm-edit-pane__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    transition: transform 0.4s ease;
}

.vm-edit-pane--vision .vm-edit-pane__icon {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #4f46e5 100%);
    box-shadow: 0 12px 32px -4px rgba(6, 182, 212, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vm-edit-pane--mission .vm-edit-pane__icon {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    box-shadow: 0 12px 32px -4px rgba(139, 92, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vm-edit-pane:hover .vm-edit-pane__icon {
    transform: rotate(-6deg) scale(1.06);
}

.vm-edit-pane__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: #67e8f9;
}

.vm-edit-pane--mission .vm-edit-pane__kicker { color: #c4b5fd; }

.vm-edit-pane__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
}

/* Statement & description */
.vm-edit-pane__statement {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 8px;
    letter-spacing: -0.1px;
    color: #f1f5f9;
}

.vm-edit-pane__desc {
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
    color: #94a3b8;
}

/* ----- Center divider with flowing energy line ----- */
.vm-edit-divider {
    position: relative;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(6, 182, 212, 0.4) 20%,
        rgba(139, 92, 246, 0.4) 80%,
        transparent 100%);
    margin: 0 8px;
}

.vm-edit-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #4f46e5, #8b5cf6);
    box-shadow: 0 0 0 5px rgba(11, 16, 32, 0.95), 0 0 24px rgba(79, 70, 229, 0.6);
    animation: vm-edit-pulse-ring 3s ease-in-out infinite;
}

.vm-edit-divider::after {
    content: "→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

@keyframes vm-edit-pulse-ring {
    0%, 100% { box-shadow: 0 0 0 5px rgba(11, 16, 32, 0.95), 0 0 24px rgba(79, 70, 229, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(11, 16, 32, 0.95), 0 0 34px rgba(6, 182, 212, 0.85); }
}

/* Travelling pulse dot down the divider */
.vm-edit-divider .vm-edit-divider__pulse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #67e8f9;
    box-shadow: 0 0 12px #06b6d4;
    animation: vm-edit-travel 4s linear infinite;
}

@keyframes vm-edit-travel {
    0%   { top: 0%;   opacity: 0; }
    15%  { opacity: 1; }
    50%  { opacity: 0; }
    50.01% { top: 100%; opacity: 0; }
    100% { top: 100%; opacity: 0; }
}

/* ----- Decorative SVG graphics behind panes ----- */
.vm-edit-pane__graphic {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.18;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.vm-edit-pane--vision .vm-edit-pane__graphic {
    bottom: -20px;
    right: 8px;
    width: 130px;
    height: 130px;
}

.vm-edit-pane--mission .vm-edit-pane__graphic {
    bottom: -20px;
    left: 8px;
    width: 130px;
    height: 130px;
}

.vm-edit-pane:hover .vm-edit-pane__graphic {
    opacity: 0.32;
    transform: scale(1.05);
}

/* ----- Horizontal pillar row at bottom ----- */
.vm-edit-pillars-wrap {
    position: relative;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-edit-pillars-wrap::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, #8b5cf6, transparent);
    border-radius: 2px;
}

.vm-edit-pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-edit-pillars > li {
    text-align: center;
    padding: 10px 8px;
    border-radius: 11px;
    transition: all 0.35s ease;
    cursor: default;
}

.vm-edit-pillars > li:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.vm-edit-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.13), rgba(139, 92, 246, 0.13));
    color: #67e8f9;
    font-size: 13px;
    transition: all 0.35s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.vm-edit-pillars > li:hover .vm-edit-pillar__icon {
    background: linear-gradient(135deg, #22d3ee, #4f46e5, #8b5cf6);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.5);
}

.vm-edit-pillar__title {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
    line-height: 1.3;
}

.vm-edit-pillar__text {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .vm-edit-split {
        grid-template-columns: 1fr;
    }
    .vm-edit-pane--vision,
    .vm-edit-pane--mission {
        padding: 28px 16px;
    }
    .vm-edit-divider {
        width: auto;
        height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(6, 182, 212, 0.4) 30%,
            rgba(139, 92, 246, 0.4) 70%,
            transparent 100%);
        margin: 12px 0;
    }
    .vm-edit-divider::after { content: "↓"; }
    .vm-edit-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .vm-edit-pane__number { font-size: 110px; }
}

@media (max-width: 575.98px) {
    .vm-edit-section { padding: 60px 0 50px; }
    .vm-edit-pillars { grid-template-columns: repeat(2, 1fr); }
    .vm-edit-pane__number { font-size: 90px; opacity: 0.08; }
}
