/* ============================================
   ZORZ COLOR PALETTE V3 - FINAL REFINEMENTS
   Based on V33 (Catppuccin Dusk) with iterations
   ============================================ */

/* ========================================
   BASE STYLES & LAYOUT
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background: #1a1a24;
  color: #c6d0f5;
}

.page-header {
  text-align: center;
  padding: 2rem 1rem;
  background: #14141c;
  border-bottom: 1px solid #363a4f;
}

.page-header h1 {
  font-size: 2rem;
  color: #c6d0f5;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #737994;
  font-size: 1rem;
}

/* Collapsible Menu */
.menu-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1e1e2e;
  border-bottom: 1px solid #363a4f;
}

.menu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.menu-toggle:hover {
  background: #262637;
}

.menu-toggle-label {
  font-weight: 600;
  color: #c6d0f5;
  font-size: 0.9rem;
}

.menu-toggle-icon {
  color: #737994;
  transition: transform 0.2s;
}

.menu-container.open .menu-toggle-icon {
  transform: rotate(180deg);
}

.menu-content {
  display: none;
  padding: 1rem 1.5rem;
  background: #181825;
  border-top: 1px solid #363a4f;
}

.menu-container.open .menu-content {
  display: block;
}

.menu-section {
  margin-bottom: 1rem;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737994;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-links a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #363a4f;
  color: #c6d0f5;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.15s;
}

.menu-links a:hover {
  background: #414559;
}

.menu-links a.highlight {
  font-weight: 600;
}

/* Variant Section */
.variant-section {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #363a4f;
}

.variant-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.variant-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

/* Color Swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.swatch {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

/* Noise Texture */
.noise-texture {
  position: relative;
}

.noise-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   COMPREHENSIVE ELEMENT SHOWCASE STYLES
   ======================================== */

/* Section Containers */
.showcase-section {
  margin-bottom: 3rem;
}

.showcase-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  opacity: 0.7;
}

/* Grid Layouts */
.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Element Blocks */
.element-block {
  padding: 1.5rem;
  border-radius: 8px;
}

.element-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.15s;
}

.input-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}

textarea.input {
  min-height: 100px;
  resize: vertical;
}

select.input {
  cursor: pointer;
}

.checkbox-group, .radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-label, .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Tags & Badges */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards */
.card {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.2s;
}

.card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

/* YouTube Embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-embed iframe,
.video-embed .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.play-icon:hover {
  transform: scale(1.1);
}

/* Code Blocks */
.code-block {
  border-radius: 8px;
  overflow: hidden;
}

.code-header {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-content {
  padding: 1rem;
  overflow-x: auto;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.code-content code {
  display: block;
  white-space: pre;
}

/* Syntax Colors */
.code-keyword { font-weight: 600; }
.code-string { }
.code-comment { font-style: italic; }
.code-function { }
.code-number { }
.code-operator { }

/* Tables */
.table-container {
  overflow-x: auto;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
}

th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats Cards */
.stat-card {
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.stat-change {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Flowchart */
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
}

.flow-node {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-width: 180px;
}

.flow-node.start { border-radius: 20px; }
.flow-node.decision { transform: rotate(0deg); border-radius: 4px; }
.flow-node.process { }
.flow-node.end { border-radius: 20px; }

.flow-arrow {
  font-size: 1.5rem;
  line-height: 1;
}

.flow-branch {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.flow-branch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flow-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Progress Bars / Charts */
.progress-bar {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s;
}

.chart-bar-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-bar-label {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
}

.chart-bar {
  flex: 1;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Testimonial */
.testimonial {
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-title {
  font-size: 0.85rem;
}

/* Navigation Demo */
.nav-demo {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.nav-demo a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.alert-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Pricing Card */
.pricing-card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  font-weight: 700;
}

/* Preview Card (Full Page Mock) */
.preview-card {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.preview-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.preview-nav {
  display: flex;
  gap: 1.5rem;
}

.preview-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.preview-hero {
  padding: 3rem 2rem;
  text-align: center;
}

.preview-hero h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.preview-hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.preview-section-alt {
  padding: 1.5rem 2rem;
  text-align: center;
}

.preview-footer {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  text-align: center;
}

/* ========================================
   VARIANT 37: Dusk Refined
   V33 base with better card differentiation
   ======================================== */
#v37 {
  background: #292c3c;
}

#v37.noise-texture {
  background-color: #292c3c;
}

#v37 .variant-title { color: #ef9f76; }
#v37 .variant-desc { color: #a5adce; }

#v37 .showcase-section h3 { color: #c6d0f5; border-color: #414559; }

/* Card with better differentiation */
#v37 .element-block {
  background: #363a4f;
  border: 1px solid #414559;
}

#v37 .card {
  background: #232634;
  border: 1px solid #363a4f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#v37 .card h4 { color: #c6d0f5; }
#v37 .card p { color: #737994; }
#v37 .card-link { color: #8caaee; }

#v37 .text-heading { color: #c6d0f5; font-weight: 600; }
#v37 .text-body { color: #a5adce; }
#v37 .text-muted { color: #737994; }

/* Buttons */
#v37 .btn-primary {
  background: #ef9f76;
  color: #292c3c;
  font-weight: 600;
}
#v37 .btn-primary:hover { background: #f4b08a; }

#v37 .btn-secondary {
  background: #8caaee;
  color: #292c3c;
  font-weight: 600;
}
#v37 .btn-secondary:hover { background: #99b4f1; }

#v37 .btn-tertiary {
  background: #a6d189;
  color: #292c3c;
  font-weight: 600;
}
#v37 .btn-tertiary:hover { background: #b4da9c; }

#v37 .btn-ghost {
  background: #414559;
  color: #c6d0f5;
  border: none;
}
#v37 .btn-ghost:hover { background: #51576d; color: #f4f5fc; }

