/* ============================================================
   Gems Workshop Module - Scoped CSS
   All selectors prefixed with .gws-module to avoid conflicts
   Pink accent theme (#ec4899 / var(--pink-500))
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Variables
   ------------------------------------------------------------ */
.gws-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);
    --bg-base: #0d1117;
    --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);
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-glow: rgba(236, 72, 153, 0.3);
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.3);
    --green-400: #4ade80;
    --green-500: #22c55e;
    --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;
    --radius-full: 9999px;
    --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
   ------------------------------------------------------------ */
.gws-module[data-theme="light"] {
    --bg-primary: #F9FAFB;
    --bg-elevated: #FFFFFF;
    --bg-surface: #F3F4F6;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFFFF;
    --bg-base: #F3F4F6;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-subtle: #F3F4F6;
    --border-default: #E5E7EB;
    --border-accent: #D1D5DB;
    --pink-glow: rgba(236, 72, 153, 0.15);
    --purple-glow: rgba(139, 92, 246, 0.15);
    --blue-glow: rgba(59, 130, 246, 0.15);
    --teal-glow: rgba(20, 184, 166, 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);
}

.gws-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);
}

.gws-module[data-theme="light"] .header-progress { background: #E5E7EB; }
.gws-module[data-theme="light"] .header-progress-bar { background: linear-gradient(90deg, #ec4899, #db2777, #8b5cf6, #a78bfa, #ec4899) !important; background-size: 300% 100% !important; animation: gws-barColorCycle 8s ease-in-out infinite !important; box-shadow: 0 0 8px rgba(236, 72, 153, 0.5) !important; }

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

.gws-module[data-theme="light"]::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.3) 0%, rgba(196, 181, 253, 0.2) 50%, rgba(253, 186, 116, 0.1) 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.gws-module[data-theme="light"] .landing-bg { opacity: var(--ambient-opacity); }
.gws-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); }
.gws-module[data-theme="light"] .landing-orb { opacity: 0.2; }

