/* =============================================================
   STRATEGIC CONNEXUS — AI TRANSFORMATION VISUAL LAYER
   Loads AFTER styles.css and responsive-fixes.css.
   Preserves the existing brand system (navy/gold) and adds
   sophistication for the AI transformation positioning.
   ============================================================= */

:root {
    /* Extended palette — same brand, more depth */
    --midnight: #0A0833;
    --warm-white: #FAF8F3;
    --soft-line: rgba(30, 26, 150, 0.08);
    --gold-glow: rgba(245, 194, 107, 0.18);
}

/* =============================================================
   HERO — AI TRANSFORMATION
   ============================================================= */
.hero-ai {
    position: relative;
    padding: 110px 0 90px;
    background:
        radial-gradient(1200px 600px at 110% -10%, var(--gold-glow) 0%, transparent 55%),
        radial-gradient(900px 500px at -10% 110%, rgba(30, 26, 150, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--warm-white) 100%);
    overflow: hidden;
}

.hero-ai .container { position: relative; z-index: 2; }

/* Subtle network grid in the background — evokes 'connexus' */
.hero-network {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.55;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-navy);
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(245, 194, 107, 0.35);
}
.hero-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(30,26,150,0.15);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 28px;
    max-width: 900px;
    letter-spacing: -0.01em;
}
.hero-headline .accent {
    background: linear-gradient(120deg, var(--primary-navy) 0%, #4940C9 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-headline .strike {
    position: relative;
    color: var(--text-light);
    font-weight: 500;
}
.hero-headline .strike::after {
    content: '';
    position: absolute; left: -2%; right: -2%; top: 55%;
    height: 3px;
    background: var(--primary-gold);
    transform: rotate(-2deg);
    opacity: 0.85;
}

.hero-sub {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 640px;
    margin-bottom: 38px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--soft-line);
    max-width: 820px;
}
.hero-proof .item { min-width: 180px; }
.hero-proof .num {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 8px;
}
.hero-proof .label {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* =============================================================
   SIGNATURE INSIGHT BAND — the technology-vs-culture thesis
   ============================================================= */
.insight-band {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--dark-navy) 60%, var(--primary-navy) 100%);
    color: #ffffff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.insight-band::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    border-radius: 50%;
}
.insight-band::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(73, 64, 201, 0.25) 0%, transparent 65%);
    border-radius: 50%;
}
.insight-band .container { position: relative; z-index: 2; }
.insight-band .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: inline-block;
}
.insight-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 600;
    line-height: 1.22;
    color: #ffffff;
    max-width: 920px;
    margin-bottom: 32px;
    letter-spacing: -0.005em;
}
.insight-band h2 em {
    color: var(--primary-gold);
    font-style: normal;
    font-weight: 700;
}
.insight-band p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    max-width: 760px;
    margin-bottom: 0;
}

/* Two-track visual: technology vs culture */
.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
    position: relative;
}
.gap-card {
    padding: 32px 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}
.gap-card .tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.gap-card.tech .tag { color: var(--primary-gold); }
.gap-card.culture .tag { color: #B7B0FF; }
.gap-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.gap-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) { .gap-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FRACTIONAL PARTNER — the headline commercial offer
   ============================================================= */
.fractional {
    padding: 110px 0;
    background:
        radial-gradient(800px 400px at 90% 0%, var(--gold-glow) 0%, transparent 60%),
        var(--warm-white);
    position: relative;
}
.fractional .frac-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 56px 48px;
    box-shadow: 0 20px 60px rgba(20, 17, 92, 0.10), 0 4px 12px rgba(20, 17, 92, 0.04);
    border: 1px solid rgba(30, 26, 150, 0.06);
    position: relative;
    overflow: hidden;
}
.fractional .frac-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-navy) 0%, #4940C9 40%, var(--primary-gold) 100%);
}
.frac-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-navy);
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.frac-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.frac-card .lead {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 780px;
    margin-bottom: 40px;
}
.frac-shapes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}
.frac-shape {
    padding: 26px 22px;
    background: var(--warm-white);
    border: 1px solid var(--soft-line);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.frac-shape:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 194, 107, 0.18);
}
.frac-shape .shape-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.frac-shape .shape-meta {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.frac-shape .shape-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin: 0;
}
@media (max-width: 768px) {
    .frac-shapes { grid-template-columns: 1fr; }
    .fractional .frac-card { padding: 40px 28px 36px; }
}