#v37 .btn-outline {
  background: transparent;
  color: #c6d0f5;
  border: 1px solid #51576d;
}
#v37 .btn-outline:hover { background: #363a4f; border-color: #626880; }

/* Form Inputs */
#v37 .form-label { color: #a5adce; }
#v37 .input {
  background: #232634;
  border: 1px solid #414559;
  color: #c6d0f5;
}
#v37 .input:focus {
  border-color: #8caaee;
  outline: none;
  box-shadow: 0 0 0 2px rgba(140, 170, 238, 0.2);
}
#v37 .input::placeholder { color: #626880; }

/* Tags */
#v37 .tag {
  background: #414559;
  color: #b5bfe2;
}
#v37 .tag-accent {
  background: rgba(239, 159, 118, 0.15);
  color: #ef9f76;
}
#v37 .tag-accent-alt {
  background: rgba(140, 170, 238, 0.15);
  color: #8caaee;
}
#v37 .tag-accent-third {
  background: rgba(166, 209, 137, 0.15);
  color: #a6d189;
}

/* Team Card */
#v37 .team-card {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .team-photo {
  background: #363a4f;
  color: #8caaee;
}
#v37 .team-name { color: #c6d0f5; }
#v37 .team-role { color: #ef9f76; }
#v37 .team-bio { color: #737994; }
#v37 .team-social a { color: #8caaee; }
#v37 .team-social a:hover { color: #ef9f76; }

/* Video Embed */
#v37 .video-embed {
  background: #1e2030;
  border: 1px solid #363a4f;
}
#v37 .video-placeholder {
  background: linear-gradient(135deg, #232634 0%, #1e2030 100%);
  color: #737994;
}
#v37 .play-icon {
  background: #ef9f76;
  color: #292c3c;
}

/* Code Block */
#v37 .code-block {
  background: #1e2030;
  border: 1px solid #363a4f;
}
#v37 .code-header {
  background: #232634;
  color: #737994;
  border-bottom: 1px solid #363a4f;
}
#v37 .code-content {
  color: #c6d0f5;
}
#v37 .code-keyword { color: #ca9ee6; }
#v37 .code-string { color: #a6d189; }
#v37 .code-comment { color: #626880; }
#v37 .code-function { color: #8caaee; }
#v37 .code-number { color: #ef9f76; }

/* Table */
#v37 .table-container {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 th {
  background: #1e2030;
  color: #a5adce;
  border-bottom: 1px solid #414559;
}
#v37 td {
  color: #c6d0f5;
  border-bottom: 1px solid #363a4f;
}
#v37 tr:hover td { background: #292c3c; }

/* Stats */
#v37 .stat-card {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .stat-value { color: #c6d0f5; }
#v37 .stat-label { color: #737994; }
#v37 .stat-change.positive { color: #a6d189; }
#v37 .stat-change.negative { color: #e78284; }

/* Flowchart */
#v37 .flowchart {
  background: #232634;
  border: 1px solid #363a4f;
  border-radius: 10px;
}
#v37 .flow-node {
  background: #363a4f;
  color: #c6d0f5;
  border: 1px solid #51576d;
}
#v37 .flow-node.start { background: #8caaee; color: #1e2030; border-color: #8caaee; }
#v37 .flow-node.end { background: #a6d189; color: #1e2030; border-color: #a6d189; }
#v37 .flow-node.decision { background: #ef9f76; color: #1e2030; border-color: #ef9f76; }
#v37 .flow-arrow { color: #626880; }
#v37 .flow-label { color: #a5adce; }

/* Progress/Charts */
#v37 .progress-bar { background: #363a4f; }
#v37 .progress-fill { background: #8caaee; }
#v37 .chart-bar { background: #363a4f; }
#v37 .chart-bar-fill { background: #8caaee; color: #1e2030; }
#v37 .chart-bar-fill.accent { background: #ef9f76; }
#v37 .chart-bar-fill.tertiary { background: #a6d189; }
#v37 .chart-bar-label { color: #a5adce; }

/* Testimonial */
#v37 .testimonial {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .testimonial-quote { color: #c6d0f5; }
#v37 .testimonial-avatar { background: #363a4f; color: #8caaee; }
#v37 .testimonial-name { color: #c6d0f5; }
#v37 .testimonial-title { color: #737994; }

/* Navigation */
#v37 .nav-demo {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .nav-demo a { color: #737994; }
#v37 .nav-demo a:hover { color: #c6d0f5; }
#v37 .nav-demo a.active { color: #ef9f76; }

/* Alerts */
#v37 .alert {
  border: 1px solid;
}
#v37 .alert.info {
  background: rgba(140, 170, 238, 0.1);
  border-color: rgba(140, 170, 238, 0.3);
  color: #8caaee;
}
#v37 .alert.success {
  background: rgba(166, 209, 137, 0.1);
  border-color: rgba(166, 209, 137, 0.3);
  color: #a6d189;
}
#v37 .alert.warning {
  background: rgba(239, 159, 118, 0.1);
  border-color: rgba(239, 159, 118, 0.3);
  color: #ef9f76;
}
#v37 .alert.error {
  background: rgba(231, 130, 132, 0.1);
  border-color: rgba(231, 130, 132, 0.3);
  color: #e78284;
}
#v37 .alert-content { color: #a5adce; }
#v37 .alert-title { color: inherit; }

/* Pricing */
#v37 .pricing-card {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .pricing-card.featured {
  border-color: #ef9f76;
  box-shadow: 0 0 20px rgba(239, 159, 118, 0.15);
}
#v37 .pricing-tier { color: #737994; }
#v37 .pricing-price { color: #c6d0f5; }
#v37 .pricing-period { color: #737994; }
#v37 .pricing-features li { color: #a5adce; }
#v37 .pricing-features li::before { color: #a6d189; }

