/* ICL Landing Page -- Overrides and additions for Infinite Context Labs branding
   Colors pulled from icl_logo.svg: deep teal #1e7794, burnt orange #efb083, cyan #17aad1 */

:root {
    --icl-teal: #1e7794;
    --icl-teal-deep: #155a70;
    --icl-teal-glow: rgba(30, 119, 148, 0.10);
    --icl-amber: #efb083;
    --icl-amber-dark: #d4894e;
    --icl-amber-glow: rgba(239, 176, 131, 0.15);
    --icl-amber-light: #ebd6a2;
    --icl-cyan: #17aad1;
}

/* ── ICL Hero ── */
.icl-page #hero {
    background:
        linear-gradient(to bottom, rgba(255,255,255,0) 40%, rgba(255,255,255,0.6) 65%, rgba(255,255,255,1) 100%),
        linear-gradient(to right, #d4894e 0%, #efb083 20%, #ffffff 38%, #ffffff 62%, #97c6dd 80%, #1e7794 100%);
    padding-top: 140px;
    padding-bottom: 100px;
}

.icl-hero-logo {
    text-align: center;
    margin-bottom: 32px;
}

.icl-hero-logo img {
    height: 180px;
    width: auto;
}

.icl-page #hero .tagline {
    color: var(--navy);
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 12px;
}

.icl-page #hero .hero-origin {
    color: var(--gray-400);
}

/* ── ICL accent color overrides ── */
.icl-page .btn-primary {
    background: var(--icl-amber);
    color: #1a2744;
}

.icl-page .btn-primary:hover {
    background: var(--icl-amber-dark);
    color: #fff;
}

.icl-page .section-title {
    color: var(--icl-teal-deep);
}

.icl-page .card-icon {
    background: var(--icl-amber-glow);
}

.icl-page .card:hover {
    border-color: rgba(239, 176, 131, 0.3);
}

/* ── Nav overrides ── */
.icl-page .nav-logo-icl {
    height: 36px;
    width: auto;
}

.icl-page .nav-links a:hover {
    color: var(--icl-teal);
}

/* ── Research Spotlight ── */
.icl-research {
    background: var(--gray-100);
}

.research-spotlight {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
}

.research-logo {
    flex-shrink: 0;
}

.research-logo img {
    width: 200px;
    height: auto;
    border-radius: 12px;
}

.research-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.research-full-name {
    font-size: 0.9rem;
    color: var(--icl-teal);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.research-info > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.research-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.research-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--icl-teal-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ── ICL Careers background ── */
.icl-careers-bg {
    background: var(--gray-100) !important;
}

/* ── ICL About section ── */
.icl-page #about {
    background: var(--white);
}

.icl-page .about-titles {
    color: var(--icl-teal);
}

.icl-page .about-highlight-label {
    color: var(--icl-teal-deep);
}

/* ── ICL Career card accent ── */
.icl-page .career-card:hover .career-icon {
    color: var(--icl-amber-dark);
    background: var(--icl-amber-glow);
    border-color: var(--icl-amber);
}

.icl-page .career-role {
    color: var(--icl-teal);
}

.icl-page .career-number {
    color: var(--icl-amber-glow);
}

/* ── Footer ── */
.icl-page .footer-developed {
    color: var(--icl-teal-deep);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .icl-hero-logo img { height: 120px; }
    .research-spotlight { flex-direction: column; text-align: center; padding: 28px 20px; }
    .research-logo img { width: 150px; }
    .research-stats { justify-content: center; }
}
