/* About Page - The Flat Future Design */
/* About Page - The Flat Future Design */
:root {
    --vt-navy: #0f172a;
    --vt-blue: #2563eb;
    /* Vibrant Electric Blue */
    --vt-blue-light: #eff6ff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-surface: #ffffff;
    --bg-alt: #f8fafc;
}

body.page-about {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(15, 23, 42, 0.02) 0px, transparent 50%);
    overflow-x: hidden;
}

/* Typography */
.display-1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--vt-navy) 0%, var(--vt-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.display-2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section.compact {
    padding: 60px 0;
}

.about-section.compact .bento-grid {
    margin-top: 0;
}

.about-section.bg-light,
.section-global {
    background: #f8fafc;
}

/* Hero Section - World Class */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Mesh Gradient Background */
.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-bg-anim::before,
.hero-bg-anim::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: drift 20s infinite alternate;
}

.hero-bg-anim::before {
    background: #3b82f6;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-bg-anim::after {
    background: #9333ea;
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Glass Badge */
.badge-glass-glow {
    background: rgba(37, 99, 235, 0.1);
    color: var(--vt-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.badge-glass-glow:hover {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Super Headline */
.display-super {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--vt-navy);
    margin-bottom: 2rem;
}

.text-gradient-shimmer {
    background: linear-gradient(110deg,
            #0f172a 28%,
            #1668B2 42%,
            #37B54A 52%,
            #0f172a 68%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


/* Bento Grid Layout for Vision/Mission */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bento-card {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    z-index: 1;
}

/* Mouse Glow Effect Layer */
.bento-card::before {
    content: "";
    position: absolute;
    top: var(--mouse-y, -500px);
    left: var(--mouse-x, -500px);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.06), transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: -1;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(22, 104, 178, 0.1);
    border-color: rgba(22, 104, 178, 0.22);
}

.bento-card.large {
    grid-column: span 12;
}

.bento-card.medium {
    grid-column: span 6;
}

@media (max-width: 768px) {
    .bento-card.medium {
        grid-column: span 12;
    }
}

/* Premium Icon Container */
.bento-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(230, 240, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: var(--vt-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px -5px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Icon Internal Float Animation */
.bento-icon svg {
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 102, 204, 0.2));
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px -5px rgba(0, 102, 204, 0.25);
}

.bento-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--vt-navy);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.bento-text {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon svg {
    display: block;
    margin: 0 auto;
}

/* World Class Value Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    z-index: 1;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -20px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

/* Big Number Background */
.value-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 800;
    color: var(--vt-blue);
    opacity: 0.05;
    line-height: 1;
    z-index: -1;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease, filter 0.5s ease;
}

.value-item:hover .value-number {
    opacity: 0.1;
    transform: translateX(-10px) translateY(10px);
}

/* Gradient Overlay */
.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, transparent 100%);
    opacity: 1;
    z-index: -2;
}

.value-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vt-navy);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Premium Icon Box for Values */
.value-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 240, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.1);
    color: var(--vt-blue);
    flex-shrink: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, filter 0.4s ease;
}

.value-item:hover .value-icon-box {
    background: var(--vt-blue);
    color: white;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.value-icon-box svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.value-item p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 95%;
}

/* Animations — reveal-up deprecated alias for fade-up (animations.js) */
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity var(--motion-duration-slow, 500ms) var(--motion-ease-out, ease),
        transform var(--motion-duration-slow, 500ms) var(--motion-ease-out, ease);
}

.reveal-up.active,
.reveal-up.visible {
    opacity: 1;
    transform: none;
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

/* Partner Integration */
.partners-stripe {
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 60px;
}

/* Footer Adjustments */
footer {
    margin-top: 0 !important;
    /* Remove gap */
}