/* Preview */
#v37 .preview-card {
  background: #232634;
  border: 1px solid #363a4f;
}
#v37 .preview-header {
  background: #1e2030;
  border-bottom: 1px solid #363a4f;
}
#v37 .preview-logo { color: #c6d0f5; }
#v37 .preview-nav a { color: #737994; }
#v37 .preview-nav a:hover { color: #c6d0f5; }
#v37 .preview-hero {
  background: #292c3c;
}
#v37 .preview-hero h2 { color: #c6d0f5; }
#v37 .preview-hero p { color: #a5adce; }
#v37 .preview-section-alt {
  background: #1e2030;
}
#v37 .preview-footer {
  background: #181926;
  color: #626880;
  border-top: 1px solid #363a4f;
}

/* ========================================
   VARIANT 38: Dusk Deeper Cards
   Darker card backgrounds for more contrast
   ======================================== */
#v38 {
  background: #2e3244;
}

#v38.noise-texture { background-color: #2e3244; }

#v38 .variant-title { color: #ef9f76; }
#v38 .variant-desc { color: #a5adce; }
#v38 .showcase-section h3 { color: #c6d0f5; border-color: #454a5f; }

#v38 .element-block {
  background: #393e54;
  border: 1px solid #454a5f;
}

#v38 .card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
#v38 .card h4 { color: #c6d0f5; }
#v38 .card p { color: #737994; }
#v38 .card-link { color: #8caaee; }

#v38 .text-heading { color: #c6d0f5; font-weight: 600; }
#v38 .text-body { color: #a5adce; }
#v38 .text-muted { color: #737994; }

#v38 .btn-primary { background: #ef9f76; color: #1e2030; font-weight: 600; }
#v38 .btn-primary:hover { background: #f4b08a; }
#v38 .btn-secondary { background: #8caaee; color: #1e2030; font-weight: 600; }
#v38 .btn-secondary:hover { background: #99b4f1; }
#v38 .btn-ghost { background: #454a5f; color: #c6d0f5; }
#v38 .btn-ghost:hover { background: #555b72; }

#v38 .form-label { color: #a5adce; }
#v38 .input { background: #1e2030; border: 1px solid #454a5f; color: #c6d0f5; }
#v38 .input:focus { border-color: #8caaee; box-shadow: 0 0 0 2px rgba(140, 170, 238, 0.2); }
#v38 .input::placeholder { color: #626880; }

#v38 .tag { background: #454a5f; color: #b5bfe2; }
#v38 .tag-accent { background: rgba(239, 159, 118, 0.15); color: #ef9f76; }
#v38 .tag-accent-alt { background: rgba(140, 170, 238, 0.15); color: #8caaee; }

#v38 .team-card { background: #1e2030; border: 1px solid #363a4f; }
#v38 .team-photo { background: #363a4f; color: #8caaee; }
#v38 .team-name { color: #c6d0f5; }
#v38 .team-role { color: #ef9f76; }
#v38 .team-bio { color: #737994; }
#v38 .team-social a { color: #8caaee; }

#v38 .video-embed { background: #181926; border: 1px solid #363a4f; }
#v38 .video-placeholder { background: linear-gradient(135deg, #1e2030 0%, #181926 100%); color: #737994; }
#v38 .play-icon { background: #ef9f76; color: #1e2030; }

#v38 .code-block { background: #181926; border: 1px solid #363a4f; }
#v38 .code-header { background: #1e2030; color: #737994; border-bottom: 1px solid #363a4f; }
#v38 .code-content { color: #c6d0f5; }
#v38 .code-keyword { color: #ca9ee6; }
#v38 .code-string { color: #a6d189; }
#v38 .code-comment { color: #626880; }
#v38 .code-function { color: #8caaee; }
#v38 .code-number { color: #ef9f76; }

#v38 .table-container { background: #1e2030; border: 1px solid #363a4f; }
#v38 th { background: #181926; color: #a5adce; border-bottom: 1px solid #454a5f; }
#v38 td { color: #c6d0f5; border-bottom: 1px solid #363a4f; }

#v38 .stat-card { background: #1e2030; border: 1px solid #363a4f; }
#v38 .stat-value { color: #c6d0f5; }
#v38 .stat-label { color: #737994; }

#v38 .flowchart { background: #1e2030; border: 1px solid #363a4f; border-radius: 10px; }
#v38 .flow-node { background: #363a4f; color: #c6d0f5; border: 1px solid #51576d; }
#v38 .flow-node.start { background: #8caaee; color: #1e2030; }
#v38 .flow-node.end { background: #a6d189; color: #1e2030; }
#v38 .flow-node.decision { background: #ef9f76; color: #1e2030; }
#v38 .flow-arrow { color: #626880; }

#v38 .progress-bar { background: #363a4f; }
#v38 .progress-fill { background: #8caaee; }
#v38 .chart-bar { background: #363a4f; }
#v38 .chart-bar-fill { background: #8caaee; color: #1e2030; }

#v38 .testimonial { background: #1e2030; border: 1px solid #363a4f; }
#v38 .testimonial-quote { color: #c6d0f5; }
#v38 .testimonial-avatar { background: #363a4f; color: #8caaee; }
#v38 .testimonial-name { color: #c6d0f5; }
#v38 .testimonial-title { color: #737994; }

#v38 .nav-demo { background: #1e2030; border: 1px solid #363a4f; }
#v38 .nav-demo a { color: #737994; }
#v38 .nav-demo a:hover { color: #c6d0f5; }
#v38 .nav-demo a.active { color: #ef9f76; }

