/* ============================================================
   Vibe Coding Launchpad Module - Scoped CSS
   All selectors prefixed with .vcl-module to avoid conflicts
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Variables
   ------------------------------------------------------------ */
.vcl-module {
    --bg-primary: #000000;
    --bg-elevated: #0a0f14;
    --bg-surface: #111820;
    --bg-card: rgba(10, 15, 20, 0.95);
    --bg-card-hover: rgba(15, 22, 30, 0.9);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(255, 255, 255, 0.15);
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-glow: rgba(20, 184, 166, 0.3);
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.3);
    --amber-400: #fbbf24;
    --success: #22c55e;
    --success-muted: rgba(34, 197, 94, 0.15);
    --warning: #facc15;
    --warning-muted: rgba(250, 204, 21, 0.15);
    --error: #ef4444;
    --error-muted: rgba(239, 68, 68, 0.15);
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ambient-opacity: 1;
    --grid-color: rgba(255, 255, 255, 0.03);

    /* Module container - sits below main site header (72px) */
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    overflow-y: auto;
}

/* ------------------------------------------------------------
   2. Light Mode
   ------------------------------------------------------------ */
.vcl-module[data-theme="light"] {
    --bg-primary: #F9FAFB;
    --bg-elevated: #FFFFFF;
    --bg-surface: #F3F4F6;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-subtle: #F3F4F6;
    --border-default: #E5E7EB;
    --border-accent: #D1D5DB;
    --teal-glow: rgba(16, 185, 129, 0.15);
    --purple-glow: rgba(139, 92, 246, 0.15);
    --blue-glow: rgba(59, 130, 246, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --ambient-opacity: 0.15;
    --grid-color: rgba(0, 0, 0, 0.02);
}

.vcl-module[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.vcl-module[data-theme="light"] .header-progress { background: #E5E7EB; }
.vcl-module[data-theme="light"] .header-progress-bar { background: linear-gradient(90deg, #14b8a6, #3b82f6, #a855f7, #f97316, #ec4899) !important; background-size: 300% 100% !important; animation: vcl-barColorCycle 8s ease-in-out infinite !important; box-shadow: 0 0 8px rgba(99, 102, 241, 0.5) !important; }

.vcl-module[data-theme="light"]::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #F9FAFB;
    z-index: -1;
}

.vcl-module[data-theme="light"] .landing-bg { opacity: var(--ambient-opacity); }
.vcl-module[data-theme="light"] .landing-grid { background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px); }
.vcl-module[data-theme="light"] .landing-orb { opacity: 0.2; }

.vcl-module[data-theme="light"] .glass-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 15px rgba(2, 6, 23, 0.06);
    backdrop-filter: none;
}
.vcl-module[data-theme="light"] .glass-card:hover { background: #FFFFFF; transform: translateY(-1px); border-color: rgba(59, 130, 246, 0.15); box-shadow: 0 6px 15px rgba(2, 6, 23, 0.08); }
.vcl-module[data-theme="light"] .glass-card--highlight { background: #FFFFFF; border-color: #E5E7EB; }

.vcl-module[data-theme="light"] .controls { background: rgba(255, 255, 255, 0.9); border-color: #E5E7EB; }
.vcl-module[data-theme="light"] .control-btn { border-color: #D1D5DB; color: #6B7280; }
.vcl-module[data-theme="light"] .control-btn:hover:not(:disabled) { background: rgba(99, 102, 241, 0.1); border-color: #6366f1; color: #6366f1; }
.vcl-module[data-theme="light"] .controls-dot { background: #D1D5DB; }
.vcl-module[data-theme="light"] .controls-dot.active { background: #4338ca; box-shadow: 0 0 10px rgba(67, 56, 202, 0.4); }
.vcl-module[data-theme="light"] .controls-dot.completed { background: rgba(16, 185, 129, 0.7); }
.vcl-module[data-theme="light"] .controls-counter { color: #6B7280; }

.vcl-module[data-theme="light"] .btn--shiny {
    background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(139, 92, 246, 0.4) 0%, transparent 50%), linear-gradient(135deg, #312e81, #4338ca, #6366f1);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 8px 25px -8px rgba(79, 70, 229, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: none;
}
.vcl-module[data-theme="light"] .btn--shiny::before { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%); }

.vcl-module[data-theme="light"] .theme-toggle .sun-icon { display: none; }
.vcl-module[data-theme="light"] .theme-toggle .moon-icon { display: block; }

/* ------------------------------------------------------------
   3. Header
   ------------------------------------------------------------ */
.vcl-module .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}
.vcl-module .logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.vcl-module .logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--text-primary); letter-spacing: -0.01em; }
.vcl-module .logo-divider { width: 1px; height: 24px; background: var(--border-default); }
.vcl-module .logo-subtitle { font-size: 1.125rem; font-weight: 300; color: var(--text-muted); }
.vcl-module .header-right { display: flex; align-items: center; gap: 12px; }
.vcl-module .slide-counter { font-size: 1rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.vcl-module .header-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255, 255, 255, 0.1); }
.vcl-module .header-progress-bar { height: 100%; background: linear-gradient(90deg, var(--teal-400), var(--blue-400), var(--purple-400), var(--orange-400), var(--pink-400)); background-size: 300% 100%; animation: vcl-barColorCycle 8s ease-in-out infinite; width: 0%; transition: width 0.4s var(--ease-out); box-shadow: 0 0 8px var(--teal-glow); }
.vcl-module .theme-toggle { position: relative; background: var(--bg-card); border: 1px solid var(--border-default); border-radius: 10px; padding: 10px; cursor: pointer; color: var(--text-primary); backdrop-filter: blur(12px); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; margin-left: 16px; }
.vcl-module .theme-toggle:hover { border-color: var(--border-accent); transform: scale(1.05); background: var(--bg-card-hover); }
.vcl-module .theme-toggle svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.vcl-module .theme-toggle:hover svg { transform: rotate(15deg); }
.vcl-module .theme-toggle .sun-icon { display: block; }
.vcl-module .theme-toggle .moon-icon { display: none; }

/* ------------------------------------------------------------
   4. Controls (Bottom Nav)
   ------------------------------------------------------------ */
.vcl-module .controls { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; z-index: 1000; background: rgba(0, 0, 0, 0.6); padding: 12px 24px; border-radius: 50px; border: 1px solid rgba(20, 184, 166, 0.3); backdrop-filter: blur(10px); }
.vcl-module .control-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(20, 184, 166, 0.6); background: transparent; color: rgba(20, 184, 166, 0.9); font-size: 1.25rem; cursor: pointer; transition: all 0.3s var(--ease-out); display: flex; align-items: center; justify-content: center; }
.vcl-module .control-btn:hover:not(:disabled) { background: rgba(20, 184, 166, 0.15); border-color: rgba(20, 184, 166, 0.9); transform: scale(1.05); }
.vcl-module .control-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.vcl-module .controls-counter { font-size: 1.1rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); min-width: 40px; text-align: center; }
.vcl-module .controls-dots { display: flex; align-items: center; gap: 8px; }
.vcl-module .controls-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: all 0.2s ease; cursor: pointer; position: relative; }
.vcl-module .controls-dot::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; }
.vcl-module .controls-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.7); transform: scale(1.8); }
.vcl-module .controls-dot.active { width: 24px; border-radius: 10px; background: #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); }
.vcl-module .controls-dot.completed { background: rgba(20, 184, 166, 0.8); }
.vcl-module .dot-group { display: flex; align-items: center; gap: 8px; }
.vcl-module .dot-group-intro { padding: 4px 8px; background: rgba(20, 184, 166, 0.1); border-radius: 20px; border: 1px solid rgba(20, 184, 166, 0.2); }
.vcl-module .dot-separator { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); margin: 0 4px; }

/* ------------------------------------------------------------
   5. Slide Layout
   ------------------------------------------------------------ */
.vcl-module .slide-container { position: relative; width: 100%; min-height: 100%; z-index: 1; text-align: left; }
.vcl-module .slide { display: none; width: 100%; min-height: 100%; padding: 40px 60px 80px; max-width: 85vw; margin: 0 auto; }
.vcl-module .slide.active { display: block; animation: vcl-slideIn 0.5s var(--ease-out); }
@keyframes vcl-slideIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Compact slide 2 typography */
.vcl-module #vcl-slide-2 .text-label { margin-bottom: 8px; }
.vcl-module #vcl-slide-2 .text-section { margin-bottom: 12px; }
.vcl-module #vcl-slide-2 .text-body-lg { margin-bottom: 0; font-size: 1.15rem; }

