/* ============================================================
   Investor page - pre-seed refresh (#277)
   Layered on top of investor-glass.css. Only the elements the
   $1.8M pre-seed rewrite introduces live here; everything else
   reuses the existing glass-morphism vocabulary.
   ============================================================ */

.investor-preseed .hero-eyebrow,
.investor-preseed .beat-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(154, 213, 202, 0.9);
    margin: 0 0 0.75rem;
}

.investor-preseed .source-note {
    font-size: 0.82rem;
    color: rgba(235, 235, 235, 0.55);
    margin-top: 1.5rem;
    font-style: italic;
}

/* ---------- Deal terms (blank until the founder fills them) ---------- */

.investor-preseed .deal-terms {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0;
    margin: 1.75rem 0 0;
}

.investor-preseed .deal-term {
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* ---------- "The top-right corner is empty" ---------- */

.investor-preseed .quadrant {
    margin: 3rem auto 0;
    max-width: 900px;
}

.investor-preseed .quadrant-axis-x,
.investor-preseed .quadrant-axis-y {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(235, 235, 235, 0.6);
    margin: 0.85rem 0;
}

.investor-preseed .quadrant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.investor-preseed .quadrant-cell {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.investor-preseed .quadrant-cell h4 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.investor-preseed .quadrant-cell p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(235, 235, 235, 0.75);
}

.investor-preseed .quadrant-cell.is-empty {
    border-color: rgba(154, 213, 202, 0.65);
    background: rgba(154, 213, 202, 0.12);
    box-shadow: 0 0 28px rgba(154, 213, 202, 0.18);
}

/* ---------- Go to market ---------- */

.investor-preseed .gtm-intro {
    color: rgba(235, 235, 235, 0.75);
    margin-bottom: 1.25rem;
}

.investor-preseed .gtm-steps {
    list-style: none;
    counter-reset: gtm;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 2rem 0 3rem;
}

.investor-preseed .gtm-step {
    counter-increment: gtm;
    position: relative;
    padding: 1.5rem 1.25rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.investor-preseed .gtm-step::before {
    content: counter(gtm);
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    width: 1.9rem;
    height: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(154, 213, 202, 0.9);
    color: #1c1a1a;
    font-weight: 700;
    font-size: 0.85rem;
}

.investor-preseed .gtm-step h4 {
    margin: 0.5rem 0 0.5rem;
}

.investor-preseed .gtm-step p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(235, 235, 235, 0.75);
}

/* ---------- District clock ---------- */

.investor-preseed .district-clock {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 1.5rem 0 3rem;
}

.investor-preseed .clock-quarter {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.investor-preseed .clock-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(154, 213, 202, 0.9);
}

.investor-preseed .clock-action {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ---------- Proof band ---------- */

.investor-preseed .proof-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.investor-preseed .proof-item {
    padding: 1.6rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.investor-preseed .proof-item.animate-in {
    opacity: 1;
    transform: none;
}

.investor-preseed .proof-stat {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: rgba(154, 213, 202, 0.95);
    margin-bottom: 0.5rem;
}

.investor-preseed .proof-desc {
    display: block;
    font-size: 0.92rem;
    color: rgba(235, 235, 235, 0.78);
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    .investor-preseed .proof-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .investor-preseed .quadrant-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .investor-preseed .quadrant-axis-y {
        text-align: left;
    }
}
