.vp-2ff76a30-wrapper {
    --mouse-x: 50%;
    --mouse-y: 50%;
    width: 100%;
    padding: 100px 24px;
    background-color: #0F1115;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.vp-2ff76a30-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Left Column Styling */
.vp-2ff76a30-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vp-2ff76a30-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vp-2ff76a30-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.vp-2ff76a30-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0 0 32px 0;
}

.vp-2ff76a30-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vp-2ff76a30-list-item {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    color: #9CA3AF;
}

.vp-2ff76a30-bullet {
    font-size: 14px;
    line-height: 1;
    margin-top: 2px;
}

.vp-2ff76a30-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vp-2ff76a30-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.vp-2ff76a30-arrow {
    transition: transform 0.3s ease;
}

.vp-2ff76a30-btn:hover .vp-2ff76a30-arrow {
    transform: translateX(4px);
}

/* Right Column Grid Layout */
.vp-2ff76a30-right-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Glassmorphism Interactive Cards */
.vp-2ff76a30-card {
    position: relative;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.vp-2ff76a30-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Card Glow Effect (using js dynamic tracking) */
.vp-2ff76a30-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(255, 220, 74, 0.08), transparent 40%);
    z-index: 1;
}

.vp-2ff76a30-card:hover .vp-2ff76a30-card-glow {
    opacity: 1;
}

.vp-2ff76a30-card-content {
    position: relative;
    z-index: 2;
}

.vp-2ff76a30-pillar-icon {
    font-size: 24px;
    margin-bottom: 24px;
    display: inline-flex;
}

.vp-2ff76a30-pillar-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.vp-2ff76a30-pillar-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.vp-2ff76a30-pillar-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .vp-2ff76a30-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .vp-2ff76a30-wrapper {
        padding: 60px 16px;
    }
    .vp-2ff76a30-title {
        font-size: 32px;
    }
    .vp-2ff76a30-right-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vp-2ff76a30-card {
        padding: 24px;
    }
}