.gws-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;
}
.gws-module[data-theme="light"] .glass-card:hover { background: #FFFFFF; transform: translateY(-1px); border-color: rgba(236, 72, 153, 0.15); box-shadow: 0 6px 15px rgba(2, 6, 23, 0.08); }
.gws-module[data-theme="light"] .glass-card--highlight { background: #FFFFFF; border-color: #E5E7EB; }

.gws-module[data-theme="light"] .controls { background: rgba(255, 255, 255, 0.9); border-color: #E5E7EB; }
.gws-module[data-theme="light"] .control-btn { border-color: #D1D5DB; color: #6B7280; }
.gws-module[data-theme="light"] .control-btn:hover:not(:disabled) { background: rgba(236, 72, 153, 0.1); border-color: #ec4899; color: #ec4899; }
.gws-module[data-theme="light"] .controls-dot { background: #D1D5DB; }
.gws-module[data-theme="light"] .controls-dot.active { background: #be185d; box-shadow: 0 0 10px rgba(190, 24, 93, 0.4); }
.gws-module[data-theme="light"] .controls-dot.completed { background: rgba(34, 197, 94, 0.7); }
.gws-module[data-theme="light"] .controls-counter { color: #6B7280; }

.gws-module[data-theme="light"] .btn--shiny {
    background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(236, 72, 153, 0.4) 0%, transparent 50%), linear-gradient(135deg, #831843, #be185d, #ec4899);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 8px 25px -8px rgba(236, 72, 153, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: none;
}
.gws-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%); }

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

/* Light mode - Gem Compare */
.gws-module[data-theme="light"] .gem-compare--before { background: #FFFFFF; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.gws-module[data-theme="light"] .gem-compare--after {
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(253, 242, 248, 1)) padding-box, conic-gradient(from var(--gws-gradient-angle), transparent 0%, #ec4899 8%, #f472b6 18%, #a855f7 28%, #ec4899 38%, transparent 48%) border-box;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 15px rgba(236, 72, 153, 0.1);
}
.gws-module[data-theme="light"] .gem-compare-icon--before { background: #F3F4F6; border-color: var(--border-default); }
.gws-module[data-theme="light"] .gem-compare-icon--after { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1)); border-color: rgba(236, 72, 153, 0.25); }
.gws-module[data-theme="light"] .gem-compare-label--before { color: #9CA3AF; }
.gws-module[data-theme="light"] .gem-compare-label--after { color: #be185d; text-shadow: none; }
.gws-module[data-theme="light"] .gem-compare-text { color: #6B7280; }
.gws-module[data-theme="light"] .gem-compare-text em { color: #1F2937; }

/* Light mode - Gem Flow */
.gws-module[data-theme="light"] .gem-flow-step { background: #FFFFFF; border-color: var(--border-default); }
.gws-module[data-theme="light"] .gem-flow-step:hover { background: #FFFFFF; border-color: #D0D0D0; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); }
.gws-module[data-theme="light"] .gem-flow-file { background: rgba(20, 184, 166, 0.06); border: 1px solid rgba(20, 184, 166, 0.25); color: #0D7377; }
.gws-module[data-theme="light"] .gem-flow-upload-target { border-color: rgba(20, 184, 166, 0.3); color: rgba(13, 115, 119, 0.5); }
.gws-module[data-theme="light"] .gem-flow-network .net-line { stroke: rgba(99, 102, 241, 0.2); }
.gws-module[data-theme="light"] .gem-flow-network .net-center { fill: rgba(99, 102, 241, 0.15); stroke: rgba(99, 102, 241, 0.4); }
.gws-module[data-theme="light"] .gem-flow-network .net-node { fill: rgba(99, 102, 241, 0.3); }

/* Light mode - Form Elements */
.gws-module[data-theme="light"] .form-input,
.gws-module[data-theme="light"] .form-select,
.gws-module[data-theme="light"] .form-textarea { background: #FFFFFF; border-color: var(--border-default); color: #1F2937; }
.gws-module[data-theme="light"] .form-input:focus,
.gws-module[data-theme="light"] .form-select:focus,
.gws-module[data-theme="light"] .form-textarea:focus { background: #FFFFFF; border-color: var(--pink-500); box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1); }

/* Light mode - Step Cards */
.gws-module[data-theme="light"] .step-item { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .step-item.completed { background: rgba(236, 72, 153, 0.06) !important; border-color: rgba(236, 72, 153, 0.2) !important; }
.gws-module[data-theme="light"] .step-checkbox { border-color: var(--border-accent) !important; background: #FFFFFF !important; }
.gws-module[data-theme="light"] .step-checkbox:hover { border-color: var(--pink-500) !important; background: rgba(236, 72, 153, 0.1) !important; }
.gws-module[data-theme="light"] .step-checkbox.checked { background: var(--pink-500) !important; border-color: var(--pink-500) !important; }

/* Light mode - Quote Box */
.gws-module[data-theme="light"] .quote-box { background: linear-gradient(135deg, rgba(252, 231, 243, 0.3), rgba(196, 181, 253, 0.15)); border-color: var(--border-default); }
.gws-module[data-theme="light"] .quote-box p { color: #1F2937; }

/* Light mode - Inspiration Cards */
.gws-module[data-theme="light"] .inspiration-card { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .inspiration-card:hover { background: #FFFFFF !important; border-color: #D0D0D0 !important; }

/* Light mode - Model Cards */
.gws-module[data-theme="light"] .model-card { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .model-card:hover { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); }

/* Light mode - Scaling Cards */
.gws-module[data-theme="light"] .scaling-card { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .scaling-card:hover { border-color: #D0D0D0 !important; }

/* Light mode - Gallery Cards */
.gws-module[data-theme="light"] .gallery-card { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .gallery-card:hover { border-color: #D0D0D0 !important; }

/* Light mode - Rating & Feedback */
.gws-module[data-theme="light"] .rating-btn,
.gws-module[data-theme="light"] .toggle-btn { background: #FFFFFF; border-color: var(--border-default); color: #9CA3AF; }
.gws-module[data-theme="light"] .rating-btn:hover,
.gws-module[data-theme="light"] .rating-btn.selected,
.gws-module[data-theme="light"] .toggle-btn:hover,
.gws-module[data-theme="light"] .toggle-btn.selected { background: rgba(236, 72, 153, 0.08); border-color: var(--pink-500); color: var(--pink-500); }

/* Light mode - Ideas List */
.gws-module[data-theme="light"] .ideas-list-container { background: #FFFFFF; backdrop-filter: none; border-color: var(--border-default); }
.gws-module[data-theme="light"] .idea-item { border-color: var(--border-default) !important; }

/* Light mode - Gem Timeline */
.gws-module[data-theme="light"] .gem-tl-line { background: rgba(0, 0, 0, 0.08); }
.gws-module[data-theme="light"] .gem-tl-nav-dot { background: rgba(0, 0, 0, 0.1); border-color: rgba(0, 0, 0, 0.15); }
.gws-module[data-theme="light"] .gem-tl-element-title { -webkit-text-fill-color: initial; background: none !important; }
.gws-module[data-theme="light"] .gem-tl-element-title--pink { color: #be185d; }
.gws-module[data-theme="light"] .gem-tl-element-title--teal { color: #0d9488; }
.gws-module[data-theme="light"] .gem-tl-element-title--purple { color: #7e22ce; }
.gws-module[data-theme="light"] .gem-tl-element-title--blue { color: #1d4ed8; }
.gws-module[data-theme="light"] .gem-tl-element-title--amber { color: #b45309; }
.gws-module[data-theme="light"] .gem-tl-event { background: #FFFFFF !important; border-color: var(--border-default) !important; }
.gws-module[data-theme="light"] .gem-tl-example-block { background: rgba(0, 0, 0, 0.02); }

/* Light mode - Benefits Strip */
.gws-module[data-theme="light"] .gem-benefit-card { background: #FFFFFF; border-color: var(--border-default); }

/* ------------------------------------------------------------
   3. Header
   ------------------------------------------------------------ */
.gws-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);
    border-bottom: 1px solid var(--border-subtle);
}
.gws-module .logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.gws-module .logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--text-primary); letter-spacing: -0.01em; }
.gws-module .logo-divider { width: 1px; height: 24px; background: var(--border-default); }
.gws-module .logo-subtitle { font-size: 1.125rem; font-weight: 300; color: var(--text-muted); }
.gws-module .header-right { display: flex; align-items: center; gap: 12px; }
.gws-module .slide-counter { font-size: 1rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.gws-module .header-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255, 255, 255, 0.1); }
.gws-module .header-progress-bar { height: 100%; background: linear-gradient(90deg, #f472b6, #ec4899, #a78bfa, #c4b5fd, #f472b6); background-size: 300% 100%; width: 0%; transition: width 0.4s var(--ease-out); animation: gws-barColorCycle 8s ease-in-out infinite; box-shadow: 0 0 8px var(--pink-glow); }
@keyframes gws-barColorCycle {
    0% { background-position: 0% 50%; box-shadow: 0 0 8px rgba(244, 114, 182, 0.4); }
    25% { box-shadow: 0 0 8px rgba(236, 72, 153, 0.4); }
    50% { background-position: 100% 50%; box-shadow: 0 0 8px rgba(167, 139, 250, 0.4); }
    75% { box-shadow: 0 0 8px rgba(196, 181, 253, 0.4); }
    100% { background-position: 0% 50%; box-shadow: 0 0 8px rgba(244, 114, 182, 0.4); }
}
.gws-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; }
.gws-module .theme-toggle:hover { border-color: var(--border-accent); transform: scale(1.05); background: var(--bg-card-hover); }
.gws-module .theme-toggle svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.gws-module .theme-toggle:hover svg { transform: rotate(15deg); }
.gws-module .theme-toggle .sun-icon { display: block; }
.gws-module .theme-toggle .moon-icon { display: none; }

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

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

/* ------------------------------------------------------------
   6. Typography
   ------------------------------------------------------------ */
.gws-module .text-label { font-size: 1rem; font-weight: 500; color: var(--pink-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.gws-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); }
.gws-module .text-display .accent { background: linear-gradient(135deg, #f472b6 0%, #ec4899 25%, #a78bfa 50%, #c4b5fd 75%, #f472b6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gws-gradient-text-shift 15s ease-in-out infinite; }
@keyframes gws-gradient-text-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.gws-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); }
.gws-module .text-section .accent,
.gws-module .accent { background: linear-gradient(135deg, #f472b6 0%, #ec4899 25%, #c084fc 50%, #a78bfa 75%, #f472b6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gws-gradient-text-shift 15s ease-in-out infinite; }
.gws-module .text-body { font-size: 1.25rem; line-height: 1.7; color: var(--text-secondary); max-width: 900px; }
.gws-module .text-body-lg { font-size: 1.5rem; line-height: 1.7; color: var(--text-secondary); max-width: 1000px; }
.gws-module .text-muted { color: var(--text-muted); }

/* ------------------------------------------------------------
   7. Glass Cards
   ------------------------------------------------------------ */
.gws-module .glass-card { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(236, 72, 153, 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(236, 72, 153, 0.02); }
.gws-module .glass-card:hover { background: rgba(0, 0, 0, 0.5); border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(236, 72, 153, 0.15), inset 0 0 30px rgba(236, 72, 153, 0.03); }
.gws-module .glass-card--highlight { border-color: rgba(236, 72, 153, 0.3); background: rgba(0, 0, 0, 0.85); }
.gws-module .glass-card--highlight:hover { background: rgba(0, 0, 0, 0.9); border-color: rgba(236, 72, 153, 0.5); }
.gws-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; }
.gws-module .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 28px; margin-top: 32px; }

/* ------------------------------------------------------------
   8. Form Elements
   ------------------------------------------------------------ */
.gws-module .form-group { margin-bottom: 28px; width: 100%; }
.gws-module .form-label { display: block; font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 10px; font-weight: 500; }
.gws-module .form-input,
.gws-module .form-select,
.gws-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; }
.gws-module .form-input:focus,
.gws-module .form-select:focus,
.gws-module .form-textarea:focus { outline: none; border-color: var(--pink-400); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15), 0 0 20px rgba(236, 72, 153, 0.1); }
.gws-module .form-input::placeholder,
.gws-module .form-textarea::placeholder { color: var(--text-muted); }
.gws-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; }
.gws-module .form-select option { background: var(--bg-elevated); color: var(--text-primary); }
.gws-module .form-textarea { min-height: 100px; resize: none; overflow: hidden; field-sizing: content; }
.gws-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(--pink-400); resize: none; overflow: hidden; field-sizing: content; box-sizing: border-box; }
.gws-module .code-block-editable:focus { outline: none; border-color: var(--pink-400); box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15); }

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

.gws-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(--gws-gradient-angle), transparent 0%, var(--pink-500) 10%, var(--pink-400) 20%, var(--purple-400) 30%, var(--pink-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: gws-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 gws-shiny-border-spin { to { --gws-gradient-angle: 360deg; } }
.gws-module .btn--shiny:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 30px rgba(236, 72, 153, 0.4); }
.gws-module .btn--shiny:active { transform: translateY(1px); }
.gws-module .btn--shiny::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(236, 72, 153, 0.15), transparent 60%); pointer-events: none; }
.gws-module .btn--shiny span,
.gws-module .btn--shiny i,
.gws-module .btn--shiny svg { position: relative; z-index: 2; }
.gws-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(--gws-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); }
.gws-module .btn--shiny:disabled { opacity: 0.4; cursor: not-allowed; animation: none; }

.gws-module .btn-secondary { padding: 12px 24px; background: transparent; border: 1px solid var(--border-default); border-radius: var(--radius-lg); color: var(--text-secondary); font-size: 0.9375rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; font-family: var(--font-body); }
.gws-module .btn-secondary:hover { border-color: var(--pink-400); color: var(--pink-400); }

.gws-module .btn-ghost { padding: 10px 20px; background: transparent; border: none; color: var(--text-muted); font-size: 0.875rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s ease; font-family: var(--font-body); }
.gws-module .btn-ghost:hover { color: var(--text-primary); }

/* ------------------------------------------------------------
   10. Status Messages
   ------------------------------------------------------------ */
.gws-module .status-message { padding: 14px 18px; border-radius: var(--radius-lg); margin: 20px 0; display: none; font-size: 0.9375rem; }
.gws-module .status-message.success { display: block; background: var(--success-muted); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--success); }
.gws-module .status-message.error { display: block; background: var(--error-muted); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--error); }
.gws-module .spinner { width: 20px; height: 20px; border: 2px solid rgba(236, 72, 153, 0.2); border-top-color: var(--pink-400); border-radius: 50%; animation: gws-spin 0.8s linear infinite; display: inline-block; }
@keyframes gws-spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------
   11. Gem Compare - Before/After (Slide 2)
   ------------------------------------------------------------ */
.gws-module .gem-compare { display: flex; align-items: stretch; gap: 24px; max-width: 1100px; margin: 0 auto 28px; border-radius: var(--radius-xl); overflow: visible; }
.gws-module .gem-compare-side { flex: 1; padding: 40px 36px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s var(--ease-out); position: relative; border-radius: var(--radius-xl); border: 1px solid var(--border-subtle); }
.gws-module .gem-compare--before { background: rgba(0, 0, 0, 0.3); }
.gws-module .gem-compare--after { background: linear-gradient(#000000, #000000) padding-box, conic-gradient(from var(--gws-gradient-angle), transparent 0%, var(--pink-500) 8%, var(--pink-400) 18%, var(--purple-400) 28%, var(--pink-500) 38%, transparent 48%) border-box; border: 2px solid transparent; box-shadow: 0 0 20px rgba(236, 72, 153, 0.15); animation: gws-shiny-border-spin 3s linear infinite, gws-afterGlow 3s ease-in-out infinite; }
@keyframes gws-afterGlow { 0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.15); } 50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.3); } }
.gws-module .gem-compare-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all 0.3s ease; }
.gws-module .gem-compare-icon--before { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-subtle); }
.gws-module .gem-compare-icon--after { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15)); border: 1px solid rgba(236, 72, 153, 0.3); box-shadow: 0 0 20px rgba(236, 72, 153, 0.2); animation: gws-iconGlowPink 3s ease-in-out infinite; }
@keyframes gws-iconGlowPink { 0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.2); } 50% { box-shadow: 0 0 35px rgba(236, 72, 153, 0.4), 0 0 60px rgba(168, 85, 247, 0.15); } }
.gws-module .gem-compare-label { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.gws-module .gem-compare-label--before { color: var(--text-muted); }
.gws-module .gem-compare-label--after { color: var(--pink-400); text-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
.gws-module .gem-compare-text { font-size: 1.1rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 20px; max-width: 380px; }
.gws-module .gem-compare-text em { color: var(--text-primary); font-style: italic; }
.gws-module .gem-compare-example { font-family: var(--font-mono); font-size: 0.85rem; padding: 14px 18px; border-radius: var(--radius-md); line-height: 1.55; font-style: italic; margin-top: auto; width: 100%; }
.gws-module .gem-compare--before .gem-compare-example { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); color: var(--text-muted); }
.gws-module .gem-compare--after .gem-compare-example { background: rgba(236, 72, 153, 0.08); border: 1px solid rgba(236, 72, 153, 0.2); color: var(--pink-300); }
.gws-module .gem-compare-divider { display: flex; align-items: center; justify-content: center; width: 0; flex-shrink: 0; position: relative; z-index: 3; margin: 0 -12px; }
.gws-module .gem-compare-arrow { position: relative; z-index: 3; width: 40px; height: 40px; min-width: 40px; min-height: 40px; border-radius: 50%; background: rgba(15, 15, 20, 0.9); border: 1px solid rgba(236, 72, 153, 0.4); display: flex; align-items: center; justify-content: center; color: var(--pink-400); animation: gws-comparePulse 2s ease-in-out infinite; backdrop-filter: blur(8px); }
@keyframes gws-comparePulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(236, 72, 153, 0.2); } 50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); } }

/* ------------------------------------------------------------
   12. Gem Flow Visualization (Slide 3)
   ------------------------------------------------------------ */
.gws-module .gem-flow-container { width: 100%; max-width: none; margin: 16px 0 8px 0; padding: 48px 32px; }
.gws-module .gem-flow { display: flex; flex-direction: row; gap: 24px; justify-content: center; align-items: stretch; }
.gws-module .gem-flow-step { flex: 1; max-width: 340px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; background: rgba(0, 0, 0, 0.4); border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.06); position: relative; transition: all 0.4s var(--ease-out); opacity: 0; transform: translateY(20px); }
.gws-module .slide.active .gem-flow-step:nth-child(1) { animation: gws-flowStepIn 0.6s var(--ease-out) 0.2s forwards; }
.gws-module .slide.active .gem-flow-step:nth-child(2) { animation: gws-flowStepIn 0.6s var(--ease-out) 0.45s forwards; }
.gws-module .slide.active .gem-flow-step:nth-child(3) { animation: gws-flowStepIn 0.6s var(--ease-out) 0.7s forwards; }
@keyframes gws-flowStepIn { to { opacity: 1; transform: translateY(0); } }
.gws-module .gem-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); }
.gws-module .gem-flow-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid; margin-bottom: 16px; position: relative; }
.gws-module .gem-flow-icon i { width: 30px !important; height: 30px !important; }
.gws-module .slide.active .gem-flow-step:nth-child(1) .gem-flow-icon { animation: gws-iconPulsePurple 3s ease-in-out infinite 0.8s; }
.gws-module .slide.active .gem-flow-step:nth-child(2) .gem-flow-icon { animation: gws-iconPulseTeal 3s ease-in-out infinite 1.1s; }
.gws-module .slide.active .gem-flow-step:nth-child(3) .gem-flow-icon { animation: gws-iconPulseBlue 3s ease-in-out infinite 1.4s; }
@keyframes gws-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 gws-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 gws-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); } }
.gws-module .gem-flow-content { flex: 1; display: flex; flex-direction: column; }
.gws-module .gem-flow-label { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; text-shadow: 0 0 20px currentColor; }
.gws-module .gem-flow-label i { width: 18px !important; height: 18px !important; }
.gws-module .gem-flow-desc { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 14px; line-height: 1.5; opacity: 0.7; }
.gws-module .gem-flow-example { margin-top: auto; padding: 12px 14px; background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; color: var(--text-primary); line-height: 1.45; font-style: italic; }
.gws-module .gem-flow-step:nth-child(2) .gem-flow-example { background: rgba(20, 184, 166, 0.12); border-color: rgba(20, 184, 166, 0.25); }
.gws-module .gem-flow-step:nth-child(3) .gem-flow-example { background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.25); }
.gws-module .gem-flow-arrow { position: absolute; right: -22px; top: 42px; z-index: 10; opacity: 0; }
.gws-module .slide.active .gem-flow-step:nth-child(1) .gem-flow-arrow { animation: gws-arrowFadeIn 0.4s ease-out 0.9s forwards, gws-arrowBounce 2s ease-in-out 1.3s infinite; }
.gws-module .slide.active .gem-flow-step:nth-child(2) .gem-flow-arrow { animation: gws-arrowFadeIn 0.4s ease-out 1.15s forwards, gws-arrowBounce 2s ease-in-out 1.55s infinite; }
@keyframes gws-arrowFadeIn { to { opacity: 1; } }
@keyframes gws-arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.gws-module .gem-flow-arrow i { color: var(--pink-400); filter: drop-shadow(0 0 8px var(--pink-glow)); width: 20px !important; height: 20px !important; }
.gws-module .gem-flow-step:last-child .gem-flow-arrow { display: none; }

