/* -------------------------------------------------------------
   CSS VARIABLES & GLOBAL THEME MAPS
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Primary Branding Colors */
  --primary: #0052ff;
  --primary-hover: #003ccb;
  --primary-light: rgba(0, 82, 255, 0.08);
  --primary-focus: rgba(0, 82, 255, 0.25);
  
  /* Light Theme Canvas System */
  --bg-canvas: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-silent: #64748b;
  --border-light: #e2e8f0;
  --border-focus: #94a3b8;
  
  /* Alerts / Accents */
  --gold-accent: #f59e0b;
  --gold-bg-light: #fff8e1;
  --success-color: #16a34a;
  
  /* Layout Dimensions */
  --header-height: 72px;
  --site-width: 1200px;
  --transition-speed: 0.2s;
  
  scroll-behavior: smooth;
}

/* Dark Theme Variables override classes */
html.dark,
body.jdc-dark-theme,
.jdc-dark-theme {
  --bg-canvas: #090d16;
  --bg-card: #111827;
  --bg-input: #1f2937;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-silent: #94a3b8;
  --border-light: #1f2937;
  --border-focus: #3b82f6;
  --gold-bg-light: #2d210f;
  --primary-light: rgba(0, 82, 255, 0.15);
}

/* -------------------------------------------------------------
   BASE RESET & CANVAS SETUP
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body.jdc-tech-directory-canvas {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

/* Scrollbars styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-canvas);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-silent);
}

/* Typography Compactness Rule Control */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.375rem; /* ~6px */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-hover);
}

/* -------------------------------------------------------------
   HEADER NAVIGATION (jdc-topbar-beacon)
   ------------------------------------------------------------- */
.jdc-topbar-beacon {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

body.jdc-dark-theme .jdc-topbar-beacon,
html.dark .jdc-topbar-beacon {
  background-color: rgba(9, 13, 22, 0.85);
}

.jdc-navigation-gate {
  max-width: var(--site-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Site Logo & Branding Link */
.jdc-branding-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
  flex-shrink: 0;
}

.jdc-brand-vector {
  transition: transform var(--transition-speed) ease;
}

.jdc-branding-link:hover .jdc-brand-vector {
  transform: rotate(30deg);
}

.jdc-branding-title {
  display: inline-block;
}

/* Quick Search Bar (jdc-search-bay) */
.jdc-search-bay {
  flex-grow: 1;
  max-width: 320px;
  position: relative;
}

#search-input {
  width: 100%;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-speed) ease;
}

#search-input:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--primary-focus);
}

/* Main Navigation Menu (jdc-anchor-deck) */
.jdc-anchor-deck {
  display: flex;
  align-items: center;
  gap: 24px;
}

.jdc-navigator-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-speed) ease;
}

.jdc-navigator-link:hover {
  color: var(--primary);
}

/* Interactive Theme Toggle Wrapper */
.jdc-utilities-rack {
  display: flex;
  align-items: center;
}

.jdc-theme-switch {
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.jdc-theme-switch:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.jdc-theme-icon-light {
  transition: transform 0.5s ease;
}

.jdc-theme-switch:hover .jdc-theme-icon-light {
  transform: rotate(45deg);
}

/* Adjust navigation mapping inside Dark mode toggle visually */
body.jdc-dark-theme .jdc-theme-icon-light {
  fill: currentColor;
}

/* -------------------------------------------------------------
   HERO SECTION (jdc-prime-skyward)
   ------------------------------------------------------------- */
.jdc-prime-skyward {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #001f66 100%);
  padding: 80px 0 100px 0;
  color: #ffffff;
  overflow: hidden;
}

/* Decorative grids for tech/DJ music aesthetic */
.jdc-prime-skyward::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.jdc-grid-curtain {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.jdc-skyward-billboard {
  max-width: 800px;
}

.jdc-category-badge {
  display: inline-block;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.35);
}

.jdc-skyward-heading {
  font-size: 3.25rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
}

.jdc-skyward-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   MAIN CONTENT WRAPPER LAYOUT (jdc-vault-chamber)
   ------------------------------------------------------------- */
.jdc-vault-chamber {
  min-height: 400px;
  margin-top: -40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 5;
}

.jdc-chamber-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Structural section spacing wrapping sections tightly */
.jdc-structural-section {
  padding: 24px 0 16px 0;
}

/* Standardizing internal editorial blocks elements nicely */
.text-editorial-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.text-editorial-wrapper hr {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin: 2.5rem 0;
}

/* Editorial Table design integration safely context-isolated */
.text-editorial-wrapper table {
  width: 100% !important;
  margin: 32px 0 !important;
  border-collapse: collapse !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.text-editorial-wrapper th {
  background-color: var(--bg-canvas) !important;
  color: var(--text-main) !important;
  font-weight: 700 !important;
  border-bottom: 2.5px solid var(--border-light) !important;
}

.text-editorial-wrapper td,
.text-editorial-wrapper th {
  padding: 14px 16px !important;
  border: 1px solid var(--border-light) !important;
  font-size: 0.9rem !important;
}

.text-editorial-wrapper tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015);
}