/* ------------------------------------------------------------
   5b. Scrolling Timeline (Slide 2)
   Reuses tl-* class pattern from vibe-timeline.html
   ------------------------------------------------------------ */

/* Override default slide padding/max-width for the timeline slide */
.vcl-module .slide--timeline { padding: 0; max-width: 100%; width: 100%; }

/* Timeline Line (left side) */
.vcl-module .timeline-line { position: fixed; left: 40px; top: 72px; bottom: 0; width: 2px; background: rgba(255,255,255,0.06); z-index: 5; pointer-events: none; }
.vcl-module .timeline-line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(180deg, var(--teal-400), var(--blue-400), var(--purple-400), var(--orange-400), var(--pink-400)); box-shadow: 0 0 8px var(--purple-glow); }

/* Nav Dots (right side) */
.vcl-module .year-nav { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.vcl-module .year-nav-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.18); cursor: pointer; transition: all 0.3s var(--ease-out); position: relative; text-decoration: none; }
.vcl-module .year-nav-dot.active { background: var(--dot-color, var(--purple-400)); border-color: var(--dot-color, var(--purple-400)); box-shadow: 0 0 12px var(--dot-glow, var(--purple-glow)); transform: scale(1.4); }
.vcl-module .year-nav-dot:hover { background: rgba(255,255,255,0.25); transform: scale(1.2); }
.vcl-module .year-nav-dot.active:hover { transform: scale(1.4); }
.vcl-module .year-nav-label { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 0.75rem; font-weight: 600; font-family: var(--font-mono); color: var(--text-muted); white-space: nowrap; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.vcl-module .year-nav-dot:hover .year-nav-label, .vcl-module .year-nav-dot.active .year-nav-label { opacity: 1; }

/* Main Content */
.vcl-module .tl-main { position: relative; z-index: 1; }
.vcl-module .tl-section { min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; padding: 48px 60px 40px 90px; }
.vcl-module .tl-section--hero { text-align: center; padding-left: 40px; padding-right: 40px; }
.vcl-module .tl-section--hero .tl-section-inner { display: flex; flex-direction: column; align-items: center; }
.vcl-module .tl-section-inner { max-width: 920px; width: 100%; }

/* Hero typography (scoped to avoid collision with module .text-display etc.) */
.vcl-module .tl-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600; line-height: 1.1; margin-bottom: 20px; color: var(--text-primary); }
.vcl-module .tl-hero-subtitle { font-size: 1.4rem; line-height: 1.7; color: var(--text-secondary); }
.vcl-module .gradient-text-hero { background: linear-gradient(135deg, var(--teal-400), var(--blue-400), var(--purple-400), var(--orange-400), var(--pink-400)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: vcl-gradShift 12s ease-in-out infinite; }
@keyframes vcl-gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.vcl-module .tl-hero-definition { background: rgba(0,0,0,0.4); border: 1px solid var(--border-accent); border-radius: var(--radius-xl); padding: 32px 36px; backdrop-filter: blur(12px); max-width: 720px; margin: 40px auto 0; text-align: left; }
.vcl-module .definition-term { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 600; color: var(--purple-400); margin-bottom: 8px; }
.vcl-module .definition-body { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); }

/* Hero Demo Panel (animated code typing) */
@property --vcl-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.vcl-module .tl-hero-demo {
    width: 100%; max-width: 720px; margin: 36px auto 0;
    border: 1.5px solid transparent; border-radius: var(--radius-xl);
    overflow: hidden; backdrop-filter: blur(12px);
    background:
        linear-gradient(#000000, #000000) padding-box,
        conic-gradient(from var(--vcl-border-angle), var(--teal-400), var(--blue-400), var(--purple-400), var(--orange-400), var(--pink-400), var(--teal-400)) border-box;
    animation: vcl-borderSpin 4s linear infinite;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15), 0 0 40px rgba(20, 184, 166, 0.08);
}
@keyframes vcl-borderSpin { to { --vcl-border-angle: 360deg; } }
.vcl-module .tl-hero-demo__header { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-bottom: 1px solid var(--border-subtle); }
.vcl-module .tl-hero-demo__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); animation: vcl-dotPulse 2s ease-in-out infinite; }
@keyframes vcl-dotPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.vcl-module .tl-hero-demo__header-text { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.vcl-module .tl-hero-demo__code { font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.7; padding: 16px 20px; height: 260px; overflow: hidden; position: relative; text-align: left; }
.vcl-module .tl-hero-demo__code::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 30px; background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent); z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
.vcl-module .tl-hero-demo__code.scrolled::after { opacity: 1; }
.vcl-module .tl-hero-demo__code-line { opacity: 0; transform: translateY(4px); transition: opacity 0.3s ease, transform 0.3s ease; white-space: pre; }
.vcl-module .tl-hero-demo__code-line.visible { opacity: 1; transform: translateY(0); }
.vcl-module .tl-hero-demo__code-cursor { display: inline-block; width: 7px; height: 13px; background: var(--teal-400); animation: vcl-cursorBlink 0.8s step-end infinite; vertical-align: text-bottom; margin-left: 1px; }
@keyframes vcl-cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Syntax highlight tokens */
.vcl-module .syn-tag { color: var(--teal-400); }
.vcl-module .syn-attr { color: var(--purple-400); }
.vcl-module .syn-str { color: var(--orange-400); }
.vcl-module .syn-text { color: var(--text-secondary); }
.vcl-module .syn-bracket { color: var(--text-muted); }
.vcl-module .syn-keyword { color: var(--purple-400); }
.vcl-module .syn-fn { color: var(--blue-400); }
.vcl-module .syn-num { color: var(--orange-400); }
.vcl-module .syn-comment { color: var(--text-muted); font-style: italic; }
.vcl-module .syn-prop { color: var(--teal-400); }

/* Progress Bars */
.vcl-module .tl-progress-bar { margin-top: 16px; padding: 20px 28px; background: rgba(0,0,0,0.4); border: 1px solid var(--border-accent); border-radius: var(--radius-xl); backdrop-filter: blur(12px); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.vcl-module .tl-progress-bar--teal { border-color: rgba(20,184,166,0.15); }
.vcl-module .tl-progress-bar--blue { border-color: rgba(59,130,246,0.15); }
.vcl-module .tl-progress-bar--purple { border-color: rgba(168,85,247,0.15); }
.vcl-module .tl-progress-bar--orange { border-color: rgba(251,146,60,0.15); }
.vcl-module .tl-progress-bar--pink { border-color: rgba(236,72,153,0.15); }
.vcl-module .tl-progress-bar__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.vcl-module .tl-progress-bar__title { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.vcl-module .tl-progress-bar__values { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }
.vcl-module .tl-progress-bar__prev { color: var(--text-muted); text-decoration: line-through; opacity: 0.6; }
.vcl-module .tl-progress-bar__current--teal { color: var(--teal-400); font-weight: 700; }
.vcl-module .tl-progress-bar__current--blue { color: var(--blue-400); font-weight: 700; }
.vcl-module .tl-progress-bar__current--purple { color: var(--purple-400); font-weight: 700; }
.vcl-module .tl-progress-bar__current--orange { color: var(--orange-400); font-weight: 700; }
.vcl-module .tl-progress-bar__current--pink { color: var(--pink-400); font-weight: 700; }
.vcl-module .tl-progress-bar__badge { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-subtle); color: var(--text-muted); }
.vcl-module .tl-progress-bar__track { position: relative; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.06); overflow: visible; }
.vcl-module .tl-progress-bar__fill { position: absolute; top: 0; left: 0; height: 100%; border-radius: 4px; width: 0%; transition: width 1.5s var(--ease-out); background: linear-gradient(90deg, var(--teal-400), var(--blue-400), var(--purple-400), var(--orange-400), var(--pink-400)); background-size: 300% 100%; animation: vcl-barColorCycle 8s ease-in-out infinite; box-shadow: 0 0 12px var(--purple-glow); }
@keyframes vcl-barColorCycle {
    0% { background-position: 0% 50%; box-shadow: 0 0 12px var(--teal-glow); }
    25% { box-shadow: 0 0 12px var(--blue-glow); }
    50% { background-position: 100% 50%; box-shadow: 0 0 12px var(--purple-glow); }
    75% { box-shadow: 0 0 12px var(--orange-glow); }
    100% { background-position: 0% 50%; box-shadow: 0 0 12px var(--teal-glow); }
}
.vcl-module .tl-progress-bar__prev-marker { position: absolute; top: -4px; width: 2px; height: 16px; background: rgba(255,255,255,0.25); border-radius: 1px; z-index: 2; }
.vcl-module .tl-progress-bar__prev-marker::after { content: attr(data-tooltip); position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); white-space: nowrap; opacity: 0; transition: opacity 0.2s ease; }
.vcl-module .tl-progress-bar:hover .tl-progress-bar__prev-marker::after { opacity: 1; }