/* =============================================================
   PILLARS — three connected, with visual hierarchy
   ============================================================= */
.pillars {
    padding: 110px 0;
    background: #ffffff;
}
.pillar-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}
.pillar-card {
    background: #ffffff;
    border: 1px solid var(--soft-line);
    border-radius: 14px;
    padding: 38px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20, 17, 92, 0.10);
    border-color: var(--primary-gold);
}
.pillar-card.core {
    background: linear-gradient(160deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: #ffffff;
    border-color: var(--primary-navy);
}
.pillar-card.core h3, .pillar-card.core .pillar-tagline { color: #ffffff; }
.pillar-card.core .pillar-num { color: var(--primary-gold); }
.pillar-card.core p { color: rgba(255,255,255,0.82); }
.pillar-card.core .pillar-link { color: var(--primary-gold); }
.pillar-card.core .pillar-role { color: var(--primary-gold); border-color: var(--primary-gold); }

.pillar-num {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}
.pillar-role {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-navy);
    border: 1px solid var(--primary-navy);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.25;
}
.pillar-tagline {
    font-style: italic;
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
    font-weight: 400;
}
.pillar-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
    flex-grow: 1;
}
.pillar-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    margin-top: auto;
}
.pillar-link:hover { gap: 12px; }

@media (max-width: 968px) {
    .pillar-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   SIGNALS — when leaders bring us in (refined)
   ============================================================= */
.signals {
    padding: 100px 0;
    background: var(--warm-white);
}
.signals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.signal {
    padding: 28px 28px 28px 32px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.25s ease;
}
.signal:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(20, 17, 92, 0.08);
}
.signal h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
    font-weight: 700;
}
.signal p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}
@media (max-width: 640px) { .signals-grid { grid-template-columns: 1fr; } }

/* =============================================================
   SECTION HEADER REFINEMENT
   ============================================================= */
.sh-refined {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 0;
}
.sh-refined .eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 14px;
}
.sh-refined h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.22;
    margin-bottom: 16px;
    letter-spacing: -0.005em;
}
.sh-refined .lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 auto;
    max-width: 640px;
}

/* =============================================================
   ABOUT — Bridge visual (CHRO ⟷ CIO)
   ============================================================= */
.bridge-visual {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--primary-navy) 100%);
    color: #ffffff;
    padding: 90px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}
.bridge-visual::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140%; height: 140%;
    background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
    z-index: 0;
}
.bridge-visual > * { position: relative; z-index: 1; }
.bridge-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 760px;
    margin: 0 auto 28px;
}
.bridge-side {
    text-align: center;
}
.bridge-side .role {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.bridge-side .label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.bridge-side .desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.bridge-link {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    position: relative;
}
.bridge-link::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(245,194,107,0.25), 0 0 0 14px rgba(245,194,107,0.10);
}
.bridge-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    max-width: 720px;
    margin: 32px auto 0;
}
.bridge-statement em {
    color: var(--primary-gold);
    font-style: normal;
    font-weight: 700;
}
@media (max-width: 640px) {
    .bridge-row { grid-template-columns: 1fr; gap: 30px; }
    .bridge-link { width: 1px; height: 50px; transform: rotate(0); background: linear-gradient(180deg, transparent, var(--primary-gold), transparent); }
    .bridge-visual { padding: 60px 24px; }
}

/* =============================================================
   CONTACT FORM — refined select for new pillars
   ============================================================= */
.form-group select option { color: var(--text-dark); }

/* =============================================================
   FOOTER — small refinement
   ============================================================= */
.footer-cta-band {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    padding: 18px 0;
    text-align: center;
}
.footer-cta-band a {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* =============================================================
   SUBTLE REVEAL ANIMATIONS (CSS only)
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
    .reveal-up {
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .reveal-up.delay-1 { animation-delay: 0.1s; }
    .reveal-up.delay-2 { animation-delay: 0.2s; }
    .reveal-up.delay-3 { animation-delay: 0.3s; }
    .reveal-up.delay-4 { animation-delay: 0.4s; }

    @keyframes revealUp {
        to { opacity: 1; transform: translateY(0); }
    }
}