body.jdc-dark-theme .text-editorial-wrapper tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.01);
}

/* -------------------------------------------------------------
   AUTHOR BIO LAYOUT SECTION (jdc-profile-monolith)
   ------------------------------------------------------------- */
.jdc-profile-monolith {
  margin: 40px 0;
}

.jdc-biography-core {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.jdc-author-avatar-shell {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-canvas);
  position: relative;
}

.jdc-author-headshot-matrix {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jdc-biography-core:hover .jdc-author-headshot-matrix {
  transform: scale(1.05);
}

.jdc-biography-intel {
  display: flex;
  flex-direction: column;
}

.jdc-author-identity {
  font-size: 1.85rem;
  font-weight: 900;
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
}

.jdc-author-credo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 12px;
}

.jdc-author-narrative {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 20px;
}

.jdc-socials-constellation {
  display: flex;
  gap: 12px;
}

.jdc-social-star {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-canvas);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.jdc-social-star:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   CONTACT FORM SECTION (jdc-interact-hub)
   ------------------------------------------------------------- */
.jdc-interact-hub {
  margin: 40px 0;
}

.jdc-dispatch-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.jdc-dispatch-verbal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jdc-dispatch-heading {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 16px;
}

.jdc-dispatch-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.jdc-dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jdc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.jdc-field-unit {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jdc-field-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jdc-raw-input,
.jdc-raw-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-speed) ease;
}

.jdc-raw-input:focus,
.jdc-raw-textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--primary-focus);
}

.jdc-dispatch-trigger {
  align-self: flex-start;
  padding: 14px 32px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.2);
}

.jdc-dispatch-trigger:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 82, 255, 0.3);
}

/* -------------------------------------------------------------
   LEGAL / CHRONOLOGY FOOTER
   ------------------------------------------------------------- */
.jdc-chronology-footer {
  background-color: #0b111e;
  border-top: 1px solid #1f2937;
  color: #94a3b8;
  padding: 80px 0 0 0;
}