/* Section Dividers */
.vcl-module .section-divider { display: flex; flex-direction: column; align-items: center; padding: 20px 0; position: relative; z-index: 1; }
.vcl-module .section-divider-line { width: 2px; height: 80px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.vcl-module .section-divider-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent, var(--divider-color, var(--purple-400)), transparent); opacity: 0; }
.vcl-module .section-divider.visible .section-divider-line::after { animation: vcl-dividerPulse 1.5s ease-out forwards; }
.vcl-module .section-divider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); margin: 8px 0; opacity: 0; transform: scale(0); }
.vcl-module .section-divider.visible .section-divider-dot { animation: vcl-dotPop 0.4s var(--ease-spring) 0.6s forwards; }
.vcl-module .section-divider-year-label { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); opacity: 0; transform: translateY(8px); }
.vcl-module .section-divider.visible .section-divider-year-label { animation: vcl-fadeSlideUp 0.5s var(--ease-out) 0.8s forwards; }

@keyframes vcl-dividerPulse { 0% { top: -100%; opacity: 0; } 30% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes vcl-dotPop { 0% { opacity: 0; transform: scale(0); } 70% { transform: scale(1.3); } 100% { opacity: 1; transform: scale(1); } }
@keyframes vcl-fadeSlideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Year Markers */
.vcl-module .tl-year-marker { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 24px; }
.vcl-module .tl-year-marker--teal { background: rgba(20,184,166,0.12); border: 2px solid var(--teal-400); color: var(--teal-400); box-shadow: 0 0 24px var(--teal-glow); }
.vcl-module .tl-year-marker--blue { background: rgba(59,130,246,0.12); border: 2px solid var(--blue-400); color: var(--blue-400); box-shadow: 0 0 24px var(--blue-glow); }
.vcl-module .tl-year-marker--purple { background: rgba(168,85,247,0.12); border: 2px solid var(--purple-400); color: var(--purple-400); box-shadow: 0 0 24px var(--purple-glow); }
.vcl-module .tl-year-marker--orange { background: rgba(251,146,60,0.12); border: 2px solid var(--orange-400); color: var(--orange-400); box-shadow: 0 0 24px var(--orange-glow); }
.vcl-module .tl-year-marker--pink { background: rgba(236,72,153,0.12); border: 2px solid var(--pink-400); color: var(--pink-400); box-shadow: 0 0 24px var(--pink-glow); }

/* Year Titles (gradient text) */
.vcl-module .tl-year-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.15; margin-bottom: 8px; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vcl-module .tl-year-title--teal { background-image: linear-gradient(135deg, var(--teal-300), var(--teal-500)); }
.vcl-module .tl-year-title--blue { background-image: linear-gradient(135deg, var(--blue-300), var(--blue-500)); }
.vcl-module .tl-year-title--purple { background-image: linear-gradient(135deg, var(--purple-300), var(--purple-500)); }
.vcl-module .tl-year-title--orange { background-image: linear-gradient(135deg, var(--orange-300), var(--orange-500)); }
.vcl-module .tl-year-title--pink { background-image: linear-gradient(135deg, var(--pink-300), var(--pink-500)); }
.vcl-module .tl-era-subtitle { font-family: var(--font-body); font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px; line-height: 1.7; max-width: 700px; }

/* Event Cards */
.vcl-module .tl-cards { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 768px) { .vcl-module .tl-cards { grid-template-columns: repeat(2, 1fr); } }
.vcl-module .tl-event { padding: 24px 28px; transition: all 0.3s var(--ease-out); }
.vcl-module .tl-event--teal { border-color: rgba(20,184,166,0.15); }
.vcl-module .tl-event--teal:hover { border-color: rgba(20,184,166,0.4); box-shadow: 0 8px 30px rgba(20,184,166,0.12); }
.vcl-module .tl-event--blue { border-color: rgba(59,130,246,0.15); }
.vcl-module .tl-event--blue:hover { border-color: rgba(59,130,246,0.4); box-shadow: 0 8px 30px rgba(59,130,246,0.12); }
.vcl-module .tl-event--purple { border-color: rgba(168,85,247,0.15); }
.vcl-module .tl-event--purple:hover { border-color: rgba(168,85,247,0.4); box-shadow: 0 8px 30px rgba(168,85,247,0.12); }
.vcl-module .tl-event--orange { border-color: rgba(251,146,60,0.15); }
.vcl-module .tl-event--orange:hover { border-color: rgba(251,146,60,0.4); box-shadow: 0 8px 30px rgba(251,146,60,0.12); }
.vcl-module .tl-event--pink { border-color: rgba(236,72,153,0.15); }
.vcl-module .tl-event--pink:hover { border-color: rgba(236,72,153,0.4); box-shadow: 0 8px 30px rgba(236,72,153,0.12); }
.vcl-module .tl-event-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.vcl-module .tl-event-icon { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vcl-module .tl-event-icon--teal { background: rgba(20,184,166,0.15); color: var(--teal-400); }
.vcl-module .tl-event-icon--blue { background: rgba(59,130,246,0.15); color: var(--blue-400); }
.vcl-module .tl-event-icon--purple { background: rgba(168,85,247,0.15); color: var(--purple-400); }
.vcl-module .tl-event-icon--orange { background: rgba(251,146,60,0.15); color: var(--orange-400); }
.vcl-module .tl-event-icon--pink { background: rgba(236,72,153,0.15); color: var(--pink-400); }
.vcl-module .tl-event-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); }
.vcl-module .tl-event-date { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.vcl-module .tl-event-body { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.vcl-module .tl-event-body strong { color: var(--text-primary); font-weight: 600; }

/* Stat Blocks (Year at a Glance infographic) */
.vcl-module .tl-stat-block { background: rgba(0,0,0,0.4); border: 1px solid var(--border-accent); border-radius: var(--radius-xl); padding: 24px 28px; backdrop-filter: blur(12px); margin-top: 28px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.vcl-module .tl-stat-block__header { margin-bottom: 20px; }
.vcl-module .tl-stat-block__label { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); }
.vcl-module .tl-stat-block__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcl-module .tl-stat-block__metric { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 8px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); transition: border-color 0.3s ease, background 0.3s ease; }
.vcl-module .tl-stat-block__metric:hover { background: rgba(255,255,255,0.04); }
.vcl-module .tl-stat-block__icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vcl-module .tl-stat-block__icon--teal { background: rgba(20,184,166,0.15); color: var(--teal-400); }
.vcl-module .tl-stat-block__icon--blue { background: rgba(59,130,246,0.15); color: var(--blue-400); }
.vcl-module .tl-stat-block__icon--purple { background: rgba(168,85,247,0.15); color: var(--purple-400); }
.vcl-module .tl-stat-block__icon--orange { background: rgba(251,146,60,0.15); color: var(--orange-400); }
.vcl-module .tl-stat-block__icon--pink { background: rgba(236,72,153,0.15); color: var(--pink-400); }
.vcl-module .tl-stat-block__metric-label { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.vcl-module .tl-stat-block__metric-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.vcl-module .tl-stat-block__metric-value--teal { color: var(--teal-400); }
.vcl-module .tl-stat-block__metric-value--blue { color: var(--blue-400); }
.vcl-module .tl-stat-block__metric-value--purple { color: var(--purple-400); }
.vcl-module .tl-stat-block__metric-value--orange { color: var(--orange-400); }
.vcl-module .tl-stat-block__metric-value--pink { color: var(--pink-400); }
.vcl-module .tl-stat-block--teal { border-color: rgba(20,184,166,0.2); }
.vcl-module .tl-stat-block--blue { border-color: rgba(59,130,246,0.2); }
.vcl-module .tl-stat-block--purple { border-color: rgba(168,85,247,0.2); }
.vcl-module .tl-stat-block--orange { border-color: rgba(251,146,60,0.2); }
.vcl-module .tl-stat-block--pink { border-color: rgba(236,72,153,0.2); }

/* Comparison Table (Summary) */
.vcl-module .tl-summary-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; margin-bottom: 32px; text-align: center; color: var(--text-primary); }
.vcl-module .tl-comparison-table { width: 100%; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-default); background: rgba(0,0,0,0.3); backdrop-filter: blur(8px); }
.vcl-module .tl-comparison-header { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border-default); }
.vcl-module .tl-comparison-col { padding: 16px 20px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--text-primary); }
.vcl-module .tl-comparison-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border-subtle); transition: background 0.2s ease; }
.vcl-module .tl-comparison-row:last-child { border-bottom: none; }
.vcl-module .tl-comparison-row:hover { background: rgba(255,255,255,0.03); }
.vcl-module .tl-comparison-cell { padding: 14px 20px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.vcl-module .tl-comparison-cell--label { font-weight: 600; color: var(--text-primary); font-family: var(--font-display); }

/* Scroll Animations */
.vcl-module #vcl-slide-timeline [data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.vcl-module #vcl-slide-timeline [data-animate].visible { opacity: 1; transform: translateY(0); }
.vcl-module #vcl-slide-timeline [data-animate="spring"] { opacity: 0; transform: scale(0.3); transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-spring); }
.vcl-module #vcl-slide-timeline [data-animate="spring"].visible { opacity: 1; transform: scale(1); }
.vcl-module #vcl-slide-timeline [data-animate="fade-up"] { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.vcl-module #vcl-slide-timeline [data-animate="fade-up"].visible { opacity: 1; transform: translateY(0); }
.vcl-module #vcl-slide-timeline [data-animate="scale"] { opacity: 0; transform: scale(0.92); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.vcl-module #vcl-slide-timeline [data-animate="scale"].visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.vcl-module .tl-section-inner > [data-animate]:nth-child(1) { transition-delay: 0ms; }
.vcl-module .tl-section-inner > [data-animate]:nth-child(2) { transition-delay: 150ms; }
.vcl-module .tl-section-inner > [data-animate]:nth-child(3) { transition-delay: 280ms; }
.vcl-module .tl-section-inner > [data-animate]:nth-child(4) { transition-delay: 400ms; }
.vcl-module .tl-section-inner > [data-animate]:nth-child(5) { transition-delay: 520ms; }
.vcl-module .tl-section-inner > [data-animate]:nth-child(6) { transition-delay: 640ms; }
.vcl-module .tl-cards [data-animate]:nth-child(1) { transition-delay: 0ms; }
.vcl-module .tl-cards [data-animate]:nth-child(2) { transition-delay: 150ms; }
.vcl-module .tl-cards [data-animate]:nth-child(3) { transition-delay: 300ms; }
.vcl-module .tl-cards [data-animate]:nth-child(4) { transition-delay: 450ms; }
.vcl-module .tl-comparison-row[data-animate]:nth-child(2) { transition-delay: 100ms; }
.vcl-module .tl-comparison-row[data-animate]:nth-child(3) { transition-delay: 200ms; }
.vcl-module .tl-comparison-row[data-animate]:nth-child(4) { transition-delay: 300ms; }
.vcl-module .tl-comparison-row[data-animate]:nth-child(5) { transition-delay: 400ms; }
.vcl-module .tl-comparison-row[data-animate]:nth-child(6) { transition-delay: 500ms; }

/* Scroll Cue */
.vcl-module .scroll-cue { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; animation: vcl-bounceDown 2s ease-in-out infinite; }
@keyframes vcl-bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Timeline Responsive */
@media (max-width: 768px) {
    .vcl-module .tl-section { padding: 48px 20px 40px 20px; min-height: auto; }
    .vcl-module .tl-section--hero { min-height: calc(100vh - 72px); }
    .vcl-module .timeline-line { left: 16px; }
    .vcl-module .year-nav { display: none; }
    .vcl-module .tl-year-marker { width: 64px; height: 64px; font-size: 1rem; }
    .vcl-module .section-divider-line { height: 50px; }
    .vcl-module .tl-stat-block__metrics { grid-template-columns: 1fr; gap: 12px; }
    .vcl-module .tl-stat-block__metric { flex-direction: row; text-align: left; padding: 12px 16px; gap: 12px; }
    .vcl-module .tl-stat-block__metric-value { font-size: 1.25rem; margin-left: auto; }
    .vcl-module .tl-comparison-header { display: none; }
    .vcl-module .tl-comparison-row { grid-template-columns: 1fr; padding: 16px; gap: 10px; background: var(--bg-card); border-radius: var(--radius-lg); margin: 8px; border: 1px solid var(--border-subtle); }
    .vcl-module .tl-hero-demo { max-width: 100%; }
    .vcl-module .tl-hero-demo__code { height: 200px; font-size: 0.72rem; }
    .vcl-module .tl-progress-bar { padding: 16px 20px; }
    .vcl-module .tl-progress-bar__header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ------------------------------------------------------------
   6. Glass Cards
   ------------------------------------------------------------ */
.vcl-module .glass-card { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(20, 184, 166, 0.2); border-radius: var(--radius-xl); padding: 36px; backdrop-filter: blur(12px); transition: all 0.3s var(--ease-out); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(20, 184, 166, 0.02); }
.vcl-module .glass-card:hover { background: rgba(0, 0, 0, 0.5); border-color: rgba(20, 184, 166, 0.4); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(20, 184, 166, 0.15), inset 0 0 30px rgba(20, 184, 166, 0.03); }
.vcl-module .glass-card--highlight { border-color: rgba(20, 184, 166, 0.3); background: rgba(0, 0, 0, 0.85); }
.vcl-module .glass-card--highlight:hover { background: rgba(0, 0, 0, 0.9); border-color: rgba(20, 184, 166, 0.5); }

/* ------------------------------------------------------------
   7. Typography
   ------------------------------------------------------------ */
.vcl-module .text-label { font-size: 1rem; font-weight: 500; color: var(--teal-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.vcl-module .text-display { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 600; line-height: 1.1; margin-bottom: 20px; color: var(--text-primary); }
.vcl-module .text-display .accent { background: linear-gradient(135deg, #2dd4bf 0%, #5eead4 25%, #a78bfa 50%, #c4b5fd 75%, #2dd4bf 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: vcl-gradient-text-shift 15s ease-in-out infinite; }
@keyframes vcl-gradient-text-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.vcl-module .text-section { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 300; margin-bottom: 24px; color: var(--text-primary); }
.vcl-module .text-section .accent,
.vcl-module .accent { background: linear-gradient(135deg, #2dd4bf 0%, #5eead4 25%, #a78bfa 50%, #c4b5fd 75%, #2dd4bf 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: vcl-gradient-text-shift 15s ease-in-out infinite; }
.vcl-module .text-body { font-size: 1.25rem; line-height: 1.7; color: var(--text-secondary); max-width: 900px; }
.vcl-module .text-body-lg { font-size: 1.5rem; line-height: 1.7; color: var(--text-secondary); max-width: 1000px; }
.vcl-module .text-muted { color: var(--text-muted); }

/* ------------------------------------------------------------
   8. Form Elements
   ------------------------------------------------------------ */
.vcl-module .form-group { margin-bottom: 28px; width: 100%; }
.vcl-module .form-label { display: block; font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 10px; font-weight: 500; }
.vcl-module .form-input,
.vcl-module .form-select,
.vcl-module .form-textarea { width: 100%; padding: 18px 22px; font-size: 1.125rem; font-family: var(--font-body); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-default); border-radius: var(--radius-lg); color: var(--text-primary); transition: all 0.3s var(--ease-out); box-sizing: border-box; }
.vcl-module .form-input:focus,
.vcl-module .form-select:focus,
.vcl-module .form-textarea:focus { outline: none; border-color: var(--teal-400); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15), 0 0 20px rgba(20, 184, 166, 0.1); }
.vcl-module .form-input::placeholder,
.vcl-module .form-textarea::placeholder { color: var(--text-muted); }
.vcl-module .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 44px; }
.vcl-module .form-select option { background: var(--bg-elevated); color: var(--text-primary); }
.vcl-module .form-textarea { min-height: 100px; resize: none; overflow: hidden; field-sizing: content; }

/* ------------------------------------------------------------
   9. Buttons
   ------------------------------------------------------------ */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.vcl-module .btn--shiny { position: relative; overflow: hidden; border-radius: 9999px; padding: 1.25rem 2.75rem; font-size: 1.25rem; font-weight: 500; color: #ffffff; background: linear-gradient(#000000, #000000) padding-box, conic-gradient(from var(--gradient-angle), transparent 0%, var(--teal-500) 10%, var(--teal-400) 20%, var(--purple-400) 30%, var(--teal-500) 40%, transparent 50%) border-box; border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); cursor: pointer; isolation: isolate; animation: vcl-shiny-border-spin 3s linear infinite; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-body); }
@keyframes vcl-shiny-border-spin { to { --gradient-angle: 360deg; } }
.vcl-module .btn--shiny:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 30px rgba(20, 184, 166, 0.4); }
.vcl-module .btn--shiny:active { transform: translateY(1px); }
.vcl-module .btn--shiny::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(20, 184, 166, 0.08), transparent 40%); pointer-events: none; }
.vcl-module .btn--shiny span,
.vcl-module .btn--shiny i,
.vcl-module .btn--shiny svg { position: relative; z-index: 2; }
.vcl-module .btn--shiny.copied { background: linear-gradient(rgba(10, 15, 20, 0.95), rgba(10, 15, 20, 0.95)) padding-box, conic-gradient(from var(--gradient-angle), transparent 0%, #22c55e 10%, #4ade80 20%, #22c55e 30%, transparent 40%) border-box; box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
.vcl-module .btn--shiny-pink { background: linear-gradient(#000000, #000000) padding-box, conic-gradient(from var(--gradient-angle), transparent 0%, #ec4899 10%, #f472b6 20%, #a855f7 30%, #ec4899 40%, transparent 50%) border-box; }
.vcl-module .btn--shiny-pink:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 30px rgba(236, 72, 153, 0.4); }
.vcl-module .btn--shiny-pink::before { background: radial-gradient(circle at 50% 120%, rgba(236, 72, 153, 0.15), transparent 60%); }
.vcl-module .btn.btn-warning { background: rgba(250, 204, 21, 0.1); border: 1px solid rgba(250, 204, 21, 0.3); color: var(--warning); padding: 12px 24px; border-radius: var(--radius-lg); cursor: pointer; font-size: 1rem; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.vcl-module .btn.btn-warning:hover { background: rgba(250, 204, 21, 0.2); }

/* ------------------------------------------------------------
   10. Card Grid & Card Title
   ------------------------------------------------------------ */
.vcl-module .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 28px; margin-top: 32px; }
.vcl-module .card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

/* ------------------------------------------------------------
   11. Step List
   ------------------------------------------------------------ */
.vcl-module .step-list { list-style: none; padding: 0; margin: 0; }
.vcl-module .step-item { display: flex; align-items: flex-start; gap: 20px; padding: 28px; background: rgba(0, 0, 0, 0.85); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); margin-bottom: 16px; transition: all 0.3s var(--ease-out); }
.vcl-module .step-item.completed { background: var(--success-muted); border-color: rgba(34, 197, 94, 0.3); }
.vcl-module .step-checkbox { position: relative; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: all 0.3s var(--ease-out); animation: vcl-checkboxPulse 2s ease-in-out infinite; }
@keyframes vcl-checkboxPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); } 50% { box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.15); } }
.vcl-module .step-checkbox:not(.checked)::before { content: '\2713'; font-size: 14px; color: var(--text-muted); opacity: 0; transition: opacity 0.2s ease; }
.vcl-module .step-checkbox:hover { border-color: var(--teal-400); background: rgba(20, 184, 166, 0.1); transform: scale(1.1); }
.vcl-module .step-checkbox:not(.checked):hover::before { opacity: 0.6; }
.vcl-module .step-checkbox.checked { background: var(--success); border-color: var(--success); animation: none; }
.vcl-module .step-checkbox.checked::before { display: none; }
.vcl-module .step-checkbox.checked::after { content: ''; width: 12px; height: 8px; border: 2px solid white; border-top: none; border-right: none; transform: rotate(-45deg); }
.vcl-module .step-item.locked { opacity: 0.5; pointer-events: none; }
.vcl-module .step-item.locked .step-checkbox { animation: none; border-color: var(--border-subtle); cursor: not-allowed; }
.vcl-module .step-item.current { border-color: rgba(20, 184, 166, 0.4); background: rgba(10, 20, 25, 0.95); margin-top: -2px; box-shadow: 0 0 20px rgba(20, 184, 166, 0.15); }
.vcl-module .step-content { flex: 1; text-align: left; }
.vcl-module .step-title { font-weight: 500; font-size: 1.25rem; margin-bottom: 8px; color: var(--text-primary); }
.vcl-module .step-desc { font-size: 1.125rem; color: var(--text-primary); line-height: 1.6; }

/* ------------------------------------------------------------
   12. Ideas List
   ------------------------------------------------------------ */
.vcl-module .ideas-list-container { max-height: 400px; overflow-y: auto; }
.vcl-module .ideas-list { display: flex; flex-direction: column; gap: 10px; }
.vcl-module .idea-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-subtle); border-radius: 10px; gap: 20px; transition: all 0.2s ease; }
.vcl-module .idea-item:hover { background: rgba(0, 0, 0, 0.7); border-color: rgba(236, 72, 153, 0.3); }
.vcl-module .idea-item-text { color: var(--text-primary); font-size: 1.05rem; line-height: 1.5; flex: 1; }
.vcl-module .idea-item-author { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; }

