:host{display:block;width:100%;height:100%}.hx-sr{text-align:initial;text-indent:initial;text-transform:initial;white-space:initial;word-spacing:initial;visibility:visible;height:100%;display:flex;align-items:center;justify-content:center}.hx-mount{width:100%;height:100%;display:flex;align-items:center;justify-content:center}

.c-dynamic-workflow {
  width: 100%;
  height: 700px;
  display: flex;
  font-family: system-ui, -apple-system, sans-serif;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.c-dynamic-workflow * {
  box-sizing: border-box;
}

/* Chat Layer */
.c-dynamic-workflow .chat-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  background: #020617;
}

.c-dynamic-workflow .chat-bubble {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  max-width: 80%;
  display: flex;
  align-items: center;
  gap: 1rem;
  will-change: transform, opacity;
}

.c-dynamic-workflow .magic-wand {
  width: 28px;
  height: 28px;
  color: #a855f7;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
}

.c-dynamic-workflow .prompt-wrapper {
  display: inline-block;
  white-space: pre-wrap;
  vertical-align: bottom;
}

.c-dynamic-workflow .char {
  display: none;
}

.c-dynamic-workflow .cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: #a855f7;
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Studio Layer */
.c-dynamic-workflow .studio-layer {
  width: 0; /* Animated by GSAP */
  height: 100%;
  background: #0b1120;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 20;
  border-right: 1px solid transparent; /* Animated by GSAP */
  display: flex;
}