.jdc-footer-mesh {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.jdc-footer-segment {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jdc-identity-shield-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jdc-slate-title {
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
}

.jdc-slate-paragraph {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.jdc-segment-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0;
}

.jdc-link-cascade {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jdc-link-cascade-item {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.jdc-link-cascade-item:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Terminal Copyright Strip */
.jdc-terminal-strip {
  background-color: #050810;
  border-top: 1px solid #0f172a;
  padding: 24px 0;
}

.jdc-terminal-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.jdc-copyright-disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.jdc-fair-use-disclaimer {
  font-size: 0.75rem;
  color: #475569;
  max-width: 600px;
  text-align: right;
  margin: 0;
  line-height: 1.4;
}

/* -------------------------------------------------------------
   RESPONSIVENESS AND DEVICE SCALEPADS
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .jdc-skyward-heading {
    font-size: 2.75rem;
  }
  .jdc-footer-mesh {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: auto;
  }
  
  .jdc-navigation-gate {
    flex-wrap: wrap;
    padding: 16px 24px;
  }
  
  .jdc-search-bay {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
  
  .jdc-anchor-deck {
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .jdc-prime-skyward {
    padding: 60px 0 80px 0;
  }
  
  .jdc-skyward-heading {
    font-size: 2.25rem;
  }
  
  .jdc-biography-core {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
  
  .jdc-author-avatar-shell {
    margin: 0 auto;
  }
  
  .jdc-socials-constellation {
    justify-content: center;
  }
  
  .jdc-dispatch-container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .jdc-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .jdc-dispatch-trigger {
    width: 100%;
  }

  .text-editorial-wrapper {
    padding: 24px;
  }

  .jdc-terminal-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .jdc-fair-use-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .jdc-skyward-heading {
    font-size: 1.85rem;
  }
  .jdc-footer-mesh {
    grid-template-columns: 1fr;
  }
}

/* === CSS CONTENT === */

/* Global Variable Framework & Design Tokens */
:root {
  --primary-color: #0052ff;
  --primary-hover: #003db3;
  --primary-glow: rgba(0, 82, 255, 0.15);
  --premium-accent: #0284c7;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --bg-accent-premium: linear-gradient(135deg, #ffffff 0%, #f0f5ff 100%);
  --border-color: #e2e8f0;
  --border-premium: #0052ff;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-support: #64748b;
  --text-white: #ffffff;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-premium-hover: 0 20px 40px rgba(0, 82, 255, 0.12);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Variables override */
.jdc-dark-theme,
[data-theme="dark"] {
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-accent-premium: linear-gradient(135deg, #0f172a 0%, #0d1e4a 100%);
  --border-color: #1e293b;
  --border-premium: #0052ff;
  
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-support: #94a3b8;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-premium-hover: 0 20px 40px rgba(0, 82, 255, 0.2);
}

/* Document & Base Layout Structure */
body.jdc-tech-directory-canvas {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation Gate Header Styles */
.jdc-topbar-beacon {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.jdc-navigation-gate {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jdc-branding-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-main);
}

.jdc-branding-title {
  letter-spacing: -0.02em;
}

.jdc-brand-vector {
  flex-shrink: 0;
}

.jdc-search-bay {
  flex: 1;
  max-width: 320px;
}

.jdc-search-bay input {
  width: 100%;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-main);
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.jdc-search-bay input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.jdc-anchor-deck {
  display: flex;
  align-items: center;
  gap: 20px;
}

.jdc-navigator-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.jdc-navigator-link:hover {
  color: var(--primary-color);
}

.jdc-theme-switch {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.jdc-theme-switch:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
}

/* Hero Section */
.jdc-prime-skyward {
  background: radial-gradient(circle at 80% 20%, rgba(0, 82, 255, 0.05) 0%, transparent 50%), var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 24px;
}

.jdc-grid-curtain {
  max-width: 1280px;
  margin: 0 auto;
}

.jdc-skyward-billboard {
  max-width: 800px;
}

.jdc-category-badge {
  display: inline-block;
  background-color: var(--primary-glow);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.jdc-skyward-heading {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
}

.jdc-skyward-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0;
}

/* Master Core Layout Canvas */
.jdc-vault-chamber {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
}

.jdc-chamber-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Custom Spacing Rules ensuring typography inside lists & reviews is compact */
.jdc-rating-board h3, 
.jdc-rating-board h4, 
.jdc-tools-container h3, 
.jdc-tools-container h4,
.text-editorial-wrapper h3, 
.text-editorial-wrapper h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.jdc-bullet-list, 
.jdc-tool-bullets {
  margin: 0;
  padding-left: 18px;
}

.jdc-bullet-list li, 
.jdc-tool-bullets li {
  margin-bottom: 8px; /* Compact margin */
  line-height: 1.45;
}

.jdc-bullet-list li:last-child, 
.jdc-tool-bullets li:last-child {
  margin-bottom: 0;
}

/* Modern Segment Styling: Grid Comparison rows */
.jdc-flexible-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jdc-comparison-row {
  display: grid;
  grid-template-columns: 60px 200px 1.8fr 1.8fr 140px;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.jdc-comparison-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Prominent highlight rule for Volumo downloads row */
.jdc-comparison-row-premium {
  border: 2px solid var(--border-premium);
  background: var(--bg-accent-premium);
  box-shadow: 0 8px 25px rgba(0, 82, 255, 0.06);
}

.jdc-comparison-row-premium:hover {
  box-shadow: var(--shadow-premium-hover);
}

/* Row Columns Details Styling */
.jdc-column-rank {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-support);
  font-style: italic;
  font-variant-numeric: tabular-nums;
}

.jdc-comparison-row-premium .jdc-column-rank {
  color: var(--primary-color);
}

.jdc-brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.jdc-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.jdc-brand-name:hover {
  color: var(--primary-color);
}

.jdc-wiki-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-support);
  text-decoration: none;
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  transition: var(--transition-smooth);
}

.jdc-wiki-badge:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  border-color: var(--text-support);
}

.jdc-label-pro {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--success-color);
  margin-bottom: 4px;
}

.jdc-label-con {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--error-color);
  margin-bottom: 4px;
}

.jdc-score-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  text-align: center;
  border-left: 1.5px dashed var(--border-color);
  padding-left: 12px;
}

.jdc-score-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-support);
  font-weight: 600;
  margin-top: 2px;
}