/* ------------------------------------------------------------
   13. Gallery
   ------------------------------------------------------------ */
.vcl-module .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 28px; }
.vcl-module .gallery-card { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(20, 184, 166, 0.15); border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s var(--ease-out); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); cursor: pointer; }
.vcl-module .gallery-card:hover { background: rgba(0, 0, 0, 0.4); transform: translateY(-4px); border-color: rgba(20, 184, 166, 0.4); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(20, 184, 166, 0.2); }
.vcl-module .gallery-image { width: 100%; height: 160px; background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(168, 85, 247, 0.1)); display: flex; align-items: center; justify-content: center; color: var(--text-muted); overflow: hidden; }
.vcl-module .gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.vcl-module .gallery-info { padding: 20px; }
.vcl-module .gallery-title { font-weight: 600; margin-bottom: 6px; font-size: 1.0625rem; }
.vcl-module .gallery-author { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 10px; }
.vcl-module .gallery-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; }

/* ------------------------------------------------------------
   14. Rating & Status
   ------------------------------------------------------------ */
.vcl-module .rating-container { display: flex; gap: 10px; margin: 16px 0; }
.vcl-module .rating-btn { width: 48px; height: 48px; border-radius: var(--radius-lg); border: 1px solid var(--border-default); background: rgba(255, 255, 255, 0.02); color: var(--text-muted); font-size: 1.125rem; font-family: var(--font-body); cursor: pointer; transition: all 0.3s var(--ease-out); }
.vcl-module .rating-btn:hover,
.vcl-module .rating-btn.selected { background: rgba(20, 184, 166, 0.15); border-color: var(--teal-400); color: var(--teal-400); }
.vcl-module .status-message { padding: 14px 18px; border-radius: var(--radius-lg); margin: 20px 0; display: none; font-size: 0.9375rem; }
.vcl-module .status-message.success { display: block; background: var(--success-muted); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--success); }
.vcl-module .status-message.error { display: block; background: var(--error-muted); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--error); }

