/* =========================================================
   VENTURE PROFILE — individual venture page
   Hybrid: navy hero header + light, two-column body.
   Inspired by the YC company profile, Regis-branded.
   ========================================================= */

:root {
    --vp-navy: #002B49;
    --vp-navy-deep: #001a2e;
    --vp-navy-soft: #0b3a5c;
    --vp-gold: #F1C400;
    --vp-gold-deep: #d8af00;
    --vp-ink: #0b2233;
    --vp-muted: #5b6b78;
    --vp-line: #e4e8ec;
    --vp-line-strong: #d3dae0;
    --vp-bg: #f5f7f9;
}

.venture-profile {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--vp-ink);
    background: var(--vp-bg);
    margin: 0;
    overflow-x: hidden;
}

/* ============ HERO (navy) ============ */
.vp-hero {
    position: relative;
    background: linear-gradient(135deg, var(--vp-navy) 0%, var(--vp-navy-deep) 55%, var(--vp-navy) 100%);
    color: #fff;
    padding: 132px max(40px, calc((100% - 1200px) / 2)) 64px;
    overflow: hidden;
}

.vp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -6%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(241, 196, 0, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.vp-hero-inner {
    position: relative;
    z-index: 1;
}

.vp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 34px;
}

.vp-breadcrumb a {
    color: var(--vp-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vp-breadcrumb a:hover { color: #fff; }
.vp-breadcrumb .sep { color: rgba(255, 255, 255, 0.45); }
.vp-breadcrumb .current { color: rgba(255, 255, 255, 0.8); }

.vp-identity {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.vp-logo {
    display: none;
    width: 88px;
    height: 88px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--vp-gold);
    background: linear-gradient(150deg, var(--vp-navy-soft) 0%, #06283f 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.vp-logo.is-winner {
    color: var(--vp-navy);
    background: linear-gradient(150deg, #FFE9A8 0%, var(--vp-gold) 55%, var(--vp-gold-deep) 100%);
}

.vp-head { min-width: 0; }

.vp-name {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 10px;
}

.vp-tagline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 22px;
    max-width: 60ch;
}

/* Badges row */
.vp-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.vp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 999px;
}

.vp-badge--cohort { color: var(--vp-gold); border: 1px solid rgba(241, 196, 0, 0.45); }
.vp-badge--winner { color: var(--vp-navy); background: var(--vp-gold); }
.vp-badge--finalist { color: var(--vp-gold); border: 1px solid rgba(241, 196, 0, 0.55); background: rgba(241, 196, 0, 0.1); }
.vp-badge--team { color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.vp-badge--location { color: rgba(255, 255, 255, 0.78); border: 1px solid rgba(255, 255, 255, 0.18); text-transform: none; letter-spacing: 0; font-weight: 600; }
.vp-badge--location svg { width: 13px; height: 13px; }

/* Category tags */
.vp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.vp-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 5px 11px;
}

/* Action buttons */
.vp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.vp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vp-btn--primary {
    color: var(--vp-navy);
    background: linear-gradient(135deg, var(--vp-gold) 0%, var(--vp-gold-deep) 100%);
    box-shadow: 0 8px 22px rgba(241, 196, 0, 0.3);
}

.vp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(241, 196, 0, 0.42); }
.vp-btn--primary svg { width: 15px; height: 15px; }

.vp-btn--placeholder {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    cursor: not-allowed;
}

.vp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.vp-icon-btn:hover {
    color: var(--vp-navy);
    background: var(--vp-gold);
    border-color: var(--vp-gold);
    transform: translateY(-2px);
}

.vp-icon-btn svg { width: 18px; height: 18px; }

/* ============ BODY (light, two columns) ============ */
.vp-body {
    padding: 64px max(40px, calc((100% - 1200px) / 2)) 96px;
}

.vp-body-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.vp-main { min-width: 0; display: flex; flex-direction: column; gap: 28px; }

.vp-panel {
    background: #fff;
    border: 1px solid var(--vp-line);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 18px 44px rgba(0, 43, 73, 0.06);
}

/* Hero shot figure */
.vp-shot {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--vp-line);
    box-shadow: 0 18px 44px rgba(0, 43, 73, 0.1);
    background: #0a1f30;
}

.vp-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Prose */
.vp-prose > *:first-child { margin-top: 0; }

.vp-lead {
    font-size: 1.22rem;
    line-height: 1.65;
    color: var(--vp-ink);
    margin: 0 0 28px;
}

.vp-prose h2 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--vp-navy);
    margin: 34px 0 14px;
    padding-left: 16px;
    position: relative;
}