/* Studio Sidebar (Stage 1) */
.c-dynamic-workflow .studio-sidebar {
  width: 260px;
  height: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.c-dynamic-workflow .studio-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.c-dynamic-workflow .studio-logo {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.c-dynamic-workflow .studio-title {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.c-dynamic-workflow .studio-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-dynamic-workflow .nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-dynamic-workflow .nav-label {
  color: #64748b;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0 0.5rem;
  margin-bottom: 0.25rem;
}

.c-dynamic-workflow .nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
}

.c-dynamic-workflow .nav-icon {
  width: 16px;
  height: 16px;
  background: #334155;
  border-radius: 4px;
}

.c-dynamic-workflow .new-item {
  overflow: hidden;
  color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.c-dynamic-workflow .new-item .nav-icon {
  background: #10b981;
}

.c-dynamic-workflow .badge {
  margin-left: auto;
  background: #10b981;
  color: #020617;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 99px;
  text-transform: uppercase;
}

/* Studio Editor (Stage 2) */
.c-dynamic-workflow .studio-editor {
  flex-grow: 1;
  width: auto;
  height: 100%;
  background: #0f172a;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  overflow-y: auto;
}

.c-dynamic-workflow .editor-inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-dynamic-workflow .editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.c-dynamic-workflow .editor-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-dynamic-workflow .editor-title {
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 600;
}

.c-dynamic-workflow .editor-subtitle {
  color: #64748b;
  font-size: 0.875rem;
}

.c-dynamic-workflow .editor-save-btn {
  background: #38bdf8;
  color: #0f172a;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.2);
  align-self: flex-start;
  width: auto;
}

.c-dynamic-workflow .editor-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-dynamic-workflow .editor-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0; /* GSAP */
  transform: translateX(-10px); /* GSAP */
}

.c-dynamic-workflow .field-label {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-dynamic-workflow .field-input {
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.c-dynamic-workflow .field-input.highlight {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.c-dynamic-workflow .field-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-dynamic-workflow .list-item {
  background: rgba(2, 6, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8fafc;
  font-size: 0.95rem;
}

.c-dynamic-workflow .list-dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  flex-shrink: 0;
}

.c-dynamic-workflow .add-feature-btn {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  padding: 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.c-dynamic-workflow .add-feature-btn:hover {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Website Layer */
.c-dynamic-workflow .website-layer {
  width: 100%; /* Fixed width so it doesn't shrink */
  flex-shrink: 0; /* Prevent shrinking when sidebar expands */
  height: 100%;
  background: #0f172a;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.c-dynamic-workflow .web-header {
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
}

.c-dynamic-workflow .web-nav {
  display: flex;
  gap: 1.5rem;
}

.c-dynamic-workflow .web-nav span {
  width: 48px;
  height: 6px;
  background: #334155;
  border-radius: 3px;
}

.c-dynamic-workflow .web-main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  position: relative;
}

.c-dynamic-workflow .web-main::before {
  content: '';
  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: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.c-dynamic-workflow .web-hero {
  text-align: center;
  max-width: 600px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.c-dynamic-workflow .web-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.c-dynamic-workflow .web-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.c-dynamic-workflow .web-pricing {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.c-dynamic-workflow .pricing-card {
  flex: 1;
  min-width: 0;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.c-dynamic-workflow .pricing-card.highlight {
  background: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-10px);
}

.c-dynamic-workflow .pricing-card.highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #38bdf8;
  color: #0f172a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-dynamic-workflow .p-tier {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f8fafc;
}

.c-dynamic-workflow .p-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f8fafc;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.c-dynamic-workflow .p-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.c-dynamic-workflow .p-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.c-dynamic-workflow .p-line {
  height: 8px;
  background: #334155;
  border-radius: 4px;
  width: 100%;
}

.c-dynamic-workflow .p-line.short { width: 70%; }

.c-dynamic-workflow .p-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #f8fafc;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.c-dynamic-workflow .pricing-card.highlight .p-btn {
  background: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
}



    .hs-34bdc0b5 {
      --bg-panel: #ffffff;
      --bg-surface: #f9fafb;
      --bg-surface-hover: #f3f4f6;
      --border: #e5e7eb;
      --border-strong: #d1d5db;
      --text-main: #111827;
      --text-muted: #6b7280;
      --accent: #0f172a;
      --accent-text: #ffffff;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0,0,0,0.05);
      --ring: rgba(15, 23, 42, 0.1);
      --amber: #f59e0b;
    }
    .dark .hs-34bdc0b5 {
      --bg-panel: #0a0a0a;
      --bg-surface: #141414;
      --bg-surface-hover: #1f1f1f;
      --border: #262626;
      --border-strong: #333333;
      --text-main: #ededed;
      --text-muted: #888888;
      --accent: #ededed;
      --accent-text: #0a0a0a;
      --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.05);
      --ring: rgba(255, 255, 255, 0.1);
      --amber: #fbbf24;
    }

    .hs-34bdc0b5 *,
    .hs-34bdc0b5 *::before,
    .hs-34bdc0b5 *::after {
      box-sizing: border-box;
    }

    .hs-34bdc0b5 .panel {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      background: var(--bg-panel);
      border-radius: 16px;
      box-shadow: var(--shadow);
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-main);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: hs-34bdc0b5-slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-play-state: var(--play, running);
      opacity: 0;
    }

    .hs-34bdc0b5 .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-panel);
      position: relative;
      z-index: 10;
    }

    .hs-34bdc0b5 .lang-toggle {
      display: flex;
      background: var(--bg-surface);
      padding: 4px;
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .hs-34bdc0b5 .lang-btn {
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 6px;
      color: var(--text-muted);
      transition: all 0.2s ease;
      cursor: default;
      user-select: none;
    }

    .hs-34bdc0b5 .lang-btn.active {
      background: var(--bg-panel);
      color: var(--text-main);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--border);
    }

    .hs-34bdc0b5 .btn-publish {
      background: var(--accent);
      color: var(--accent-text);
      border: none;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      cursor: default;
      transition: opacity 0.2s ease;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .hs-34bdc0b5 .body {
      padding: 0 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .hs-34bdc0b5 .title-input {
      font-size: 22px;
      font-weight: 600;
      color: var(--text-main);
      padding: 24px 0 4px;
      letter-spacing: -0.02em;
      outline: none;
      border: none;
      background: transparent;
    }

    .hs-34bdc0b5 .editor {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--bg-surface);
    }

    .hs-34bdc0b5 .toolbar {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-panel);
    }

    .hs-34bdc0b5 .tb-group {
      display: flex;
      gap: 2px;
    }

    .hs-34bdc0b5 .tb-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      color: var(--text-muted);
      cursor: default;
    }

    .hs-34bdc0b5 .tb-btn.active {
      background: var(--bg-surface);
      color: var(--text-main);
    }

    .hs-34bdc0b5 .tb-divider {
      width: 1px;
      height: 16px;
      background: var(--border);
      margin: 0 4px;
    }

    .hs-34bdc0b5 .editor-content {
      padding: 16px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-main);
      min-height: 120px;
      background: var(--bg-panel);
    }

    .hs-34bdc0b5 .editor-content p {
      margin: 0 0 1em 0;
    }
    .hs-34bdc0b5 .editor-content p:last-child {
      margin: 0;
    }

    .hs-34bdc0b5 .dropzone {
      border: 1px dashed var(--border-strong);
      border-radius: 12px;
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      background: var(--bg-surface);
      cursor: default;
      transition: all 0.2s ease;
      text-align: center;
    }

    .hs-34bdc0b5 .dz-icon {
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .hs-34bdc0b5 .dz-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main);
    }

    .hs-34bdc0b5 .dz-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hs-34bdc0b5 .meta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
    }

    .hs-34bdc0b5 .meta-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .hs-34bdc0b5 .author-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px 4px 4px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-main);
    }

    .hs-34bdc0b5 .author-avatar {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c084fc, #3b82f6);
    }

    .hs-34bdc0b5 .chevron {
      color: var(--text-muted);
      margin-left: -4px;
    }

    .hs-34bdc0b5 .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 500;
      color: var(--text-main);
    }

    .hs-34bdc0b5 .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
    }

    /* Animations */
    @keyframes hs-34bdc0b5-slideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hs-34bdc0b5 .anim-item {
      opacity: 0;
      animation: hs-34bdc0b5-slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-play-state: var(--play, running);
    }

    .hs-34bdc0b5 .anim-item:nth-child(1) { animation-delay: 0.1s; }
    .hs-34bdc0b5 .anim-item:nth-child(2) { animation-delay: 0.15s; }
    .hs-34bdc0b5 .anim-item:nth-child(3) { animation-delay: 0.2s; }
    .hs-34bdc0b5 .anim-item:nth-child(4) { animation-delay: 0.25s; }
    .hs-34bdc0b5 .anim-item:nth-child(5) { animation-delay: 0.3s; }
  


    .hs-7f270b42 {
      --bg-panel: #ffffff;
      --bg-input: #f4f4f5;
      --bg-input-hover: #e4e4e7;
      --bg-dropdown: #ffffff;
      --bg-hover: #f4f4f5;
      --border-color: #e4e4e7;
      --border-input: #d4d4d8;
      --text-main: #18181b;
      --text-muted: #71717a;
      --text-placeholder: #a1a1aa;
      --accent: #6366f1;
      --accent-hover: #4f46e5;
      --accent-light: #e0e7ff;
      --success-bg: #dcfce7;
      --success-text: #166534;
      --warning-bg: #fef08a;
      --warning-text: #854d0e;
      --danger-bg: #fee2e2;
      --danger-text: #991b1b;
      --shadow-panel: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05), 0 0 0 1px rgb(0 0 0 / 0.05);
      --shadow-dropdown: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.05), 0 0 0 1px rgb(0 0 0 / 0.05);
      --shadow-input: inset 0 1px 2px rgb(0 0 0 / 0.05);
      --radius-sm: 6px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 24px;
    }

    .dark .hs-7f270b42 {
      --bg-panel: #18181b;
      --bg-input: #09090b;
      --bg-input-hover: #27272a;
      --bg-dropdown: #27272a;
      --bg-hover: #3f3f46;
      --border-color: #27272a;
      --border-input: #27272a;
      --text-main: #f4f4f5;
      --text-muted: #a1a1aa;
      --text-placeholder: #52525b;
      --accent: #818cf8;
      --accent-hover: #6366f1;
      --accent-light: rgba(99, 102, 241, 0.15);
      --success-bg: rgba(22, 101, 52, 0.3);
      --success-text: #4ade80;
      --warning-bg: rgba(133, 77, 14, 0.3);
      --warning-text: #facc15;
      --danger-bg: rgba(153, 27, 27, 0.3);
      --danger-text: #f87171;
      --shadow-panel: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.2), 0 0 0 1px rgb(255 255 255 / 0.1);
      --shadow-dropdown: 0 10px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5), 0 0 0 1px rgb(255 255 255 / 0.1);
      --shadow-input: inset 0 1px 2px rgb(0 0 0 / 0.5);
    }

    .hs-7f270b42 .panel {
      width: 100%;
      max-width: 380px;
      background: var(--bg-panel);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-panel);
      display: flex;
      flex-direction: column;
      overflow: visible;
      opacity: 0;
      animation: hs-7f270b42-slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-play-state: var(--play, running);
      position: relative;
    }

    /* Subtle top highlight for premium feel */
    .hs-7f270b42 .panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.3;
      border-top-left-radius: var(--radius-xl);
      border-top-right-radius: var(--radius-xl);
    }

    .hs-7f270b42 .header {
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hs-7f270b42 .title {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      letter-spacing: -0.01em;
    }

    .hs-7f270b42 .close-btn {
      width: 24px;
      height: 24px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .hs-7f270b42 .close-btn:hover {
      background: var(--bg-hover);
      color: var(--text-main);
    }

    .hs-7f270b42 .content {
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .hs-7f270b42 .section-title {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .hs-7f270b42 .dropdown-wrapper {
      position: relative;
      z-index: 20;
    }

    .hs-7f270b42 .dropdown-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      background: var(--bg-input);
      border: 1px solid var(--border-input);
      border-radius: var(--radius-md);
      cursor: pointer;
      box-shadow: var(--shadow-input);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .hs-7f270b42 .dropdown-trigger:hover {
      border-color: var(--text-muted);
    }

    .hs-7f270b42 .dropdown-trigger:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-light), var(--shadow-input);
    }

    .hs-7f270b42 .trigger-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hs-7f270b42 .flag {
      font-size: 16px;
      line-height: 1;
    }

    .hs-7f270b42 .lang-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main);
    }

    .hs-7f270b42 .chevron {
      color: var(--text-muted);
      transition: transform 0.2s;
    }

    /* Simulating open state */
    .hs-7f270b42 .dropdown-trigger.open {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-light), var(--shadow-input);
    }
    .hs-7f270b42 .dropdown-trigger.open .chevron {
      transform: rotate(180deg);
    }

    .hs-7f270b42 .dropdown-menu {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      width: 100%;
      background: var(--bg-dropdown);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-dropdown);
      padding: 6px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      opacity: 0;
      transform: translateY(-8px);
      transform-origin: top;
      animation: hs-7f270b42-dropdownPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
      animation-play-state: var(--play, running);
    }

    .hs-7f270b42 .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: background 0.15s;
    }

    .hs-7f270b42 .dropdown-item:hover {
      background: var(--bg-hover);
    }

    .hs-7f270b42 .dropdown-item.active {
      background: var(--accent-light);
    }
    .hs-7f270b42 .dropdown-item.active .lang-name {
      color: var(--accent);
    }

    .hs-7f270b42 .item-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hs-7f270b42 .status-pill {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 9999px;
      letter-spacing: 0.02em;
    }
    .hs-7f270b42 .status-success {
      background: var(--success-bg);
      color: var(--success-text);
    }
    .hs-7f270b42 .status-warning {
      background: var(--warning-bg);
      color: var(--warning-text);
    }
    .hs-7f270b42 .status-danger {
      background: var(--danger-bg);
      color: var(--danger-text);
    }

    .hs-7f270b42 .fields-wrapper {
      display: flex;
      flex-direction: column;
      gap: 16px;
      opacity: 0;
      animation: hs-7f270b42-fadeIn 0.5s ease 0.3s forwards;
      animation-play-state: var(--play, running);
    }

    .hs-7f270b42 .field-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hs-7f270b42 .field-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hs-7f270b42 .label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-main);
    }

    .hs-7f270b42 .lang-badge {
      font-size: 10px;
      font-weight: 600;
      color: var(--text-muted);
      background: var(--bg-input);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid var(--border-color);
    }

    .hs-7f270b42 .input, .hs-7f270b42 .textarea {
      width: 100%;
      background: var(--bg-input);
      border: 1px solid var(--border-input);
      border-radius: var(--radius-md);
      padding: 8px 12px;
      font-family: inherit;
      font-size: 14px;
      color: var(--text-main);
      box-shadow: var(--shadow-input);
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
    }

    .hs-7f270b42 .input:focus, .hs-7f270b42 .textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-light), var(--shadow-input);
      background: var(--bg-panel);
    }

    .hs-7f270b42 .textarea {
      resize: none;
      line-height: 1.5;
      min-height: 80px;
    }

    .hs-7f270b42 .input-with-prefix {
      display: flex;
      align-items: stretch;
      background: var(--bg-input);
      border: 1px solid var(--border-input);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-input);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    
    .hs-7f270b42 .input-with-prefix:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-light), var(--shadow-input);
    }

    .hs-7f270b42 .input-prefix {
      display: flex;
      align-items: center;
      padding: 0 12px;
      background: var(--bg-hover);
      border-right: 1px solid var(--border-input);
      color: var(--text-muted);
      font-size: 14px;
    }

    .hs-7f270b42 .input-with-prefix .input {
      border: none;
      box-shadow: none;
      border-radius: 0;
      background: transparent;
    }

    .hs-7f270b42 .input-with-prefix .input:focus {
      box-shadow: none;
    }

    .hs-7f270b42 .footer {
      padding: 16px 24px;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      background: var(--bg-hover);
      border-bottom-left-radius: var(--radius-xl);
      border-bottom-right-radius: var(--radius-xl);
    }

    .hs-7f270b42 .btn {
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 500;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      font-family: inherit;
    }

    .hs-7f270b42 .btn-ghost {
      background: transparent;
      color: var(--text-muted);
    }
    .hs-7f270b42 .btn-ghost:hover {
      background: var(--border-color);
      color: var(--text-main);
    }

    .hs-7f270b42 .btn-primary {
      background: var(--accent);
      color: #ffffff;
      box-shadow: 0 1px 2px rgb(0 0 0 / 0.1), inset 0 1px 0 rgb(255 255 255 / 0.1);
    }
    .hs-7f270b42 .btn-primary:hover {
      background: var(--accent-hover);
      box-shadow: 0 2px 4px rgb(0 0 0 / 0.15), inset 0 1px 0 rgb(255 255 255 / 0.1);
    }

    @keyframes hs-7f270b42-slideUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes hs-7f270b42-fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes hs-7f270b42-dropdownPop {
      from { opacity: 0; transform: translateY(-8px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
  


    .hs-a2842d76 {
      --sys-bg: #f3f4f6;
      --sys-border: rgba(0, 0, 0, 0.1);
      --sys-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
      --window-header: #ffffff;
      --window-dots: #e5e7eb;
      --divider-bg: #e5e7eb;
      --handle-bg: #ffffff;
      --handle-border: #d1d5db;
      --handle-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .dark .hs-a2842d76 {
      --sys-bg: #0a0a0a;
      --sys-border: rgba(255, 255, 255, 0.1);
      --sys-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
      --window-header: #171717;
      --window-dots: #3f3f46;
      --divider-bg: #27272a;
      --handle-bg: #18181b;
      --handle-border: #3f3f46;
      --handle-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }

    /* Theme A: Sleek & Modern */
    .hs-a2842d76 .theme-sleek {
      --t-bg: #ffffff;
      --t-surface: #f8fafc;
      --t-text: #0f172a;
      --t-text-muted: #64748b;
      --t-primary: #3b82f6;
      --t-primary-hover: #2563eb;
      --t-border: #e2e8f0;
      --t-radius: 16px;
      --t-radius-sm: 8px;
      --t-font: system-ui, -apple-system, sans-serif;
      --t-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      --t-btn-text: #ffffff;
    }
    .dark .hs-a2842d76 .theme-sleek {
      --t-bg: #020617;
      --t-surface: rgba(30, 41, 59, 0.5);
      --t-text: #f8fafc;
      --t-text-muted: #94a3b8;
      --t-primary: #6366f1;
      --t-primary-hover: #818cf8;
      --t-border: rgba(255, 255, 255, 0.08);
      --t-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    /* Theme B: Technical & Brutalist */
    .hs-a2842d76 .theme-brutal {
      --t-bg: #fdfdfc;
      --t-surface: #ffffff;
      --t-text: #171717;
      --t-text-muted: #525252;
      --t-primary: #f97316;
      --t-primary-hover: #ea580c;
      --t-border: #171717;
      --t-radius: 0px;
      --t-radius-sm: 0px;
      --t-font: "SF Mono", ui-monospace, "Roboto Mono", monospace;
      --t-shadow: 4px 4px 0px 0px var(--t-primary);
      --t-btn-text: #ffffff;
      --t-bg-pattern: radial-gradient(#e5e5e5 1px, transparent 1px);
    }
    .dark .hs-a2842d76 .theme-brutal {
      --t-bg: #000000;
      --t-surface: #0a0a0a;
      --t-text: #fafafa;
      --t-text-muted: #a3a3a3;
      --t-primary: #22c55e;
      --t-primary-hover: #16a34a;
      --t-border: #333;
      --t-shadow: 4px 4px 0px 0px var(--t-primary);
      --t-bg-pattern: radial-gradient(#262626 1px, transparent 1px);
    }

    /* Layout & Base Styles */
    .hs-a2842d76 .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hs-a2842d76 .browser-window {
      width: 100%;
      background: var(--sys-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--sys-shadow);
      border: 1px solid var(--sys-border);
      display: flex;
      flex-direction: column;
      animation: hs-a2842d76-scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-play-state: var(--play, running);
      opacity: 0;
    }

    .hs-a2842d76 .browser-header {
      height: 40px;
      background: var(--window-header);
      border-bottom: 1px solid var(--sys-border);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
      position: relative;
      z-index: 10;
    }

    .hs-a2842d76 .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--window-dots);
    }
    
    .hs-a2842d76 .browser-title {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-family: system-ui, sans-serif;
      font-size: 12px;
      color: var(--window-dots);
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .hs-a2842d76 .split-view {
      display: flex;
      flex-direction: column;
      position: relative;
      background: var(--sys-bg);
    }
    
    @media (min-width: 768px) {
      .hs-a2842d76 .split-view {
        flex-direction: row;
        height: 600px;
      }
    }

    .hs-a2842d76 .panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .hs-a2842d76 .divider {
      position: relative;
      background: var(--divider-bg);
      z-index: 20;
    }
    
    @media (max-width: 767px) {
      .hs-a2842d76 .divider {
        height: 4px;
        width: 100%;
      }
      .hs-a2842d76 .divider-handle {
        transform: translate(-50%, -50%) rotate(90deg);
      }
    }

    @media (min-width: 768px) {
      .hs-a2842d76 .divider {
        width: 2px;
        height: 100%;
      }
    }

    .hs-a2842d76 .divider-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 24px;
      height: 48px;
      background: var(--handle-bg);
      border: 1px solid var(--handle-border);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-shadow: var(--handle-shadow);
      cursor: ew-resize;
    }

    .hs-a2842d76 .divider-handle::before,
    .hs-a2842d76 .divider-handle::after {
      content: '';
      width: 2px;
      height: 12px;
      background: var(--handle-border);
      border-radius: 2px;
    }

    /* Content Styles applying Variables */
    .hs-a2842d76 .content-wrapper {
      background: var(--t-bg);
      color: var(--t-text);
      font-family: var(--t-font);
      height: 100%;
      padding: 40px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Brutalist specific bg pattern */
    .hs-a2842d76 .theme-brutal .content-wrapper {
      background-image: var(--t-bg-pattern);
      background-size: 20px 20px;
      background-position: center center;
    }
    
    /* Sleek specific glow */
    .dark .hs-a2842d76 .theme-sleek .content-wrapper::before {
      content: '';
      position: absolute;
      top: -20%;
      left: -10%;
      width: 70%;
      height: 70%;
      background: radial-gradient(circle, var(--t-primary) 0%, transparent 70%);
      opacity: 0.15;
      filter: blur(60px);
      pointer-events: none;
    }

    .hs-a2842d76 .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      animation-delay: 0.2s;
      opacity: 0;
    }

    .hs-a2842d76 .logo {
      font-weight: 700;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hs-a2842d76 .theme-sleek .logo svg {
      fill: var(--t-primary);
    }
    .hs-a2842d76 .theme-brutal .logo svg {
      fill: var(--t-text);
    }

    .hs-a2842d76 .nav-links {
      display: flex;
      gap: 24px;
      font-size: 0.875rem;
      color: var(--t-text-muted);
      font-weight: 500;
    }

    .hs-a2842d76 .hero {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .hs-a2842d76 .theme-sleek .hero {
      align-items: center;
      text-align: center;
    }

    .hs-a2842d76 .theme-brutal .hero {
      align-items: flex-start;
      text-align: left;
    }

    .hs-a2842d76 .badge {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: var(--t-radius);
      border: 1px solid var(--t-border);
      color: var(--t-text-muted);
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--t-surface);
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    }
    
    .hs-a2842d76 .theme-brutal .badge {
      border: 1px solid var(--t-border);
      background: var(--t-bg);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hs-a2842d76 .badge span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--t-primary);
      display: inline-block;
    }

    .hs-a2842d76 .title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 16px 0;
      letter-spacing: -0.02em;
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      animation-delay: 0.4s;
      opacity: 0;
    }
    
    .hs-a2842d76 .theme-brutal .title {
      text-transform: uppercase;
    }

    .hs-a2842d76 .desc {
      font-size: 1.125rem;
      color: var(--t-text-muted);
      line-height: 1.6;
      max-width: 400px;
      margin: 0 0 32px 0;
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      animation-delay: 0.5s;
      opacity: 0;
    }

    .hs-a2842d76 .actions {
      display: flex;
      gap: 16px;
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      animation-delay: 0.6s;
      opacity: 0;
    }

    .hs-a2842d76 .btn {
      padding: 12px 24px;
      border-radius: var(--t-radius-sm);
      font-weight: 600;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    .hs-a2842d76 .btn-primary {
      background: var(--t-primary);
      color: var(--t-btn-text);
      border: 1px solid var(--t-primary);
    }

    .hs-a2842d76 .theme-sleek .btn-primary {
      box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    }
    .dark .hs-a2842d76 .theme-sleek .btn-primary {
      box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
    }

    .hs-a2842d76 .theme-brutal .btn-primary {
      box-shadow: var(--t-shadow);
      border: 1px solid var(--t-border);
      color: var(--t-bg);
      background: var(--t-primary);
    }
    
    .dark .hs-a2842d76 .theme-brutal .btn-primary {
      color: #000;
    }

    .hs-a2842d76 .btn-secondary {
      background: transparent;
      color: var(--t-text);
      border: 1px solid var(--t-border);
    }
    
    .hs-a2842d76 .theme-brutal .btn-secondary {
      box-shadow: 4px 4px 0px 0px var(--t-border);
      background: var(--t-bg);
    }

    .hs-a2842d76 .cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: auto;
      padding-top: 40px;
    }
    
    @media (min-width: 1024px) {
      .hs-a2842d76 .cards {
        grid-template-columns: 1fr 1fr;
      }
    }

    .hs-a2842d76 .card {
      background: var(--t-surface);
      border: 1px solid var(--t-border);
      border-radius: var(--t-radius-sm);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: hs-a2842d76-fadeUp 0.6s ease forwards;
      opacity: 0;
    }

    .hs-a2842d76 .card:nth-child(1) { animation-delay: 0.7s; }
    .hs-a2842d76 .card:nth-child(2) { animation-delay: 0.8s; }

    .hs-a2842d76 .theme-sleek .card {
      box-shadow: var(--t-shadow);
    }
    
    .hs-a2842d76 .theme-brutal .card {
      box-shadow: 4px 4px 0px 0px var(--t-border);
    }

    .hs-a2842d76 .card-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--t-bg);
      border: 1px solid var(--t-border);
      border-radius: var(--t-radius-sm);
      color: var(--t-primary);
    }
    
    .hs-a2842d76 .theme-brutal .card-icon {
      border-radius: 0;
    }

    .hs-a2842d76 .card-title {
      font-size: 0.875rem;
      font-weight: 700;
      margin: 0;
    }

    .hs-a2842d76 .card-desc {
      font-size: 0.75rem;
      color: var(--t-text-muted);
      margin: 0;
      line-height: 1.5;
    }

    @keyframes hs-a2842d76-scaleIn {
      from { opacity: 0; transform: scale(0.98) translateY(10px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    @keyframes hs-a2842d76-fadeUp {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }
  


    .hs-d858b322 {
      /* Light Mode Palette (One Light inspired) */
      --bg: rgba(250, 250, 252, 0.75);
      --header-bg: rgba(0, 0, 0, 0.03);
      --header-border: rgba(0, 0, 0, 0.06);
      --border: rgba(0, 0, 0, 0.08);
      --shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08), 0 8px 16px -8px rgba(0, 0, 0, 0.04);
      --inset-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
      
      --text-main: #383a42;
      --text-muted: #a0a1a7;
      --kw: #a626a4;
      --class: #c18401;
      --decorator: #4078f2;
      --prop: #e45649;
      --type-prim: #0184bc;
      --string: #50a14f;
      --punct: #383a42;
    }

    .dark .hs-d858b322 {
      /* Dark Mode Palette (One Dark Pro inspired) */
      --bg: rgba(30, 32, 38, 0.75);
      --header-bg: rgba(0, 0, 0, 0.2);
      --header-border: rgba(255, 255, 255, 0.05);
      --border: rgba(255, 255, 255, 0.12);
      --shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.4), 0 16px 32px -16px rgba(0, 0, 0, 0.3);
      --inset-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
      
      --text-main: #abb2bf;
      --text-muted: #5c6370;
      --kw: #c678dd;
      --class: #e5c07b;
      --decorator: #61afef;
      --prop: #e06c75;
      --type-prim: #56b6c2;
      --string: #98c379;
      --punct: #abb2bf;
    }

    .hs-d858b322 .container {
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      padding: 32px 16px;
      box-sizing: border-box;
      perspective: 1000px;
    }

    .hs-d858b322 .editor-window {
      background: var(--bg);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow), var(--inset-shadow);
      overflow: hidden;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-main);
      
      /* Entrance Animation */
      opacity: 0;
      transform: translateY(24px) scale(0.98) rotateX(4deg);
      transform-origin: center top;
      animation: hs-d858b322-window-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-play-state: var(--play, running);
    }

    @keyframes hs-d858b322-window-enter {
      100% { 
        opacity: 1; 
        transform: translateY(0) scale(1) rotateX(0deg); 
      }
    }

    .hs-d858b322 .editor-header {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      background: var(--header-bg);
      border-bottom: 1px solid var(--header-border);
      position: relative;
    }

    .hs-d858b322 .mac-controls {
      display: flex;
      gap: 8px;
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
    }

    .hs-d858b322 .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    .hs-d858b322 .dot.red { background-color: #ff5f56; }
    .hs-d858b322 .dot.yellow { background-color: #ffbd2e; }
    .hs-d858b322 .dot.green { background-color: #27c93f; }

    .hs-d858b322 .filename {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: -0.01em;
      user-select: none;
    }

    .hs-d858b322 .editor-body {
      padding: 16px 0;
      overflow-x: auto;
    }

    .hs-d858b322 .line {
      display: flex;
      align-items: flex-start;
      padding: 0 16px;
      
      /* Staggered Line Animation */
      opacity: 0;
      transform: translateX(-12px);
      animation: hs-d858b322-line-enter 0.5s ease-out forwards;
      animation-play-state: var(--play, running);
    }

    @keyframes hs-d858b322-line-enter {
      100% { 
        opacity: 1; 
        transform: translateX(0); 
      }
    }

    /* Stagger delays */
    .hs-d858b322 .line:nth-child(1) { animation-delay: 0.15s; }
    .hs-d858b322 .line:nth-child(2) { animation-delay: 0.20s; }
    .hs-d858b322 .line:nth-child(3) { animation-delay: 0.25s; }
    .hs-d858b322 .line:nth-child(4) { animation-delay: 0.30s; }
    .hs-d858b322 .line:nth-child(5) { animation-delay: 0.35s; }
    .hs-d858b322 .line:nth-child(6) { animation-delay: 0.40s; }
    .hs-d858b322 .line:nth-child(7) { animation-delay: 0.45s; }
    .hs-d858b322 .line:nth-child(8) { animation-delay: 0.50s; }
    .hs-d858b322 .line:nth-child(9) { animation-delay: 0.55s; }
    .hs-d858b322 .line:nth-child(10) { animation-delay: 0.60s; }
    .hs-d858b322 .line:nth-child(11) { animation-delay: 0.65s; }
    .hs-d858b322 .line:nth-child(12) { animation-delay: 0.70s; }
    .hs-d858b322 .line:nth-child(13) { animation-delay: 0.75s; }
    .hs-d858b322 .line:nth-child(14) { animation-delay: 0.80s; }

    .hs-d858b322 .line:hover {
      background: rgba(255, 255, 255, 0.03);
    }
    .dark .hs-d858b322 .line:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .hs-d858b322 .line-num {
      width: 24px;
      min-width: 24px;
      text-align: right;
      margin-right: 20px;
      color: var(--text-muted);
      user-select: none;
      font-size: 13px;
    }

    .hs-d858b322 .line-code {
      white-space: pre;
      flex-grow: 1;
    }

    .hs-d858b322 .indent {
      padding-left: 2ch;
    }

    /* Syntax Highlighting */
    .hs-d858b322 .kw { color: var(--kw); }
    .hs-d858b322 .class { color: var(--class); }
    .hs-d858b322 .decorator { color: var(--decorator); }
    .hs-d858b322 .prop { color: var(--prop); }
    .hs-d858b322 .type-prim { color: var(--type-prim); }
    .hs-d858b322 .string { color: var(--string); }
    .hs-d858b322 .punct { color: var(--punct); }

    /* Subtle glow on decorators for polish */
    .dark .hs-d858b322 .decorator {
      text-shadow: 0 0 12px rgba(97, 175, 239, 0.3);
    }
  