/* ------------------------------------------------------------
   15. Quote Box
   ------------------------------------------------------------ */
.vcl-module .quote-box { background: rgba(20, 184, 166, 0.05); border-left: 4px solid var(--teal-400); padding: 28px 32px; margin: 40px 0; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.vcl-module .quote-box p { color: var(--text-secondary); font-size: 1.25rem; line-height: 1.7; margin: 0; }
.vcl-module .quote-box strong { color: var(--text-primary); }

/* ------------------------------------------------------------
   16. Background Effects
   ------------------------------------------------------------ */
.vcl-module .landing-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.vcl-module .landing-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.vcl-module .landing-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.vcl-module .landing-orb--purple { width: 1000px; height: 1000px; background: radial-gradient(circle, var(--purple-400) 0%, rgba(168, 85, 247, 0.2) 30%, transparent 60%); opacity: 0.35; top: -300px; right: -200px; }
.vcl-module .landing-orb--blue { width: 900px; height: 900px; background: radial-gradient(circle, var(--blue-400) 0%, rgba(59, 130, 246, 0.2) 30%, transparent 60%); opacity: 0.4; bottom: -200px; left: -150px; }
.vcl-module .landing-orb--teal { width: 800px; height: 800px; background: radial-gradient(circle, var(--teal-400) 0%, rgba(20, 184, 166, 0.2) 30%, transparent 60%); opacity: 0.25; top: 30%; left: 40%; }
.vcl-module .landing-particles { position: absolute; inset: 0; }
.vcl-module .landing-particles canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ------------------------------------------------------------
   17. Video Elements
   ------------------------------------------------------------ */
.vcl-module .video-preview { width: 180px; height: 100px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; position: relative; border: 2px solid var(--border-default); transition: all 0.3s var(--ease-out); flex-shrink: 0; }
.vcl-module .video-preview:hover { border-color: var(--teal-400); transform: scale(1.02); box-shadow: 0 0 20px var(--teal-glow); }
.vcl-module .video-preview video { width: 100%; height: 100%; object-fit: cover; }
.vcl-module .video-preview .expand-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(0, 0, 0, 0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.vcl-module .video-preview:hover .expand-icon { opacity: 1; }
.vcl-module .video-preview--large { width: 60vw; max-width: 700px; height: auto; aspect-ratio: 16 / 9; margin: 0 auto 16px auto; }
.vcl-module .video-preview--large .expand-icon { width: 56px; height: 56px; }
.vcl-module .video-preview--inline { width: 80px; height: 45px; border-radius: var(--radius-sm); }
.vcl-module .video-preview--inline .expand-icon { display: none; }
.vcl-module .helper-video-btn { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-default); border-radius: var(--radius-lg); cursor: pointer; transition: all 0.2s ease; color: var(--text-secondary); font-size: 0.9rem; }
.vcl-module .helper-video-btn:hover { background: rgba(20, 184, 166, 0.1); border-color: var(--teal-400); color: var(--teal-400); }
.vcl-module .video-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(12px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 48px; }
.vcl-module .video-modal.active { display: flex; animation: vcl-fadeIn 0.3s var(--ease-out); }
@keyframes vcl-fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vcl-module .video-modal-content { position: relative; width: 80vw; max-height: 80vh; animation: vcl-scaleIn 0.3s var(--ease-spring); }
@keyframes vcl-scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.vcl-module .video-modal video { width: 100%; max-height: 80vh; border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.vcl-module .video-modal-close { position: absolute; top: 12px; right: 12px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(0, 0, 0, 0.7); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; backdrop-filter: blur(4px); }
.vcl-module .video-modal-close:hover { background: rgba(239, 68, 68, 0.6); border-color: var(--error); color: #fff; }

/* ------------------------------------------------------------
   17b. Example Project Modal
   ------------------------------------------------------------ */
.vcl-module .example-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(8px); z-index: 10000; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.vcl-module .example-modal.active { display: flex; animation: vcl-fadeIn 0.3s var(--ease-out); }
.vcl-module .example-modal-content { position: relative; width: 90vw; height: 85vh; max-width: 1200px; display: flex; flex-direction: column; animation: vcl-scaleIn 0.3s var(--ease-spring); }
.vcl-module .example-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: rgba(10, 15, 20, 0.95); border: 1px solid var(--border-default); border-bottom: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex-shrink: 0; }
.vcl-module .example-modal-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-primary); }
.vcl-module .example-modal-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-default); background: rgba(0, 0, 0, 0.6); color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; }
.vcl-module .example-modal-close:hover { background: rgba(239, 68, 68, 0.3); border-color: var(--error); color: var(--error); }
.vcl-module .example-modal-iframe { flex: 1; width: 100%; border: 1px solid var(--border-default); border-top: 1px solid var(--border-subtle); border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: #ffffff; box-shadow: var(--shadow-xl); }

/* ------------------------------------------------------------
   18. Unstuck Panel
   ------------------------------------------------------------ */
.vcl-module .unstuck-panel { background: var(--warning-muted); border: 1px solid rgba(250, 204, 21, 0.3); border-radius: var(--radius-xl); padding: 24px; margin-top: 32px; display: none; }
.vcl-module .unstuck-panel.visible { display: block; animation: vcl-slideIn 0.3s var(--ease-out); }
.vcl-module .unstuck-panel h3 { color: var(--warning); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.vcl-module .code-block { background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 16px; font-family: var(--font-mono); font-size: 0.95rem; color: var(--text-secondary); white-space: pre-wrap; margin: 12px 0; }

/* ------------------------------------------------------------
   19. Vibe Flow (Slide 2)
   ------------------------------------------------------------ */
.vcl-module .vibe-flow-container { width: 100%; max-width: none; margin: 16px 0 8px 0; padding: 20px 24px; }
.vcl-module .vibe-flow { display: flex; flex-direction: row; gap: 16px; justify-content: center; align-items: stretch; }
.vcl-module .vibe-flow-step { flex: 1; max-width: 280px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 14px; background: rgba(0, 0, 0, 0.4); border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.06); transition: all 0.4s var(--ease-out); position: relative; opacity: 0; transform: translateY(30px); }
.vcl-module .vibe-flow-step:hover { background: rgba(0, 0, 0, 0.6); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); }
.vcl-module .slide.active .vibe-flow-step:nth-child(1) { animation: vcl-vibeStepIn 0.6s var(--ease-out) 0.2s forwards; }
.vcl-module .slide.active .vibe-flow-step:nth-child(2) { animation: vcl-vibeStepIn 0.6s var(--ease-out) 0.45s forwards; }
.vcl-module .slide.active .vibe-flow-step:nth-child(3) { animation: vcl-vibeStepIn 0.6s var(--ease-out) 0.7s forwards; }
.vcl-module .slide.active .vibe-flow-step:nth-child(4) { animation: vcl-vibeStepIn 0.6s var(--ease-out) 0.95s forwards; }
@keyframes vcl-vibeStepIn { to { opacity: 1; transform: translateY(0); } }
.vcl-module .vibe-flow-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid; margin-bottom: 12px; position: relative; z-index: 2; transition: all 0.3s ease; }
.vcl-module .vibe-flow-icon i { width: 28px !important; height: 28px !important; }
.vcl-module .vibe-flow-icon:hover { transform: scale(1.1); }
/* Icon pulse animations */
.vcl-module .slide.active .vibe-flow-step:nth-child(1) .vibe-flow-icon { animation: vcl-iconPulsePurple 3s ease-in-out infinite 0.8s; }
.vcl-module .slide.active .vibe-flow-step:nth-child(2) .vibe-flow-icon { animation: vcl-iconPulseTeal 3s ease-in-out infinite 1.1s; }
.vcl-module .slide.active .vibe-flow-step:nth-child(3) .vibe-flow-icon { animation: vcl-iconPulseGreen 3s ease-in-out infinite 1.4s; }
.vcl-module .slide.active .vibe-flow-step:nth-child(4) .vibe-flow-icon { animation: vcl-iconPulseBlue 3s ease-in-out infinite 1.7s; }
@keyframes vcl-iconPulsePurple { 0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); } 50% { box-shadow: 0 0 50px rgba(168, 85, 247, 0.6), 0 0 80px rgba(168, 85, 247, 0.3); } }
@keyframes vcl-iconPulseTeal { 0%, 100% { box-shadow: 0 0 20px rgba(20, 184, 166, 0.3); } 50% { box-shadow: 0 0 50px rgba(20, 184, 166, 0.6), 0 0 80px rgba(20, 184, 166, 0.3); } }
@keyframes vcl-iconPulseGreen { 0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); } 50% { box-shadow: 0 0 50px rgba(34, 197, 94, 0.6), 0 0 80px rgba(34, 197, 94, 0.3); } }
@keyframes vcl-iconPulseBlue { 0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); } 50% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.6), 0 0 80px rgba(59, 130, 246, 0.3); } }
/* Arrows between steps (absolutely positioned inside step) */
.vcl-module .vibe-flow-arrow { position: absolute; right: -22px; top: 42px; z-index: 10; opacity: 0; }
.vcl-module .slide.active .vibe-flow-step:nth-child(1) .vibe-flow-arrow { animation: vcl-arrowFadeIn 0.4s ease-out 0.9s forwards, vcl-arrowBounce 2s ease-in-out 1.3s infinite; }
.vcl-module .slide.active .vibe-flow-step:nth-child(2) .vibe-flow-arrow { animation: vcl-arrowFadeIn 0.4s ease-out 1.15s forwards, vcl-arrowBounce 2s ease-in-out 1.55s infinite; }
.vcl-module .slide.active .vibe-flow-step:nth-child(3) .vibe-flow-arrow { animation: vcl-arrowFadeIn 0.4s ease-out 1.4s forwards, vcl-arrowBounce 2s ease-in-out 1.8s infinite; }
@keyframes vcl-arrowFadeIn { to { opacity: 1; } }
@keyframes vcl-arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.vcl-module .vibe-flow-arrow i { color: var(--teal-400); filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.3)); width: 20px !important; height: 20px !important; }
.vcl-module .vibe-flow-content { flex: 1; display: flex; flex-direction: column; }
.vcl-module .vibe-flow-label { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; text-shadow: 0 0 20px currentColor; }
.vcl-module .vibe-flow-label i { width: 16px !important; height: 16px !important; }
.vcl-module .vibe-flow-desc { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; line-height: 1.4; opacity: 0.7; }
.vcl-module .vibe-flow-example { margin-top: auto; padding: 10px 12px; background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); border-radius: 8px; font-size: 0.85rem; color: var(--text-primary); font-style: italic; line-height: 1.4; text-align: left; width: 100%; }
.vcl-module .vibe-flow-step:nth-child(3) .vibe-flow-example { background: rgba(34, 197, 94, 0.12); border-color: rgba(34, 197, 94, 0.25); }
.vcl-module .vibe-flow-code { margin-top: auto; padding: 10px 12px; background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(20, 184, 166, 0.3); border-radius: 8px; font-family: var(--font-mono); font-size: 0.75rem; text-align: left; min-height: 90px; position: relative; overflow: hidden; }
.vcl-module .vibe-flow-code .code-typing-container { background: none; padding: 0; border-radius: 0; }
/* Comparison row */
@property --vcl-comparison-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes vcl-comparison-spin { to { --vcl-comparison-angle: 360deg; } }
.vcl-module .vibe-flow-comparison { display: flex; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.15); opacity: 0; }
.vcl-module .slide.active .vibe-flow-comparison { animation: vcl-vibeStepIn 0.6s var(--ease-out) 1s forwards; }
.vcl-module .vibe-flow-comparison > div { flex: 1; text-align: center; padding: 14px 20px; border-radius: 12px; transition: all 0.3s ease; }
.vcl-module .vibe-flow-comparison > div:first-child { background: rgba(255, 255, 255, 0.02); }
.vcl-module .vibe-flow-comparison > div:last-child { position: relative; background: linear-gradient(rgba(10, 15, 20, 0.95), rgba(10, 15, 20, 0.95)) padding-box, conic-gradient(from var(--vcl-comparison-angle), transparent 0%, var(--teal-500) 10%, var(--teal-400) 20%, var(--purple-400) 30%, var(--teal-500) 40%, transparent 50%) border-box; border: 2px solid transparent; border-radius: 12px; animation: vcl-comparison-spin 3s linear infinite; }
.vcl-module .vibe-flow-comparison > div:last-child::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(20, 184, 166, 0.15), transparent 50%); border-radius: inherit; pointer-events: none; }
.vcl-module .vibe-flow-comparison > div:last-child:hover { box-shadow: 0 0 40px rgba(20, 184, 166, 0.3); transform: scale(1.02); }
.vcl-module .vibe-flow-comparison .comparison-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; opacity: 0.7; }
.vcl-module .vibe-flow-comparison .comparison-value { font-size: 1.35rem; font-weight: 400; }