#v38 .alert { border: 1px solid; }
#v38 .alert.info { background: rgba(140, 170, 238, 0.1); border-color: rgba(140, 170, 238, 0.3); color: #8caaee; }
#v38 .alert.success { background: rgba(166, 209, 137, 0.1); border-color: rgba(166, 209, 137, 0.3); color: #a6d189; }
#v38 .alert.warning { background: rgba(239, 159, 118, 0.1); border-color: rgba(239, 159, 118, 0.3); color: #ef9f76; }
#v38 .alert.error { background: rgba(231, 130, 132, 0.1); border-color: rgba(231, 130, 132, 0.3); color: #e78284; }
#v38 .alert-content { color: #a5adce; }

#v38 .pricing-card { background: #1e2030; border: 1px solid #363a4f; }
#v38 .pricing-card.featured { border-color: #ef9f76; }
#v38 .pricing-tier { color: #737994; }
#v38 .pricing-price { color: #c6d0f5; }
#v38 .pricing-period { color: #737994; }
#v38 .pricing-features li { color: #a5adce; }
#v38 .pricing-features li::before { color: #a6d189; }

#v38 .preview-card { background: #1e2030; border: 1px solid #363a4f; }
#v38 .preview-header { background: #181926; border-bottom: 1px solid #363a4f; }
#v38 .preview-logo { color: #c6d0f5; }
#v38 .preview-nav a { color: #737994; }
#v38 .preview-hero { background: #232634; }
#v38 .preview-hero h2 { color: #c6d0f5; }
#v38 .preview-hero p { color: #a5adce; }
#v38 .preview-section-alt { background: #181926; }
#v38 .preview-footer { background: #14141c; color: #626880; border-top: 1px solid #363a4f; }

/* ========================================
   VARIANT 39: Dusk Warm
   Slightly warmer base tone
   ======================================== */
#v39 {
  background: #2c2a38;
}

#v39.noise-texture { background-color: #2c2a38; }

#v39 .variant-title { color: #f0a070; }
#v39 .variant-desc { color: #a8a4bc; }
#v39 .showcase-section h3 { color: #cac4dc; border-color: #443f54; }

#v39 .element-block {
  background: #3a3748;
  border: 1px solid #443f54;
}

#v39 .card {
  background: #232130;
  border: 1px solid #3a3748;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#v39 .card h4 { color: #cac4dc; }
#v39 .card p { color: #76728a; }
#v39 .card-link { color: #90a8e8; }

#v39 .text-heading { color: #cac4dc; font-weight: 600; }
#v39 .text-body { color: #a8a4bc; }
#v39 .text-muted { color: #76728a; }

#v39 .btn-primary { background: #f0a070; color: #232130; font-weight: 600; }
#v39 .btn-primary:hover { background: #f4b088; }
#v39 .btn-secondary { background: #90a8e8; color: #232130; font-weight: 600; }
#v39 .btn-secondary:hover { background: #a0b4ec; }
#v39 .btn-ghost { background: #443f54; color: #cac4dc; }
#v39 .btn-ghost:hover { background: #544e66; }

#v39 .form-label { color: #a8a4bc; }
#v39 .input { background: #232130; border: 1px solid #443f54; color: #cac4dc; }
#v39 .input:focus { border-color: #90a8e8; box-shadow: 0 0 0 2px rgba(144, 168, 232, 0.2); }
#v39 .input::placeholder { color: #665f78; }

#v39 .tag { background: #443f54; color: #b8b4cc; }
#v39 .tag-accent { background: rgba(240, 160, 112, 0.15); color: #f0a070; }
#v39 .tag-accent-alt { background: rgba(144, 168, 232, 0.15); color: #90a8e8; }

#v39 .team-card { background: #232130; border: 1px solid #3a3748; }
#v39 .team-photo { background: #3a3748; color: #90a8e8; }
#v39 .team-name { color: #cac4dc; }
#v39 .team-role { color: #f0a070; }
#v39 .team-bio { color: #76728a; }
#v39 .team-social a { color: #90a8e8; }

#v39 .video-embed { background: #1c1a28; border: 1px solid #3a3748; }
#v39 .video-placeholder { background: linear-gradient(135deg, #232130 0%, #1c1a28 100%); color: #76728a; }
#v39 .play-icon { background: #f0a070; color: #232130; }

#v39 .code-block { background: #1c1a28; border: 1px solid #3a3748; }
#v39 .code-header { background: #232130; color: #76728a; border-bottom: 1px solid #3a3748; }
#v39 .code-content { color: #cac4dc; }
#v39 .code-keyword { color: #d0a0e0; }
#v39 .code-string { color: #a8d490; }
#v39 .code-comment { color: #665f78; }
#v39 .code-function { color: #90a8e8; }
#v39 .code-number { color: #f0a070; }

#v39 .table-container { background: #232130; border: 1px solid #3a3748; }
#v39 th { background: #1c1a28; color: #a8a4bc; border-bottom: 1px solid #443f54; }
#v39 td { color: #cac4dc; border-bottom: 1px solid #3a3748; }

#v39 .stat-card { background: #232130; border: 1px solid #3a3748; }
#v39 .stat-value { color: #cac4dc; }
#v39 .stat-label { color: #76728a; }

#v39 .flowchart { background: #232130; border: 1px solid #3a3748; border-radius: 10px; }
#v39 .flow-node { background: #3a3748; color: #cac4dc; border: 1px solid #544e66; }
#v39 .flow-node.start { background: #90a8e8; color: #1c1a28; }
#v39 .flow-node.end { background: #a8d490; color: #1c1a28; }
#v39 .flow-node.decision { background: #f0a070; color: #1c1a28; }
#v39 .flow-arrow { color: #665f78; }

#v39 .progress-bar { background: #3a3748; }
#v39 .progress-fill { background: #90a8e8; }

#v39 .testimonial { background: #232130; border: 1px solid #3a3748; }
#v39 .testimonial-quote { color: #cac4dc; }
#v39 .testimonial-avatar { background: #3a3748; color: #90a8e8; }
#v39 .testimonial-name { color: #cac4dc; }
#v39 .testimonial-title { color: #76728a; }

