/* ============================================================
   MEET SUMIT PAGE - FIGMA REDESIGN
   ============================================================ */

:root {
    --brand-navy: #1D3557; /* Deep blue from Figma */
    --brand-dark: #0A1128; /* Footer dark */
    --brand-yellow: #FFC107; /* Bright yellow */
    --brand-blue-accent: #4F80E1; /* The Vision kicker blue */
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8FAFC;
}

/* Utility overrides */
.text-gold { color: var(--brand-yellow) !important; }
.bg-white { background-color: var(--bg-white) !important; }
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 5%; 
    width: 100%;
}

/* ------------------------------------------------------------
   NAVBAR OVERRIDES FOR FIGMA DESIGN
------------------------------------------------------------ */
#navbar {
    background-color: var(--brand-navy) !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo-text .impetus { color: var(--bg-white); }
.logo-text .learning { color: var(--brand-yellow); }

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--bg-white);
}
.nav-links a.active {
    color: var(--brand-yellow) !important;
    opacity: 1;
}

.nav-cta-btn {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.nav-cta-btn:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
}

/* ------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------ */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-content > * {
    animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}
.hero-content .kicker { animation-delay: 0.1s; }
.hero-content .hero-headline { animation-delay: 0.2s; }
.hero-content .hero-quote { animation-delay: 0.4s; }
.hero-content .hero-pills { animation-delay: 0.6s; }
.meet-hero {
    background-color: var(--brand-navy);
    padding: 160px 0 100px; /* Offset for fixed navbar */
    color: var(--bg-white);
}