/* File upload graphic (Train step) */
.gws-module .gem-flow-files { margin-top: auto; display: flex; flex-direction: column; gap: 6px; width: 100%; }
.gws-module .gem-flow-file { display: flex; align-items: center; gap: 8px; padding: 7px 12px; background: rgba(20, 184, 166, 0.08); border: 1px solid rgba(20, 184, 166, 0.2); border-radius: 6px; font-size: 0.8rem; font-family: var(--font-mono); color: var(--teal-300); opacity: 0; transform: translateX(-12px); }
.gws-module .slide.active .gem-flow-file--1 { animation: gws-fileSlideIn 0.4s var(--ease-out) 1.0s forwards; }
.gws-module .slide.active .gem-flow-file--2 { animation: gws-fileSlideIn 0.4s var(--ease-out) 1.2s forwards; }
.gws-module .slide.active .gem-flow-file--3 { animation: gws-fileSlideIn 0.4s var(--ease-out) 1.4s forwards; }
@keyframes gws-fileSlideIn { to { opacity: 1; transform: translateX(0); } }
.gws-module .gem-flow-upload-target { display: flex; align-items: center; justify-content: center; padding: 8px; border: 2px dashed rgba(20, 184, 166, 0.25); border-radius: 8px; color: rgba(20, 184, 166, 0.4); opacity: 0; animation: none; }
.gws-module .slide.active .gem-flow-upload-target { animation: gws-fileSlideIn 0.4s var(--ease-out) 1.6s forwards, gws-uploadPulse 2s ease-in-out 2.0s infinite; }
@keyframes gws-uploadPulse { 0%, 100% { border-color: rgba(20, 184, 166, 0.25); color: rgba(20, 184, 166, 0.4); } 50% { border-color: rgba(20, 184, 166, 0.5); color: rgba(20, 184, 166, 0.7); } }