/* Interactive Top Cards Integration (`id="top-tools"`) */
.jdc-tools-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.jdc-tool-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.jdc-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Premium Styling for Volumo (Listing #1) */
.jdc-tool-card-premium {
  border: 2px solid var(--border-premium);
  background: var(--bg-accent-premium);
}

.jdc-tool-card-premium:hover {
  box-shadow: var(--shadow-premium-hover);
}

.jdc-tool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.jdc-tool-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jdc-tool-rank-badge {
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.jdc-tool-card-premium .jdc-tool-rank-badge {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.jdc-tool-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jdc-tool-name-link {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.jdc-tool-name-link:hover {
  color: var(--primary-color);
}

.jdc-tool-external-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.jdc-tool-system-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.jdc-badge-primary {
  background-color: var(--bg-tertiary);
  color: var(--text-muted);
}

.jdc-badge-premium {
  background-color: var(--primary-glow);
  color: var(--primary-color);
}

.jdc-tool-rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

.jdc-tool-rating-num {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.jdc-tool-rating-meta {
  display: flex;
  flex-direction: column;
}

.jdc-tool-star-row {
  color: var(--warning-color);
  font-size: 0.9rem;
  letter-spacing: -1px;
}

.jdc-tool-rating-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-support);
}

.jdc-tool-summary {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 900px;
}

/* Two Column Layout for Pros and Cons (inside Listing cards) */
.jdc-tool-proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-bottom: 24px;
}

.jdc-tool-group-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jdc-tool-bullets {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jdc-tool-bullets li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.jdc-tool-bullets li::before {
  content: "•";
  font-weight: bold;
  display: inline-block;
}

.jdc-tool-pro-item::before {
  color: var(--success-color);
}

.jdc-tool-con-item::before {
  color: var(--error-color);
}

/* Card Action / Footer Bar with prominent gorgeous CTA buttons */
.jdc-tool-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 8px;
}

.jdc-wiki-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-support);
  transition: var(--transition-smooth);
}

.jdc-wiki-anchor:hover {
  color: var(--text-main);
}

.jdc-tool-cta-button {
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px var(--primary-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.jdc-tool-cta-button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-1px);
}

.jdc-afem-footer-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--primary-glow);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

/* Editorial Caution Banner */
.jdc-author-caution {
  background-color: #fffbeb;
  border-left: 4px solid var(--warning-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 30px 0;
}

.jdc-dark-theme .jdc-author-caution {
  background-color: #1a1610;
  border-color: var(--warning-color);
}

.jdc-caution-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: #78350f;
  margin: 0;
}

.jdc-dark-theme .jdc-caution-text {
  color: #fef08a;
}