/* Vibe Chat Area */
.vcl-module .vibe-chat-area { flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 70px; }
.vcl-module .vibe-chat-input { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(168, 85, 247, 0.2); border-radius: 8px; }
.vcl-module .vibe-chat-input-text { color: var(--text-muted); font-size: 0.8rem; display: flex; align-items: center; gap: 4px; }
.vcl-module .vibe-chat-cursor { display: inline-block; width: 2px; height: 14px; background: var(--purple-400); animation: vcl-blink 1s step-end infinite; }
@keyframes vcl-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.vcl-module .vibe-chat-thread { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vcl-module .vibe-chat-bubble { padding: 6px 10px; border-radius: 8px; font-size: 0.75rem; line-height: 1.3; max-width: 90%; }
.vcl-module .vibe-chat-bubble--user { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.25); align-self: flex-end; color: var(--text-primary); }
.vcl-module .vibe-chat-bubble--ai { background: rgba(20, 184, 166, 0.15); border: 1px solid rgba(20, 184, 166, 0.25); align-self: flex-start; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.vcl-module .vibe-chat-bubble--ai .check-icon { color: var(--success); }

/* Canvas Mockup */
.vcl-module .canvas-mockup { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0; background: rgba(0, 0, 0, 0.3); border-radius: var(--radius-md); overflow: hidden; margin-top: 12px; }
.vcl-module .mockup-panel { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.vcl-module .mockup-panel-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; margin-bottom: 2px; }
.vcl-module .mockup-divider { background: var(--border-default); }
.vcl-module .mockup-bubble { border-radius: 4px; opacity: 0; animation: vcl-fadeIn 0.9s var(--ease-out) forwards; }
.vcl-module .mockup-bubble.mockup-bubble--user { height: auto; width: 100%; padding: 6px 10px; background: rgba(20, 184, 166, 0.15); font-size: 0.7rem; line-height: 1.4; color: var(--teal-300); animation-delay: 1.5s; }
.vcl-module .mockup-bubble.mockup-bubble--ai { height: auto; width: 100%; padding: 6px 10px; background: rgba(168, 85, 247, 0.1); font-size: 0.65rem; line-height: 1.4; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; animation-delay: 2.4s; }
@keyframes vcl-mockupLine { from { opacity: 0; width: 0; } to { opacity: 1; } }
.vcl-module .mockup-code-line { height: 6px; border-radius: 3px; opacity: 0; animation: vcl-mockupLine 0.9s var(--ease-out) forwards; }
.vcl-module .mockup-code-line:nth-child(1) { width: 60%; background: rgba(96, 165, 250, 0.3); animation-delay: 1.8s; }
.vcl-module .mockup-code-line:nth-child(2) { width: 80%; background: rgba(20, 184, 166, 0.2); animation-delay: 2.4s; }
.vcl-module .mockup-code-line:nth-child(3) { width: 45%; background: rgba(251, 191, 36, 0.2); animation-delay: 3.0s; }
.vcl-module .mockup-code-line:nth-child(4) { width: 70%; background: rgba(168, 85, 247, 0.2); animation-delay: 3.6s; }
.vcl-module .mockup-preview-btn { margin-top: auto; padding: 6px; background: rgba(20, 184, 166, 0.15); border: 1px solid rgba(20, 184, 166, 0.3); border-radius: var(--radius-sm); color: var(--teal-400); font-size: 0.65rem; text-align: center; opacity: 0; animation: vcl-fadeIn 0.9s ease 4.2s forwards; }

/* Thinking Mockup — Gemini model dropdown */
.vcl-module .thinking-mockup { margin-top: 12px; }
.vcl-module .mode-dropdown { background: rgba(30, 30, 30, 0.95); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); padding: 8px 0; text-align: left; }
.vcl-module .mode-dropdown-header { padding: 8px 16px 6px; font-size: 0.75rem; font-weight: 500; color: var(--text-secondary); }
.vcl-module .mode-dropdown-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; transition: background 0.15s ease; }
.vcl-module .mode-dropdown-item--target { background: rgba(168, 85, 247, 0.1); border-left: 2px solid var(--purple-400); }
.vcl-module .mode-dropdown-name { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.vcl-module .mode-dropdown-desc { font-size: 0.65rem; color: var(--text-muted); line-height: 1.3; margin-top: 1px; }
.vcl-module .mode-dropdown-check { flex-shrink: 0; }

/* Code Typing Container */
.vcl-module .code-typing-container { flex: 1; background: rgba(0, 0, 0, 0.3); border-radius: var(--radius-sm); padding: 10px; font-family: var(--font-mono); font-size: 0.7rem; overflow: hidden; }
.vcl-module .code-line { opacity: 0; transform: translateX(-10px); animation: vcl-codeLine 0.3s var(--ease-out) forwards; line-height: 1.8; }
.vcl-module .code-line:nth-child(1) { animation-delay: 0.3s; }
.vcl-module .code-line:nth-child(2) { animation-delay: 0.5s; }
.vcl-module .code-line:nth-child(3) { animation-delay: 0.7s; }
.vcl-module .code-line:nth-child(4) { animation-delay: 0.9s; }
.vcl-module .code-line:nth-child(5) { animation-delay: 1.1s; }
.vcl-module .code-line:nth-child(6) { animation-delay: 1.3s; }
@keyframes vcl-codeLine { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes vcl-typeIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.vcl-module .code-cursor { display: inline-block; width: 6px; height: 12px; background: var(--teal-400); animation: vcl-blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; }

/* ------------------------------------------------------------
   20. Build Section Stack, Inspiration Cards, Featured Card
   ------------------------------------------------------------ */
.vcl-module .build-section-stack { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 32px; }

/* Featured Card */
@property --featured-gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes vcl-featured-border-spin {
    to { --featured-gradient-angle: 360deg; }
}

@keyframes vcl-featured-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(20, 184, 166, 0.15), 0 0 60px rgba(168, 85, 247, 0.1); }
    50% { box-shadow: 0 0 40px rgba(20, 184, 166, 0.25), 0 0 80px rgba(168, 85, 247, 0.15); }
}