.meet-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-quote {
    border-left: 3px solid var(--brand-yellow);
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 550px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-pill {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bg-white);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-photo {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

@keyframes float-hero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.founder-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 350px;
    width: 100%;
    animation: fadeInScale 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, float-hero 6s ease-in-out infinite 1s;
    opacity: 0;
}

.founder-img-wrapper {
    width: 100%;
    background: #E2E8F0; 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.founder-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.founder-name-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-yellow);
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

.founder-title-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}


.founder-img {
    width: 100%;
    display: block;
    mix-blend-mode: multiply; /* Helps grey backgrounds blend seamlessly */
}

/* ------------------------------------------------------------
   THE VISION SECTION
------------------------------------------------------------ */
.vision-section {
    padding: 120px 0;
    color: var(--text-dark);
}

.vision-founder-message {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}


.vision-founder-message .section-title-dark {
    color: var(--bg-white);
}

.vision-founder-message .kicker-blue {
    color: var(--brand-yellow);
}

.vision-founder-message .vision-text p {
    color: rgba(255, 255, 255, 0.85);
}

.vision-founder-message .vision-video-enhanced {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.vision-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.vision-video {
    flex: 1.1;
}

.video-player {
    background-color: var(--brand-navy);
    border-radius: 16px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@keyframes pulse-play {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-play 2s infinite;
}

.play-button:hover {
    transform: scale(1.15);
    background: var(--brand-yellow);
    animation: none;
}

.play-button:hover .play-icon {
    color: var(--brand-navy);
    fill: var(--brand-navy);
}

.play-icon {
    color: var(--brand-yellow);
    fill: var(--brand-yellow);
    width: 28px;
    height: 28px;
    margin-left: 5px; 
}

.video-badge {
    position: absolute;
    bottom: 25px;
    background: #0F172A;
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.video-player:hover .video-badge {
    transform: translateY(-5px);
    background: var(--brand-yellow);
    color: var(--brand-dark);
}

.vision-content {
    flex: 0.9;
}

.kicker-blue {
    color: var(--brand-blue-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.section-title-dark {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.vision-text p, .story-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ------------------------------------------------------------
   THE STORY & CREDENTIALS
------------------------------------------------------------ */
.story-section {
    padding: 0 0 120px;
}

.story-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-content {
    flex: 1.5; 
}

.highlight-quote {
    border-left: 6px solid var(--brand-navy);
    padding: 30px 40px;
    margin: 50px 0;
    font-size: 1.45rem;
    color: var(--brand-navy);
    font-weight: 700;
    font-style: italic;
    line-height: 1.6;
    background: #F1F5F9;
    border-radius: 0 16px 16px 0;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.highlight-quote:hover {
    border-left-color: var(--brand-yellow);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.credentials-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.credentials-card {
    background: #FFFCF0; /* Subtle yellowish tone */
    border: 1px solid #F3E5AB; /* Warmer yellow border */
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    animation: float-slow 5s ease-in-out infinite;
    transition: 0.4s;
}

.credentials-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    animation-play-state: paused; /* Pause keyframe pulse while interacting */
}

.card-header {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cred-item {
    display: flex;
    gap: 18px;
    align-items: center;
    transition: transform 0.3s;
    padding: 8px;
    border-radius: 12px;
}

.cred-item:hover {
    transform: translateX(5px);
    background: rgba(79, 128, 225, 0.04);
}

.cred-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-gray);
    background: var(--bg-offwhite);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cred-item:hover .cred-icon {
    background: var(--brand-navy);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--brand-navy);
}

.cred-icon i {
    width: 20px;
    height: 20px;
    color: var(--brand-navy);
    transition: 0.3s;
}

.cred-item:hover .cred-icon i {
    color: var(--brand-yellow);
}

.cred-details {
    display: flex;
    flex-direction: column;
}

.cred-details strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.cred-details span {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ------------------------------------------------------------
   RESULTS STRIP - LIGHTING EFFECT CARDS
------------------------------------------------------------ */
.results-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.result-spotlight-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.result-spotlight-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-spotlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 193, 7, 0.3);
}

.result-spotlight-card:hover::before {
    opacity: 1;
}

.result-stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.result-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* ------------------------------------------------------------
   BOTTOM CTA SECTION
------------------------------------------------------------ */
.bottom-cta {
    background-color: var(--brand-navy);
    padding: 100px 0;
    color: var(--bg-white);
}

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

.cta-inner { 
    max-width: 1100px; 
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 5%;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0px;
    max-width: 700px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 600px;
}

.btn-cta-gold {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.3s;
}

.btn-cta-gold:hover {
    background: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-fineprint {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------
   FOOTER REDESIGN
------------------------------------------------------------ */
.site-footer {
    background-color: var(--brand-dark);
    padding: 80px 10%;
    color: var(--bg-white);
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col { flex: 1; }
.brand-col { flex: 1.5; }

.footer-col h4 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col a:hover { 
    color: var(--brand-yellow); 
}

.tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 350px;
}

/* ------------------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------------------ */
@media (max-width: 992px) {
    .meet-hero-inner, .story-inner {
        flex-direction: column;
        gap: 50px;
    }
    
    .vision-inner {
        flex-direction: column-reverse;
        gap: 50px;
    }
    
    .hero-photo {
        width: 100%;
        justify-content: center;
    }
    
    .founder-card-container {
        margin: 0 auto;
    }
    
    .vision-video, .vision-content, .story-content, .credentials-sidebar {
        width: 100%;
    }

    .credentials-sidebar {
        position: relative;
        top: 0;
    }

    .site-footer .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .bottom-cta { padding: 60px 0 !important; }
}

@media (max-width: 768px) {
    /* Allow video block to scale naturally based on its native aspect ratio */
    .vision-video-enhanced {
        height: auto !important;
    }
    .vision-video-enhanced video {
        height: auto !important;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .vision-video-enhanced {
        height: auto !important;
    }
    .result-stat-label {
        white-space: normal !important;
    }
    .credentials-card {
        padding: 24px 20px !important;
    }
    .cred-item {
        padding: 4px !important;
        gap: 12px !important;
    }
    .highlight-quote {
        padding: 24px !important;
        margin: 30px 0 !important;
        font-size: 1.2rem !important;
    }
}

/* ------------------------------------------------------------
   OPENING PARAGRAPHS CUSTOM STYLES
------------------------------------------------------------ */
.opening-paragraphs-section {
    background-color: #F8FAFC;
    padding: 90px 0 80px;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.opening-paragraphs-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}



.opening-paragraphs-lead {
    font-size: 1.35rem;
    line-height: 1.85;
    color: var(--brand-navy);
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.opening-paragraphs-body {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------
   PREMIUM VISION VIDEO ENHANCEMENTS
------------------------------------------------------------ */
.vision-video-enhanced {
    padding: 8px;
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.12);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1128 0%, #1E293B 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.vision-video-enhanced::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-video-enhanced:hover::before {
    opacity: 1;
}

.vision-video-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.22);
    border-color: rgba(255, 193, 7, 0.5) !important;
}

.play-button-gold {
    background: var(--brand-yellow) !important;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.35) !important;
}

.play-icon-navy {
    color: #0A1128 !important;
    fill: #0A1128 !important;
}

.video-badge-enhanced {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700 !important;
}
