/* ==== assets\style.css ==== */
/*
 * VibeCMD Design System v6.0 "Premium Edition"
 * Hybrid Palette: VibeCMD Green + LinkLoop Blue on Navy
 * Primary: #38BDF8 | Secondary: #2563EB | Purple: #6366F1
 * Fonts: Inter (body+headings), JetBrains Mono (code), Space Grotesk (display)
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   1. CSS VARIABLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    /* Brand Colors */
    --primary: #38BDF8;
    --primary-hover: #0EA5E9;
    --secondary: #2563EB;
    --purple: #6366F1;
    --accent: #FF6B6B;
    --gold: #FFC107;

    /* Surfaces */
    --bg: #0B1120;
    --bg-darker: #070B16;
    --card: rgba(255,255,255,0.04);
    --card-hover: rgba(255,255,255,0.07);
    --border: rgba(56,189,248,0.12);
    --border-hover: rgba(56,189,248,0.25);
    --border-blue: rgba(37,99,235,0.2);
    --border-purple: rgba(99,102,241,0.2);

    /* Text */
    --text: #E8EDF5;
    --text-muted: #C3CBD9;
    --text-dim: rgba(232,237,245,0.65);

    /* Gradients */
    --gradient: linear-gradient(135deg, #38BDF8, #2563EB);
    --gradient-purple: linear-gradient(135deg, #6366F1, #2563EB);
    --gradient-warm: linear-gradient(135deg, #38BDF8, #38BDF8);

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing & Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --max-w: 1200px;
    --nav-h: 70px;

    /* Legacy compatibility aliases */
    --green: var(--primary);
    --blue: var(--secondary);
    --violet: var(--purple);
    --bg-card: var(--card);
    --card-border: var(--border);
    --text-white: #fafafa;
    --vibe-cyan: var(--primary);
    --vibe-teal: var(--primary);
    --vibe-green: var(--primary);
    --vibe-sky: var(--secondary);
    --vibe-violet: var(--purple);
    --bg-dark: var(--bg);
    --gradient-primary: var(--gradient);
    --border-subtle: var(--border);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   2. RESET & BASE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fixed background image under a dark scrim keeps text readable */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,17,32,0.70) 0%, rgba(11,17,32,0.80) 55%, rgba(7,11,22,0.90) 100%),
        url('/images/bg-engineering.jpg') center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--secondary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.5px;
}
h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
}
h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -1px;
}
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
p { line-height: 1.7; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3. LAYOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-container {
    padding-top: var(--nav-h);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.section {
    padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px);
}

/* Collapse double-padding between stacked sections & across dividers */
.section + .section,
.section + .glow-divider + .section,
.hero + .section,
.hero-compact + .section { padding-top: clamp(32px, 4vw, 48px); }

/* Interior-page hero â€” content-height instead of full viewport */
.hero-compact {
    min-height: auto;
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: clamp(40px, 6vw, 60px);
}

/* Legacy wrapper support */
.main-content-v3 {
    position: relative;
    z-index: 1;
    padding-top: var(--nav-h);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   4. NAVIGATION â€” Clean blur bar
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11,17,32,0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

/* Remove old titlebar dots */
.nav-titlebar { display: none; }

.nav-main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.vibe-nav-logo {
    font-weight: 800;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.vibe-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vibe-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.vibe-nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}
.vibe-nav-link.active {
    color: var(--text);
    background: rgba(56,189,248,0.12);
}

.vibe-nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: var(--bg) !important;
    -webkit-text-fill-color: var(--bg) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 8px;
}
.vibe-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56,189,248,0.25);
}

.vibe-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    margin-left: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.vibe-nav-phone:hover {
    border-color: var(--border-hover);
    background: rgba(56,189,248,0.08);
}
@media (max-width: 1200px) {
    .vibe-nav-phone { display: none; }
}

.desktop-only { display: inline-flex; }

/* Hamburger */
.vibe-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.vibe-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.vibe-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vibe-hamburger.active span:nth-child(2) { opacity: 0; }
.vibe-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.vibe-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.vibe-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Drawer */
.vibe-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(11,17,32,0.98);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: 999;
    padding: calc(var(--nav-h) + 20px) 24px 40px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    overflow-y: auto;
}
.vibe-drawer.active { right: 0; }

.vibe-drawer-section { margin-bottom: 24px; }
.vibe-drawer-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.vibe-drawer-link {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vibe-drawer-link:hover { color: var(--primary); }
.vibe-drawer-cta {
    display: block;
    text-align: center;
    background: var(--gradient);
    color: var(--bg) !important;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 24px;
    text-decoration: none;
    transition: all 0.3s;
}
.vibe-drawer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,189,248,0.25); }

@media (max-width: 900px) {
    .vibe-nav-links,
    .desktop-only { display: none; }
    .vibe-hamburger { display: flex; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   5. SECTION HEADERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
}
.section-label,
.section-badge {
    display: inline-block;
    background: rgba(56,189,248,0.12);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.section-title.gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   6. BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 28px);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--gradient);
    color: var(--bg);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56,189,248,0.25);
    color: var(--bg);
}
.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--text);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover {
    background: rgba(56,189,248,0.1);
    transform: translateY(-2px);
    color: var(--primary);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   7. CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 30px);
    transition: all 0.3s ease;
}
.card:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

/* Icon badge for cards */
.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.15);
}
.icon-badge.blue {
    background: rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.15);
}
.icon-badge.purple {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.15);
}