/* Network graph animation (Deploy step) */
.gws-module .gem-flow-network { margin-top: auto; width: 100%; padding: 8px 0; }
.gws-module .gem-flow-network svg { width: 100%; height: auto; display: block; }
.gws-module .gem-flow-network .net-center { animation: gws-netCenterPulse 3s ease-in-out infinite; }
@keyframes gws-netCenterPulse { 0%, 100% { filter: drop-shadow(0 0 4px rgba(59,130,246,0.3)); } 50% { filter: drop-shadow(0 0 12px rgba(59,130,246,0.6)); } }
.gws-module .gem-flow-network .net-line { opacity: 0; }
.gws-module .slide.active .gem-flow-network .net-line--1 { animation: gws-netLineIn 0.4s ease-out 1.0s forwards; }
.gws-module .slide.active .gem-flow-network .net-line--2 { animation: gws-netLineIn 0.4s ease-out 1.15s forwards; }
.gws-module .slide.active .gem-flow-network .net-line--3 { animation: gws-netLineIn 0.4s ease-out 1.3s forwards; }
.gws-module .slide.active .gem-flow-network .net-line--4 { animation: gws-netLineIn 0.4s ease-out 1.45s forwards; }
.gws-module .slide.active .gem-flow-network .net-line--5 { animation: gws-netLineIn 0.4s ease-out 1.1s forwards; }
@keyframes gws-netLineIn { to { opacity: 1; } }
.gws-module .gem-flow-network .net-node, .gws-module .gem-flow-network .net-pulse { opacity: 0; }
.gws-module .slide.active .gem-flow-network .net-node--1, .gws-module .slide.active .gem-flow-network .net-node--1i { animation: gws-netNodeIn 0.3s ease-out 1.3s forwards; }
.gws-module .slide.active .gem-flow-network .net-node--2, .gws-module .slide.active .gem-flow-network .net-node--2i { animation: gws-netNodeIn 0.3s ease-out 1.45s forwards; }
.gws-module .slide.active .gem-flow-network .net-node--3, .gws-module .slide.active .gem-flow-network .net-node--3i { animation: gws-netNodeIn 0.3s ease-out 1.6s forwards; }
.gws-module .slide.active .gem-flow-network .net-node--4, .gws-module .slide.active .gem-flow-network .net-node--4i { animation: gws-netNodeIn 0.3s ease-out 1.75s forwards; }
.gws-module .slide.active .gem-flow-network .net-node--5, .gws-module .slide.active .gem-flow-network .net-node--5i { animation: gws-netNodeIn 0.3s ease-out 1.4s forwards; }
@keyframes gws-netNodeIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.gws-module .slide.active .gem-flow-network .net-pulse { opacity: 0.8; }