#v39 .nav-demo { background: #232130; border: 1px solid #3a3748; }
#v39 .nav-demo a { color: #76728a; }
#v39 .nav-demo a:hover { color: #cac4dc; }
#v39 .nav-demo a.active { color: #f0a070; }

#v39 .alert { border: 1px solid; }
#v39 .alert.info { background: rgba(144, 168, 232, 0.1); border-color: rgba(144, 168, 232, 0.3); color: #90a8e8; }
#v39 .alert.success { background: rgba(168, 212, 144, 0.1); border-color: rgba(168, 212, 144, 0.3); color: #a8d490; }
#v39 .alert.warning { background: rgba(240, 160, 112, 0.1); border-color: rgba(240, 160, 112, 0.3); color: #f0a070; }
#v39 .alert.error { background: rgba(232, 132, 132, 0.1); border-color: rgba(232, 132, 132, 0.3); color: #e88484; }
#v39 .alert-content { color: #a8a4bc; }

#v39 .pricing-card { background: #232130; border: 1px solid #3a3748; }
#v39 .pricing-card.featured { border-color: #f0a070; }
#v39 .pricing-tier { color: #76728a; }
#v39 .pricing-price { color: #cac4dc; }
#v39 .pricing-period { color: #76728a; }
#v39 .pricing-features li { color: #a8a4bc; }
#v39 .pricing-features li::before { color: #a8d490; }

#v39 .preview-card { background: #232130; border: 1px solid #3a3748; }
#v39 .preview-header { background: #1c1a28; border-bottom: 1px solid #3a3748; }
#v39 .preview-logo { color: #cac4dc; }
#v39 .preview-nav a { color: #76728a; }
#v39 .preview-hero { background: #2c2a38; }
#v39 .preview-hero h2 { color: #cac4dc; }
#v39 .preview-hero p { color: #a8a4bc; }
#v39 .preview-section-alt { background: #1c1a28; }
#v39 .preview-footer { background: #16141e; color: #665f78; border-top: 1px solid #3a3748; }

/* ========================================
   VARIANT 40: Dusk Lighter
   Lighter base for better readability
   ======================================== */
#v40 {
  background: #303446;
}

#v40.noise-texture { background-color: #303446; }

#v40 .variant-title { color: #ef9f76; }
#v40 .variant-desc { color: #b5bfe2; }
#v40 .showcase-section h3 { color: #c6d0f5; border-color: #51576d; }

#v40 .element-block {
  background: #414559;
  border: 1px solid #51576d;
}

#v40 .card {
  background: #292c3c;
  border: 1px solid #414559;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#v40 .card h4 { color: #c6d0f5; }
#v40 .card p { color: #838ba7; }
#v40 .card-link { color: #8caaee; }

#v40 .text-heading { color: #c6d0f5; font-weight: 600; }
#v40 .text-body { color: #b5bfe2; }
#v40 .text-muted { color: #838ba7; }

#v40 .btn-primary { background: #ef9f76; color: #292c3c; font-weight: 600; }
#v40 .btn-primary:hover { background: #f4b08a; }
#v40 .btn-secondary { background: #8caaee; color: #292c3c; font-weight: 600; }
#v40 .btn-secondary:hover { background: #99b4f1; }
#v40 .btn-ghost { background: #51576d; color: #c6d0f5; }
#v40 .btn-ghost:hover { background: #626880; }

#v40 .form-label { color: #b5bfe2; }
#v40 .input { background: #292c3c; border: 1px solid #51576d; color: #c6d0f5; }
#v40 .input:focus { border-color: #8caaee; box-shadow: 0 0 0 2px rgba(140, 170, 238, 0.2); }
#v40 .input::placeholder { color: #737994; }

#v40 .tag { background: #51576d; color: #c6d0f5; }
#v40 .tag-accent { background: rgba(239, 159, 118, 0.18); color: #ef9f76; }
#v40 .tag-accent-alt { background: rgba(140, 170, 238, 0.18); color: #8caaee; }

#v40 .team-card { background: #292c3c; border: 1px solid #414559; }
#v40 .team-photo { background: #414559; color: #8caaee; }
#v40 .team-name { color: #c6d0f5; }
#v40 .team-role { color: #ef9f76; }
#v40 .team-bio { color: #838ba7; }
#v40 .team-social a { color: #8caaee; }

#v40 .video-embed { background: #232634; border: 1px solid #414559; }
#v40 .video-placeholder { background: linear-gradient(135deg, #292c3c 0%, #232634 100%); color: #838ba7; }
#v40 .play-icon { background: #ef9f76; color: #292c3c; }

#v40 .code-block { background: #232634; border: 1px solid #414559; }
#v40 .code-header { background: #292c3c; color: #838ba7; border-bottom: 1px solid #414559; }
#v40 .code-content { color: #c6d0f5; }
#v40 .code-keyword { color: #ca9ee6; }
#v40 .code-string { color: #a6d189; }
#v40 .code-comment { color: #737994; }
#v40 .code-function { color: #8caaee; }
#v40 .code-number { color: #ef9f76; }

#v40 .table-container { background: #292c3c; border: 1px solid #414559; }
#v40 th { background: #232634; color: #b5bfe2; border-bottom: 1px solid #51576d; }
#v40 td { color: #c6d0f5; border-bottom: 1px solid #414559; }

#v40 .stat-card { background: #292c3c; border: 1px solid #414559; }
#v40 .stat-value { color: #c6d0f5; }
#v40 .stat-label { color: #838ba7; }

#v40 .flowchart { background: #292c3c; border: 1px solid #414559; border-radius: 10px; }
#v40 .flow-node { background: #414559; color: #c6d0f5; border: 1px solid #626880; }
#v40 .flow-node.start { background: #8caaee; color: #232634; }
#v40 .flow-node.end { background: #a6d189; color: #232634; }
#v40 .flow-node.decision { background: #ef9f76; color: #232634; }
#v40 .flow-arrow { color: #737994; }

