/* ===========================================
   THEME: CYAN
   Used on: pricing.html, web-hosting.html
   Primary: #22D3EE | Dark: #06B6D4 | Light: #67E8F9
   =========================================== */

:root {
    --theme: #22D3EE;
    --theme-dark: #06B6D4;
    --theme-light: #67E8F9;
    --theme-glow: rgba(34, 211, 238, 0.25);
    --theme-pale: rgba(34, 211, 238, 0.08);
    --theme-rgb: 34, 211, 238;
    --theme-nav-rgb: 8, 45, 52; /* #082D34 - matches header/footer */
}

/* Navigation CTA Button */
.nav-cta {
    background: var(--theme) !important;
    box-shadow: 0 4px 15px var(--theme-glow) !important;
}
.nav-cta:hover {
    background: 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, #082D34 0%, #0d4550 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #082D34 0%, #0d4550 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #22D3EE 25%,
        #67E8F9 50%,
        #22D3EE 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, #082D34 0%, #0d4550 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);
}

/* Cyan-specific: Problem Stats Grid */
.problem-stats {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.1);
}
.problem-stat__number {
    color: var(--theme);
}
