/* ===========================================
   THEME: TEAL
   Used on: strategy-session.html, voice-search-audit.html
   Primary: #14B8A6 | Dark: #0D9488 | Light: #2DD4BF
   =========================================== */

:root {
    --theme: #14B8A6;
    --theme-dark: #0D9488;
    --theme-light: #2DD4BF;
    --theme-glow: rgba(20, 184, 166, 0.25);
    --theme-pale: rgba(20, 184, 166, 0.08);
    --theme-rgb: 20, 184, 166;
    --theme-nav-rgb: 17, 94, 89; /* #115e59 - matches header/footer */
}

/* Navigation CTA Button - Light on dark */
.nav-cta {
    background: var(--theme-light) !important;
    color: #115e59 !important;
    box-shadow: 0 4px 15px var(--theme-glow) !important;
}
.nav-cta:hover {
    background: #fff !important;
    color: var(--theme-dark) !important;
    box-shadow: 0 6px 20px rgba(var(--theme-rgb), 0.4) !important;
}

/* Fluid Header Background */
.fluid-header {
    background: linear-gradient(135deg, #115e59 0%, #0d9488 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #115e59 0%, #0d9488 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #2dd4bf 25%,
        #5eead4 50%,
        #2dd4bf 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.typewriter-cursor {
    background: var(--theme-light) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #115e59 0%, #0d9488 100%) !important;
}
.footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Theme Accents */
.theme-accent {
    color: var(--theme);
}
.theme-accent-bg {
    background: var(--theme);
}
.theme-gradient-bg {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-light) 100%);
}
.theme-border {
    border-color: var(--theme);
}
.theme-glow {
    box-shadow: 0 4px 20px var(--theme-glow);
}

/* Intro Section Styling */
.page-intro {
    background: linear-gradient(180deg, transparent 0%, var(--theme-pale) 50%, transparent 100%);
}
.page-intro::before {
    background: linear-gradient(180deg, transparent, var(--theme), transparent);
}

/* Stats/Numbers */
.stat-number,
.theme-number {
    color: var(--theme);
}

/* Cards & Highlights */
.theme-card:hover {
    border-color: var(--theme-light);
    box-shadow: 0 8px 30px var(--theme-glow);
}

/* Teal-specific: Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
}
.stats-bar__icon {
    background: rgba(255, 255, 255, 0.15);
}
.stats-bar__icon i {
    color: var(--theme-light);
}