#v40 .progress-bar { background: #414559; }
#v40 .progress-fill { background: #8caaee; }

#v40 .testimonial { background: #292c3c; border: 1px solid #414559; }
#v40 .testimonial-quote { color: #c6d0f5; }
#v40 .testimonial-avatar { background: #414559; color: #8caaee; }
#v40 .testimonial-name { color: #c6d0f5; }
#v40 .testimonial-title { color: #838ba7; }

#v40 .nav-demo { background: #292c3c; border: 1px solid #414559; }
#v40 .nav-demo a { color: #838ba7; }
#v40 .nav-demo a:hover { color: #c6d0f5; }
#v40 .nav-demo a.active { color: #ef9f76; }

#v40 .alert { border: 1px solid; }
#v40 .alert.info { background: rgba(140, 170, 238, 0.12); border-color: rgba(140, 170, 238, 0.35); color: #8caaee; }
#v40 .alert.success { background: rgba(166, 209, 137, 0.12); border-color: rgba(166, 209, 137, 0.35); color: #a6d189; }
#v40 .alert.warning { background: rgba(239, 159, 118, 0.12); border-color: rgba(239, 159, 118, 0.35); color: #ef9f76; }
#v40 .alert.error { background: rgba(231, 130, 132, 0.12); border-color: rgba(231, 130, 132, 0.35); color: #e78284; }
#v40 .alert-content { color: #b5bfe2; }

#v40 .pricing-card { background: #292c3c; border: 1px solid #414559; }
#v40 .pricing-card.featured { border-color: #ef9f76; }
#v40 .pricing-tier { color: #838ba7; }
#v40 .pricing-price { color: #c6d0f5; }
#v40 .pricing-period { color: #838ba7; }
#v40 .pricing-features li { color: #b5bfe2; }
#v40 .pricing-features li::before { color: #a6d189; }

#v40 .preview-card { background: #292c3c; border: 1px solid #414559; }
#v40 .preview-header { background: #232634; border-bottom: 1px solid #414559; }
#v40 .preview-logo { color: #c6d0f5; }
#v40 .preview-nav a { color: #838ba7; }
#v40 .preview-hero { background: #303446; }
#v40 .preview-hero h2 { color: #c6d0f5; }
#v40 .preview-hero p { color: #b5bfe2; }
#v40 .preview-section-alt { background: #232634; }
#v40 .preview-footer { background: #1e2030; color: #737994; border-top: 1px solid #414559; }

/* ========================================
   VARIANT 41: Dusk Elevated
   More pronounced elevation/depth
   ======================================== */
#v41 {
  background: #292c3c;
}

#v41.noise-texture { background-color: #292c3c; }

#v41 .variant-title { color: #ef9f76; }
#v41 .variant-desc { color: #a5adce; }
#v41 .showcase-section h3 { color: #c6d0f5; border-color: #414559; }

#v41 .element-block {
  background: #363a4f;
  border: 1px solid #414559;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

#v41 .card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
}
#v41 .card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
#v41 .card h4 { color: #c6d0f5; }
#v41 .card p { color: #737994; }
#v41 .card-link { color: #8caaee; }

#v41 .text-heading { color: #c6d0f5; font-weight: 600; }
#v41 .text-body { color: #a5adce; }
#v41 .text-muted { color: #737994; }

#v41 .btn-primary {
  background: #ef9f76;
  color: #1e2030;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(239, 159, 118, 0.3);
}
#v41 .btn-primary:hover {
  background: #f4b08a;
  box-shadow: 0 4px 12px rgba(239, 159, 118, 0.4);
}
#v41 .btn-secondary {
  background: #8caaee;
  color: #1e2030;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(140, 170, 238, 0.3);
}
#v41 .btn-secondary:hover {
  background: #99b4f1;
  box-shadow: 0 4px 12px rgba(140, 170, 238, 0.4);
}
#v41 .btn-ghost {
  background: #414559;
  color: #c6d0f5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
#v41 .btn-ghost:hover {
  background: #51576d;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

#v41 .form-label { color: #a5adce; }
#v41 .input {
  background: #1e2030;
  border: 1px solid #414559;
  color: #c6d0f5;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
}
#v41 .input:focus {
  border-color: #8caaee;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15), 0 0 0 3px rgba(140, 170, 238, 0.2);
}
#v41 .input::placeholder { color: #626880; }

#v41 .tag { background: #414559; color: #b5bfe2; box-shadow: 0 1px 2px rgba(0,0,0,0.15); }
#v41 .tag-accent { background: rgba(239, 159, 118, 0.15); color: #ef9f76; }
#v41 .tag-accent-alt { background: rgba(140, 170, 238, 0.15); color: #8caaee; }

#v41 .team-card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
#v41 .team-photo { background: #363a4f; color: #8caaee; }
#v41 .team-name { color: #c6d0f5; }
#v41 .team-role { color: #ef9f76; }
#v41 .team-bio { color: #737994; }
#v41 .team-social a { color: #8caaee; }

#v41 .video-embed {
  background: #181926;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#v41 .video-placeholder { background: linear-gradient(135deg, #1e2030 0%, #181926 100%); color: #737994; }
#v41 .play-icon {
  background: #ef9f76;
  color: #1e2030;
  box-shadow: 0 4px 12px rgba(239, 159, 118, 0.4);
}

#v41 .code-block {
  background: #181926;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
#v41 .code-header { background: #1e2030; color: #737994; border-bottom: 1px solid #363a4f; }
#v41 .code-content { color: #c6d0f5; }
#v41 .code-keyword { color: #ca9ee6; }
#v41 .code-string { color: #a6d189; }
#v41 .code-comment { color: #626880; }
#v41 .code-function { color: #8caaee; }
#v41 .code-number { color: #ef9f76; }