.vcl-module .featured-card { position: relative; border-radius: var(--radius-xl); padding: 2px; background: conic-gradient(from var(--featured-gradient-angle), transparent 0%, var(--teal-500) 10%, var(--teal-400) 20%, var(--purple-400) 30%, var(--teal-500) 40%, transparent 50%); animation: vcl-featured-border-spin 4s linear infinite, vcl-featured-pulse 3s ease-in-out infinite; }
.vcl-module .featured-card-inner { background: var(--bg-card); border-radius: calc(var(--radius-xl) - 2px); padding: 36px; position: relative; overflow: hidden; }
.vcl-module .featured-card-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(20, 184, 166, 0.08), transparent 50%); pointer-events: none; }
.vcl-module .featured-card-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.3); border-radius: 9999px; font-size: 0.875rem; color: var(--teal-400); margin-bottom: 20px; font-weight: 500; }
.vcl-module .featured-card-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
.vcl-module .featured-card-desc { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; max-width: 600px; }
.vcl-module .featured-card-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.vcl-module .featured-card-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.9375rem; color: var(--text-muted); }

/* Inspiration Cards */
.vcl-module .inspiration-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 28px; transition: all 0.3s var(--ease-out); cursor: pointer; position: relative; overflow: hidden; }
.vcl-module .inspiration-card:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.vcl-module .inspiration-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-500), var(--purple-400)); opacity: 0; transition: opacity 0.3s ease; }
.vcl-module .inspiration-card:hover::before { opacity: 1; }
.vcl-module .inspiration-card-icon { width: 48px; height: 48px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.vcl-module .inspiration-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.vcl-module .inspiration-card-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.vcl-module .inspiration-card-tag { display: inline-block; padding: 4px 10px; background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.2); border-radius: 9999px; font-size: 0.8rem; color: var(--teal-400); }
.vcl-module .inspiration-card--clickable:hover .inspiration-card-cta { opacity: 1; color: var(--teal-400); }
.vcl-module .inspiration-card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: var(--text-muted); opacity: 0.6; transition: all 0.3s ease; margin-top: 8px; }