/* Editorial Summary Board */
.jdc-editorial-summary {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.jdc-afem-badge-zone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.jdc-afem-badge-zone svg {
  fill: #ffffff;
}

/* General Layout Elements (Text Editorial Wrapper) */
.text-editorial-wrapper {
  color: var(--text-muted);
}

.text-editorial-wrapper h1, 
.text-editorial-wrapper h2 {
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.text-editorial-wrapper th {
  font-weight: bold;
  background-color: var(--bg-tertiary);
}

/* Editorial Fallback Table Styling - Modern & Clean scroll helper */
.jdc-structural-section {
  overflow-x: auto;
  max-width: 100%;
}

.text-editorial-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.85rem;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.text-editorial-wrapper table tr {
  border-bottom: 1px solid var(--border-color);
}

.text-editorial-wrapper table th {
  background-color: var(--bg-tertiary) !important;
  color: var(--text-main);
  padding: 14px 16px !important;
  font-weight: 700;
}

.text-editorial-wrapper table td {
  padding: 14px 16px !important;
  color: var(--text-muted);
}

.text-editorial-wrapper table tbody tr:hover {
  background-color: var(--bg-primary);
}

/* Profile Biography Block */
.jdc-profile-monolith {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.jdc-biography-core {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.jdc-author-avatar-shell {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-glow);
}

.jdc-author-headshot-matrix {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jdc-biography-intel {
  max-width: 800px;
}

.jdc-author-identity {
  margin: 0 0 4px 0 !important;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.jdc-author-credo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
}

.jdc-author-narrative {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.jdc-socials-constellation {
  display: flex;
  gap: 12px;
}

.jdc-social-star {
  color: var(--text-support);
  transition: var(--transition-smooth);
}

.jdc-social-star:hover {
  color: var(--primary-color);
}

/* Dispatch Contact Form Hub */
.jdc-interact-hub {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.jdc-dispatch-container {
  max-width: 800px;
  margin: 0 auto;
}

.jdc-dispatch-verbal {
  text-align: center;
  margin-bottom: 30px;
}

.jdc-dispatch-heading {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.jdc-dispatch-subtext {
  font-size: 0.95rem;
  color: var(--text-support);
  margin: 0;
}

.jdc-dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jdc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.jdc-field-unit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jdc-field-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.jdc-raw-input, .jdc-raw-textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-main);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.jdc-raw-input:focus, .jdc-raw-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.jdc-dispatch-trigger {
  align-self: flex-start;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition-smooth);
}

.jdc-dispatch-trigger:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

/* Chronology Footer styling */
.jdc-chronology-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 0 24px;
  margin-top: 60px;
}

.jdc-footer-mesh {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.jdc-footer-segment {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jdc-identity-shield-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jdc-slate-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

.jdc-slate-paragraph {
  font-size: 0.85rem;
  color: var(--text-support);
  line-height: 1.6;
  margin: 0;
}

.jdc-segment-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin: 0;
}

.jdc-link-cascade {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jdc-link-cascade-item {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-support);
  transition: var(--transition-smooth);
}

.jdc-link-cascade-item:hover {
  color: var(--primary-color);
}

.jdc-terminal-strip {
  background-color: var(--bg-primary);
  padding: 24px;
}

.jdc-terminal-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.jdc-copyright-disclaimer, .jdc-fair-use-disclaimer {
  font-size: 0.75rem;
  color: var(--text-support);
  margin: 0;
  line-height: 1.5;
}

/* Perfect Layout Responsiveness Media Rules */
@media (max-width: 1120px) {
  .jdc-comparison-row {
    grid-template-columns: 50px 170px 1.4fr 1.4fr 120px;
    gap: 16px;
  }
  .jdc-footer-mesh {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .jdc-footer-segment:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 968px) {
  .jdc-comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  
  .jdc-column-rank {
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }

  .jdc-brand-block {
    align-items: flex-start;
  }

  .jdc-score-tag {
    border-left: none;
    border-top: 1.5px dashed var(--border-color);
    padding-left: 0;
    padding-top: 16px;
    align-items: flex-start;
  }
  
  .jdc-tool-proscons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .jdc-branding-title {
    display: none;
  }
  .jdc-search-bay {
    display: none;
  }
  .jdc-anchor-deck {
    gap: 12px;
  }
  .jdc-navigator-link {
    font-size: 0.8rem;
  }
  .jdc-skyward-heading {
    font-size: 2rem;
  }
  .jdc-skyward-lead {
    font-size: 1rem;
  }
  .jdc-biography-core {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .jdc-socials-constellation {
    justify-content: center;
  }
  .jdc-field-row {
    grid-template-columns: 1fr;
  }
  .jdc-tool-header {
    flex-align: start;
    flex-wrap: wrap;
  }
  .jdc-tool-action-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .jdc-tool-cta-button {
    width: 100%;
    justify-content: center;
  }
  .jdc-footer-mesh {
    grid-template-columns: 1fr;
  }
  .jdc-footer-segment:last-child, .jdc-footer-segment {
    grid-column: span 1;
  }
  .jdc-terminal-inner {
    flex-direction: column;
    text-align: center;
  }
}