/**
 * Venture Creation Page Components CSS
 * React Island styling for Venture Creation page
 */

/* ============================================================================
   HERO VARIANTS
   ============================================================================ */

.verso-services-hero--gold {
    background: radial-gradient(circle at 50% 30%, #3d3d3d 0%, #333333 60%);
}

.verso-services-hero__overlay--gold {
    background:
        radial-gradient(ellipse 40% 30% at 30% 30%, rgba(244, 196, 48, 0.15), transparent 70%),
        radial-gradient(ellipse 40% 30% at 70% 70%, rgba(244, 196, 48, 0.1), transparent 70%);
}

.verso-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.verso-hero-tag--gold {
    background: rgba(244, 196, 48, 0.2);
    color: #F4C430;
}

/* ============================================================================
   MODEL GRID
   ============================================================================ */

.verso-model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.verso-model-card {
    padding: 2.5rem;
    background: rgba(60, 60, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: left;
}

.verso-model-card--partnership {
    border-left: 4px solid #F4C430;
}

.verso-model-card--benefits {
    border-left: 4px solid #4169e1;
}

.verso-model-card__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.verso-model-card__description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.verso-model-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verso-model-card__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.verso-model-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4169e1;
}

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

/* ============================================================================
   DETAILS CARD LIST
   ============================================================================ */

.verso-details-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.verso-details-card__list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.verso-details-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F4C430;
}

/* ============================================================================
   PARTNER PROFILE CARDS (React Island)
   ============================================================================ */

.partner-profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-profile-card {
    padding: 2rem;
    background: rgba(60, 60, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-profile-card:hover,
.partner-profile-card--expanded {
    background: rgba(70, 70, 70, 0.8);
    border-color: #F4C430;
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.2);
}

.partner-profile-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-profile-card__icon {
    width: 28px;
    height: 28px;
    color: #F4C430;
    flex-shrink: 0;
}

.partner-profile-card__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    color: white;
    flex: 1;
}

.partner-profile-card__chevron {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.partner-profile-card--expanded .partner-profile-card__chevron {
    color: #F4C430;
}

.partner-profile-card__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.partner-profile-card__expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.partner-profile-card__expanded--visible {
    max-height: 200px;
    margin-top: 1rem;
}

.partner-profile-card__expanded p {
    padding: 1rem;
    background: rgba(244, 196, 48, 0.1);
    border-left: 3px solid #F4C430;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

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

/* ============================================================================
   SECTOR EXPLORER (React Island)
   ============================================================================ */

.sector-explorer__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.sector-explorer__filter {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sector-explorer__filter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.sector-explorer__filter--active {
    background: rgba(244, 196, 48, 0.2);
    border-color: #F4C430;
    color: #F4C430;
}

.sector-explorer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sector-card {
    padding: 2rem;
    background: rgba(60, 60, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-card:hover {
    background: rgba(70, 70, 70, 0.8);
    border-color: #F4C430;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.2);
}

.sector-card__icon {
    width: 36px;
    height: 36px;
    color: #F4C430;
    margin-bottom: 1rem;
}

.sector-card__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.sector-card__description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sector-card__tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-card__tech-tag {
    padding: 4px 8px;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #4169e1;
}

@media (max-width: 1100px) {
    .sector-explorer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sector-explorer__grid {
        grid-template-columns: 1fr;
    }
}

/* Sector Modal */
.sector-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.sector-modal__content {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    background: #3a3a3a;
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(244, 196, 48, 0.2);
}

.sector-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.sector-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sector-modal__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sector-modal__icon {
    width: 40px;
    height: 40px;
    color: #F4C430;
}

.sector-modal__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.5rem;
    color: white;
}

.sector-modal__description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sector-modal__section {
    margin-bottom: 1.5rem;
}

.sector-modal__section h4 {
    font-size: 0.9rem;
    color: #F4C430;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.sector-modal__section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.sector-modal__tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-modal__tech-tag {
    padding: 6px 12px;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4169e1;
}

.sector-modal__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #F4C430;
    color: #1a1a1a;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sector-modal__cta:hover {
    background: #CCA42B;
    transform: translateY(-2px);
}

/* ============================================================================
   ENGAGEMENT TIMELINE (React Island)
   ============================================================================ */

.engagement-timeline {
    position: relative;
    padding-top: 4rem;
}

.engagement-timeline__line {
    position: absolute;
    top: 2rem;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, #4169e1 0%, #F4C430 100%);
    border-radius: 2px;
}

.engagement-timeline--gold .engagement-timeline__line {
    background: linear-gradient(90deg, #F4C430 0%, #CCA42B 100%);
}

.engagement-timeline__steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.engagement-timeline__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.engagement-timeline__number {
    width: 56px;
    height: 56px;
    background: #333333;
    border: 3px solid #4169e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.4rem;
    color: #4169e1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.engagement-timeline__number--gold {
    border-color: #F4C430;
    color: #F4C430;
}

.engagement-timeline--gold .engagement-timeline__number {
    border-color: #F4C430;
    color: #F4C430;
}

.engagement-timeline__step:hover .engagement-timeline__number,
.engagement-timeline__step--active .engagement-timeline__number {
    background: #F4C430;
    border-color: #F4C430;
    color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.4);
}

.engagement-timeline__content {
    max-width: 180px;
}

.engagement-timeline__icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.engagement-timeline__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.engagement-timeline__description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

.engagement-timeline__detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.engagement-timeline__detail--visible {
    max-height: 150px;
    margin-top: 1rem;
}

.engagement-timeline__detail-icon {
    width: 16px;
    height: 16px;
    color: #F4C430;
    flex-shrink: 0;
    margin-top: 2px;
}

.engagement-timeline__detail p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .engagement-timeline {
        padding-top: 0;
        padding-left: 4rem;
    }

    .engagement-timeline__line {
        top: 0;
        bottom: 0;
        left: 1.5rem;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, #F4C430 0%, #CCA42B 100%);
    }

    .engagement-timeline__steps {
        flex-direction: column;
        gap: 2rem;
    }

    .engagement-timeline__step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .engagement-timeline__number {
        position: absolute;
        left: 0;
        margin-bottom: 0;
    }

    .engagement-timeline__content {
        max-width: none;
    }
}

/* ============================================================================
   PROCESS SECTION GOLD VARIANT
   ============================================================================ */

.verso-process-section--gold {
    background: linear-gradient(180deg, #3a3a3a 0%, #333333 100%);
}

/* ============================================================================
   CTA VARIANTS
   ============================================================================ */

.verso-cta-centered {
    max-width: 900px;
    margin: 0 auto;
}

.verso-cta-card--wide {
    max-width: none;
}

.verso-cta-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}