/* ------------------------------------------------------------
   13. Gem Timeline (Slide 4) - Scrollable
   ------------------------------------------------------------ */
.gws-module .gem-tl-line { position: fixed; left: 40px; top: 72px; bottom: 80px; width: 2px; background: rgba(255, 255, 255, 0.06); z-index: 5; pointer-events: none; }
.gws-module .gem-tl-line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(180deg, var(--pink-400), var(--teal-400), var(--purple-400), var(--blue-400), var(--amber-500)); box-shadow: 0 0 8px var(--pink-glow); transition: height 0.15s linear; }
.gws-module .gem-tl-nav { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.gws-module .gem-tl-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; }
.gws-module .gem-tl-nav-dot.active { background: var(--dot-color, var(--pink-400)); border-color: var(--dot-color, var(--pink-400)); box-shadow: 0 0 12px var(--dot-glow, var(--pink-glow)); transform: scale(1.4); }
.gws-module .gem-tl-nav-dot:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.2); }
.gws-module .gem-tl-nav-dot.active:hover { transform: scale(1.4); }
.gws-module .gem-tl-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; }
.gws-module .gem-tl-nav-dot:hover .gem-tl-nav-label,
.gws-module .gem-tl-nav-dot.active .gem-tl-nav-label { opacity: 1; }
.gws-module .gem-tl-main { position: relative; z-index: 1; }
.gws-module .gem-tl-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(72px + 48px) 60px 40px 90px; }
.gws-module .gem-tl-section--hero { text-align: center; padding-left: 40px; padding-right: 40px; }
.gws-module .gem-tl-section--outro { min-height: 60vh; text-align: center; }
.gws-module .gem-tl-section-inner { max-width: 920px; width: 100%; }
.gws-module .gem-tl-divider { display: flex; flex-direction: column; align-items: center; padding: 20px 0; position: relative; z-index: 1; }
.gws-module .gem-tl-divider-line { width: 2px; height: 80px; background: rgba(255, 255, 255, 0.06); position: relative; overflow: hidden; }
.gws-module .gem-tl-divider-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent, var(--divider-color, var(--pink-400)), transparent); opacity: 0; }
.gws-module .gem-tl-divider.visible .gem-tl-divider-line::after { animation: gws-tlDividerPulse 1.5s ease-out forwards; }
.gws-module .gem-tl-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); }
.gws-module .gem-tl-divider.visible .gem-tl-divider-dot { animation: gws-tlDotPop 0.4s var(--ease-spring) 0.6s forwards; }
.gws-module .gem-tl-divider-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); }
.gws-module .gem-tl-divider.visible .gem-tl-divider-label { animation: gws-tlFadeUp 0.5s var(--ease-out) 0.8s forwards; }
@keyframes gws-tlDividerPulse { 0% { top: -100%; opacity: 0; } 30% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes gws-tlDotPop { 0% { opacity: 0; transform: scale(0); } 70% { transform: scale(1.3); } 100% { opacity: 1; transform: scale(1); } }
@keyframes gws-tlFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.gws-module .gem-tl-element-marker { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.gws-module .gem-tl-element-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); }
.gws-module .gem-tl-element-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); }
.gws-module .gem-tl-element-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); }
.gws-module .gem-tl-element-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); }
.gws-module .gem-tl-element-marker--amber { background: rgba(245, 158, 11, 0.12); border: 2px solid var(--amber-500); color: var(--amber-500); box-shadow: 0 0 24px var(--amber-glow); }
.gws-module .gem-tl-element-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; }
.gws-module .gem-tl-element-title--pink { background-image: linear-gradient(135deg, #f9a8d4, var(--pink-500)); }
.gws-module .gem-tl-element-title--teal { background-image: linear-gradient(135deg, #5eead4, var(--teal-500)); }
.gws-module .gem-tl-element-title--purple { background-image: linear-gradient(135deg, #d8b4fe, var(--purple-500)); }
.gws-module .gem-tl-element-title--blue { background-image: linear-gradient(135deg, #93c5fd, var(--blue-500)); }
.gws-module .gem-tl-element-title--amber { background-image: linear-gradient(135deg, #fde047, #f59e0b); }
.gws-module .gem-tl-element-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; letter-spacing: 0.02em; line-height: 1.6; }
.gws-module .gem-tl-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gws-module .gem-tl-cards { grid-template-columns: repeat(2, 1fr); } .gws-module .gem-tl-cards > :nth-child(3) { grid-column: 1 / -1; } }
.gws-module .gem-tl-event { background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 24px 28px; transition: all 0.4s var(--ease-out); }
.gws-module .gem-tl-event--pink { border-color: rgba(236, 72, 153, 0.15); }
.gws-module .gem-tl-event--pink:hover { border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12); }
.gws-module .gem-tl-event--teal { border-color: rgba(20, 184, 166, 0.15); }
.gws-module .gem-tl-event--teal:hover { border-color: rgba(20, 184, 166, 0.4); box-shadow: 0 8px 30px rgba(20, 184, 166, 0.12); }
.gws-module .gem-tl-event--purple { border-color: rgba(168, 85, 247, 0.15); }
.gws-module .gem-tl-event--purple:hover { border-color: rgba(168, 85, 247, 0.4); box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12); }
.gws-module .gem-tl-event--blue { border-color: rgba(59, 130, 246, 0.15); }
.gws-module .gem-tl-event--blue:hover { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12); }
.gws-module .gem-tl-event--amber { border-color: rgba(245, 158, 11, 0.15); }
.gws-module .gem-tl-event--amber:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12); }
.gws-module .gem-tl-event-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.gws-module .gem-tl-event-icon { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gws-module .gem-tl-event-icon--pink { background: rgba(236, 72, 153, 0.15); color: var(--pink-400); }
.gws-module .gem-tl-event-icon--teal { background: rgba(20, 184, 166, 0.15); color: var(--teal-400); }
.gws-module .gem-tl-event-icon--purple { background: rgba(168, 85, 247, 0.15); color: var(--purple-400); }
.gws-module .gem-tl-event-icon--blue { background: rgba(59, 130, 246, 0.15); color: var(--blue-400); }
.gws-module .gem-tl-event-icon--amber { background: rgba(245, 158, 11, 0.15); color: var(--amber-500); }
.gws-module .gem-tl-event-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); }
.gws-module .gem-tl-event-body { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.gws-module .gem-tl-event-body strong { color: var(--text-primary); font-weight: 600; }
.gws-module .gem-tl-example-block { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); padding: 16px 20px; background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-md); border: 1px solid var(--border-subtle); border-left: 3px solid; line-height: 1.6; font-style: italic; }
.gws-module .gem-tl-tip-list { list-style: none; padding: 0; margin: 0; }
.gws-module .gem-tl-tip-list li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }
.gws-module .gem-tl-tip-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--tip-color, var(--pink-400)); opacity: 0.6; }
.gws-module .gem-tl-scroll-cue { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; animation: gws-tlBounce 2s ease-in-out infinite; }
@keyframes gws-tlBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.gws-module .gem-tl-continue-cue { text-align: center; margin-top: 40px; }
.gws-module .gem-tl-continue-cue p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.1rem; }