/* Glass card variant */
.glass-card {
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 36px);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   8. HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px) clamp(40px, 6vw, 60px);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(56,189,248,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 80%, rgba(99,102,241,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.2);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .gradient,
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Hero stats row */
.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   9. STATS / STATUS CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: clamp(18px, 3vw, 24px);
    text-align: center;
}
.stat-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status dot */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 12px;
}
.status-dot.green { background: var(--primary); box-shadow: 0 0 8px rgba(56,189,248,0.5); }
.status-dot.blue { background: var(--secondary); box-shadow: 0 0 8px rgba(37,99,235,0.5); }
.status-dot.yellow { background: var(--gold); box-shadow: 0 0 8px rgba(255,193,7,0.5); }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   10. FORMS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg); color: var(--text); }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group { margin-bottom: 20px; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   11. DIVIDERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.15), rgba(37,99,235,0.1), transparent);
    max-width: var(--max-w);
    margin: 0 auto;
}
.section-border-top { border-top: 1px solid var(--border); }
.section-border-bottom { border-bottom: 1px solid var(--border); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   12. FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-footer {
    background: var(--bg-darker);
    border-top: none;
    padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 24px) clamp(24px, 4vw, 32px);
    position: relative;
    z-index: 1;
}
.vibe-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.5), rgba(37,99,235,0.4), rgba(99,102,241,0.3), transparent);
}
.vibe-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.vibe-footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(30px, 5vw, 40px);
}
.vibe-footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.vibe-footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.vibe-footer-phone {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vibe-footer-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted) !important;
    font-size: 0.85rem;
    margin-top: 6px;
    text-decoration: none;
    transition: color 0.3s;
}
.vibe-footer-email:hover { color: var(--primary) !important; }
.vibe-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 40px);
}
.vibe-footer-col h4 {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vibe-footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color 0.3s ease;
}
.vibe-footer-col a:hover { color: var(--primary); }

.vibe-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: clamp(20px, 3vw, 24px);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.vibe-footer-social,
.vibe-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* Floating contact button (all pages, bottom-left; back-to-top owns bottom-right) */
.vibe-float-contact {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--bg) !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(56,189,248,0.35), 0 4px 14px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vibe-float-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(56,189,248,0.5), 0 6px 18px rgba(0,0,0,0.4);
}
@media print { .vibe-float-contact { display: none; } }
.vibe-footer-social a,
.vibe-social a {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.vibe-footer-social a:hover,
.vibe-social a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .vibe-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .vibe-footer-links { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .vibe-footer-col h4 { font-size: 0.75rem; margin-bottom: 10px; }
    .vibe-footer-col a { font-size: 0.8rem; padding: 4px 0; }
}
@media (max-width: 480px) {
    .vibe-footer-links { grid-template-columns: 1fr 1fr; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   13. PRICING
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 36px);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.price-card.featured {
    border-color: rgba(56,189,248,0.3);
    background: rgba(56,189,248,0.04);
}
.price-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--bg);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}
.price-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(232,237,245,0.75);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.price-features li::before {
    content: 'â†’';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   14. TECH TAGS / BADGES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tech-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.tech-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   15. STORE BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.store-btn-primary {
    background: var(--primary);
    color: var(--bg);
}
.store-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,189,248,0.2); color: var(--bg); }
.store-btn-secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
}
.store-btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); color: var(--text); }
.store-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.gp-link img { filter: brightness(1) drop-shadow(0 2px 4px rgba(56,189,248,0.15)); transition: transform 0.3s, filter 0.3s; }
.gp-link img:hover { transform: translateY(-2px); filter: brightness(1.1) drop-shadow(0 4px 8px rgba(56,189,248,0.25)); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   16. SCROLL REVEAL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   17. UTILITIES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: 760px; }
.max-w-wide { max-width: var(--max-w); }

/* Gradient text helper */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   18. RESPONSIVE HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
    .hero {
        min-height: 0;
        padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 24px);
    }
    .hero-sub { max-width: 100%; }
    .hero-stats { gap: 20px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   19. PRINT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media print {
    .vibe-nav, .vibe-drawer, .vibe-overlay, .vibe-footer { display: none; }
    body { background: #fff; color: #000; }
    body::before { display: none; }
    .page-container { padding-top: 0; }
    .main-content-v3 { padding-top: 0; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   20. PREMIUM ANIMATIONS v6.0
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Keyframes */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
    50% { box-shadow: 0 0 0 6px rgba(56,189,248,0.08); }
}
@keyframes spinGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(56,189,248,0.15); }
    50% { border-color: rgba(56,189,248,0.4); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes navShrink {
    from { height: 70px; }
    to   { height: 58px; }
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(56,189,248,0); }
}

/* â”€â”€ Scroll Progress Bar â”€â”€ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #38BDF8, #2563EB, #6366F1);
    z-index: 9999;
    transition: width 0.06s linear;
    pointer-events: none;
}

/* â”€â”€ Nav shrink on scroll â”€â”€ */
.vibe-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.vibe-nav.scrolled {
    background: rgba(11,17,32,0.98);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    border-bottom-color: rgba(56,189,248,0.18);
}
.vibe-nav .nav-main {
    transition: height 0.3s ease;
}
.vibe-nav.scrolled .nav-main {
    height: 58px;
}
.vibe-nav-link.active {
    color: var(--primary) !important;
    background: rgba(56,189,248,0.1);
}

/* â”€â”€ Enhanced Buttons â”€â”€ */
.btn-primary {
    background-size: 200% auto;
    background-image: linear-gradient(135deg, #38BDF8 0%, #2563EB 50%, #38BDF8 100%);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.btn-primary:hover::after {
    transform: translateX(100%);
}
.btn-primary:hover {
    background-position: right center;
    animation: shimmer 1.5s linear;
}

/* â”€â”€ Premium Card hover glow â”€â”€ */
.card,
.glass-card,
.price-card,
.service-card,
.app-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover,
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(56,189,248,0.2);
}
.price-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(56,189,248,0.2);
}

/* â”€â”€ Animated gradient border on featured cards â”€â”€ */
.card.premium,
.price-card.featured,
.glass-card.premium {
    position: relative;
    border-color: transparent;
    background-clip: padding-box;
}
.card.premium::before,
.glass-card.premium::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(56,189,248,0.5), rgba(37,99,235,0.4), rgba(99,102,241,0.4));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}
.card.premium:hover::before,
.glass-card.premium:hover::before {
    opacity: 1;
}