/* ------------------------------------------------------------
   21. Utility Classes
   ------------------------------------------------------------ */
.vcl-module .mb-sm { margin-bottom: 12px; }
.vcl-module .mb-md { margin-bottom: 20px; }
.vcl-module .mb-lg { margin-bottom: 32px; }
.vcl-module .mb-xl { margin-bottom: 48px; }
.vcl-module .mt-lg { margin-top: 32px; }
.vcl-module .mt-xl { margin-top: 48px; }
.vcl-module .text-center { text-align: center; }
.vcl-module .max-w-sm { max-width: 600px; }
.vcl-module .max-w-md { max-width: 800px; }
.vcl-module .max-w-lg { max-width: 1000px; }

/* ------------------------------------------------------------
   22. Empty State, Refresh Button, Spinner
   ------------------------------------------------------------ */
.vcl-module .empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.vcl-module .empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3; }
.vcl-module .refresh-btn { background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.3); color: var(--teal-400); padding: 10px 18px; border-radius: var(--radius-md); cursor: pointer; font-size: 0.9375rem; font-family: var(--font-body); transition: all 0.3s var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.vcl-module .refresh-btn:hover { background: rgba(20, 184, 166, 0.2); }
.vcl-module .spinner { width: 20px; height: 20px; border: 2px solid rgba(20, 184, 166, 0.2); border-top-color: var(--teal-400); border-radius: 50%; animation: vcl-spin 0.8s linear infinite; display: inline-block; }
@keyframes vcl-spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------
   23. Upload Area, Progress Bar
   ------------------------------------------------------------ */
.vcl-module .upload-area { border: 2px dashed var(--border-default); border-radius: var(--radius-xl); padding: 40px; text-align: center; cursor: pointer; transition: all 0.3s var(--ease-out); margin: 20px 0; }
.vcl-module .upload-area:hover { border-color: var(--teal-400); background: rgba(20, 184, 166, 0.05); }
.vcl-module .upload-area.has-image { border-style: solid; border-color: var(--success); padding: 12px; }
.vcl-module .upload-preview { max-width: 100%; max-height: 200px; border-radius: var(--radius-md); }
.vcl-module .upload-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.4; }
.vcl-module .progress-bar { width: 100%; height: 4px; background: rgba(20, 184, 166, 0.2); border-radius: 2px; overflow: hidden; margin-top: 12px; display: none; }
.vcl-module .progress-bar.active { display: block; }
.vcl-module .progress-bar-fill { height: 100%; width: 0%; background: var(--teal-400); border-radius: 2px; box-shadow: 0 0 8px var(--teal-400); animation: vcl-progress-indeterminate 1.5s ease-in-out infinite; }
@keyframes vcl-progress-indeterminate { 0% { width: 0%; margin-left: 0%; } 50% { width: 60%; margin-left: 20%; } 100% { width: 0%; margin-left: 100%; } }

/* ------------------------------------------------------------
   24. Code Block Editable
   ------------------------------------------------------------ */
.vcl-module .code-block-editable { width: 100%; padding: 16px; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-default); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: 0.95rem; color: var(--teal-400); resize: none; overflow: hidden; field-sizing: content; box-sizing: border-box; }
.vcl-module .code-block-editable:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15); }

/* ------------------------------------------------------------
   25. Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
    .vcl-module .slide { max-width: 92vw; padding: 80px 30px 80px; }
    .vcl-module .card-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .vcl-module .vibe-flow { flex-direction: column; align-items: center; gap: 24px; }
    .vcl-module .vibe-flow-step { max-width: 100%; width: 100%; }
    .vcl-module .vibe-flow-arrow { display: none; }
    .vcl-module .vibe-flow-comparison { flex-direction: column; gap: 16px; }
}
@media (max-width: 768px) {
    .vcl-module .header { padding: 16px 20px; }
    .vcl-module .logo-subtitle { display: none; }
    .vcl-module .slide { padding: 70px 20px 80px; max-width: 95vw; }
    .vcl-module .controls { bottom: 20px; padding: 10px 16px; gap: 12px; }
    .vcl-module .controls-dots { display: none; }
    .vcl-module .text-display { font-size: clamp(2rem, 6vw, 3rem); }
    .vcl-module .text-section { font-size: clamp(1.5rem, 4vw, 2rem); }
    .vcl-module .glass-card { padding: 24px; }
    .vcl-module .gallery-grid { grid-template-columns: 1fr; }
    .vcl-module .example-modal-content { width: 95vw; height: 80vh; }
    .vcl-module .example-modal-header { padding: 10px 16px; }
    .vcl-module .example-modal-title { font-size: 1rem; }
}