.vp-prose h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--vp-gold), rgba(241, 196, 0, 0.3));
}

.vp-prose p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #33414d;
    margin: 0 0 18px;
}

.vp-prose p:last-child { margin-bottom: 0; }

/* Founders */
.vp-founders-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
}

.vp-founders-head h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--vp-navy);
    margin: 0;
}

.vp-placeholder-pill {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a7a00;
    background: rgba(241, 196, 0, 0.16);
    border: 1px solid rgba(241, 196, 0, 0.45);
    border-radius: 999px;
    padding: 4px 9px;
}

.vp-founders-note {
    font-size: 0.9rem;
    color: var(--vp-muted);
    margin: 0 0 24px;
}

.vp-founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vp-founder {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--vp-line);
    border-radius: 16px;
    background: var(--vp-bg);
}

.vp-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(150deg, var(--vp-navy) 0%, var(--vp-navy-soft) 100%);
}

.vp-avatar svg { width: 26px; height: 26px; opacity: 0.7; }

.vp-founder-info { min-width: 0; }

.vp-founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vp-ink);
    margin: 0 0 2px;
}

.vp-founder-role {
    font-size: 0.82rem;
    color: var(--vp-muted);
    margin: 0 0 8px;
}

.vp-founder-bio {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #56636d;
    font-style: italic;
    margin: 0 0 10px;
}

.vp-founder-socials {
    display: flex;
    gap: 8px;
}

.vp-founder-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: var(--vp-muted);
    border: 1px solid var(--vp-line-strong);
    transition: all 0.2s ease;
}

.vp-founder-socials a:hover { color: var(--vp-navy); border-color: var(--vp-navy); }
.vp-founder-socials svg { width: 15px; height: 15px; }

/* ============ SIDEBAR ============ */
.vp-aside {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vp-facts {
    background: #fff;
    border: 1px solid var(--vp-line);
    border-radius: 18px;
    padding: 26px 26px 12px;
    box-shadow: 0 14px 34px rgba(0, 43, 73, 0.06);
}

.vp-facts h3 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--vp-muted);
    margin: 0 0 8px;
}

.vp-facts dl { margin: 0; }

.vp-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--vp-line);
}

.vp-fact:last-child { border-bottom: none; }

.vp-fact dt {
    font-size: 0.88rem;
    color: var(--vp-muted);
    font-weight: 500;
}

.vp-fact dd {
    margin: 0;
    font-size: 0.92rem;
    color: var(--vp-ink);
    font-weight: 700;
    text-align: right;
}

.vp-fact dd.is-placeholder {
    color: #9aa7b1;
    font-weight: 500;
    font-style: italic;
}

.vp-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #36b37e;
    margin-right: 6px;
    vertical-align: middle;
}

.vp-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--vp-navy);
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1px solid var(--vp-line-strong);
    background: #fff;
    transition: all 0.2s ease;
}

.vp-back:hover {
    background: var(--vp-navy);
    color: #fff;
    border-color: var(--vp-navy);
}

.vp-back svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.vp-back:hover svg { transform: translateX(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .vp-body-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vp-aside {
        position: static;
        top: auto;
    }
}

@media (max-width: 760px) {
    .vp-hero { padding: 112px 22px 52px; }
    .vp-body { padding: 44px 22px 72px; }

    .vp-identity { gap: 18px; }

    .vp-logo {
        width: 66px;
        height: 66px;
        font-size: 1.7rem;
        border-radius: 16px;
    }

    .vp-panel { padding: 30px 24px; }
    .vp-shot img { height: auto; }
    .vp-founder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
    .vp-identity { flex-direction: column; }
    .vp-actions { width: 100%; }
    .vp-btn { flex: 1; justify-content: center; }
}