/* â”€â”€ Section reveal (stagger) â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for grid children */
.stagger > .reveal:nth-child(1)  { transition-delay: 0.00s; }
.stagger > .reveal:nth-child(2)  { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3)  { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4)  { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5)  { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6)  { transition-delay: 0.40s; }
.stagger > *:nth-child(1)  { transition-delay: 0.00s; }
.stagger > *:nth-child(2)  { transition-delay: 0.08s; }
.stagger > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger > *:nth-child(4)  { transition-delay: 0.24s; }
.stagger > *:nth-child(5)  { transition-delay: 0.32s; }
.stagger > *:nth-child(6)  { transition-delay: 0.40s; }

/* â”€â”€ Hero badge pulse â”€â”€ */
.hero-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

/* â”€â”€ Animated gradient headings â”€â”€ */
.gradient-text,
.hero h1 .gradient {
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

/* â”€â”€ Floating elements â”€â”€ */
.float-slow {
    animation: floatUp 6s ease-in-out infinite;
}
.float-med {
    animation: floatUp 4s ease-in-out infinite;
}

/* â”€â”€ Count-up stat numbers â”€â”€ */
.stat-val,
.hero-stat-num {
    animation: countUp 0.6s ease both;
    display: inline-block;
}

/* â”€â”€ Glow divider enhanced â”€â”€ */
.glow-divider {
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.2), rgba(37,99,235,0.15), rgba(99,102,241,0.1), transparent);
    height: 1px;
}
.glow-divider-wide {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.2), rgba(37,99,235,0.15), transparent);
    max-width: var(--max-w);
    margin: 0 auto;
}

/* â”€â”€ Section highlight strip â”€â”€ */
.section-highlight {
    background: linear-gradient(135deg, rgba(56,189,248,0.04) 0%, rgba(37,99,235,0.03) 50%, rgba(99,102,241,0.03) 100%);
    border-top: 1px solid rgba(56,189,248,0.08);
    border-bottom: 1px solid rgba(56,189,248,0.08);
}