/* Scroll-driven animations */
.gws-module [data-gem-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.gws-module [data-gem-animate].visible { opacity: 1; transform: translateY(0); }
.gws-module [data-gem-animate="spring"] { opacity: 0; transform: scale(0.3); transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-spring); }
.gws-module [data-gem-animate="spring"].visible { opacity: 1; transform: scale(1); }
.gws-module [data-gem-animate="fade-up"] { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.gws-module [data-gem-animate="fade-up"].visible { opacity: 1; transform: translateY(0); }
.gws-module [data-gem-animate="scale"] { opacity: 0; transform: scale(0.92); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.gws-module [data-gem-animate="scale"].visible { opacity: 1; transform: scale(1); }
.gws-module .gem-tl-cards [data-gem-animate]:nth-child(1) { transition-delay: 0ms; }
.gws-module .gem-tl-cards [data-gem-animate]:nth-child(2) { transition-delay: 150ms; }
.gws-module .gem-tl-cards [data-gem-animate]:nth-child(3) { transition-delay: 300ms; }
.gws-module .gem-tl-section-inner > [data-gem-animate]:nth-child(1) { transition-delay: 0ms; }
.gws-module .gem-tl-section-inner > [data-gem-animate]:nth-child(2) { transition-delay: 150ms; }
.gws-module .gem-tl-section-inner > [data-gem-animate]:nth-child(3) { transition-delay: 280ms; }
.gws-module .gem-tl-section-inner > [data-gem-animate]:nth-child(4) { transition-delay: 400ms; }
.gws-module .gem-tl-section-inner > [data-gem-animate]:nth-child(5) { transition-delay: 520ms; }

/* ------------------------------------------------------------
   14. Model Cards (Slide 5)
   ------------------------------------------------------------ */
.gws-module .model-compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.gws-module .model-card { background: rgba(0, 0, 0, 0.5); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 32px 28px; transition: all 0.4s var(--ease-out); opacity: 0; animation: gws-flowStepIn 0.5s var(--ease-out) forwards; }
.gws-module .model-card:nth-child(1) { animation-delay: 0.2s; }
.gws-module .model-card:nth-child(2) { animation-delay: 0.4s; }
.gws-module .model-card:nth-child(3) { animation-delay: 0.6s; }
.gws-module .model-card:hover { transform: translateY(-4px); background: rgba(0, 0, 0, 0.65); }
.gws-module .model-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.gws-module .model-card-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.gws-module .model-card-tagline { font-size: 1rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
.gws-module .model-card-list { list-style: none; padding: 16px 0; margin: 0; border-top: 1px solid; display: flex; flex-direction: column; gap: 12px; }
.gws-module .model-card-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.4; }
.gws-module .model-card-badge { display: inline-block; margin-top: 20px; padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid; font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.01em; }

/* ------------------------------------------------------------
   15. Inspiration Grid (Slide 6)
   ------------------------------------------------------------ */
.gws-module .inspiration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; max-width: 960px; margin-left: auto; margin-right: auto; }
.gws-module .inspiration-card { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(12px); padding: 24px; border-radius: var(--radius-lg); border: 1px solid rgba(236, 72, 153, 0.15); transition: all 0.3s var(--ease-out); }
.gws-module .inspiration-card:hover { background: rgba(0, 0, 0, 0.4); border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 72, 153, 0.15); transform: translateY(-2px); }
.gws-module .inspiration-card-title { font-weight: 600; color: var(--text-primary); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.gws-module .inspiration-card-desc { font-size: 0.875rem; color: var(--text-muted); }

/* ------------------------------------------------------------
   16. Ideas List (Slide 7)
   ------------------------------------------------------------ */
.gws-module .ideas-list-container { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(12px); border: 1px solid rgba(236, 72, 153, 0.15); border-radius: var(--radius-xl); padding: 32px; max-height: 500px; overflow-y: auto; }
.gws-module .idea-item { padding: 16px 0; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.gws-module .idea-item:last-child { border-bottom: none; }
.gws-module .idea-item-text { color: var(--text-primary); font-size: 1rem; line-height: 1.5; flex: 1; }
.gws-module .idea-item-author { font-size: 0.8125rem; color: var(--text-muted); white-space: nowrap; }
.gws-module .empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.gws-module .empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3; }

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

/* ------------------------------------------------------------
   18. Quote Box
   ------------------------------------------------------------ */
.gws-module .quote-box { background: rgba(236, 72, 153, 0.05); border-left: 4px solid var(--pink-400); padding: 28px 32px; margin: 40px 0; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.gws-module .quote-box p { color: var(--text-secondary); font-size: 1.25rem; line-height: 1.7; margin: 0; }
.gws-module .quote-box strong { color: var(--text-primary); }

/* ------------------------------------------------------------
   19. Scaling Grid (Slide 10)
   ------------------------------------------------------------ */
.gws-module .scaling-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.gws-module .scaling-card { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(12px); border: 1px solid rgba(236, 72, 153, 0.15); border-radius: var(--radius-xl); padding: 24px; transition: all 0.3s ease; }
.gws-module .scaling-card:hover { border-color: rgba(236, 72, 153, 0.4); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 72, 153, 0.15); }
.gws-module .scaling-card-title { font-weight: 600; color: var(--text-primary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.gws-module .scaling-card-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; }

/* ------------------------------------------------------------
   20. Gallery Grid (Slide 11)
   ------------------------------------------------------------ */
.gws-module .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gws-module .gallery-card { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(12px); border: 1px solid rgba(236, 72, 153, 0.15); border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; transition: all 0.3s ease; }
.gws-module .gallery-card:hover { transform: translateY(-4px); border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(236, 72, 153, 0.2); }
.gws-module .gallery-icon { height: 120px; display: flex; align-items: center; justify-content: center; background: var(--bg-elevated); color: var(--text-muted); }
.gws-module .gallery-info { padding: 20px; }
.gws-module .gallery-title { font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.gws-module .gallery-author { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px; }
.gws-module .gallery-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gws-module .gallery-audience { font-size: 0.75rem; color: var(--pink-400); margin-top: 8px; font-weight: 500; }
.gws-module .gallery-modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: 2000; align-items: center; justify-content: center; padding: 40px; }
.gws-module .gallery-modal.active { display: flex; animation: gws-fadeIn 0.3s var(--ease-out); }
@keyframes gws-fadeIn { from { opacity: 0; } to { opacity: 1; } }
.gws-module .gallery-modal-content { background: rgba(10, 15, 20, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(236, 72, 153, 0.2); border-radius: var(--radius-2xl); max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: gws-scaleIn 0.3s var(--ease-spring); }
@keyframes gws-scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.gws-module .gallery-modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-default); background: var(--bg-surface); color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.gws-module .gallery-modal-icon { height: 200px; display: flex; align-items: center; justify-content: center; background: var(--bg-surface); color: var(--text-muted); border-radius: var(--radius-2xl) var(--radius-2xl) 0 0; }
.gws-module .gallery-modal-info { padding: 32px; }
.gws-module .gallery-modal-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.gws-module .gallery-modal-author { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.gws-module .gallery-modal-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.gws-module .gallery-modal-audience { font-size: 0.875rem; color: var(--pink-400); font-weight: 500; margin-bottom: 16px; }
.gws-module .gallery-modal-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-lg); color: var(--pink-400); text-decoration: none; font-weight: 500; transition: all 0.3s ease; }
.gws-module .gallery-modal-link:hover { border-color: var(--pink-400); }

/* ------------------------------------------------------------
   21. Rating & Feedback (Slide 12)
   ------------------------------------------------------------ */
.gws-module .feedback-section { margin-bottom: 32px; }
.gws-module .feedback-section + .feedback-section { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; }
.gws-module .feedback-section-label { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pink-400); margin-bottom: 20px; }
.gws-module .rating-container { display: flex; gap: 10px; margin: 16px 0; }
.gws-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); display: flex; align-items: center; justify-content: center; }
.gws-module .rating-btn:hover,
.gws-module .rating-btn.selected { background: rgba(236, 72, 153, 0.15); border-color: var(--pink-400); color: var(--pink-400); }
.gws-module .toggle-group { display: flex; gap: 10px; margin: 16px 0; }
.gws-module .toggle-btn { width: auto; padding: 0 24px; 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); display: flex; align-items: center; justify-content: center; }
.gws-module .toggle-btn:hover,
.gws-module .toggle-btn.selected { background: rgba(236, 72, 153, 0.15); border-color: var(--pink-400); color: var(--pink-400); }