#v41 .table-container {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#v41 th { background: #181926; color: #a5adce; border-bottom: 1px solid #414559; }
#v41 td { color: #c6d0f5; border-bottom: 1px solid #363a4f; }

#v41 .stat-card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
#v41 .stat-value { color: #c6d0f5; }
#v41 .stat-label { color: #737994; }

#v41 .flowchart {
  background: #1e2030;
  border: 1px solid #363a4f;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#v41 .flow-node {
  background: #363a4f;
  color: #c6d0f5;
  border: 1px solid #51576d;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#v41 .flow-node.start { background: #8caaee; color: #1e2030; box-shadow: 0 2px 8px rgba(140, 170, 238, 0.3); }
#v41 .flow-node.end { background: #a6d189; color: #1e2030; box-shadow: 0 2px 8px rgba(166, 209, 137, 0.3); }
#v41 .flow-node.decision { background: #ef9f76; color: #1e2030; box-shadow: 0 2px 8px rgba(239, 159, 118, 0.3); }
#v41 .flow-arrow { color: #626880; }

#v41 .progress-bar { background: #363a4f; box-shadow: inset 0 1px 3px rgba(0,0,0,0.2); }
#v41 .progress-fill { background: linear-gradient(90deg, #8caaee, #99b4f1); }

#v41 .testimonial {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
#v41 .testimonial-quote { color: #c6d0f5; }
#v41 .testimonial-avatar { background: #363a4f; color: #8caaee; }
#v41 .testimonial-name { color: #c6d0f5; }
#v41 .testimonial-title { color: #737994; }

#v41 .nav-demo {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#v41 .nav-demo a { color: #737994; }
#v41 .nav-demo a:hover { color: #c6d0f5; }
#v41 .nav-demo a.active { color: #ef9f76; }

#v41 .alert {
  border: 1px solid;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#v41 .alert.info { background: rgba(140, 170, 238, 0.1); border-color: rgba(140, 170, 238, 0.3); color: #8caaee; }
#v41 .alert.success { background: rgba(166, 209, 137, 0.1); border-color: rgba(166, 209, 137, 0.3); color: #a6d189; }
#v41 .alert.warning { background: rgba(239, 159, 118, 0.1); border-color: rgba(239, 159, 118, 0.3); color: #ef9f76; }
#v41 .alert.error { background: rgba(231, 130, 132, 0.1); border-color: rgba(231, 130, 132, 0.3); color: #e78284; }
#v41 .alert-content { color: #a5adce; }

#v41 .pricing-card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
#v41 .pricing-card.featured {
  border-color: #ef9f76;
  box-shadow: 0 8px 32px rgba(239, 159, 118, 0.2);
}
#v41 .pricing-tier { color: #737994; }
#v41 .pricing-price { color: #c6d0f5; }
#v41 .pricing-period { color: #737994; }
#v41 .pricing-features li { color: #a5adce; }
#v41 .pricing-features li::before { color: #a6d189; }

#v41 .preview-card {
  background: #1e2030;
  border: 1px solid #363a4f;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
#v41 .preview-header { background: #181926; border-bottom: 1px solid #363a4f; }
#v41 .preview-logo { color: #c6d0f5; }
#v41 .preview-nav a { color: #737994; }
#v41 .preview-hero { background: #232634; }
#v41 .preview-hero h2 { color: #c6d0f5; }
#v41 .preview-hero p { color: #a5adce; }
#v41 .preview-section-alt { background: #181926; }
#v41 .preview-footer { background: #14141c; color: #626880; border-top: 1px solid #363a4f; }

/* ========================================
   VARIANT 42: Dusk Final
   Refined balance of all previous learnings
   ======================================== */
#v42 {
  background: #2b2e3f;
}

#v42.noise-texture { background-color: #2b2e3f; }

#v42 .variant-title { color: #ef9f76; }
#v42 .variant-desc { color: #a8b1d4; }
#v42 .showcase-section h3 { color: #c6d0f5; border-color: #454a60; }

#v42 .element-block {
  background: #383c50;
  border: 1px solid #454a60;
}

#v42 .card {
  background: #1f2233;
  border: 1px solid #383c50;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}
#v42 .card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}
#v42 .card h4 { color: #c6d0f5; }
#v42 .card p { color: #787e9a; }
#v42 .card-link { color: #8caaee; }

#v42 .text-heading { color: #c6d0f5; font-weight: 600; }
#v42 .text-body { color: #a8b1d4; }
#v42 .text-muted { color: #787e9a; }

#v42 .btn-primary {
  background: #ef9f76;
  color: #1f2233;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(239, 159, 118, 0.25);
}
#v42 .btn-primary:hover {
  background: #f4b08a;
  box-shadow: 0 3px 10px rgba(239, 159, 118, 0.35);
}
#v42 .btn-secondary {
  background: #8caaee;
  color: #1f2233;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(140, 170, 238, 0.25);
}
#v42 .btn-secondary:hover {
  background: #99b4f1;
  box-shadow: 0 3px 10px rgba(140, 170, 238, 0.35);
}
#v42 .btn-tertiary {
  background: #a6d189;
  color: #1f2233;
  font-weight: 600;
}
#v42 .btn-tertiary:hover { background: #b4da9c; }
#v42 .btn-ghost {
  background: #454a60;
  color: #c6d0f5;
}
#v42 .btn-ghost:hover { background: #555b74; }
#v42 .btn-outline {
  background: transparent;
  color: #c6d0f5;
  border: 1px solid #555b74;
}
#v42 .btn-outline:hover { background: #383c50; }