/* â”€â”€ CTA Banner â”€â”€ */
.cta-banner {
    background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(37,99,235,0.06) 100%);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(56,189,248,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€ Trust bar â”€â”€ */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
    padding: 24px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-item .trust-icon {
    color: var(--primary);
    font-size: 1rem;
}

/* â”€â”€ Enhanced icon badge â”€â”€ */
.icon-badge {
    transition: all 0.3s ease;
}
.card:hover .icon-badge,
.glass-card:hover .icon-badge {
    transform: scale(1.1) rotate(5deg);
    background: rgba(56,189,248,0.15);
}

/* â”€â”€ Premium footer â”€â”€ */
.vibe-footer-brand .footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.vibe-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    transition: all 0.3s ease;
}
.vibe-social a svg { display: block; }
.vibe-social a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
/* Always-on brand tints */
.vibe-social a[aria-label="Facebook"] { color: #6FA8F5; border-color: rgba(24,119,242,0.35); background: rgba(24,119,242,0.1); }
.vibe-social a[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.vibe-social a[aria-label="Instagram"] { color: #F077A9; border-color: rgba(225,48,108,0.35); background: rgba(225,48,108,0.1); }
.vibe-social a[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); border-color: #DD2A7B; }
.vibe-social a[aria-label="LinkedIn"] { color: #5EA9E8; border-color: rgba(10,102,194,0.4); background: rgba(10,102,194,0.12); }
.vibe-social a[aria-label="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; }
.vibe-social a[aria-label="X (Twitter)"] { color: #E8EDF5; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.vibe-social a[aria-label="X (Twitter)"]:hover { background: #000; border-color: #555; }
.vibe-social a[aria-label="TikTok"] { color: #7EE8E4; border-color: rgba(105,201,208,0.35); background: rgba(105,201,208,0.1); }
.vibe-social a[aria-label="TikTok"]:hover { background: #010101; border-color: #69C9D0; color: #69C9D0; }
.vibe-social a[aria-label="Yelp"] { color: #F0716A; border-color: rgba(211,35,35,0.4); background: rgba(211,35,35,0.12); }
.vibe-social a[aria-label="Yelp"]:hover { background: #D32323; border-color: #D32323; }
.vibe-social a[aria-label="Nextdoor"] { color: #A3E56C; border-color: rgba(140,220,60,0.35); background: rgba(140,220,60,0.1); }
.vibe-social a[aria-label="Nextdoor"]:hover { background: #5C9E31; border-color: #8CDC3C; }
.vibe-social a[aria-label="Email"] { color: var(--primary); border-color: rgba(56,189,248,0.35); background: rgba(56,189,248,0.1); }
.vibe-social a[aria-label="Email"]:hover { background: var(--primary); border-color: var(--primary); color: #0B1120; }
.footer-app-strip {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.footer-app-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-app-chip:hover {
    color: var(--primary);
    border-color: rgba(56,189,248,0.2);
    background: rgba(56,189,248,0.06);
}

/* â”€â”€ Back-to-top â”€â”€ */
#back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.25);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    text-decoration: none;
}
#back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}
#back-to-top:hover {
    background: rgba(56,189,248,0.18);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56,189,248,0.2);
}
@media (max-width: 768px) {
    #back-to-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }
}

/* â”€â”€ Enhanced form focus â”€â”€ */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.1), 0 0 20px rgba(56,189,248,0.06);
    background: rgba(56,189,248,0.02);
}

/* â”€â”€ Page hero intro animation â”€â”€ */
.hero .reveal,
.hero-compact .reveal {
    animation: fadeSlideUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}

/* â”€â”€ Ambient orbs for hero sections â”€â”€ */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-orb.loaded { opacity: 1; }
.hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(56,189,248,0.09) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: floatUp 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    bottom: -80px; right: 5%;
    animation: floatUp 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
    top: 30%; right: 20%;
    animation: floatUp 7s ease-in-out infinite 1s;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   19. PRINT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media print {
    .vibe-nav, .vibe-drawer, .vibe-overlay, .vibe-footer { display: none; }
    body { background: #fff; color: #000; }
    body::before { display: none; }
    .page-container { padding-top: 0; }
    .main-content-v3 { padding-top: 0; }
}

/* ==== assets\premium-plus.css ==== */
/*
 * VibeCMD Premium PLUS v7.1
 * Aurora background Â· Spotlight cursor Â· Magnetic buttons Â· Premium scrollbar
 * Wave dividers Â· 3D card depth Â· Premium selection Â· Shine effects
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   1. ANIMATED AURORA BACKGROUND (behind everything)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body::after {
    content: '';
    position: fixed;
    inset: -25%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 18% 28%, rgba(56,189,248,0.10), transparent 65%),
        radial-gradient(ellipse 50% 40% at 82% 72%, rgba(37,99,235,0.10), transparent 65%),
        radial-gradient(ellipse 45% 35% at 50% 55%, rgba(99,102,241,0.08), transparent 65%);
    filter: blur(50px);
    animation: auroraFlow 28s ease-in-out infinite;
    will-change: transform;
}
@keyframes auroraFlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -2%) rotate(2deg); }
    66% { transform: translate(-2%, 3%) rotate(-2deg); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   2. PREMIUM SCROLLBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(11,17,32,0.6);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(56,189,248,0.35), rgba(37,99,235,0.35));
    border-radius: 10px;
    border: 2px solid rgba(11,17,32,0.6);
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(56,189,248,0.6), rgba(37,99,235,0.6));
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(56,189,248,0.4) rgba(11,17,32,0.6);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3. PREMIUM TEXT SELECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
::selection {
    background: rgba(56,189,248,0.28);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(56,189,248,0.4);
}
::-moz-selection {
    background: rgba(56,189,248,0.28);
    color: #ffffff;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   4. SPOTLIGHT CURSOR (desktop only)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (hover: hover) and (pointer: fine) {
    #cursor-spotlight {
        position: fixed;
        top: 0;
        left: 0;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, rgba(37,99,235,0.06) 30%, transparent 65%);
        opacity: 0;
        transition: opacity 0.5s ease;
        mix-blend-mode: screen;
        will-change: transform;
    }
    #cursor-spotlight.active {
        opacity: 1;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   5. MAGNETIC BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn,
.vibe-nav-cta,
.store-btn-primary,
.btn-primary,
.btn-secondary,
.btn-outline {
    will-change: transform;
}
.magnetic-area {
    display: inline-block;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   6. PREMIUM BUTTON SHEEN
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn,
.vibe-nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before,
.vibe-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255,255,255,0.18) 45%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.18) 55%,
        transparent 70%);
    transform: translateX(-150%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}
.btn:hover::before,
.vibe-nav-cta:hover::before {
    transform: translateX(150%);
}
.btn > *,
.vibe-nav-cta > * {
    position: relative;
    z-index: 2;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   7. PREMIUM GLOW BORDERS (animated)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.glow-border {
    position: relative;
    isolation: isolate;
}
.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg),
        transparent 0%,
        rgba(56,189,248,0.6) 25%,
        rgba(37,99,235,0.5) 50%,
        rgba(99,102,241,0.5) 75%,
        transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: rotateBorder 6s linear infinite;
}
.glow-border:hover::before {
    opacity: 1;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes rotateBorder {
    to { --angle: 360deg; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   8. IMAGE SHINE ON HOVER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.app-phone,
.cs-phones img,
.hero-phone {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.app-phone::after,
.cs-phones img::after,
.hero-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg,
        transparent 30%,
        rgba(255,255,255,0.18) 50%,
        transparent 70%);
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}
.app-card:hover .app-phone::after,
.case-study-card:hover .cs-phones img::after,
.hero-phone:hover::after {
    left: 120%;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   9. WAVE / GLOW SECTION DIVIDERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.divider-wave {
    position: relative;
    height: 80px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}
.divider-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.divider-glow {
    position: relative;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.5), rgba(37,99,235,0.4), rgba(99,102,241,0.3), transparent);
    margin: 0;
}
.divider-glow::before,
.divider-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 30%;
    height: 5px;
    background: radial-gradient(ellipse, rgba(56,189,248,0.4) 0%, transparent 70%);
    filter: blur(3px);
}
.divider-glow::before { left: 20%; }
.divider-glow::after { right: 20%; background: radial-gradient(ellipse, rgba(37,99,235,0.4) 0%, transparent 70%); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   10. CARD 3D DEPTH + SPOTLIGHT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card,
.glass-card,
.service-card,
.app-card,
.price-card,
.review-card,
.svc-hub-card,
.retainer-card,
.pkg-card,
.inc-item,
.timeline-item {
    position: relative;
    isolation: isolate;
}
/* Spotlight follows mouse over each card via CSS vars
   NOTE: .retainer-card is excluded â€” it owns its own ::before for the
   "MOST POPULAR" badge, and overlapping caused a vertical green strip. */
.card::before,
.glass-card::before,
.service-card::before,
.app-card::before,
.price-card::before,
.svc-hub-card::before,
.pkg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle 200px at var(--mx, 50%) var(--my, 50%),
        rgba(56,189,248,0.08),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}
.card:hover::before,
.glass-card:hover::before,
.service-card:hover::before,
.app-card:hover::before,
.price-card:hover::before,
.svc-hub-card:hover::before,
.pkg-card:hover::before {
    opacity: 1;
}
.card > *,
.glass-card > *,
.service-card > *,
.app-card > *,
.price-card > *,
.svc-hub-card > *,
.pkg-card > * {
    position: relative;
    z-index: 1;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   11. PREMIUM NAV LOGO ANIMATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-nav-logo {
    position: relative;
    transition: all 0.4s ease;
}
.vibe-nav-logo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vibe-nav-logo:hover::after {
    transform: scaleX(1);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   12. PREMIUM NAV LINK UNDERLINE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-nav-link:not(.vibe-nav-cta) {
    position: relative;
}
.vibe-nav-link:not(.vibe-nav-cta)::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.vibe-nav-link:not(.vibe-nav-cta):hover::after,
.vibe-nav-link.active:not(.vibe-nav-cta)::after {
    transform: scaleX(1);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   13. HERO TYPEWRITER CURSOR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.typewriter::after {
    content: '_';
    color: var(--primary);
    animation: blinkCursor 1s steps(2) infinite;
    margin-left: 2px;
}
@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   14. PREMIUM SECTION LABELS (animated dot)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-label,
.section-badge {
    position: relative;
    padding-left: 22px !important;
}
.section-label::before,
.section-badge::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(56,189,248,0.8);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(56,189,248,0.8); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(56,189,248,0.4); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   15. ENHANCED FOOTER GLOW
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-footer {
    position: relative;
    overflow: hidden;
}
.vibe-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), rgba(37,99,235,0.3), rgba(99,102,241,0.2), transparent);
}
.vibe-footer::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(56,189,248,0.05) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   16. PREMIUM STATS NUMBERS GLOW
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stat-val,
.hero-stat-num,
.price-amount,
.pkg-price,
.retainer-price,
.roi-stat .val {
    text-shadow: 0 0 32px rgba(56,189,248,0.15);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   17. ENHANCED CTA BANNER (animated glow)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
    position: relative;
    overflow: hidden;
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg,
        rgba(56,189,248,0.3),
        rgba(37,99,235,0.25),
        rgba(99,102,241,0.2),
        rgba(56,189,248,0.3));
    z-index: -1;
    filter: blur(20px);
    opacity: 0.4;
    animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   18. HERO BADGE PREMIUM SHIMMER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-badge {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-size: 200% 100% !important;
    background-image: linear-gradient(105deg,
        rgba(56,189,248,0.1) 0%,
        rgba(56,189,248,0.18) 50%,
        rgba(56,189,248,0.1) 100%) !important;
    animation: badgeShimmer 4s ease-in-out infinite, badgePulse 3s ease-in-out infinite;
    background-position: 0% 0%;
}
@keyframes badgeShimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   19. FLOATING REVIEW STARS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.review-card .stars {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,193,7,0.3));
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   20. PREMIUM LINK HOVER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-footer-col a {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease, color 0.3s ease;
}
.vibe-footer-col a::before {
    content: 'â†’';
    position: absolute;
    left: -16px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}
.vibe-footer-col a:hover {
    padding-left: 16px;
    color: var(--primary);
}
.vibe-footer-col a:hover::before {
    left: 0;
    opacity: 1;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   21. PREMIUM IMAGE HOLDERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.app-phone,
.hero-phone {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.app-card:hover .app-phone {
    transform: translateY(-8px) scale(1.04) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,189,248,0.15);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   22. (removed) noise overlay caused stacking issues
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   23. REDUCED MOTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    body::after {
        animation: none;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   24. MOBILE TUNING
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
    body::after {
        animation-duration: 40s;
        filter: blur(60px);
    }
    #cursor-spotlight {
        display: none !important;
    }
}

/* ==== assets\color-overhaul.css ==== */
/*
 * VibeCMD Color Overhaul v7.1
 * Stronger gradients, vibrant accents, premium glass effects
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INLINE SVG ICON SYSTEM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-icon {
    display: inline-block;
    vertical-align: -0.15em;
    flex-shrink: 0;
}
.hero-badge .vibe-icon,
.section-label .vibe-icon,
.btn .vibe-icon,
.trust-item .vibe-icon {
    margin-right: 6px;
    vertical-align: -0.18em;
}
.icon-badge .vibe-icon,
.svc-icon .vibe-icon,
.hi-icon .vibe-icon,
.info-icon .vibe-icon,
.v-icon .vibe-icon,
.ic-icon .vibe-icon,
.inc-icon .vibe-icon,
.guarantee-icon .vibe-icon {
    width: 50%;
    height: 50%;
    stroke-width: 1.6;
    vertical-align: middle;
}
.overhaul-grid .ico .vibe-icon,
.value-grid .ico .vibe-icon {
    width: 26px;
    height: 26px;
}
.footer-app-chip .vibe-icon {
    vertical-align: -0.22em;
    margin-right: 4px;
}
.vibe-drawer-link .vibe-icon,
.vibe-drawer-cta .vibe-icon {
    margin-right: 8px;
    vertical-align: -0.2em;
    opacity: 0.85;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STRONGER BRAND GRADIENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    --gradient: linear-gradient(135deg, #38BDF8 0%, #22D3EE 45%, #2563EB 100%) !important;
    --gradient-vivid: linear-gradient(135deg, #38BDF8 0%, #22D3EE 50%, #2563EB 100%);
    --gradient-fire: linear-gradient(135deg, #38BDF8, #FFD600);
    --gradient-aurora: linear-gradient(135deg, #38BDF8 0%, #2563EB 50%, #6366F1 100%);
    --glow-primary: 0 0 24px rgba(56,189,248,0.45);
    --glow-secondary: 0 0 24px rgba(37,99,235,0.4);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM HERO TITLE GRADIENT (animated)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero h1,
.hero-title,
.hero-compact h1,
.section-title.gradient,
h1.gradient,
.gradient-text,
.hero-headline {
    background: linear-gradient(
        90deg,
        #38BDF8 0%,
        #22D3EE 25%,
        #2563EB 50%,
        #6366F1 75%,
        #38BDF8 100%
    ) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: gradientFlow 12s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(56,189,248,0.18));
}
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM CARDS â€” Glass + colored border
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-card,
.app-card,
.price-card,
.svc-hub-card,
.retainer-card,
.pkg-card,
.review-card,
.inc-item,
.case-study-card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.04),
        rgba(56,189,248,0.015) 50%,
        rgba(37,99,235,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.4s !important;
}
.service-card:hover,
.app-card:hover,
.price-card:hover,
.svc-hub-card:hover,
.retainer-card:hover,
.pkg-card:hover {
    border-color: rgba(56,189,248,0.45) !important;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(56,189,248,0.1),
        0 0 60px rgba(56,189,248,0.15) !important;
    transform: translateY(-6px) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM PRIMARY BUTTON
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary,
.vibe-nav-cta,
.vibe-drawer-cta {
    background: linear-gradient(135deg, #38BDF8 0%, #22D3EE 50%, #2563EB 100%) !important;
    background-size: 200% 200% !important;
    color: #0B1120 !important;
    font-weight: 700 !important;
    box-shadow:
        0 4px 20px rgba(56,189,248,0.35),
        0 0 0 1px rgba(56,189,248,0.4) inset !important;
    animation: btnGradientShift 6s ease-in-out infinite;
    border: none !important;
}
@keyframes btnGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.btn-primary:hover,
.vibe-nav-cta:hover,
.vibe-drawer-cta:hover {
    box-shadow:
        0 8px 30px rgba(56,189,248,0.55),
        0 0 0 1px rgba(56,189,248,0.6) inset,
        0 0 40px rgba(37,99,235,0.3) !important;
    transform: translateY(-2px) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM BADGES â€” vivid pill
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-badge,
.badge {
    background: linear-gradient(90deg,
        rgba(56,189,248,0.18),
        rgba(42,196,245,0.18),
        rgba(37,99,235,0.18)) !important;
    border: 1px solid rgba(56,189,248,0.35) !important;
    box-shadow:
        0 0 0 1px rgba(56,189,248,0.08),
        0 4px 20px rgba(56,189,248,0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM SECTION LABELS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-label,
.section-badge {
    background: linear-gradient(90deg,
        rgba(56,189,248,0.18),
        rgba(37,99,235,0.18)) !important;
    border: 1px solid rgba(56,189,248,0.3) !important;
    color: #4DFFA8 !important;
    box-shadow: 0 0 20px rgba(56,189,248,0.1);
    text-shadow: 0 0 8px rgba(56,189,248,0.4);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM NAV BACKGROUND
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-nav {
    background: rgba(11,17,32,0.72) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(56,189,248,0.08) !important;
}
.vibe-nav.scrolled {
    background: rgba(11,17,32,0.92) !important;
    border-bottom-color: rgba(56,189,248,0.18) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 60px rgba(56,189,248,0.05) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM PRICING NUMBERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.price-amount,
.pkg-price,
.retainer-price,
.stat-val,
.hero-stat-num,
.roi-stat .val,
[data-count] {
    background: linear-gradient(135deg, #38BDF8 0%, #22D3EE 50%, #2563EB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(56,189,248,0.25));
    font-weight: 800 !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM CTA BANNER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
    background: linear-gradient(135deg,
        rgba(56,189,248,0.12) 0%,
        rgba(37,99,235,0.08) 50%,
        rgba(99,102,241,0.1) 100%) !important;
    border: 1px solid rgba(56,189,248,0.25) !important;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 0 80px rgba(56,189,248,0.08) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vibe-footer {
    background: linear-gradient(180deg,
        #050912 0%,
        #030710 100%) !important;
    border-top: 1px solid rgba(56,189,248,0.12) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ICON COLORS â€” colored circle icons
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-icon,
.svc-hub-icon,
.app-icon,
.feature-icon {
    background: linear-gradient(135deg,
        rgba(56,189,248,0.18),
        rgba(37,99,235,0.15)) !important;
    border: 1px solid rgba(56,189,248,0.25) !important;
    color: #38BDF8 !important;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 0 24px rgba(56,189,248,0.15) !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM LINKS in body text
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.prose a,
p a:not(.btn):not(.vibe-nav-link):not(.vibe-drawer-link):not(.vibe-drawer-cta):not(.vibe-nav-cta) {
    color: #4DFFA8;
    text-decoration: none;
    border-bottom: 1px solid rgba(56,189,248,0.4);
    transition: border-color 0.3s, color 0.3s;
}
.prose a:hover,
p a:not(.btn):hover {
    color: #38BDF8;
    border-bottom-color: #38BDF8;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM CHECK MARKS / BULLETS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.feature-list li::before,
.pkg-features li::before,
.retainer-features li::before {
    color: #38BDF8 !important;
    text-shadow: 0 0 8px rgba(56,189,248,0.5);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BODY TEXT â€” slightly warmer
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body {
    color: #E8EDF5;
}
.text-muted,
.muted {
    color: #8B96AC !important;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PHONE / DEVICE GLOW
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.app-phone,
.hero-phone,
.cs-phones img {
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(56,189,248,0.12),
        0 0 80px rgba(56,189,248,0.15),
        0 0 120px rgba(37,99,235,0.1) !important;
}

/* ==== assets\studio-2026.css ==== */
/*
 * VibeCMD â€” Studio 2026 Theme
 * "Indie Product Studio OS" â€” refined dark dev-tool aesthetic.
 * Electric sky primary (#38BDF8), cyan (#22D3EE) + indigo (#818CF8) accents.
 * Scoped under .studio-2026 so it only restyles pages that opt in.
 * Loaded globally; the homepage adds its own bespoke hero (.h-*) inline.
 */

.studio-2026 {
    --h-green: #38BDF8;
    --h-green-2: #22D3EE;
    --h-amber: #818CF8;
    --h-amber-2: #6366F1;
    --h-ink: #04080E;
    --h-panel: rgba(255, 255, 255, 0.025);
    --h-panel-2: rgba(255, 255, 255, 0.045);
    --h-line: rgba(255, 255, 255, 0.08);
    --h-line-2: rgba(56,189,248, 0.22);
    --h-text: #EAF1F4;
    --h-muted: #C3CBD9;
    --h-mono: 'JetBrains Mono', monospace;
    --h-display: 'Space Grotesk', sans-serif;
    position: relative;
}

/* Hairline grid + glow backdrop */
.studio-2026::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.studio-2026 .container,
.studio-2026 .hero-inner,
.studio-2026 .section > * {
    position: relative;
    z-index: 1;
}

/* ============================================================
   EYEBROWS / BADGES
   ============================================================ */
.studio-2026 .hero-badge,
.studio-2026 .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--h-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.studio-2026 .hero-badge {
    color: var(--h-green);
    padding: 7px 14px;
    border: 1px solid var(--h-line-2);
    border-radius: 999px;
    background: rgba(56,189,248, 0.05);
}

.studio-2026 .section-label {
    color: var(--h-amber);
    margin-bottom: 16px;
}

/* ============================================================
   HEADINGS
   ============================================================ */
.studio-2026 .hero h1,
.studio-2026 .hero-compact h1,
.studio-2026 .hero-title,
.studio-2026 .section-title {
    font-family: var(--h-display);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--h-text);
}

.studio-2026 .hero h1,
.studio-2026 .hero-compact h1,
.studio-2026 .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.studio-2026 .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.studio-2026 .gradient-text,
.studio-2026 .hero-title .gradient-text,
.studio-2026 .section-title .gradient-text {
    background: linear-gradient(110deg, var(--h-green), var(--h-amber)) !important;
    background-size: 100% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: none !important;
    filter: none !important;
}

.studio-2026 .section-subtitle,
.studio-2026 .hero-sub {
    color: var(--h-muted);
    line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.studio-2026 .btn-primary {
    background: linear-gradient(135deg, var(--h-green), var(--h-green-2)) !important;
    color: #04241a !important;
    -webkit-text-fill-color: #04241a !important;
    border: 0 !important;
    box-shadow: 0 10px 30px rgba(56,189,248, 0.22);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s !important;
}

.studio-2026 .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(56,189,248, 0.32);
}

.studio-2026 .btn-secondary,
.studio-2026 .btn-outline {
    background: var(--h-panel) !important;
    color: var(--h-text) !important;
    -webkit-text-fill-color: var(--h-text) !important;
    border: 1px solid var(--h-line) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s, background 0.25s !important;
}

.studio-2026 .btn-secondary:hover,
.studio-2026 .btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--h-line-2) !important;
    background: var(--h-panel-2) !important;
}

/* ============================================================
   CARDS â€” glass panels with hover lift + top accent bar
   ============================================================ */
.studio-2026 .service-card,
.studio-2026 .svc-hub-card,
.studio-2026 .price-card,
.studio-2026 .pkg-card,
.studio-2026 .retainer-card,
.studio-2026 .inc-item,
.studio-2026 .app-card,
.studio-2026 .review-card,
.studio-2026 .case-study-card,
.studio-2026 .feature-card,
.studio-2026 .value-card,
.studio-2026 .info-card {
    position: relative;
    background: var(--h-panel) !important;
    border: 1px solid var(--h-line) !important;
    border-radius: 18px !important;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, background 0.3s !important;
}

.studio-2026 .service-card::after,
.studio-2026 .svc-hub-card::after,
.studio-2026 .price-card::after,
.studio-2026 .pkg-card::after,
.studio-2026 .feature-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--h-green), var(--h-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.studio-2026 .service-card:hover,
.studio-2026 .svc-hub-card:hover,
.studio-2026 .price-card:hover,
.studio-2026 .pkg-card:hover,
.studio-2026 .retainer-card:hover,
.studio-2026 .inc-item:hover,
.studio-2026 .app-card:hover,
.studio-2026 .review-card:hover,
.studio-2026 .case-study-card:hover,
.studio-2026 .feature-card:hover,
.studio-2026 .value-card:hover,
.studio-2026 .info-card:hover {
    transform: translateY(-6px);
    border-color: var(--h-line-2) !important;
    background: var(--h-panel-2) !important;
}

.studio-2026 .service-card:hover::after,
.studio-2026 .svc-hub-card:hover::after,
.studio-2026 .price-card:hover::after,
.studio-2026 .pkg-card:hover::after,
.studio-2026 .feature-card:hover::after {
    transform: scaleX(1);
}

.studio-2026 .app-type {
    color: var(--h-amber);
}

/* Price accents */
.studio-2026 .service-price,
.studio-2026 .price-amount,
.studio-2026 .pkg-price {
    font-family: var(--h-display);
    color: var(--h-text);
}

/* ============================================================
   MISC SHARED ELEMENTS
   ============================================================ */
.studio-2026 .enterprise-badge {
    background: var(--h-panel);
    border: 1px solid var(--h-line);
    color: var(--h-text);
    font-family: var(--h-mono);
}

.studio-2026 .glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--h-line-2), transparent);
    border: 0;
    max-width: var(--max-w);
    margin: 8px auto;
}

.studio-2026 .cta-banner {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(56,189,248, 0.08), transparent 70%),
        var(--h-panel) !important;
    border: 1px solid var(--h-line) !important;
    border-radius: 24px !important;
}

.studio-2026 .cta-banner h2 {
    font-family: var(--h-display);
}

/* Mono accents for any inline code-ish chips */
.studio-2026 .trust-item,
.studio-2026 .stat-label {
    color: var(--h-muted);
}


/* ═══════════════════════════════════════════════════════════
   READABILITY OVERHAUL — appended 2026-08-23
   Root scale up, brighter secondary text, taller line rhythm.
   ═══════════════════════════════════════════════════════════ */

html {
    font-size: 106.25%; /* 17px base — scales every rem value up ~6% */
}

:root {
    --text-muted: #D3DBE8;
    --text-dim: rgba(232, 237, 245, 0.76);
}

body {
    line-height: 1.68;
}

p,
li {
    line-height: 1.75;
}

::selection {
    background: rgba(56, 189, 248, 0.35);
    color: #fff;
}
/* ═══════════════════════════════════════════════════════════
   SPLIT THEME SYSTEM — appended 2026-08-23
   Hub = photo. Apps path = violet studio. IT path = emerald ops.
   Neutral pages = blue ambient. Photo retired everywhere else.
   ═══════════════════════════════════════════════════════════ */

/* Neutral ambient: CSS-only, zero image bytes */
body::before {
    background:
        radial-gradient(ellipse 80% 50% at 18% -10%, rgba(56, 189, 248, 0.10), transparent 60%),
        radial-gradient(ellipse 55% 40% at 88% 8%, rgba(37, 99, 235, 0.09), transparent 55%),
        linear-gradient(180deg, #0B1120 0%, #070B16 100%);
}

/* ── HUB: keep the engineering photo ── */
body.theme-hub::before {
    background:
        linear-gradient(180deg, rgba(11, 17, 32, 0.64) 0%, rgba(11, 17, 32, 0.76) 55%, rgba(7, 11, 22, 0.90) 100%),
        url('/images/bg-engineering.jpg') center / cover no-repeat;
}

/* ── APPS PATH: violet studio energy ── */
body.theme-apps {
    --primary: #A78BFA;
    --secondary: #8B5CF6;
    --gradient: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 60%, #6D28D9 100%) !important;
}

body.theme-apps::before {
    background:
        radial-gradient(ellipse 80% 50% at 18% -10%, rgba(167, 139, 250, 0.14), transparent 60%),
        radial-gradient(ellipse 55% 40% at 88% 8%, rgba(139, 92, 246, 0.10), transparent 55%),
        linear-gradient(180deg, #0B1120 0%, #070B16 100%);
}

/* ── IT PATH: emerald ops reliability ── */
body.theme-it {
    --primary: #34D399;
    --secondary: #059669;
    --gradient: linear-gradient(135deg, #34D399 0%, #10B981 55%, #047857 100%) !important;
}

body.theme-it::before {
    background:
        radial-gradient(ellipse 80% 50% at 18% -10%, rgba(52, 211, 153, 0.12), transparent 60%),
        radial-gradient(ellipse 55% 40% at 88% 8%, rgba(251, 191, 36, 0.07), transparent 55%),
        linear-gradient(180deg, #0B1120 0%, #070B16 100%);
}
/* App card title links (product pages) */
.app-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.app-card h3 a:hover {
    color: var(--primary);
}