/* ------------------------------------------------------------
   22. Video Elements
   ------------------------------------------------------------ */
.gws-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; }
.gws-module .video-preview:hover { border-color: var(--pink-400); transform: scale(1.02); box-shadow: 0 0 20px var(--pink-glow); }
.gws-module .video-preview video { width: 100%; height: 100%; object-fit: cover; }
.gws-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; }
.gws-module .video-preview:hover .expand-icon { opacity: 1; }
.gws-module .video-preview--large { width: 60vw; max-width: 700px; height: auto; aspect-ratio: 16 / 9; margin: 0 auto 16px auto; }
.gws-module .video-preview--large .expand-icon { width: 56px; height: 56px; }
.gws-module .video-preview--inline { width: 80px; height: 45px; border-radius: var(--radius-sm); overflow: hidden; }
.gws-module .video-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(236, 72, 153, 0.08); border: 1px dashed rgba(236, 72, 153, 0.3); border-radius: var(--radius-sm); }
.gws-module .video-preview--inline .expand-icon { display: none; }
.gws-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; }
.gws-module .helper-video-btn:hover { background: rgba(236, 72, 153, 0.1); border-color: var(--pink-400); color: var(--pink-400); }
.gws-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; }
.gws-module .video-modal.active { display: flex; animation: gws-fadeIn 0.3s var(--ease-out); }
.gws-module .video-modal-content { position: relative; width: 80vw; max-height: 80vh; animation: gws-scaleIn 0.3s var(--ease-spring); }
.gws-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); }
.gws-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); }
.gws-module .video-modal-close:hover { background: rgba(239, 68, 68, 0.6); border-color: var(--error); color: #fff; }

/* ------------------------------------------------------------
   23. Background Effects
   ------------------------------------------------------------ */
.gws-module .landing-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.gws-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; }
.gws-module .landing-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.gws-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; }
.gws-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; }
.gws-module .landing-orb--pink { width: 800px; height: 800px; background: radial-gradient(circle, var(--pink-400) 0%, rgba(236, 72, 153, 0.2) 30%, transparent 60%); opacity: 0.25; top: 30%; left: 40%; }
.gws-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; bottom: 10%; right: 20%; }
.gws-module .landing-particles { position: absolute; inset: 0; }
.gws-module .landing-particles canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ------------------------------------------------------------
   24. Benefits Strip (Slide 2)
   ------------------------------------------------------------ */