#v42 .form-label { color: #a8b1d4; }
#v42 .input {
  background: #1f2233;
  border: 1px solid #454a60;
  color: #c6d0f5;
}
#v42 .input:focus {
  border-color: #8caaee;
  box-shadow: 0 0 0 2px rgba(140, 170, 238, 0.18);
}
#v42 .input::placeholder { color: #686e8a; }

#v42 .tag { background: #454a60; color: #b8c0e0; }
#v42 .tag-accent { background: rgba(239, 159, 118, 0.15); color: #ef9f76; }
#v42 .tag-accent-alt { background: rgba(140, 170, 238, 0.15); color: #8caaee; }
#v42 .tag-accent-third { background: rgba(166, 209, 137, 0.15); color: #a6d189; }

#v42 .team-card {
  background: #1f2233;
  border: 1px solid #383c50;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
#v42 .team-photo { background: #383c50; color: #8caaee; }
#v42 .team-name { color: #c6d0f5; }
#v42 .team-role { color: #ef9f76; }
#v42 .team-bio { color: #787e9a; }
#v42 .team-social a { color: #8caaee; }
#v42 .team-social a:hover { color: #ef9f76; }

#v42 .video-embed {
  background: #191b28;
  border: 1px solid #383c50;
}
#v42 .video-placeholder { background: linear-gradient(135deg, #1f2233 0%, #191b28 100%); color: #787e9a; }
#v42 .play-icon { background: #ef9f76; color: #1f2233; }

#v42 .code-block {
  background: #191b28;
  border: 1px solid #383c50;
}
#v42 .code-header { background: #1f2233; color: #787e9a; border-bottom: 1px solid #383c50; }
#v42 .code-content { color: #c6d0f5; }
#v42 .code-keyword { color: #ca9ee6; }
#v42 .code-string { color: #a6d189; }
#v42 .code-comment { color: #686e8a; }
#v42 .code-function { color: #8caaee; }
#v42 .code-number { color: #ef9f76; }

#v42 .table-container {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 th { background: #191b28; color: #a8b1d4; border-bottom: 1px solid #454a60; }
#v42 td { color: #c6d0f5; border-bottom: 1px solid #383c50; }
#v42 tr:hover td { background: #252839; }

#v42 .stat-card {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 .stat-value { color: #c6d0f5; }
#v42 .stat-label { color: #787e9a; }
#v42 .stat-change.positive { color: #a6d189; }
#v42 .stat-change.negative { color: #e78284; }

#v42 .flowchart {
  background: #1f2233;
  border: 1px solid #383c50;
  border-radius: 10px;
}
#v42 .flow-node { background: #383c50; color: #c6d0f5; border: 1px solid #555b74; }
#v42 .flow-node.start { background: #8caaee; color: #191b28; border-color: #8caaee; }
#v42 .flow-node.end { background: #a6d189; color: #191b28; border-color: #a6d189; }
#v42 .flow-node.decision { background: #ef9f76; color: #191b28; border-color: #ef9f76; }
#v42 .flow-arrow { color: #686e8a; }
#v42 .flow-label { color: #a8b1d4; }

#v42 .progress-bar { background: #383c50; }
#v42 .progress-fill { background: #8caaee; }
#v42 .chart-bar { background: #383c50; }
#v42 .chart-bar-fill { background: #8caaee; color: #191b28; }
#v42 .chart-bar-fill.accent { background: #ef9f76; }
#v42 .chart-bar-fill.tertiary { background: #a6d189; }
#v42 .chart-bar-label { color: #a8b1d4; }

#v42 .testimonial {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 .testimonial-quote { color: #c6d0f5; }
#v42 .testimonial-avatar { background: #383c50; color: #8caaee; }
#v42 .testimonial-name { color: #c6d0f5; }
#v42 .testimonial-title { color: #787e9a; }

#v42 .nav-demo {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 .nav-demo a { color: #787e9a; }
#v42 .nav-demo a:hover { color: #c6d0f5; }
#v42 .nav-demo a.active { color: #ef9f76; }

#v42 .alert { border: 1px solid; }
#v42 .alert.info { background: rgba(140, 170, 238, 0.1); border-color: rgba(140, 170, 238, 0.3); color: #8caaee; }
#v42 .alert.success { background: rgba(166, 209, 137, 0.1); border-color: rgba(166, 209, 137, 0.3); color: #a6d189; }
#v42 .alert.warning { background: rgba(239, 159, 118, 0.1); border-color: rgba(239, 159, 118, 0.3); color: #ef9f76; }
#v42 .alert.error { background: rgba(231, 130, 132, 0.1); border-color: rgba(231, 130, 132, 0.3); color: #e78284; }
#v42 .alert-content { color: #a8b1d4; }
#v42 .alert-title { color: inherit; }

#v42 .pricing-card {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 .pricing-card.featured {
  border-color: #ef9f76;
  box-shadow: 0 0 20px rgba(239, 159, 118, 0.12);
}
#v42 .pricing-tier { color: #787e9a; }
#v42 .pricing-price { color: #c6d0f5; }
#v42 .pricing-period { color: #787e9a; }
#v42 .pricing-features li { color: #a8b1d4; }
#v42 .pricing-features li::before { color: #a6d189; }

#v42 .preview-card {
  background: #1f2233;
  border: 1px solid #383c50;
}
#v42 .preview-header { background: #191b28; border-bottom: 1px solid #383c50; }
#v42 .preview-logo { color: #c6d0f5; }
#v42 .preview-nav a { color: #787e9a; }
#v42 .preview-nav a:hover { color: #c6d0f5; }
#v42 .preview-hero { background: #252839; }
#v42 .preview-hero h2 { color: #c6d0f5; }
#v42 .preview-hero p { color: #a8b1d4; }
#v42 .preview-section-alt { background: #191b28; }
#v42 .preview-footer { background: #14151f; color: #686e8a; border-top: 1px solid #383c50; }