.gws-module .gem-benefits-strip { display: flex; align-items: stretch; justify-content: center; gap: 20px; max-width: 1100px; margin: 12px auto 0; }
.gws-module .gem-benefit-card { flex: 1; display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: var(--radius-lg); background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.06); opacity: 0; transform: translateY(16px); transition: all 0.3s ease; }
.gws-module .slide.active .gem-benefit-card:nth-child(1) { animation: gws-flowStepIn 0.5s var(--ease-out) 0.7s forwards; }
.gws-module .slide.active .gem-benefit-card:nth-child(2) { animation: gws-flowStepIn 0.5s var(--ease-out) 0.85s forwards; }
.gws-module .slide.active .gem-benefit-card:nth-child(3) { animation: gws-flowStepIn 0.5s var(--ease-out) 1.0s forwards; }
.gws-module .gem-benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.gws-module .gem-benefit--purple { border-color: rgba(168, 85, 247, 0.2); box-shadow: 0 0 12px rgba(168, 85, 247, 0.08); }
.gws-module .gem-benefit--purple:hover { border-color: rgba(168, 85, 247, 0.4); box-shadow: 0 0 20px rgba(168, 85, 247, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3); }
.gws-module .gem-benefit--purple .gem-benefit-label { color: var(--purple-400); }
.gws-module .gem-benefit--blue { border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 0 12px rgba(59, 130, 246, 0.08); }
.gws-module .gem-benefit--blue:hover { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 20px rgba(59, 130, 246, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3); }
.gws-module .gem-benefit--blue .gem-benefit-label { color: var(--blue-400); }
.gws-module .gem-benefit--amber { border-color: rgba(245, 158, 11, 0.2); box-shadow: 0 0 12px rgba(245, 158, 11, 0.08); }
.gws-module .gem-benefit--amber:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 20px rgba(245, 158, 11, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3); }
.gws-module .gem-benefit--amber .gem-benefit-label { color: var(--amber-400); }
.gws-module .gem-benefit-label { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; white-space: nowrap; }
.gws-module .gem-benefit-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.4; }

/* ------------------------------------------------------------
   25. Stat Cards
   ------------------------------------------------------------ */
.gws-module .stat-card { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(12px); border: 1px solid rgba(236, 72, 153, 0.15); border-radius: var(--radius-xl); padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.gws-module .stat-card:hover { transform: translateY(-2px); border-color: rgba(236, 72, 153, 0.35); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 72, 153, 0.15); }
.gws-module .stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.gws-module .stat-label { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.4; }

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

/* ------------------------------------------------------------
   27. Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
    .gws-module .slide { max-width: 92vw; padding: 80px 30px 80px; }
    .gws-module .card-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .gws-module .gem-flow { flex-direction: column; align-items: center; gap: 24px; }
    .gws-module .gem-flow-step { max-width: 100%; width: 100%; }
    .gws-module .gem-flow-arrow { display: none; }
    .gws-module .model-compare { grid-template-columns: 1fr; }
    .gws-module .gem-compare { flex-direction: column; gap: 16px; }
    .gws-module .gem-compare-divider { width: 100%; height: 0; margin: -8px 0; flex-direction: row; }
    .gws-module .gem-compare-arrow i { transform: rotate(90deg); }
}

@media (max-width: 768px) {
    .gws-module .header { padding: 16px 20px; }
    .gws-module .logo-subtitle { display: none; }
    .gws-module .slide { padding: 70px 20px 80px; max-width: 95vw; }
    .gws-module .controls { bottom: 20px; padding: 10px 16px; gap: 12px; }
    .gws-module .controls-dots { display: none; }
    .gws-module .text-display { font-size: clamp(2rem, 6vw, 3rem); }
    .gws-module .text-section { font-size: clamp(1.5rem, 4vw, 2rem); }
    .gws-module .glass-card { padding: 24px; }
    .gws-module .inspiration-grid { grid-template-columns: 1fr; }
    .gws-module .scaling-grid { grid-template-columns: 1fr; }
    .gws-module .gallery-grid { grid-template-columns: 1fr; }
    .gws-module .gem-benefits-strip { flex-direction: column; gap: 12px; }
    .gws-module .gem-benefit-card { padding: 14px 18px; }
    .gws-module .gem-tl-nav { display: none; }
    .gws-module .gem-tl-line { left: 16px; }
    .gws-module .gem-tl-section { padding: calc(72px + 24px) 20px 40px 20px; }
    .gws-module .gem-tl-cards { grid-template-columns: 1fr; }
    .gws-module .gem-tl-cards > :nth-child(3) { grid-column: auto; }
}

@media (max-width: 600px) {
    .gws-module .dot-group-intro { padding: 2px 4px; }
    .gws-module .dot-separator { margin: 0 2px; }
    .gws-module .gem-tl-line { display: none; }
    .gws-module .gem-tl-section { padding-left: 16px; padding-right: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gws-module [data-gem-animate],
    .gws-module [data-gem-animate="spring"],
    .gws-module [data-gem-animate="fade-up"],
    .gws-module [data-gem-animate="scale"] { opacity: 1; transform: none; transition: none; }
    .gws-module .gem-tl-scroll-cue { animation: none; }
    .gws-module .gem-tl-line-fill { transition: none; }
    .gws-module .gem-tl-divider.visible .gem-tl-divider-line::after { animation: none; }
    .gws-module .gem-tl-divider.visible .gem-tl-divider-dot { animation: none; opacity: 1; transform: scale(1); }
    .gws-module .gem-tl-divider.visible .gem-tl-divider-label { animation: none; opacity: 1; transform: none; }
    .gws-module .btn--shiny { animation: none; }
    .gws-module .gem-compare--after { animation: none; }
    .gws-module .gem-compare-icon--after { animation: none; }
    .gws-module .gem-compare-arrow { animation: none; }
    .gws-module .step-checkbox { animation: none; }
}
